@charset "utf-8";

/*this is for the whole page, sets default font attributes and centers page in browser.*/
body {
	line-height: 16px;
	margin: 25px;
	text-align: middle;
	color: #333333;
	font-family: "Times New Roman", Times, serif;
	font-size: 12px;
	background-color:#CCCCCC;
}

/*attributes for default links, no underlines, */
a:link, a:active, a:visited {
	text-decoration: none;
	color: #333333;
}

/*attributes for hovering over default links, no underlines & changes color */
a:hover {
	text-decoration:none;
	color:#0069D2;
}

/*white and tan classes for different colored text and link behavior*/
.white, .white a:link, .white a:visited {
	COLOR: #FFFFFF;
    TEXT-DECORATION: none;
}
.blue, .blue a:link, .blue a:visited {
	COLOR: #0069D2;
	TEXT-DECORATION: none;
}
.blue a:hover {
	COLOR: #999999;
	TEXT-DECORATION: none;
}
.green {
	color:#363;
	font-weight:bold;
}
/*these are for the main header tags, customize these for headers over creating new style*/
h1 {
	font-size: 22px;
	line-height:30px;
	font-style:italic;
	font-weight:normal;
	color:#FFFFFF;
}
h2 {
	font-size: 12px;
	line-height:16px;

}
h3 {
	font-size: 12px;
}

/*if need to change space above or below all paragraphs*/
p {
	margin-top: 9px;
	margin-bottom: 9px;
}

/*Unordered List, if you're making a bulleted list, this changes indent and such.*/
ul {
	margin-top:0px;
	padding-left:20px
}

/*this is the outer container, telling it margins from the edges of browser & padding around the center box. */
.container {
	margin: 0 auto;
	width:950px;
	border-color:#333333;
	border: 1px solid;
	background:#FFFFFF;
	text-align:center;
}
/*this is for the top menu*/
.menu {
	width:300px;
	font-size:13px;
	text-align:right;
	padding-bottom: 5px;
	padding-right:110px;
	padding-top: 100px;
	float:right;
}

/*this is for the top logo*/
.logo{
	float:left;
	padding-left:100px;
	padding-top: 93px;
	width:400px;
	text-align:left;
}

/*this is the inner box, not including the menu. */
.content {
	width:750px;
	height:500px;
	border-color:#333333;
	border: 1px solid;
	margin-left:100px;
	margin-right:100px;
	text-align:left;
	clear:both;
}

/*this is for the text line below the content box*/
.belowpic {
	text-align:left;
	padding-left:110px;
	margin-bottom:75px;
	margin-top:5px;
}

/*this is for the footer*/
.footer {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 9px;
	text-transform: uppercase;
	color: #333333;
	text-align:center;
}

/*padding can be applied to a td (cell) tag or to image if placing it within a box*/
.padding {
	vertical-align:top;
	padding-top: 10px;
	padding-right: 25px;
	padding-bottom: 10px;
	padding-left: 25px;
}
.padding-topleft {
	padding-top:10px;
	padding-left:25px;
	vertical-align:top;
}
