/******************************************************************************
	Author: Rob Layton
	File Name: stylesheet.css
	Date: 8/1/2013
	
	Revision History
	Date			Author			Reason for Change
	---------------------------------------------------------------------------
	
	---------------------------------------------------------------------------
******************************************************************************/

@charset "UTF-8";

/* Text Formatting */

body {
	font-family: Arial;
	font-size: 12px;
	margin: 0px;
	padding: 20px;
	color: #555;
	background: #333366; /* change */
}
.page { font-size: 1em; }

h1 {
	font-size: 2em;
	color: #333366; /* change */
	margin: 0px 0px .5em 0px;
	font-weight: normal;
}
h2 {
	font-size: 1.6em;
	color: #666666; /* change */
	margin: 0px 0px .5em 0px;
}
h3 {
	font-size: 1.25em;
	color: #666666; /* change */
	margin: 0em 0px .25em 0px;
} 
p {
	margin: 0px 0px 1em 0px;
	font-size: 1em;
}
li { margin: 0px 0px 0px 25px; } /* change */
a img { border: none; }
a { color: #333366; } /* change */
a:hover {
	color: #ffcc00; /* change */
}

/* DELETE - sidebar */

/* Layout */

.page {
	position: relative;
	margin: 0px auto 0px auto;
	max-width: 980px;
}
.page header {
	display: block;
	position: relative;
	height: 100px; /* change */
	border-bottom: 1px solid #ddd; /* add */
	-webkit-border-top-left-radius: 10px;
	-webkit-border-top-right-radius: 10px;
	-moz-border-radius-topleft: 10px;
	-moz-border-radius-topright: 10px;
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
	background: url(../images/banner_large.jpg) no-repeat 0px 0px;
	background-color: #fff; /* add */
}
.page header a.logo {
	position: absolute;
	top: 20px; /* change */
	left: 45px;
	display: block;
	width: 310px; /* change */
	height: 70px; /* change */
	background: url(../images/logo_large.png) no-repeat 0px 0px;
}
.page .page_content {
	background-color: #fff;
	padding: 1px 0px 1px 0px;
}

/* DELETE - containers */

.page .page_content .content {
	margin: 15px 20px 20px 20px;
	padding: 0px;
}

/* DELETE - sidebar */

.page nav {
	position: absolute;
	top: 40px; /* change */
	right: 20px;
	text-align: right;
}
.page nav a {
	border: 1px solid #fff;
	border-radius: 16px;
	color: #ffffff;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	padding: 7px 20px 7px 20px;
	text-decoration: none;
	font-weight: bold;
	display: inline-block;
	margin: 0px 2px 4px 2px;
	background-color: #333366; /* change */
	font-size: 1.15em;
}
.page nav a:hover {
	background-color: #ffcc00; /* change */
	color: #fff;
}
.page footer {
	display: block;
	border-top: 1px solid #ddd;
	padding: 15px 10px 15px 20px;
	font-size: .9em;
	color: #757575;
	background-color: #cccccc; /* change */
	-webkit-border-bottom-left-radius: 10px;
	-moz-border-radius-bottomleft: 10px;
	border-bottom-left-radius: 10px;
	-moz-border-radius-bottomright: 10px;
	-webkit-border-bottom-right-radius: 10px;
	border-bottom-right-radius: 10px;
	-moz-box-shadow: 0px 5px 3px rgba(0,0,0,0.3);
	-webkit-box-shadow: 0px 5px 3px rgba(0,0,0,0.3);
	box-shadow: 0px 5px 3px rgba(0,0,0,0.3);
	background: -moz-linear-gradient(top, #cccccc 60%, #cccccc 90%); /* change */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(60%,#cccccc), color-stop(90%,#cccccc)); /* change */
}

.clear_both {
	clear: both;
	line-height: 1px;
}

/* Rules Sensitive to Screen Size */

/* Small Screen Rules */
@media screen and (min-width: 250px) and (max-width: 650px) { /* change */
	body { padding: 10px; }
	.page {
		margin: 0px;
		padding: 0px;
		font-size: 1.2em
	}
	.page header {
		height: 45px; /* change */
		background-image: url(../images/banner_small.jpg);
	}
	.page header a.logo {
		top: 3px;
		left: 25px;
		margin: 0px auto 0px auto;
		width: 155px; /* change */
		height: 35px; /* change */
		background: url(../images/logo_small.png) no-repeat 0px 0px;
	}
	
	/* DELETE - containers */

	.page .page_content .content { margin: 10px 10px 20px 10px; }
	
	/* DELETE - sidebar */

	.page nav {
		position: inherit;
		top: 0px; /* add */
		padding: 15px 0px 1px 0px;
		text-align: left;
	}
	.page nav a {
		color: #fff;
		border: 1px solid #333366; /* change */
		padding: 7px 10px 7px 10px;
		font-weight: bold;
		font-size: 1em;
		display: block;
		margin: 0px 10px 15px 10px;
		background: #333366 url(../images/mobile_link_arrow.png) no-repeat right 50%; /* change */
	}
	.page nav a:hover {
		color: #fff;
		background-color: #ffcc00; /* change */
	}
	.page footer { font-size: .8em; }
}

/* Medium Screen Rules */
@media screen and (min-width: 651px) and (max-width: 850px) { /* change */
	body { padding: 10px; }
	.page {
		margin: 0px;
		padding: 0px;
		font-size: 1.15em
	}
	.page header {
		height: 80px; /* change */
		background-image: url(../images/banner_medium.jpg);
		padding: 10px 50px 0px 75px;
	}
	.page header a.logo {
		top: 15px; /* change */
		left: 25px;
		width: 245px; /* change */
		height: 55px;
		background-image: url(../images/logo_medium.png);
		background-position: 0px 0px;
		background-repeat: no-repeat;
	}
	.page nav { top: 30px; }
	.page nav a {
		border-color: #fff;
		margin-left: 10px;
		padding: 5px 10px 5px 10px;
		font-size: .9em;
	}
	
	/* DELETE - sidebar */
}

/* Large Screen Rules */
@media screen and (min-width: 851px) and (max-width: 10000px) { /* change */
	body { padding: 20px; }	
}
