/* 
========================================================================================================================
IMPORT CSS
======================================================================================================================== */
@import url("initial.css");

/* 
========================================================================================================================
BODY / PAGE SETUP
======================================================================================================================== */

*{ 
}

html{
	height: 100%;
}

body{
	margin: 0;
	padding: 0;
	height: 100%;
	background: #FF8005 url(../images/bg_body.jpg) top left repeat-x;
	background-attachment:fixed;
	/*background: #f0f0f0;*/
	color: #666666;
	font-family: arial, verdana, helvetica, sans-serif;
	/*
	Font sizing in ems, baby. if you want to change anything, just change this. Default 76%*/
	font-size: 70%; 
	/*
	IE 6 Peekaboo bug hack */
	line-height: 1.6em; 
	/*
	Win IE 5 horizontal center hack apply */
	text-align: center;
}

/* 
========================================================================================================================
IDS: LAYOUT
======================================================================================================================== */

/*
---------------------------------------------------------------------------------------------
CONTAINER MAIN
--------------------------------------------------------------------------------------------- */

#container{
	margin: 0 auto;
	padding: 0 2px 1px 2px; /* bottom margin to force a scrollbar to prevent shifting on shorter pages.. */
	width: 760px;
	background-color: #ffffff; 
	border-left: 3px solid #fff;
	border-right: 3px solid #fff;
	/* IE 6 Peekaboo bug hack */
	line-height: 1.6em;
	position: relative;
	/* Win IE 5 horizontal center hack reset */
	text-align: left;
	/* 
	Start min-height hack > Source: Dustin Diaz (http://www.dustindiaz.com/min-height-fast-hack/) 
	Works in: IE6, Mozilla/Firefox/Gecko, Opera 7.x+, Safari1.2 */
	min-height:100%;
	height:auto !important;
	height:100%;
	/*
	End min-height hack */
}
/* IE 5/5.5 box model hack (needed since #container has both a width and border) */
* html #container{
    width: 770px; /* for IE5 and IE6 in quirks mode */
    w\idth: 760px; /* for IE6 in standards mode */
}

/*
---------------------------------------------------------------------------------------------
MASTHEAD 
--------------------------------------------------------------------------------------------- */

#masthead{
	float: left;
	width: 195px;
	height: 98px;
	background: #fff url(../images/bg_masthead.gif) bottom left repeat-x;
}

/*
---------------------------------------------------------------------------------------------
NAVIGATION 
--------------------------------------------------------------------------------------------- */

#navigation{
	float: left;
	width: 565px;
	min-height: 98px;
	/*overflow: auto;  acts as clearing element to force it to wrap it's floated contents. */
	background: #fff url(../images/bg_masthead.gif) bottom left repeat-x;
}

#navigation ul{
	margin: 0;
	padding: 0;
	list-style: none;
}
#navigation ul li{
	float: left;
	display: block;
	margin: 0;
	padding: 0;
	background-image: none;
	background-color: transparent;
	border: none;
}
#navigation ul li a {
	display: block;
	margin: 70px 0 0 0;
	padding: 0 25px 13px 3px;
	border-left: 1px solid #eeeeee;
	text-transform: uppercase;
	font-size: 0.9em;
}
#navigation ul li a:hover {
	background: #eeeeee;
	color: #000000;
}
#navigation ul li a.current {
	background: #ffffff;
	color: #000000;
}

/*
SECONDARY NAV (Displays in layout col2-1)
---------------------------------------------------------- */
#navSecondary li {
	margin: 0;
	padding: 0;
	border-top: 1px solid #fff;
	border-bottom: 1px solid #fff;
	background: transparent url(../images/border_dotted.gif) bottom left repeat-x;
	text-transform: uppercase;
	font-size: 0.9em;
}
#navSecondary li a {
	display: block;
	margin: 0 0 0.3em 0;
	padding: 0.5em 0 0.5em 1.8em;
	background: transparent url(../images/bullet_square.gif) 0.7em 1.1em no-repeat;
}
#navSecondary li.current a {
	margin: 0 0 0.3em 0;
	padding: 0.5em 0 0.5em 1.8em;
	background: #f1f1f1 url(../images/bullet_square_orange.gif) 0.7em 1.1em no-repeat;
}

