@charset "UTF-8";
body {
	font: 85% Arial, Helvetica, sans-serif;
	line-height: 1.6em;
	background: #e7e7e8;
	margin: 0;
	padding: 0;
	color: #333;
	-webkit-text-size-adjust: 100%;

}

ul, ol, dl { /* Due to variations between browsers, it's best practices to zero padding and margin on lists. For consistency, you can either specify the amounts you want here, or on the list items (LI, DT, DD) they contain. Remember that what you do here will cascade to the .nav list unless you write a more specific selector. */
	padding: 0;
	margin: 0;
}
h1, h2, h3, h4, h5, h6, p {
	margin-top: 0;	 /* removing the top margin gets around an issue where margins can escape from their containing div. The remaining bottom margin will hold it away from any elements that follow. */
	padding-right: 15px;
	padding-left: 15px; /* adding the padding to the sides of the elements within the divs, instead of the divs themselves, gets rid of any box model math. A nested div with side padding can also be used as an alternate method. */
}

h1{
	line-height: 1.3em;
	font-size: 160%;
}

h2 {
	font-style:italic;
	font-weight:normal;
	font-size: 130%;
	color:#999999;
	text-transform:uppercase;
}

h3{
	line-height: 1.4em;
	font-size: 125%;
	font-weight:normal;
	font-family:Georgia, "Times New Roman", Times, serif;
	color:#666;
}

h4{
	line-height: 1em;
	font-size: 160%;
	font-weight:normal;
	color:#333;
	margin-bottom:3px;
}

.psmall {
	font: 85% Arial, Helvetica, sans-serif;
	line-height: 1.3em;
}


a img { /* this selector removes the default blue border displayed in some browsers around an image when it is surrounded by a link */
	border: none;
}

/* ~~ Styling for your site's links must remain in this order - including the group of selectors that create the hover effect. ~~ */
a:link {
	color: #3479be;
	text-decoration: none; /* unless you style your links to look extremely unique, it's best to provide underlines for quick visual identification */
}
a:visited {
	color: #3479be;
	text-decoration: none;
}
a:hover, a:active, a:focus { /* this group of selectors will give a keyboard navigator the same hover experience as the person using a mouse. */
	text-decoration: underline;
	color:#000;
}

.container {
	width: 980px;
	background: #fff;
	margin: 0 auto; /* the auto value on the sides, coupled with the width, centers the layout */
	-moz-box-shadow: 0 0 4px #999999;
	-webkit-box-shadow: 0 0 4px #999999;
	box-shadow: 0 0 4px #999999;
	
	/* For IE 5.5 - 9 */
		*border-bottom:medium #CCC solid;
		*border-left:medium #CCC solid;
		*border-right:medium #CCC solid;
		_border-bottom:medium #CCC solid;
		_border-left:medium #CCC solid;
		_border-right:medium #CCC solid;
		border-bottom:medium #CCC solid\9;
		border-left:medium #CCC solid\9;
		border-right:medium #CCC solid\9;
}

#Insert_logo {
	padding-top:10px;
}

.topper {
	position: relative;
	float:right;
	width: 220px;
	background:#fff;
	height:25px;
	padding:10px;
	text-align:right;
}

.last {
	border-right:#666 thin solid;
}

.topper a {
}

.toptext {
	font-size:12px;
	color:#333;
}

.sidebar1 {
	float: left;
	text-align:center;
	width: 35px;
	color:#FFFFFF;
}

.sidebar1 img {
	padding:35px 20px 15px 40px;;

}

.sidebarRight {
	float: right;
	text-align:left;
	width: 265px;
	color:#333;
	padding:20px 0 0 0;
}

.content {
	padding: 40px 0 10px 0;
	width: 900px;
	float: left;
}

.contenthome {
	padding: 0;
	width: 100%;
	float: left;
}

.content img{
	padding: 0 10px 10px 0;
	display:none;
}

.content ul, .content ol { 
	padding: 0 15px 15px 40px; /* this padding mirrors the right padding in the headings and paragraph rule above. Padding was placed on the bottom for space between other elements on the lists and on the left to create the indention. These may be adjusted as you wish. */
}

#home {
	background: #fff url(images/blank.png);
	border-top:#ccc thin solid;
	height: 60px;
	clear: both; /* this clear property forces the .container to understand where the columns end and contain them */
	color:#333333;
}

#homepage {
	background: url(images/home-image.jpg) no-repeat top;
	clear: both; /* this clear property forces the .container to understand where the columns end and contain them */
}

.footer p{
	padding: 20px 20px 0 20px;
	font-size:75%;
	text-align:right;
}

.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. The floated element must precede the element it should be next to on the page. */
	float: left;
	margin-right: 8px;
}
.clearfloat { /* this class can be placed on a <br /> or empty div as the final element following the last floated div (within the #container) if the #footer is removed or taken out of the #container */
	clear:both;
	height:0;
	font-size: 1px;
	line-height: 0px;
}

.sidenav {
	border-top:thin #ccc solid;
	padding: 12px 0 0 10px;
	line-height: 1.2em;
}

.sidenav a:hover, .sidenav a:active, .sidenav a:focus { /* this changes the background and text color for both mouse and keyboard navigators */
	background: #999;
	color: #FFF;
}

