/* SnowBall Classic
#2167d0 - dark blue
#0aaee1 - light blue
#B9D4D3 - lighter blue
#d48d27 - dark brown
#e7c042 - light brown
#f5e6b4 - lighter brown */
body  {
	font: 81.25% Arial, Helvetica, sans-serif;	
	background: #020D1F url(/images/seamless_floral_pattern.png) top center repeat;
	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: #555;
}
.container {
	text-align:left;
}

body, div, p, td, th, ul, li { 
	line-height:1.5em; 
}
ul, ol {
	margin:0 1em;
}
img { 
	border:none; 
}
a {
	color:#9CAD20;
	text-decoration:underline;
}
a:hover {
	color:#067A78;
	text-decoration:underline;
}
h1,h2,h3,h4,h5 {
	font-weight:bold;
}
h1 {
	color:#063B7A;
	font-size:1.6em;
	line-height:1.2em;
}
h2 {
	color:#0aaee1;
	font-size:1.3em;
	line-height:1.4em;
}
h3 {
	color:#063B7A;
	font-size:1.1em;
	line-height:1.3em;
}
form input {
	padding:3px;
	/*width:100%;*/
}
form label {
	cursor:pointer;
	display:block;
	float:left;
	width:150px;
}
form label.nostyle {
	display:inline;
	float:none;
	width:auto;
}
form textarea {
	height:70px;
	padding:3px;
	width:100%;
}
input.text, input.password, select {
	padding:3px;
	width:170px;
	margin:auto;
	border-top:none;
	border-left:none;
	border-right:none;
	
}
input.button, input.submit {
	padding:3px;
}
table { 
	border:none;
	border-collapse:collapse;
}
table tr td {
	padding:0; 
}
ul.whatlist {
	list-style-type:none;
	margin-left:0;
}
a.whatlink {
	color:inherit;
	text-decoration:none;
}
a.whatlink:hover {
	text-decoration:underline;
}
#container { 
	/*width: 780px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: transparent;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: none;
	text-align: left; /* this overrides the text-align: center on the body element. */
} 
#headerContainer { background-color: #fff; }
#header { 
	padding: 1em 0px 0px 0px;  /* this padding matches the left alignment of the elements in the divs that appear beneath it. If an image is used in the #header instead of text, you may want to remove the padding. */
	min-height:50px;
	_height:50px;
	position:relative;
	/*background:#063B7A;*/
	/*background:transparent url('/images/ttf2img.php?text=TITLE&font=PEPSI_pl.ttf&trans=6,59,122&y=40&x=250&left=15&top=33&size=27') top left no-repeat;*/
    /*background:transparent url('/images/header.png?v=3') top center no-repeat;
	background-position:-50px 10px;*/
    text-align:left;
}
/* #header #logo {
	float:left;
	position:relative;
	top:0;
} */
#main-menu {
	/*background: transparent url(/images/bg-main-menu.png) center no-repeat;*/
	border:none;
	border-collapse:collapse;
	text-align:right;
	right:0.75em;
	top:-0.75em;
	position:absolute;
}
#main-menu a { 
	/*border-bottom:2px solid #FFF; /*#CCCCFF;*/
	border-bottom:3px solid #FFF; /*#0066BB;/* #4C91D6; */
	padding:0;
	margin:0 10px;
}
#main-menu a:hover, #main-menu a.on { 
	border-bottom:1px solid #000; /*#255874; #0066BB;/* #4C91D6; */
}
#header h1 {
	margin: 0; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */
	padding: 10px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
	color:#063B7A; 
	line-height:1.2em;
	padding-left:2px; 
	margin-top:2px;
	font-weight:normal;
}
#header h1 a {
	color:#063B7A; 
}
#header h1 a:hover {
	color:#067A78; 
}
#sidebar1 {
	float: right; /* since this element is floated, a width must be given */
	width: 200px; /* 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: 15px 10px;
}
#mainContent { 
	margin: 0 250px 0 0; /* the right margin on this div element creates the column down the right 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: 0px; /*20px; remember that padding is the space inside the div box and margin is the space outside the div box */
} 
#footerOld { 
	border-top: 1px solid #DDD;
	padding: 0 10px 0 20px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	color:#999;
	font-size:0.9em;
	text-align:center;
} 
#footer {
	width:100%; background-color:#9cad20; color:#eee; padding: 5px 0 0 0; border:4px solid #42490e; border-left:none; border-right:none;
}
#footer div {
	text-align:left;
}
#footer a { 
	color:#eee;
}
#footer a:hover {
	background-color:auto;
	color:#ff9; 
}
.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;
}



/* sandbox */


#homeImageContainer {
    background:#9cad20;
	padding:15px 0;
    /* border:1px solid #003366; border-right:none; border-left:none; */
    margin:0 0 1.25em 0;
	text-align:center;
	border-top:4px solid #42490e;
	border-bottom:3px solid #42490e;
}
#homeImage {
	/*background:transparent url('/images/photos/home/panorama1.jpg') top center no-repeat;*/
	height:55px;
}
#homeImageRel {
    position:relative;
    width:450px;
}
#homeImage h1 {
    color:#fff;
    padding-top:5px;
    text-align:left;
    position:absolute;
	top:0px;
	left:0px;
    width:450px;
}
#homeImage h2 {
	color:#fff;
}
#homeImage h1 a { color:#ddf; }
#homeImage h1 a:hover { color:#9EE230; }
#homeImageRel h1.shadow {
    position:absolute;
    top:1px;
    left:-1px;
}
#homeImageRel h1.shadow, #homeImageRel h1.shadow a {
    color:#000;
}
#bodyContainer {
	_height:200px;
	min-height:200px;
}
#credits {
	padding:0.3em 0;
}
#credits, #credits a {
	background:#42490e;
	color:#efc;
	text-decoration:none;
}
#credits a:hover { text-decoration:underline; }
#sidebarContainer { margin-top:6px; }
#sidebarContainer.right { margin-top:3px; }
#sidebarContainer.right p, #sidebarContainer.right h3 {  text-align:right; }
#sidebarContainer.right h3 { border-top:1px dotted #ddf; padding-top:1em; }
#sidebarContainer.right h2 {  text-align:right; }
#sidebarContainer.right input.text { width:35px; text-align:right }
#sidebarContainer.right input.text.specify { width:60px; }
#page { width:870px; padding:0; background:#fff; border-bottom:3px solid #42490e; }
#pageBackgroundTop { background: transparent url('/images/seamless_floral_pattern_top_16.png') top repeat-x; }
.cell { display:inline; margin:1.5em; line-height:120px; }
ul.horizontal li {
	font-size:1.1em;
	line-height:4em;
	display:inline;
	text-align:center;
	list-style:none;
	white-space:nowrap;
	margin:0 0.7em;
	font-weight:bold;
}