@charset "UTF-8";
body  {
font-family:Arial, Helvetica, sans-serif; font-size:15px; line-height:18px; background: #dedbc0 repeat-x url(../graphics/background.gif);
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #000000;
	height:100%;
}

.twoColFixRtHdr #container { height:100%;
	width: 780px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 0px solid #000000;
	text-align: left; /* this overrides the text-align: center on the body element. */
	min-height:100%;
} 
.twoColFixRtHdr #header { 
	 height: 150px;
	padding: 0 10px 0 20px;  /* this padding matches the left alignment of the elements in the divs that appear beneath it. If an image is used in the #header instead of text, you may want to remove the padding. */
	overflow:hidden;
} 
.twoColFixRtHdr #header h1 {
	margin: 0; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */
	padding: 10px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}
.twoColFixRtHdr #sidebar1 {
	float: right; /* since this element is floated, a width must be given */
	width: 200px; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
	background: #d3d0b1; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 20px;
}

.twoColFixRtHdr #case-study { width:223px; height:100px; float:left; position: relative; margin-bottom:15px;}
.twoColFixRtHdr #case-study-col1 { width:108px; height:100px; float:left; text-decoration:none; position: absolute; top: 0; left: 0px;}
.twoColFixRtHdr #case-study-col1 img {border:2px solid #dedbc0;}
.twoColFixRtHdr #case-study-col2 { width:108px; height:100px; float:right; text-decoration:none; position: absolute; bottom: 0; left: 115px; vertical-align:text-bottom;}
.twoColFixRtHdr #case-study-col2 a:link { text-decoration:none}
.twoColFixRtHdr #case-study-col2 a:visited { text-decoration:none}
.twoColFixRtHdr #case-study-col2 a:hover { text-decoration:underline}



.twoColFixRtHdr #mainContent { background-color:#dedbc0; height:100%;
	margin: 0 243px 0 0; /* the right margin on this div element creates the column down the right side of the page - no matter how much content the sidebar1 div contains, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends. */
	padding: 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
} 
.twoColFixRtHdr #mainContent h3 { font-size:16px; padding-top:10px; color:#000; font-weight:normal;
} 
.twoColFixRtHdr #mainContent h3 a {color:#606; } 

.twoColFixRtHdr #mainContent h2 a {color:#fff;
} 
.twoColFixRtHdr #mainContent h4 { font-size:14px; padding-top:10px;
} 
.twoColFixRtHdr #footer { height:40px;
	padding: 0 10px 0px 20px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#fff; 
} 
.twoColFixRtHdr #footer p {
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 10px 10px; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
}
.fltrt { /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
	margin-left: 8px;
}
.fltlft { /* this class can be used to float an element left in your page */
	float: left;
	margin-right: 8px;
}
.clearfloat { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
	clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
}

h1 { font-family:'Museo Slab 500', Arial, Helvetica, sans-serif; color:#606; font-size:30px; line-height:30px; font-weight:lighter;  margin-top:50px; margin-bottom:20px;}
h2 { font-family:'Museo Slab 500', Arial, Helvetica, sans-serif; color:#fff; font-size:30px; line-height:30px; font-weight:lighter; margin-top:50px; margin-bottom:20px;}
blockquote { font-family:'Museo Slab 500', Arial, Helvetica, sans-serif; color:#fff; font-size:20px; line-height:24px; font-weight:lighter; margin-top:20px; margin-bottom:-10px;}


h3 { font-family:'Museo Slab 500', Arial, Helvetica, sans-serif; color:#dedbc0; font-size:18px; font-weight:lighter; text-decoration:none; margin-bottom:6px;}
h4 { font-family:Arial, Helvetica, sans-serif; color:#000; font-size:12px; font-weight: bold; margin-bottom:-4px; margin-top:8px;}
h4 a:link {font-weight: lighter; }
h4 a:visited {font-weight: lighter;}

h3 a:link {font-weight: lighter; text-decoration: none; color:#dedbc0;}
h3 a:visited {font-weight: lighter; text-decoration: none; color:#dedbc0;}

h5 { font-family:Arial, Helvetica, sans-serif; color:#000; font-size:12px; font-weight:bold; }
h6 { font-family: 'Museo Slab 500', sans-serif; color:#000; font-size:30px; line-height:30px;  font-weight:lighter; margin-top:0px; margin-bottom:5px;}

small { font-family:Arial, Helvetica, sans-serif; color:#000; font-size:10px; line-height:12px;}
li { margin-bottom:10px; list-style-type:disc;}
ol li { list-style-type:upper-alpha;}

a:link {color:#606;text-decoration:none; border-bottom:1px dotted #606;}  /* unvisited link */
a:visited {color:#606;text-decoration:none; border-bottom:1px dotted #606;} /* visited link */
a:hover {color:#000;text-decoration:none; border-bottom:1px dotted #606;}  /* mouse over link */
a:active {color:000;text-decoration: none;} /* selected link */



.twoColFixRtHdr #topmenu {
	height:115px; width:150px;
	float: left; /* since this element is floated, a width must be given */
	 /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
	 /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 8px 22px 23px 0px;
}

.twoColFixRtHdr h3 a:link {!important text-decoration:none; color:#d3d0b1
}
.twoColFixRtHdr h3 a:vlink {!important text-decoration:none; color:#d3d0b1
}
.twoColFixRtHdr h3 a:hover { text-decoration:none; background-color:#d3d0b1; color:#000;
}


p.flip, div.panel
{
margin:15px 0px 0px 0px;

text-align:left;
border:solid 0px #c3c3c3;
}

p.flip:hover
{ background-color:#FFF;
}


div.panel
{
display:none; background:#d3d0b1;
padding:5px;
}


A.imgbord:link {color: #dedbc0; border:1px}
A.imgbord:active {color: #dedbc0; border:0px}
A.imgbord:visited {color: #dedbc0; border:0px}
A.imgbord:hover {color: #000; border: 1px}

#slider-wrapper {

    width:100px;
    height:100px;
    padding-top:0px;
    margin-top:0px;  
}

#slider {
	position:relative;
    width:100px;
    height:100px;
    margin-left:0px;
	background:url(../graphics/loading.gif) no-repeat 50% 50%;
}
#slider img {
	position:absolute;
	top:0px;
	left:0px;
	display:none; 
}
#slider a {
	border:0;
	display:block;
}

.nivo-controlNav {
	position:absolute;
	left:0px;
	bottom:0px;
}
.nivo-controlNav a {
	display:block;
	width:18px;
	height:18px;
	background:url(../graphics/bullets.png) no-repeat;
	text-indent:-9999px;
	border:0;
	margin-right:3px;
	float:left; 
}
.nivo-controlNav a.active {
	background-position:0 -22px;
}

.nivo-directionNav a {
	display:block;
	width:30px;
	height:30px;
	background:url(../graphics/arrows.png) no-repeat;
	text-indent:-9999px;
	border:0;
}
a.nivo-nextNav {
	background-position:-30px 0;
	right:15px;
}
a.nivo-prevNav {
	left:15px;
}

.nivo-caption {
    text-shadow:none;
    font-family: Arial, Helvetica, sans-serif;
}
.nivo-caption a { 
    color:#d3d0b1;
    text-decoration:underline;
}

.clear {
	clear:both;
}


.feedback {background-color:#fff; border-color:#9b9b9b; border-width:1px; padding-top:0px; padding-left:15px; padding-right:10px; padding-bottom:10px; margin-bottom: 10px;}
