@charset "utf-8";
body {
	font: 100%/1.4 Verdana, Arial, Helvetica, sans-serif;
	background-color: #444;
	margin: 0;
	padding: 0;
	color: #000000;
	text-shadow: 1px 1px 2px #555;
}

ul, ol, dl {
	padding: 0;
	margin: 0;
}

h1, h2, h3, h4, h5, h6, p {
	margin-top: 0;
	padding-right: 15px;
	padding-left: 15px;
	width: 100%;
}

a img {
	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: #000000;
	text-decoration: none;
	font-weight: bold;
	/* unless you style your links to look extremely unique, it's best to provide underlines for quick visual identification */
}

a:visited {
	color: #000000;
	text-decoration: none;
	font-weight: bold;
}

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;
	font-weight: bold;
}

/* ~~ this container surrounds all other divs giving them their percentage-based width ~~ */

.container {
	width: 80%;
	max-width: 1260px;
	/* a max-width may be desirable to keep this layout from getting too wide on a large monitor. This keeps line length more readable. IE6 does not respect this declaration. */
	min-width: 780px;
	/* a min-width may be desirable to keep this layout from getting too narrow. This keeps line length more readable in the side columns. IE6 does not respect this declaration. */
	background-color: rgb(245, 245, 245);
	margin: 0 auto;
	box-shadow: 5px 5px 10px #333;
	/*border: medium groove #999; the auto value on the sides, coupled with the width, centers the layout. It is not needed if you set the .container's width to 100%. */
	border-radius: 20px;
	overflow: hidden;
}

/* ~~the header is not given a width. It will extend the full width of your layout. It contains an image placeholder that should be replaced with your own linked logo~~ */

.header {
	background-color: #700;
	width: 100%;
	position: relative;
}

/* ~~ This is the layout information. ~~ 



1) Padding is only placed on the top and/or bottom of the div. The elements within this div have padding on their sides. This saves you from any "box model math". Keep in mind, if you add any side padding or border to the div itself, it will be added to the width you define to create the *total* width. You may also choose to remove the padding on the element in the div and place a second div within it with no width and the padding necessary for your design.



*/

.overbanner {
	width: auto;
	text-align: right;
	position: absolute;
	z-index: 100;
	font-family: "Arial Black", Gadget, sans-serif;
	font-style: italic;
	color: #FFF;
	font-weight: bold;
	font-size: x-large;
	text-shadow: 3px 3px 3px #333;
	right: 10px;
	top: 15px;
}

.content {
	text-align: left;
	width: auto;
	padding: 5px;
	margin: 5px;
}

/* ~~ This grouped selector gives the lists in the .content area space ~~ */

.content ul, .content ol {
	padding: 10px;
	margin-left: 20px;
	/* 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. */
}

/* ~~ The navigation list styles (can be removed if you choose to use a premade flyout menu like Spry) ~~ */

.nav {
	width: 100%;
	/* list-style: none;this removes the list marker */
	/* border-top: 2px solid #AAA;this creates the top border for the links - all others are placed using a bottom border on the LI */
	/* margin-bottom: 15px; this creates the space between the navigation on the content below	 

	 text-shadow: 1px 1px 2px #555;

 */
}

.nav li {
	text-decoration: none;
	padding: 10px;
	-webkit-transition: all 1s ease;
	-moz-transition: all 1s ease;
	-ms-transition: all 1s ease;
	-o-transition: all 1s ease;
	transition: all 1s ease;
}

.nav a, .nav a:visited {
	/* grouping these selectors makes sure that your links retain their button look even after being visited */
	text-decoration: none;
	/*border: 3px ridge #AAA;display: block;*/
	width: 15%;
	-webkit-transition: all .5s ease;
	-moz-transition: all .5s ease;
	-ms-transition: all .5s ease;
	-o-transition: all .5s ease;
	transition: all .5s ease;
	border-radius: 5px;
	box-shadow: -1px -1px 1px #FFF, 1px 1px 2px #666;
	background-color: #EEE;
	color: #000000;
	font-weight: bold;
	display: inline-block;
	text-align: center;
	margin: 5px;
	padding-top: 10px;
	padding-bottom: 10px;
	/* 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. */
	/*width: 20%;  this width makes the entire button clickable for IE6. If you don't need to support IE6, it can be removed. Calculate the proper width by subtracting the padding on this link from the width of your sidebar container. */
}

.nav a:hover, .nav a:active, .nav a:focus {
	/* border: 3px ridge #AAA;text-decoration: none;this changes the background and text color for both mouse and keyboard navigators */
	text-decoration: none;
	/*display: block;*/
	width: 15%;
	-webkit-transition: all .5s ease;
	-moz-transition: all .5s ease;
	-ms-transition: all .5s ease;
	-o-transition: all .5s ease;
	transition: all .5s ease;
	border-radius: 5px;
	background-color: #EEE;
	color: #000000;
	font-weight: bold;
	display: inline-block;
	text-align: center;
	box-shadow: -1px -1px 2px #888, 1px 1px 2px #FFF;
	padding-top: 10px;
	padding-bottom: 10px;
	margin: 5px;
}

/* ~~ The footer ~~ */

.footer {
	padding: 10px 0;
	width: 100%;
	font-size: xx-small;
	background: -webkit-linear-gradient(left, black, red);
	/* For Safari */
	background: -o-linear-gradient(right, black, red);
	/* For Opera 11.1 to 12.0 */
	background: -moz-linear-gradient(left, black, red);
	/* For Firefox 3.6 to 15 */
	background: linear-gradient(right, black, red);
	/* Standard syntax (must be last) */
	color: #FFFFFF;
}

/* ~~ miscellaneous float/clear classes ~~ */

.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;
}