/*------------------------------------------------------------------
Global CSS

Author:			Brandon Quintana <bquintana@brandonquintanaconsulting.com>

Methods: 		RULES ORGANIZATION WITHIN CSS FILES
				Should mirror the html document flow:
				General
					Container
						Header
							Nav
						Body
							Layout Setup
								Modules
						Footer
					Hacks
					(other)
--------------------------------------------------------------------*/

/* Global Styles
--------------------------------------------------------------------*/

* {
	margin: 0;
	padding: 0;
}

html, body {
	background: #b2b7bb;
	font-family: verdana, arial, helvetica, sans-serif;
}

img,
fieldset {
	border: 0;
}

/* Links
--------------------------------------------------------------------*/
a {

}

a:hover {
	color: #ff0000;
}

/* Headers
--------------------------------------------------------------------*/
h1 {
	color: #fff;
	font-size: 108%;
	padding: 20px 0 5px 0;
	text-transform: uppercase;
}
h2 {
	color: #fff;
	font-weight: bold;
	margin-top: 20px;
}
h3 {color: #99ccff;
	font-size: 108%;
	padding: 20px 0 5px 0;
	text-transform: uppercase;

}
h4 {

}
h5 {

}
h6 {

}

/* Text
--------------------------------------------------------------------*/
p {
	color: #fff;
	font-size: 85%;
	letter-spacing: 1px;
	margin-bottom: 20px;
}

/* Often Used Classes
--------------------------------------------------------------------*/
.floatleft {
	float: left;
	display: inline;
}
.floatright {
	float: right;
	display: inline;
}
.alignleft {
    text-align: left;
}
.alignright {
    text-align: right;
}
.aligncenter {
	text-align: center;
}

/* Lists
--------------------------------------------------------------------*/

dl {

}

ul {

}

ol {

}

/* Containers
--------------------------------------------------------------------*/
#custom-doc {
	margin: 15px auto;
	text-align: left;
	width: 67.6923em;
	*width: 66.0002em;
}

#popup-doc {
	margin: 15px auto;
	text-align: left;
	width: 49.2308em;
	*width: 48.0001em;	
}

/* Header
--------------------------------------------------------------------*/
div#hd {
	background: #00457c;
}

/* Navigation
--------------------------------------------------------------------*/
div#hd ul#nav {
	display: inline;
	float: right;
	padding: 10px 20px;
}

div#hd ul#nav li {
	border-left: 1px solid #b2b7bb;
	display: inline;
	float: left;
	line-height: 100%;
	margin-left: 10px;
	padding-left: 10px;
}

div#hd ul#nav li.first {
	border: 0;
}

div#hd ul#nav li a {
	color: #b2b7bb;
	font-weight: bold;
	text-decoration: none;
}

div#hd ul#nav li a:hover {
	color: #ff0000;
	text-decoration: underline;
}

div#hd div.date {
	background: #b2b7bb;
	color: #fff;
	font-size: 85%;
	font-weight: bold;
	padding: 5px 20px;
	text-align: right;
}

/* Body
--------------------------------------------------------------------*/
div#bd {
	background: #00457c url(../i/bottom.jpg) bottom no-repeat;
	padding-bottom: 20px;
}

div#bd a {
	color: #99cccc;
}

div#bd a:hover {
	color: #ff0000;
}

div#bd div.leftsash {
	margin: 20px 10px 0 25px;
}

div#bd div.main {
	margin: 20px 25px 0 10px;
}

div#bd div.main h2 span {
	font-weight: normal;
}

div#bd div.main p {
	font-size: 93%;
	text-align: justify;
	text-indent: 1.5em;
}

div#bd div.main p.aligncenter {
	text-align: center;
	text-indent: 0;
}

div#bd div.main p.alt {
	color: #99ccff;
}

div#bd div.main p.alt2 {
	color: #ccc;
	font-size: 77%;
}

div#bd div.main ul {
	color: #fff;
	margin: 10px 0 30px 40px;
}

div#bd div.main ul li {
	list-style-type: disc;
	margin-bottom: 5px;
}

div#bd div#logo {
	margin-bottom: 20px;
}
.blue {
	color: #99CCCC;
	font-weight: none;
	text-decoration: underline;
	}
	
.purple {
	color: #99C;
	font-weight: none;
	}
	
.spacing li { margin: 15px 0; } 

/* Footer
--------------------------------------------------------------------*/
div#ft {
	color: #00457c;
	margin-top: 10px;
}

/* Clearfix  (http: //www.positioniseverything.net/easyclearing.html)
--------------------------------------------------------------------*/
.clearfix:after {
	content: ".";
	display: block;
	height: 0;
	clear: both;
	visibility: hidden;
}
.clearfix {
	display: inline-block; /* IE/Mac */
}
/* Hides from IE-mac \*/
* html .clearfix {
	height: 1%;
}
.clearfix {
	display: block;
}
/* End hide from IE-mac */