/*
TERTIARY NAV (Displays nested in #navSecondary)
---------------------------------------------------------- */
#navSecondary li ul {
	display: none;
}
#navSecondary li li {
	background: #fafafa; /*url(../images/border_dotted.gif) bottom left repeat-x;*/
	border: 0px;
	font-size: 1.1em;
}
#navSecondary li.current li a {
	text-transform: none;
	margin-left: 0.3em;
	background-image: none;
	border: 0px solid #fff;
	background: #fafafa;
}
#navSecondary li.current ul {
	display: list-item;
}

/*
---------------------------------------------------------------------------------------------
CONTENT 
--------------------------------------------------------------------------------------------- */

#content{
	clear: both;
	border-top: 2px solid #ffffff;
	/* 
	Start min-height hack > Source: Dustin Diaz (http://www.dustindiaz.com/min-height-fast-hack/) 
	Works in: IE6, Mozilla/Firefox/Gecko, Opera 7.x+, Safari1.2 */
	min-height:170px;
	height:auto !important;
	height:170px;
	/*
	End min-height hack */
}

/*
CUSTOMISED ELEMENTS 
---------------------------------------------------------- */

/* SECTION MASTHEADS - applied to the #content area */
.s0 {
}
.sGeneric {
	background: #fff url(../images/masthead_s0_generic.gif) 0 0 no-repeat;
	padding: 50px 0 20px 0;
}
.s1 {
	background: #fff url(../images/masthead_s1_about.gif) 0 0 no-repeat;
	padding: 50px 0 20px 0;
}
.s2 {
	background: #fff url(../images/masthead_s2_awards.gif) 0 0 no-repeat;
	padding: 50px 0 20px 0;
}
.s3 {
	background: #fff url(../images/masthead_s3_projects.gif) 0 0 no-repeat;
	padding: 50px 0 20px 0;
}
.s4 {
	background: #fff url(../images/masthead_s4_news.gif) 0 0 no-repeat;
	padding: 50px 0 20px 0;
}
.s5 {
	background: #fff url(../images/masthead_s5_contact.gif) 0 0 no-repeat;
	padding: 50px 0 20px 0;
}

/* LAYOUT COLUMNS */
.col1 {
	padding: 0 10px 0 20px;
}
.col3-1, .col3-2, .col3-3 {
	float: left;
	width: 345px;
	padding: 0 10px 0 20px;
}
/* IE 5/5.5 box model hack */
* html .col3-1, * html .col3-2, * html .col3-3 {
	width: 250px; /* for IE5 and IE6 in quirks mode */
	w\idth: 345px; /* for IE6 in standards mode */
}
.col2-1 {
	float: left;
	width: 180px;
}
.col2-2 {
	float: left;
	width: 540px;/**/
	padding-left: 40px;
	padding-right: 0;
}
/* IE 5/5.5 box model hack */
* html .col2-2{
   width: 580px; /* for IE5 and IE6 in quirks mode */
   w\idth: 540px; /* for IE6 in standards mode */
}
.col2-1 {
	text-indent: 8px;
}
.col2-1 ul, .col2-1 ol{
	text-indent: 0;
}
.col2-2 p {
	padding-right: 15px;
}

/* LAYOUT COLUMNS INTERNAL (USED ON PROJECT PAGES) */
.left-col, .right-col {
	float: right;
	width: 48%;
	padding-top: 1em;
	padding-right: 2%;
	border: 0px solid red;
}
.left-col {
	float: right;
}
.right-col {
	float: left;
}
.left-col .headerTable {
	background-image: none;
}

/* IMAGES */
#content img.float_left {
	margin: 10px 20px 10px 0;
	border: 3px solid #eeeeee;
}
#content img.float_right {
	margin: 10px 10px 10px 20px;
	border: 3px solid #eeeeee;
}

/*
---------------------------------------------------------------------------------------------
FOOTER 
--------------------------------------------------------------------------------------------- */

#footer{
	clear: both;
	color: #999999;
	padding: 73px 3px 5px 8px;
	text-align: right;
	font-size: 0.8em;
	background: #ffffff url(../images/bg_content_bottom.jpg) top left repeat-x;
}
/* IE 5/5.5 box model hack */
* html #footer{
    height: 1%; /* for IE5 and IE6 in quirks mode */
    heig\ht: auto; /* for IE6 in standards mode */
}

/*
CUSTOMISED ELEMENTS 
---------------------------------------------------------- */

