/*
LAYOUT.CSS

All layout-related formatting: box model, etc. Anything that requires a unit is found here.
*/

/* TAGS */

html {
	font-size: 62.5%;	/* IE hack allows reliable resizing of em-based text */
	line-height: 1.5em;
}
table, select, input {
	font-size: 100%;	/* IE doesn't cascade html font size to these, so force the issue */
}

body {
}

h1 {
	font-size: 2em;
	margin-bottom: 1em;
}

p {
	margin-bottom: 1.5em;
}

/* MY DIVs & CLASSES */

#wrapper {
	width: 800px;
	margin: auto;
}

#header {
	width: 100%;
	position: relative;
	padding-top: 79px;
}

#logo {
	position: absolute;
	left: 3px;
	top: 4px;
	z-index: 10;
}

#banner_ad {
	width: 486px;
	height: 60px;
	position: absolute;
	right: 41px;
	top: 9px;
}

#nav {
	text-align: right;
	line-height: 0.1em; /* Remove excess below images */
}

/* Make everything inline for a horizontal menu */
#nav img, #nav ul, #nav li, #nav a {
	display: inline;
}

#nav-list-right {
	margin-right: 51px;
}

#nav-list {
	text-align: left;
}

#nav-list li {
}

#nav-list li ul {
	line-height: 1.5em; /* Restore almost-zeroed value from #nav */
}

#nav-list li li {
	padding: 5px 6px 4px 6px;
}

#nav-list li li a {
	text-decoration: none;
}

#nav-list li li a:hover, #nav-list li li a:active {
	text-decoration: underline;
}

/* ---------- DELETE THIS ONCE WHITESPACE BUG IS SOLVED ---------- */
/* (and remove id from image in HTML) */
#IMG_HACK {
	margin-left: -0.36em;
}
* html #IMG_HACK {
	margin-left: 0;
}
/* --------------------------------------------------------------- */

/* --- added from FreeStyle Menu --- */

.menulist, .menulist  ul {
 margin: 0;
 padding: 0; 
 list-style: none;
}

.menulist ul {
 visibility: hidden;
 position: absolute;
top: 13px;
left: 0px;
width: 12em;
}

.menulist li {
/* float: left; */ /* I'm using inline; remove his floats */
 position: relative;
}

* html .menulist ul { z-index: 15;}

.menulist ul li {
 float: none;
 margin-right: 0;
}

/* This semi-commented section exists to fix bugs in IE/Windows (the 'Holly Hack'). \*/
* html .menulist  ul li {
 float: left;
 height: 1%;
}
* html .menulist  ul a {
 height: 1%;
}
/* End Hack */

/* Fix whitespace in IE */
* .menulist ul li {float: left; width: 100%;}
* .menulist ul li a {height: 1%;}

/* --- end added --- */

#main {
}

#intro {
	margin-top: 10px;
	margin-bottom: 10px;
}

#intro p {
	margin-left: 73px;
	margin-right: 23px;
}

#selections p {
	margin-left: 73px;
	margin-right: 23px;
}

#signup {
	margin-top: 10px;
	margin-bottom: 10px;
}

#signup p {
	margin-left: 73px;
	margin-right: 23px;
}

#signup table {
	border-width: 5px;
}

#signup td {
	padding: 2px 2px 2px 2px;
}

#signup ul {
	margin-left: 73px;
	margin-right: 23px;
}

#signup ul { 
	list-style-position: inside;
}
	
#faq {
	margin-bottom: 10px;
}

#faq p {
	margin-left: 73px;
	margin-right: 23px;
}

#faq ul {
	margin-left: 73px;
	margin-right: 23px;
}

#faq ul { 
	list-style-position: inside;
}

#googlead {
	margin-bottom: 10px;
}

#posterad {
	margin-top: 10px;
	margin-bottom: 10px;
}
	
/* 4 rounded corners */
.section_NW, .section_NE, .section_SE, .section_SW {
}

.section_inner {
	padding: 14px;
}

.poster_inner {
	padding: 5px;
	text-align: center;
	float: center;	
}

.more {
	margin-right: 22px;
}

.more img {
	float: right;
}

#news {
	min-height: 37px;
	padding-left: 103px;
}

#news_right {
	padding-right: 103px;
}

#news_box {
}

#news_items {
	padding: 3px 3px 3px 55px;
}

#news p {
	margin-bottom: 0;
	padding-left: 5em; /* This + next = hanging indent, in case news items exceed one line */
	text-indent: -5em;
}

#faq {
	margin-top: 10px;
}



#tee_selections {
}

.one_tee {
	float: left;
	width: 304px;
	margin-left: 38px;
	margin-right: 39px;
	display: inline; /* Fix IE "double margin on some floats" bug (www.positioniseverything.net/explorer/doubled-margin.html) */
}

.closeup {
	display: inline;
	margin-right: 4px;
}

.full_view {
	display: inline;
}

 .item_desc {
}
 
 .item_title {
}

.artist {
}

.price {
}

/* HACKS */

/* Used to clear floats without extra markup */
.clearfix:after {
    content: "."; 
    display: block; 
    height: 0; 
    clear: both; 
    visibility: hidden;
}
.clearfix {display: inline-table;}
/* Hides from IE-mac \*/
* html .clearfix {height: 1%;}
.clearfix {display: block;}
/* End hide from IE-mac */

.Hide_if_IE {
	/* IE stylesheets will set this to display: none */
}
.IE_only_block {
	display: none; /* IE stylesheets will set this to display: [whatever] */
}