.sidenav a, .sidenav a:visited { /* grouping these selectors makes sure that your links retain their button look even after being visited */
	padding: 5px;
	display: block; /* this gives the link block properties causing it to fill the whole LI containing it. This causes the entire area to react to a mouse click. */
	text-decoration: none;
}
/*------------------------------------*\
	NAV
\*------------------------------------*/
#nav{
	text-decoration: none;
	letter-spacing: 2px;
	text-transform:uppercase;
	list-style:none;
	/* Clear floats */
	float:left;
	margin-left: 32px;
	width:100%;
	/* Bring the nav above everything else--uncomment if needed.*/
	position:relative;
	z-index:50;
	
}
#nav li{
	float:left;
	position:relative;
	margin-right:1px;
}
#nav a{
	display:block;
	padding: 10px 20px;
	text-decoration:none;
}
#nav a:hover{
	color:#fff;
	background:#6b0c36;
	text-decoration:underline;
}

/*--- DROPDOWN ---*/
#nav ul{
	background:#fff; /* Adding a background makes the dropdown work properly in IE7+. Make this as close to your page's background as possible (i.e. white page == white background). */
	background:rgba(255,255,255,0); /* But! Let's make the background fully transparent where we can, we don't actually want to see it if we can help it... */
	list-style:none;
	position:absolute;
	left:-9999px; /* Hide off-screen when not needed (this is more accessible than display:none;) */
	font-size:11px;
}
#nav ul li{
	border-top:#FFF thin solid;
	float:none;
}
#nav ul a{
	white-space:nowrap; /* Stop text wrapping and creating multi-line dropdown items */
}
#nav li:hover ul{ /* Display the dropdown on hover */
	left:0; /* Bring back on-screen when needed */
}
#nav li:hover a{ /* These create persistent hover states, meaning the top-most link stays 'hovered' even when your cursor has moved down the list. */
	background:#999;
	text-decoration:none;
	color:#fff;
}
#nav li:hover ul a{ /* The persistent hover state does however create a global style for links even before they're hovered. Here we undo these effects. */
	text-decoration:none;
}
#nav li:hover ul li a:hover{ /* Here we define the most explicit hover states--what happens when you hover each individual link. */
	background:#333;
	color:#fff;
}

.navbar {
	width:100%;
	height:41px;
	background-color:#efefef;
	margin-top:20px;
	border-bottom:#d6d6d6 thin solid;
}

.highlight {
	background: #999;
	color: #FFF;
}

.highlight a {
	background: #999;
	color: #FFF;
}

#inline { display: none; width: 600px; }

label { margin-right: 12px; margin-bottom: 9px; font-family: Arial, Helvetica, sans-serif; color: #646464; font-size: 1em; }

.txt { 
display: inline-block; 
color: #676767;
width: 420px; 
font-family: Arial, Tahoma, sans-serif; 
margin-bottom: 10px; 
border: 1px dotted #ccc; 
padding: 5px 9px;
font-size: 1.2em;
line-height: 1.4em;
}

.txtarea { 
display: block; 
resize: none;
color: #676767;
font-family: Arial, Tahoma, sans-serif; 
margin-bottom: 10px; 
width: 500px; 
height: 150px;
border: 1px dotted #ccc;
padding: 5px 9px; 
font-size: 1.2em;
line-height: 1.4em;
}

.txt:focus, .txtarea:focus { border-style: solid; border-color: #bababa; color: #444; }

input.error, textarea.error { border-color: #973d3d; border-style: solid; background: #f0bebe; color: #a35959; }
input.error:focus, textarea.error:focus { border-color: #973d3d; color: #a35959; }

#send { 
color: #dee5f0;
display: block;
cursor: pointer;
padding: 5px 11px;
font-size: 1em;
border: solid 1px #224983;
border-radius: 5px;
background: #1e4c99; 
background: -webkit-gradient(linear, left top, left bottom, from(#2f52b7), to(#0e3a7d)); 
background: -moz-linear-gradient(top, #2f52b7, #0e3a7d); 
background: -webkit-linear-gradient(top, #2f52b7, #0e3a7d);
background: -o-linear-gradient(top, #2f52b7, #0e3a7d);
background: -ms-linear-gradient(top, #2f52b7, #0e3a7d);
background: linear-gradient(top, #2f52b7, #0e3a7d);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#2f52b7', endColorstr='#0e3a7d'); 
}
#send:hover {
background: #183d80; 
background: -webkit-gradient(linear, left top, left bottom, from(#284f9d), to(#0c2b6b)); 
background: -moz-linear-gradient(top,  #284f9d, #0c2b6b); 
background: -webkit-linear-gradient(top, #284f9d, #0c2b6b);
background: -o-linear-gradient(top, #284f9d, #0c2b6b);
background: -ms-linear-gradient(top, #284f9d, #0c2b6b);
background: linear-gradient(top, #284f9d, #0c2b6b);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#284f9d', endColorstr='#0c2b6b');
}
#send:active {
color: #8c9dc0; 
background: -webkit-gradient(linear, left top, left bottom, from(#0e387d), to(#2f55b7)); 
background: -moz-linear-gradient(top,  #0e387d,  #2f55b7);
background: -webkit-linear-gradient(top, #0e387d, #2f55b7);
background: -o-linear-gradient(top, #0e387d, #2f55b7);
background: -ms-linear-gradient(top, #0e387d, #2f55b7);
background: linear-gradient(top, #0e387d, #2f55b7);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#0e387d', endColorstr='#2f55b7');
}