#footer ul{
	margin: 0;
	padding: 0;
	list-style: none;
	border: 0px solid green;
}
#footer ul li{
	float: left;
	margin: 0 1em 0 0;
	padding: 0 0 0 12px;
	background: url(../images/bullet_arrow.gif) 0 0.7em no-repeat;
	border: 0px solid yellow;
}
#footer a {
	color: #000000;
}
#footer a:hover {
	text-decoration: underline;
}
#footer a.freshweb {
	display: block;	
}
#footer a.freshweb:hover {
	text-decoration: none;
}


/* 
========================================================================================================================
IDS: DESIGN ELEMENTS
======================================================================================================================== */

/*
---------------------------------------------------------------------------------------------
HOMEPAGE: FLASH FEATURE 
--------------------------------------------------------------------------------------------- */
#flash_homeFeature {
	clear: both;
	width: 760px;
	height: 220px;
	background-color: #edece2;
}
#flash_home {
	height: 220px;
	width: 760px;
	background-color: #edece2;
	clear: both;
}

/*
---------------------------------------------------------------------------------------------
HOMEPAGE: EMAIL SIGNUP
--------------------------------------------------------------------------------------------- */

#email-signup {
	margin: 1em 0;
	padding: 0.3em 0;
	background: url(../images/border_dotted.gif) bottom left repeat-x;
}
#email-signup h2 {
	line-height: 1em;
	margin-bottom: 0;
}
#email-signup p {
	background: url(../images/border_dotted.gif) bottom left repeat-x;
	padding-bottom: 0.3em;
	margin: 0.5em 0;
}
#email-signup img {
	border: none;
	margin: 0;
}
#email-signup form {
	padding: 0.5em 0;
	margin: 0;
}
#email-signup label {
	display: none;
}
#email-signup button {
	color: #FF8005;
	margin: 0 0 0 5px;
	padding: 0 0 0 15px ;
	background: #ffffff url(../images/bullet_arrow_orange.gif) center left no-repeat;
	border: none;
	cursor: pointer;
}

/*
---------------------------------------------------------------------------------------------
PROJECT PAGE: IMAGE GALLERY 
--------------------------------------------------------------------------------------------- */
/* NOTE: This interacts with js/dyngal.js */

/* IMAGE MAIN */
#imageMain {
	background: url(../images/border_dotted.gif) bottom left repeat-x;
	padding: 2px 0 3px 0;
}

/* GALLERY */
#imageGallery {
	background: url(../images/border_dotted.gif) bottom left repeat-x;
	padding: 2px 0 2px 0;
	vertical-align: bottom;
	line-height: 45px;
	height:50px;
}
#imageGallery img {
	margin: 0 3px 0 0;
	border: none;
}
#imageGallery a {
	display:block;
	width:63px;
	height:45px;
	overflow:hidden;
	float:left;
	margin:0 2px 4px 0;
	border:1px solid #fff;
}
#imageGallery a:hover {
	border: 1px solid #FF8005;
}
/*#loadingMessage{
	position:absolute;
	top:300px;
	left:50%;
	width:20em;
	margin-left: -10em;
	padding:1em 5px;
	background:#fff;
	font-weight:bold;
	text-align:center;
	border: 5px solid #eee;
}
#bigDynPic{
	background:#fff;
	position:absolute;
	top:1em;
	left:30%;
	padding:5px;
	border: 5px solid #eee;
}

#bigDynPic img{
	border: 2px solid #eee;
}
#bigDynPic p{
	position: relative;
	background:#fff;
	color:#FF8005;
	margin: 0;
	padding:5px;
	text-align: center;
	text-transform: uppercase;
	font-size: 0.8em;
	font-weight: bold;
}
*/
/* VR LINK */
#vrLink {
	float: right;
	margin-right: 20px;
	padding-right: 20px;
	font-size: 0.9em;
	font-weight: bold;
	text-transform: uppercase;
	background: url(../images/icon_vrtour.gif) center right no-repeat;
}


/*
---------------------------------------------------------------------------------------------
PROJECT PAGE: VR POPUP
--------------------------------------------------------------------------------------------- */
/* NOTE: This interacts with js/popup.js */
#vrContainer {
	margin: 10px;
	padding: 5px;
	background: #fff;
	/*background: #fff url(../images/masthead_logo.gif) 5px -10px no-repeat;*/
}
#vrContainer  h1 {
	background: none;
	color: #FF8005;
	background: #fff url(../images/bg_masthead.gif) bottom left repeat-x;
	margin-bottom: 3px;
}
#ptviewer {
}

