@charset "UTF-8";
/* CSS Document */

body {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: gray;
	background: url(../images/if/blkCrumbleBG.jpg) repeat;
}
.base #container { 
	width: 750px;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	text-align: left;
	background: url(../images/if/contentBG.jpg) repeat-y;
} 
.base #header { 
	background: url(../images/if/headerBG.jpg) no-repeat;
	width: 750px;
	height: 135px;
} 
.base #mainNav {
	width: 652px;
	height: 35px;
	margin: 0 auto;
	background: transparent;
}
.base #sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 150px; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
	background: transparent; /* the background color will be displayed for the length of the content in the column, but no further */
	
	padding: 0 10px 15px 10px;
}
.base #sidebar1 p {
	color: gray;
	text-decoration: none;
	font: normal normal normal 11px/12px Arial, Helvetica, "san serif";
	text-align: left;
	margin-top: 3px;
	margin-left: 30px;
}
.base #sidebar1 h3 {
	color: silver;
	text-decoration: none;
	font: normal bold 13px/15px Arial, Helvetica, "san serif";
	margin-bottom: 9px;
	margin-left: 30px;
	text-transform: none;
}
.base #sidebar1 a.sb {
	color: gray;
	text-decoration: none;
	border-bottom: 1px dotted gray;
}
.base #sidebar1 a:hover.sb {
	color: silver;
	text-decoration:underline;
}
.base #sidebar1 a.sbGold {
	color: #fcde6f;
	text-decoration: none;
	border-bottom: 1px dotted #fcde6f;
}
.base #sidebar1 a:hover.sbGold {
	color: red;
	text-decoration:underline;
}

.base #sidebar2 {
	float: right; /* since this element is floated, a width must be given */
	width: 140px; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
	background: transparent; /* the background color will be displayed for the length of the content in the column, but no further */
	
	padding: 0 20px 15px 10px;
	height: 100%;
}
.base #sidebar2 p {
	color: gray;
	text-decoration: none;
	font: normal normal normal 11px/15px Arial, Helvetica, "san serif";
	text-align: left;
	margin-top: 3px;
}
.base #sidebar2 h3 {
	color: silver;
	text-decoration: none;
	font: normal bold 13px/15px Arial, Helvetica, "san serif";
	margin-bottom: 6px;
}
.base #mainContent { 
	margin: 0 0 0 180px; /* the left margin on this div element creates the column down the left side of the page - no matter how much content the sidebar1 div contains, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends. */
	padding: 0 30px 0 0;
}
.base #mainContent p {
	color: gray;
	font: normal normal normal 13px Arial, Helvetica, "san serif";
	margin-bottom: 6px;
	text-align: left;
	margin-right: 25px;
	letter-spacing: .16em;
}
.base #mainContent h1.rightSlant {
	color: silver;
	font: normal bold 24px Arial, Helvetica, "san serif";
	text-decoration: none;
	background: url(../images/if/h1Content.jpg) no-repeat 0 center;
	text-align: right;
	padding-right: 25px;
	letter-spacing: .2em;
}
.base #mainContent h1.circle {
	color: silver;
	font: normal bold 24px Arial, Helvetica, "san serif";
	text-decoration: none;
	background: url(../images/if/h1Content2.jpg) no-repeat 0 center;
	text-align: right;
	padding-right: 25px;
	letter-spacing: .2em;
}
.base #mainContent h2 {
	color: silver;
	font: normal bold 16px Arial, Helvetica, "san serif";
}
.base #mainContent a {
	color: gray;
	text-decoration:none;
	border-bottom: 1px dotted gray;
}
.base #mainContent a:hover {
	color:  white;
	text-decoration:underline;
	border-bottom: none;
}
.base #mainContent ul {
	list-style-type: none;
	list-style-position: outside;
	font-size: 12px;
	line-height: 16px;
}
.base #mainContent ul li {
	margin-bottom: 8px;
}
.base #mainContent ul.numberBullets {
	list-style-type: decimal;
	list-style-position: outside;
	font-size: 12px;
	line-height: 16px;
}
.base #mainContent ul.numberBullets li {
	margin-bottom: 8px;
	margin-left: 15px;
}

.base #footer { 
	background: url(../images/if/footerBG.jpg) no-repeat;
	width: 750px;
	height: 100px;
} 
.base #footer p {
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding-top: 43px;
	color: gray;
	font: 10px/13px Arial, Helvetica, sans-serif;
	text-align: center;
}
.base #footer a {
	color: gray;
	text-decoration: none;
	border-bottom: 1px dotted transparent;
}
.base #footer a:hover {
	color: silver;
	text-decoration:underline;
	border-bottom: none;
}
.base #copyright {
	background:transparent;
	width: 750px;
	height: 50px;
}
.base #copyright p {
	margin:0;
	padding: 7px 63px 0 0;
	color: gray;
	font: 9px/12px Arial, Helvetica, sans-serif;
	text-align:right;
}
.base #copyright a {
	color: gray;
	text-decoration: none;
	border-bottom: 1px dotted gray;
}
.base #copyright a:hover {
	color: silver;
	bottom-border: 1px dotted gray;
}
.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 */
	float: left;
	margin-right: 8px;
}
.clearfloat { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
	clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
}

/* left navigation stylings */
#nav ul {
	font-family:Arial, Helvetica, "san serif";
}
#nav li {
	color: green;
	list-style-type: none;
}
#nav li a {
	display: block;
	font-size: 80%;
	color: #ebd96a;
	/* background-color: transparent;*/
 	
	text-decoration:none;
	list-style-type:none;
	line-height: 30px;
	padding: 0 4px 0 4px;
}
#nav li a:hover {
	color: white;
	text-decoration:none;
}
#nav li a:focus {
	color: white;
	text-decoration:none;
}

/* photo image stylings */
#photo {
	margin-right:25px;
	font: 10px/13px Arial, Helvetica, sans-serif;
	padding-left: 2px;
	padding-bottom: 8px;
	color: #fdf8c6;
}
#photo img {
	border: 1px outset silver;
}

/* separator bar */
#sepBar {
	width:750px;
	height: 8px;
	margin: 8px auto;
	background: url(../images/if/sepBar.jpg) no-repeat;
}

/* form stylings */
	/* form divs */
	.oneLine {
		position: relative;
		width: 530px;
		height: 25px;
	}
	.oneSet {
		position: relative;
		width: 530px;
		border: 1px outset yellow;
		padding-top: 10px;
		padding-bottom: 10px;
		padding-left: 3px;
		padding-right: 0;
		background-color: #909090;
		color: black;
	}
	.labelDiv {
		float:left;
		width: 150px;
		background:transparent;
		text-align:right;
	}
	.inputDiv {
		float: right;
		width: 380px;
		background: transparent;
	}

label {
	font-size:85%;
	line-height:20px;
}
input {
	font-size:85%;
	font-family: "Courier New", Courier, mono;
	color: black;
	background-color: #bebebe;
	margin: 0 0 0 auto;
}
fieldset {
	border: 1px solid yellow;
	width: 450px;
	margin-right: 10px;
}
legend {
	font-size: 95%;
	color: yellow;
}

/* special case stylings */
.text85 {
	font-size:85%;
}
.italic {
	font-style: italic;
}
.bold {
	font-weight: bold;
}
.gold {
	color: #fcde6f;
}
.reallysmallsuperscript {
	vertical-align: super;
}
.indent25 {
	padding-left: 25px;
}
