@charset "UTF-8";

/*  color specs

#9ea374 - Gold throughout (header, footer etc.)
#4c2432 - Maroon Throughout
#005480 - blue for links, roll overs and here now in sub
#3F3F3F - gray of telphone bar under subnav

*/

body {
	margin: 0;
	padding: 0;
	background-color: #FFF;
	background-image: url(../images/sagebg.gif);
	
	font-family: "Arial Narrow", Arial, sans-serif;
	font-size: 90%;
}



/* ~~ Element/tag selectors ~~ */
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: 10px; /* 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. */
}
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:#005480;
	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: #005480;
	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: none;
	color: #4c2432;
}



#wrapper {
	width: 1024px;
	min-height: 769px;
	margin: 0 auto;
	clear: both;
	background-image: url(../images/whiteblock.jpg);
	background-color: #fff;
}

/* ----- HEADER ------ */
#header {
	height: 2px;
	width: 1024px;
	padding: 0;
	margin: 0;
	clear: both;
	display:block;
}





/* ----- LEFT SIDE BAR ------ */


#leftSidebar {
	float: left;
	width: 260px;
}


#navbox {
	width:182px;
	height:395px;
	margin:0 35px;
	padding:0;
	display:block;
	
	
}

#navbox ul {
  list-style: none;
  margin: 0;
  padding: 0;

}

#navbox li {
	margin:0;
	padding:0;
	height: inherit;
	
}

#navbox li a:link, #navbox li a:visited  {
	margin:0;
	padding:0;
	display: block;
	float: left;
	clear: left; 

 
}


* html #navbox li a {
  width: 100%;
}

/* Fix IE. Hide from IE Mac \*/
* html ul li { float: left; }
* html ul li a { height: 1%; }
/* End */




#smediaBox {
	width:219px;

}




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


#mainContent {
	width: 362px;
	float: left;
	margin:120px 0 0 0;
}

#mainContent h1 {
	font-family: Verdana, Geneva, sans-serif;
	font-size:1.2em;
	font-weight:normal;
	color:#4c2432;
	margin:0;
	padding:0px 0 0 10px;
}
#mainContent h2 {
	font-family: Verdana, Geneva, sans-serif;
	font-size: 0.93em;
	font-weight: Normal;
	letter-spacing:0.18em;
	color: #9ea374;
	margin-top: 2px;
	margin-right: 0px;
	margin-bottom: 3px;
	margin-left: 0px;
}


#mainText {
	width:360px;
	margin:55px 0 0 0;
}

#mainText p {
	font-family:"Arial Narrow", Arial, sans-serif;
	font-size:1em;
	line-height:1.5em;
	text-align:justify;
}

#rightAlign p {
	text-align:right;
}

#mainContent2Col {
	width: 700px;
	float: left;
	margin:120px 0 0 0;
}

#mainContent2Col h1 {
	font-family: Verdana, Geneva, sans-serif;
	font-size:1.2em;
	font-weight:normal;
	color:#4c2432;
	margin:0;
	padding:0px 0 0 10px;
}
#mainContent2Col h2 {
	font-family: Verdana, Geneva, sans-serif;
	font-size: 0.93em;
	font-weight: Normal;
	letter-spacing:0.18em;
	color: #9ea374;
	margin-top: 2px;
	margin-right: 0px;
	margin-bottom: 3px;
	margin-left: 0px;
}

#mainText2Col {
	width:700px;
	margin:55px 0 0 0;
}


/* ----- RIGHT SIDEBAR ------ */



#rightSidebar {
	width:400px;
	float: left;
	margin: 0px;
}

#clientButtons {
	height:21px;
	width:340px;
	margin:0 0 15px 25px;
	padding:0;
	display:block;
	clear:both;
}

#transbox {
	width:264px;
	padding:20px 36px 20px 36px;
	background-image:url(../images/whiteblock.jpg);

}


#transboxPhoto {
	width:264px;
	padding:20px 36px;
	text-align:center;
	background-image:url(../images/whiteblock.jpg);
	
}


#transboxBot {
	width:336px;
	padding:0;
	
}

#transbox p {
	color:#005581;
	line-height:1.4em;
	text-align:right;
}

#transboxPhoto H2 {
	font-family:Verdana, Geneva, sans-serif;
	font-size:.95em;
	font-weight:normal;
	color:#4c2432;
	margin:0 0 10px 0;
}

#transboxPhoto img {
	margin:0 auto;
	display:block;
	padding:0;
}



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


#footer {
	position:relative;
	height: 1px;
	width: 1024px;
	padding:0px;
	clear: both;
}




.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;
}

.smaller {	font-size:.85em;
}

.maroon {
	color:#4c2432;
}

.gold {
	color:#9ea374;
}

.blue {
	color:#025483;
}

.blueRight {
	color:#025483;
	text-align: justify;
}

.maroonRight {
	color:#4c2432;
	text-align:right;
}

.bottomborder {
	border-bottom:#4c2432 1px solid;
}