/*
---------------------------------------------------------------------------------------------
CONTACT PAGE: ADDRESS
--------------------------------------------------------------------------------------------- */
#address p {
	text-indent: 0;
	padding-left: 8px;
	line-height: 2em;
}

/*
---------------------------------------------------------------------------------------------
CONTACT FORM
--------------------------------------------------------------------------------------------- */
#contactFormArea table {
	margin: 0;
}

/* 
========================================================================================================================
CLASSES
======================================================================================================================== */

.hide{
	display:none;
}
.show{
	display:block;
}
.float_left {
	float: left;
}
.float_right {
	float: right;
}
.float_none {
	float: none;
}
.align_left {
	text-align: left;
}
.align_center {
	text-align: center;
}
.align_right {
	text-align: right;
}
.clear {
	clear: both;
}
.border-bottom {
	background: transparent url(../images/border_dotted.gif) bottom left repeat-x;
}

/*
---------------------------------------------------------------------------------------------
DIV CALLOUT
--------------------------------------------------------------------------------------------- */
div.callout {
	padding: 1em 0;
	background: #fff url(../images/border_dotted.gif) bottom left repeat-x;
	clear: both;
	overflow: auto; /* acts as clearing element to force callout to wrap its floated contents. */
	width: 540px; /* width or height must be explicitly set for IE and Opera 7 */
}
.callout * {
	margin-left: 175px;
}
.callout * * {
	margin-left: 0;
}
.callout img {
	border: 3px solid #eeeeee;
	float: left;
	margin-left: 0;
	display: block;
}
.callout h2 {
	background: none;
	padding: 0;
	line-height: normal;
}
.callout h3 {
	padding: 0;
	line-height: normal;
}
.callout hr {
	background: none;
}

/* 
========================================================================================================================
CORE ELEMENTS
======================================================================================================================== */

/*
---------------------------------------------------------------------------------------------
HEADINGS
--------------------------------------------------------------------------------------------- */

h1 {
	font-size: 0.9em;
	color: #333333;
	margin: 0;
	padding: 1.5em 0em 1.5em 0em;
	text-transform: uppercase;
	background: transparent url(../images/border_dotted.gif) bottom left repeat-x;
}
h2 {
	font-size: 0.9em;
	color: #333333;
	margin: 0;
	padding:1.5em 0em 1.5em 0em;
	text-transform: uppercase;
	background: transparent url(../images/border_dotted.gif) bottom left repeat-x;
}
h3 {
	font-size: 1.0em;
	color: #333333;
	margin: 1.2em 0em 1.2em 0em;
}
h4 {
	font-size: 1.0em;
	color: #333333;
	margin: 1.2em 0em 1.2em 0em;
}
h5 {
	font-size: 1.0em;
	margin: 1.2em 0em 1.2em 0em;
}
h6 {
	font-size: 1.0em;
	margin: 1.2em 0em 1.2em 0em;
}

/*
---------------------------------------------------------------------------------------------
PARAGRAPHS
--------------------------------------------------------------------------------------------- */

p{
}

/*
---------------------------------------------------------------------------------------------
QUOTES
--------------------------------------------------------------------------------------------- */

blockquote{
	margin: 0;
	padding: 0 0 1em 0;
	background: transparent url(../images/border_dotted.gif) bottom left repeat-x;
}
blockquote p{
}
cite{
}
blockquote cite{
}
q {
}

/*
CUSTOMISED ELEMENTS 
---------------------------------------------------------- */
blockquote#projTestimonial {
	margin: 10px 0 10px 10px;
	padding: 0 10px;
	padding-left: 15px;
	float: right;
	border-left: 1px solid #eee;
	width: 160px;
	background: #fff;
	color: #333;
}
blockquote#projTestimonial p {
	margin-top: 0;
}
blockquote#projTestimonial cite {
	display: block;
	font-style: normal;
}
blockquote cite.author {
	font-weight: bold;
	color: #333;
}

/*
---------------------------------------------------------------------------------------------
CODE
--------------------------------------------------------------------------------------------- */

