/* @override http://localhost:9507/css/base.css */

/*
Layout features:
Grid : 12 x 67px columns with 16px gutters


Structure :
	* Container
		- Header
			` supnav
			` nav
		- Main
			` grid[2-12]
		- Footer
			` footernav
			` copyright
			

Standard Sizes
Fonts:  12/18 - Body
		11/16 - Small

*/

/* @group FORM ELEMENTS */

.findmenu {
	width: 300px;
	margin-bottom: 6px;
}
.width-1col{
	width: 67px;
}

.width-2col{
	width: 150px;
}
/* @end */

/*

 @group TYPOGRAPHY */

/* @group Base Styles */

body {
	font: 12px Arial, Verdana, sans-serif;
	background-color: #fff;
	color: #333;
	line-height: 18px;
}

a {
	color: #0047b6;
	text-decoration: none;
}

a:link {
	
}

a:visited {
	
}

a:hover {
	
}

a:active {
	
}

strong, b {
	font-weight: bold;
}

em, i {
	font-style: italic;
}

sup {
	padding-left: 1px;
	font-size: 10px !important;
	font-weight: normal !important;
	vertical-align: baseline;
	position: relative;
	bottom: 0.33em;
	color: #76797c;
	_position: static !important;
}

.fineprint {
	font-size: 10px !important;
	color: #76797c;
}

.caption {
	font-size: 11px;
	line-height: 15px;
	font-style: italic;
}


p {
	margin-bottom: 18px;
}

p.intro {
	font-size: 14px;
	line-height: 20px;
}
.snug {
	margin-top: -18px;
}
.pad {
	margin-top: 18px;
}
.padtight {
	margin-top: 9px;
}

h1 {
	font-size: 24px;
	line-height: 36px;
	margin-bottom: 18px;
	font-weight: normal;
}

h2 {
	
	font-size: 26px;
	margin-bottom: 8px;
	margin-top: 2px;
	line-height: 26px;
	font-weight: normal;
}

h3 {
	font-weight: bold;
	font-size: 15px;
	line-height: 18px;
}


h4 {
	font-weight: bold;
	font-size: 12px;
	line-height: 16px;
	margin-bottom: 2px;
}

/* @end */

/*
<ul class="list">
Standard unordered list with options
class=" list snug" will remove the gap above the list
class="list flush" 

*/
ul.list {
		list-style-position: outside;
	margin-bottom: 18px;
}
ul.list.snug {
	margin-top: -18px;
}
ul.list li {
	background: url(../resources/list_bullet.gif) no-repeat left 5px;
	padding-left: 8px;
	margin-left: 16px;
}
ul.list.flush li {
	margin-left: 0px;
}

/*
<div class="list">
used to encapsulate a group of <div class="listitem">'s
*/
div.list {
	margin-bottom: 18px;
}
div.list.snug {
	margin-top: -9px;
}
/*
<div class="listitem">
used to create a divided list of items
*/

div.listitem {
	
	margin-top: 9px;
	border-top: 1px solid #bbb;
	padding-top: 9px;
}
div.listitem.first {
	_border-top:none;
		_padding-top:0;
		margin-top: 0;
}

div.listitem h3 {
	
	font-size: 12px;
		line-height: 15px;
	color: #555;
	background: url(../resources/arrow_divlist.gif) no-repeat left 1px;
	padding-left: 9px;
}
div.listitem p {
		color: #555;
	font-size: 11px;
	line-height: 15px;
	margin-bottom: 0;
	padding-left: 9px;
}
div.listitem a {
	font-weight: bold;
}

a.download {
	
	font-weight: bold;
	background: url(../resources/arrow_download.gif) no-repeat left top;
	padding-left: 12px;
}

a.learnmore {
	font-weight: bold;
}


span.button {
	font-size: 11px;
	line-height: 24px;
	padding-bottom: 2px;
	padding-top: 2px;
	_padding-top: 0px;
}

span.button a {
		color: #fff;
	font-weight: bold;
	padding: 2px 22px 3px 10px;
	_padding-top: 1px;
}

.button.blue {
	background: url(../resources/btn_blue_left.gif) no-repeat;
}
.button.blue a {
	background: url(../resources/btn_blue_right.gif) no-repeat right top;
}

.button.ltblue {
	background: url(../resources/btn_ltblue_left.gif) no-repeat;
}
.button.ltblue a {
	background: url(../resources/btn_ltblue_right.gif) no-repeat right top;
}





/* @end */


/* @group STRUCTURE */

#container {
	width: 980px;
	margin: 0 auto;
	position: relative;
}

#header {
	position: relative;
}

#logo {

}

#logo a {
	display: block;
	height: ;
	width: ;
	text-indent: -9999px;
}

#main {
	width: 100%;
	position: relative;
}

#footer {
}

#copyright {
	font-size: 9px;
	color: #666;
	float: right;
}



/* @end */

/* @group GRID */

/* <div class="grid2 first">
   
   12 column grid
   
   grid2 {}
       ^ number of columns wide the unit is
   string the columns together to form a whole
   
   first {}
     ^ removes the margin so that it is flush left
    
   divider {}
      ^ adds a left sided border to the div

*/

.section {
	margin-top: 16px;
}

.gridhalf {
	width: 49%;
	float: left;
}

.grid2 {
	width: 150px;
	margin-left: 16px;
	float: left;
}

.grid3 {


/* grid3 = 4 columns */
	width: 233px;
	margin-left: 16px;
	float: left;
}

.grid4 {


/* grid4 = 3 columns */
	width: 316px;
	margin-left: 16px;
	float: left;
}

.grid5 {


/* grid4 = 3 columns */
	width: 399px;
	margin-left: 16px;
	float: left;
}

.grid6 {


/* grid6 = 2 columns */
	width: 482px;
	margin-left: 16px;
	float: left;
}

.grid7 {
	width: 565px;
	margin-left: 16px;
	float: left;
}

.grid7-2cols {
	/* subdivides the 7 column space into 2 columns */
	width: 274px;
	margin-left: 16px;
	float:  left;
}
.grid7-3cols {
	/* subdivides the 7 column space into 3 columns */
	width: 175px;
	margin-left: 16px;
	float:  left;
}

.grid8 {
	width: 648px;
	margin-left: 16px;
	float: left;
}

.grid9 {
	width: 731px;
	margin-left: 16px;
	float: left;
}

.grid10 {
	width: 814px;
	margin-left: 16px;
	float: left;
}

.grid12 {
/* Full width */
	width: 980px;
}

.grid2.first,
.grid3.first,
.grid4.first,
.grid5.first,
.grid6.first,
.grid7.first,
.grid7-2cols.first,
.grid7-3cols.first,
.grid8.first,
.grid9.first,
grid10.first {
	margin-left: 0;
}


.grid2.divider,.grid3.divider,.grid4.divider,.grid5.divider,.grid6.divider,.grid7.divider,.grid8.divider,.grid9.divider,.grid10.divider {
	margin-left: 6px;
	padding-left: 10px;
	background: url(../resources/vr.gif) repeat-y;
}

.section:after {
	content: ".";
	display: block;
	height: 0;
	clear: both;
	visibility: hidden;
}

.section {
	_zoom: 1;
}

/* @end */

@media print

int {

body, #main, #content {
	background: #fff !important;
	color: #000 !important;
}

a, a:link, a:visited {
	color: #000 !important;
	text-decoration: none;
}

}
