@charset "utf-8";
html,body {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
height:100%;
	background: #666666;
	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: #000000;
	background-image: url(../images/Background.gif);
}
.form-box{
	background-image:url(../images/form-back.gif);
	background-repeat: repeat-x;
	border:#000000 1px solid;
	color:#FF0000;
}
/* Tips for Elastic layouts 
1. Since the elastic layouts overall sizing is based on the user's default fonts size, they are more unpredictable. Used correctly, they are also more accessible for those that need larger fonts size since the line length remains proportionate.
2. Sizing of divs in this layout are based on the 100% font size in the body element. If you decrease the text size overall by using a font-size: 80% on the body element or the #container, remember that the entire layout will downsize proportionately. You may want to increase the widths of the various divs to compensate for this.
3. If font sizing is changed in differing amounts on each div instead of on the overall design (ie: #sidebar1 is given a 70% font size and #mainContent is given an 85% font size), this will proportionately change each of the divs overall size. You may want to adjust based on your final font sizing.
*/
.oneColElsCtrHdr #BackgroundContainer {
position:relative;
height:auto !important; /* real browsers */
height:100%; /* IE6: treaded as min-height*/
min-height:100%; /* real browsers */
background-image:url(../images/BackgroundTall.gif);
background-repeat:repeat-x;
padding-top:25px;
}

.oneColElsCtrHdr #container {
position:relative;
	width: 840px;  /* this width will create a container that will fit in an 840px browser window if text is left at browser default font sizes */
	background: #FFFFFF;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 1px solid #000000;
	text-align: left; /* this overrides the text-align: center on the body element. */
	-moz-border-radius-bottomleft: 24px;
	-webkit-border-radius-bottom-left: 24px;
	-moz-border-radius-bottomright: 24px;
	-webkit-border-radius-bottom-right: 24px;
}
.oneColElsCtrHdr #header { 
	background: #FFFFFF; 
	padding: 0;
	height:125px;
} 
.oneColElsCtrHdr #LogoTop{
	position:absolute;
	left:-50px;
	top:-35px;
	z-index:5;
	height:165px;
	width:927px;
}
.oneColElsCtrHdr #LogoBottom{
	position:absolute;
	right:75px;
	top:70px;
	z-index:6;
	height:52px;
	width:494px;
}
.oneColElsCtrHdr #ButtonRow {
	position:relative;
	background-image:url(../images/BackgroundGrid.gif);
	padding: 0 0 0 10px;
	margin:0;
	height:46px;
} 
.oneColElsCtrHdr #CartRow {
	position:relative;
	background:#CCCCCC;
	padding: 0;
	margin-top:7px;
	height:35px;
	font-size:.75em;
}
.oneColElsCtrHdr #LinkRowTop {
	position:relative;
	background:#CCCCCC;
	padding: 0;
	margin-top:7px;
	height:35px;
	font-size:.75em;
	line-height:1.5em;
	text-align:center;
}
.oneColElsCtrHdr #LinkRowTop a{ 
	color:#000000;
	text-decoration:none;
}
.oneColElsCtrHdr #LinkRowTop a:hover{ 
	color:#000000;
	text-decoration:underline;
}
.oneColElsCtrHdr #mainContent {
	padding: 0 10px 10px 10px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	background: #FFFFFF;
	font-size:.8em;
}
.oneColElsCtrHdr #mainContent H1 {
	font-size:1.75em;
	margin:0 0 8px 0;
	color:#663366;
}
.oneColElsCtrHdr #mainContent H2 {
	font-size:1.5em;
	margin:0 0 8px 0;
	color:#663366;
}
.oneColElsCtrHdr #mainContent H3 {
	font-size:1.25em;
	margin:0 0 8px 0;
	color:#663366;
}
.oneColElsCtrHdr #mainContent a:link, #CartRow a:link{
	color:#0066CC;
	text-decoration: none;
	background-color: transparent;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
}
.oneColElsCtrHdr #mainContent a:visited, #CartRow a:visited {
	color:#0066CC;
	text-decoration:none;
	background-color: transparent;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
}
.oneColElsCtrHdr #mainContent a:hover, #CartRow a:hover {
	color:#0066CC;
	text-decoration: none;
	background-color: #CCCC99;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
}
.oneColElsCtrHdr #mainContent a:active, #CartRow a:active {
	color:#0066CC;
	text-decoration: none;
	background-color: #CCCC99;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
}
.oneColElsCtrHdr #footer { 
	position:relative;
	bottom:0;
	padding: 0 0 10px 0; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#DDDDDD;
	font-size:.5em;
	text-align:center;
}
.oneColElsCtrHdr #footer a{ 
	color:#000000;
	text-decoration:none;
}
.oneColElsCtrHdr #footer a:hover{ 
	color:#000000;
	text-decoration:underline;
	background-color:#FFFFFF;
}
.oneColElsCtrHdr #cartBoxes {
	width:100%;
	border-collapse:collapse;
	color:#000000;
}
.oneColElsCtrHdr #cartBoxes th {
	display:none;
}
.oneColElsCtrHdr #cartBoxes td a {
	display:block;
	background-image:url(../images/form-back.gif);
	background-position:top;
	background-repeat:repeat-x;
	border:1px #000000 solid;
	color:#000000;
	text-align:center;
	padding:5px;
	font-family:Georgia, "Times New Roman", Times, serif;
	font-size:1em;
	line-height:2em;
	text-decoration:none;
}
.oneColElsCtrHdr #cartBoxes td a:hover {
	background:#000000;
	border:1px #CA3F08 solid;
	color:#ffffff;
}


/* BUTTONS */

.NavHoriz {
position:absolute;
bottom:10px;
	width:100%;
	border-collapse:collapse;
	text-align:center;
}
.NavHoriz th {
	display:none;
}
.NavHoriz td {
	padding:0 4px;
	white-space:nowrap;
	text-align:center;
	height:20px;
	width:140px;
}
.NavHoriz td a {
	display:block;
	background-image:url(../images/BackgroundButton.gif);
	background-position:center top;
	background-repeat:no-repeat;
	color:#FFFFFF;
	padding:0 5px;
	border-bottom:none;
	font:Georgia, "Times New Roman", Times, serif;
	font-size:13px;
	font-weight:bold;
	text-decoration:none;
	height:20px;

}
.NavHoriz td a:hover {
	background-image:url(../images/BackgroundButtonOver.gif);
	background-repeat:no-repeat;
	color:#FFFFFF;
	font:Georgia, "Times New Roman", Times, serif;
	font-size:13px;
	font-weight:bold;
	text-decoration:none;
	height:20px;
}
.NavHoriz th {
	display:none;
}
.NavHoriz .this a, .try2 .this a:hover {
	background:white;
	border-bottom:1px white solid;
}