pre{
	font-size: 1.2em;
}
code{
	font-size: 1.2em;
}
samp{
	font-size: 1.2em;
}
kbd{
	font-size: 1.2em;
}
p code{
}
pre code{
}

/*
---------------------------------------------------------------------------------------------
LISTS
--------------------------------------------------------------------------------------------- */

li {
}
li p{
}
ol{
	margin: 0;
	padding: 0;
}
ul{
	list-style-type: none;
	margin: 0;
	padding: 0;
}
ol li{
	margin: 0.5em 0 0.5em 2.3em;
	padding: 0 0 0 0;
}
ul li{
	margin: 0.5em 0 0.5em 0.5em;
	padding: 0 0 0 1.5em;
	background: url(../images/bullet_square.gif) 0.3em 0.6em no-repeat;
}

/*
CUSTOMISED ELEMENTS 
---------------------------------------------------------- */
.menu li {
	margin: 0;
	padding: 0;
	background: transparent url(../images/border_dotted.gif) bottom left repeat-x;
}
.menu li a {
	display: block;
	padding: 0.5em 0 0.7em 1.8em;
	background: url(../images/bullet_square.gif) 0.7em 1.1em no-repeat;
}

/*
CUSTOMISED ELEMENTS 
---------------------------------------------------------- */
ul.projectMenu {
	clear: both;
	/*overflow: auto;  acts as clearing element to force callout to wrap its floated contents. */
	width: 99%;
}
.projectMenu li {
	list-style: none;
	margin: 0;
	padding: 15px 15px 15px 0;
	border: 0px solid red;
	float: left;
	background: transparent url(../images/border_dotted.gif) bottom left repeat-x;
}
.projectMenu dl {
	margin: 0;
	height: 135px;
	padding: 3px;
	width: 155px;/**/
	background: #eeeeee url(../images/bg_logo_corner.gif) bottom right no-repeat;
	clear: both;
	text-align: center;
}
/* IE 5/5.5 box model hack (needed since container has both a width and border) */
* html .projectMenu dl{
    width: 158px; /* for IE5 and IE6 in quirks mode */
    wid\th: 155px; /* for IE6 in standards mode */
}
* html .projectMenu li{
	height: 23em; /* for IE5 and IE6 in quirks mode */
	heig\ht: 11em; /* for IE6 in standards mode */
}
.projectMenu dl:hover {
	background-color: #e0e0e0;
}
.projectMenu dt {
	margin: 0;
	padding: 0;
	font-size: 0.9em;
	font-weight: bold;
	text-transform: uppercase;
	color: #666;
}
.projectMenu dd {
	margin: 0;
	padding: 0;
}

/*
---------------------------------------------------------------------------------------------
IMAGES
--------------------------------------------------------------------------------------------- */

img {
	border: none;
}
img a {
	border: none;
}
img a:hover {
	border: none;
}

/*
---------------------------------------------------------------------------------------------
HR
--------------------------------------------------------------------------------------------- */
/* NOTE: IE adds dodgy borders */

hr {
	background: url(../images/border_dotted.gif) bottom left repeat-x;
	border: none;
	height: 1px;
	clear: both;
}


/*
---------------------------------------------------------------------------------------------
TEXT FORMATTING
--------------------------------------------------------------------------------------------- */

strong{
}
em{
}
b{
}
i{
}

/*
---------------------------------------------------------------------------------------------
LINKS
--------------------------------------------------------------------------------------------- */

a{
	color: #FF8005;
	text-decoration: none;
}
a:hover{
	color: #000000;
	text-decoration: none;
}
a:visited, a:active, a:focus{
}
a:visited{
}
a:active{
	outline: none;
}
a:focus{
	outline: none;/* Prevent stretched dotted outline in Firefox1.5 (http://sonspring.com/journal/removing-dotted-links) */
}

/*
CUSTOMISED ELEMENTS 
---------------------------------------------------------- */
a.downloadLink {
	float: right;
	margin-right: 20px;
	padding-right: 20px;
	font-size: 0.9em;
	font-weight: bold;
	text-transform: uppercase;
	background: url(../images/icon_download.gif) center right no-repeat;
}

/*
---------------------------------------------------------------------------------------------
TABLES
--------------------------------------------------------------------------------------------- */

