/*------------------------------------------------------------------
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;
}

body {
	text-align: center;
}

img,
fieldset {
	border: 0;
}

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

}
a:hover {

}

/* Headers
--------------------------------------------------------------------*/
h1 {
	font: italic bold 85% Tahoma, sans-serif;
	margin-bottom: 40px;
}
h1 span {
	background: #ffff00;
}
h2 {
	font: bold 215.4% Helvetica, Arial, sans-serif;
	text-align: center;
}
h3 {
	color: #ff0000;
	font: bold 215.4% Helvetica, Arial, sans-serif;
	margin-bottom: 50px;
	text-align:center;
}
h4 {
	font-size: 116%;
	font-weight: bold;
	margin-bottom: 20px;
}
h5 {
	font-size: 108%;
	font-weight: bold;
	margin-bottom: 20px;
	text-align: center;
}
h6 {
	color: #ff0000;
	font-weight: bold;
	margin-bottom: 15px;
	text-align: center;
}

/* Text
--------------------------------------------------------------------*/
p {
	margin-bottom: 20px;
}

p.alt {
	font-size: 85%;
}

strong {
	font-weight: bold;
}

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

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

dl {

}

ul {
	margin-left: 50px;
}

ul li {
	list-style-type: disc;
	margin-bottom: 20px;
}

ol {

}

/* Containers
--------------------------------------------------------------------*/
#custom-doc {
	margin: 10px auto;
	min-width: 677px;
	text-align: left;
	width: 52.2307692em;
	*width: 50.7751269em;
}

/* Header
--------------------------------------------------------------------*/
div#hd {
	border: 1px solid #999;
	border-bottom: 0;
	text-align: center;
}

/* Navigation
--------------------------------------------------------------------*/
div#hd ul#nav {

}

/* Body
--------------------------------------------------------------------*/
div#bd {
	border: 1px solid #999;
	border-top: 0;
	padding: 20px;
}

div#bd div.box {
	border: 2px dashed #ff0000;
	margin: 0 150px 20px 150px;
	padding: 20px;
	text-align: center;
}

div#bd div.box table {
	margin: 0 auto;
}

/* Footer
--------------------------------------------------------------------*/
div#ft {
	font-size: 77%;
	margin-top: 20px;
	text-align: center;
}

/* 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 */