table{
	width: 100%;
	margin: 0.8em 0;
	border-collapse: collapse;
	border: none;
	font-size: 1em;
	text-align: left;
}
caption{
	margin: 0.8em 0;
}
thead{
	background-color: #edece2;
	text-align: left;
}
tbody{
}
tfoot{
	background-color: #edece2;
	text-align: left;
}
tr{
	border: none;
}
tr .alt{
}
th{
	font-size: 0.9em;
	text-transform: uppercase;
	padding: 0.5em 0.5em;
	border: 1px solid #edece2;
	vertical-align: top;
	text-align: left;
}
td{
	padding: 0.5em 0.5em;
	border: none;
	border: 1px solid #edece2;
	vertical-align: top;
}

/*
CUSTOMISED ELEMENTS 
---------------------------------------------------------- */
table.headerTable {
	background: transparent url(../images/border_dotted.gif) bottom left repeat-x;
}
.headerTable th {
	color: #bebebe;
}
.headerTable th, .headerTable td {
	border: none;
	padding-left: 0;
	padding-right: 1.5em;
}
.headerTable * {
	margin-top: 0;
}
.headerTable * * {
	margin-top: auto;
}

/*
---------------------------------------------------------------------------------------------
FORMS
--------------------------------------------------------------------------------------------- */

/* Form field text-scaling */
input, select, textarea, button {
	font-size: 1em;
}
form {
}
fieldset {
	border: 0;
	background: #edece2;
	margin: 2px 0;
	padding: 8px;
}
legend {
}
label {
	text-transform: uppercase;
	font-size: 0.9em;
	font-weight: bold;
	color: #333;
	text-align: left;
}
input {
}
textarea {
	font-size: 1.1em;
	font-family: Arial, Helvetica, sans-serif;
}
input, textarea {
}
select {
}
optgroup {
}
option {
}
button {
	cursor: pointer;
}

/*
---------------------------------------------------------------------------------------------
DEFINITIONS
--------------------------------------------------------------------------------------------- */

dl{
}
dt{
color: #333;
margin-top: 1em;
}
dd{
margin-left: 0;
}

/*
CUSTOMISED ELEMENTS 
---------------------------------------------------------- */
dl.clientList {
padding: 0.5em 0;
background: transparent url(../images/border_dotted.gif) top left repeat-x;
}
dl.clientList dt {
	font-size: 0.9em;
	color: #333333;
	font-weight: bold;
	text-transform: uppercase;
	background-color: #eeeeee;
	margin: 0;
	padding: 0.2em 0.5em;
	clear: both;
}
dl.clientList dd {
	margin: 1em;
	padding: 0;
	border: 0px solid red;
	float: left;
}

dl.historyList {
	padding: 0.5em 0;
}
dl.historyList dt {
	width: 10em;
	font-size: 0.9em;
	color: #333333;
	font-weight: bold;
	text-transform: uppercase;
	margin: 0;
	padding: 1em 0 0 0;
	float: left;
	clear: both;
}
dl.historyList dd {
	margin: 0;
	padding: 1em 0 1em 10.5em;
	background: transparent url(../images/border_dotted.gif) top left repeat-x;
}
dl.historyList h1, dl.historyList h2, dl.historyList h3, dl.historyList h4, dl.historyList h5, dl.historyList h6 {
	margin: 0;
	padding: 0;
}
dl.historyList dd * {
	margin-top: 0;
	padding-top: 0;
}

/* 
========================================================================================================================
HACKS
======================================================================================================================== */

/*
---------------------------------------------------------------------------------------------
HACK 1 - IE PC
---------------------------------------------------------------------------------------------
To prevent additional space under ul li items */
/* NOTE: this applies to ul only, it will break the numbering on ol's if applied to them */
/* Hide from IE5-mac. Only IE-win sees this. \*/
* html ul li {
	height: 1%;
}
/* End hide from IE5/mac */

/*
---------------------------------------------------------------------------------------------
HACK 2 - IE (all)
---------------------------------------------------------------------------------------------
Hack to remove default padding on buttons - use only if using image backgrounds.. else breaks in ie 5/5.5*/
* html button, * html .button { 
	/*overflow: visible; width: 1px;*/
	padding: 0;
}
#navSecondary li.dcurrent a {
	color:#000000;
	background-image: none;
	border: 0px solid #666;
	background: #666666;
}
.dimage{
	margin-top: 10px;
}