/*
	Summer Ball Website 2008
	Copyright Cardiff University Students' Union 2008
	
	CSS Layouts
*/

* { margin: 0; padding: 0; }
html, body { height: 100%; }
body {
	background: #181818;
	font: 0.81em/1.6em Georgia, Helvetica, Arial, serif;
	color: #eee;
	min-width: 1000px;
}

/* Header */

#header {
	width: 100%; height: 230px;
	background: #000;
}
#header #left, #header #right {
	width: 280px; height: 177px;
}
#header #left {
	float: left;
}
#header #right {
	float: right;
}
#header #logo {
	width: 420px; height: 176px;
	margin: 0 auto; padding-top: 25px;
}
#header #logo h1, #header #logo h2 {
	display: none;
}
#header #logo a {
	display: block;
	width: 420px; height: 176px;
}
#header a#tickets-link {
	position:  absolute;
	display: block;
	width: 152px; height: 86px;
	left: 50%; top: 144px;
	margin-left: 200px;
}

/* Menu (see /stylesheets/menu.css) */

#menu {
	width: 100%; height: 34px;
	background: #333;
}

/* Content */

#content {
	width: 68%;
	min-width: 600px;
	max-width: 900px;
	margin: 20px auto;
}
#content #main {
	width: 63%;
	float: left;
}
#content #sidebar {
	width: 35%;
	float: right;
}
h2 {
	font-size: 1.85em;
	color: #fc0;
	font-weight: normal;
	margin: 20px 0;
}
h3 {
	font-size: 1.46em;
	font-weight: normal;
	margin: 20px 0;
}
#content #sidebar h2 {
	font-size: 1.62em;
}
p {
	margin: 15px;
}
#content a {
	color: #f96;
	text-decoration: none;
	border: none;
	padding: 1px;
}
#content a:hover {
	border-bottom: 1px solid #f96;
}

#splash {
	width: 600px; height: 450px;
	margin: 0 auto;
	padding: 5px;
	border: 3px double #999;
}
#splash-text {
	text-align: center;
}

input[type="text"] {
	font: 0.92em "Lucida Grande", Helvetica, Tahoma;
	padding: 4px;
	border: 1px solid #fff;
	background: #fff;
}
input[type="submit"] {
	font: 0.92em "Lucida Grande", Helvetica, Tahoma;
	padding: 2px;
	font-weight: bold;
}
label { display: block; }

#content .clean, #content .clean *, #content a.clean:hover {
	border: none;
	background: none;
	text-decoration: none;
}
#content .gallery a {
	border: 3px double #888;
	padding: 4px;
	display: block;
	width: 125px;
	line-height: 0;
	float: left;
	margin: 5px;
}
#content .gallery a:hover {
	border: 1px dotted #888;
	padding: 6px;
}
#content .gallery a img { border: none; margin: 0; padding: 0; }

#content ul, ol {
	padding-left: 40px;
}

#content #line-up { margin-top: 35px; }
#content #line-up ul {
	padding-left: 30px;
	list-style: none;
	text-align: center;
	margin: 15px 0;
}
#content #line-up ul li {
	margin: 3px 0;
}
#content #line-up ul#a-list li {
	font-size: 1.85em;
}
#content #line-up ul#b-list li {
	font-size: 1.46em;
}
#content #line-up ul#c-list {
	font-size: 1.23em;
}

#contest-form label {
	float: left;
	text-align: right;
	width: 120px;
	margin-right: 20px;
	font-size: 1.08em;
}
#content form em, #footer form em {
	color: red;
	margin: 5px;
	font: 0.77em "Lucida Grande", Tahoma, Verdana;
	font-style: italic;
}
#footer form em {
	font: 0.92em "Lucida Grande", Tahoma, Verdana;
	font-style: italic;
}
#mailing-list em { display: block; padding-top: 5px; }

.help {
	margin-top: 5px;
	margin-left: 135px;
	display: block;
	font: 0.77em "Lucida Grande", Tahoma, Verdana;
	color: #888;
}
/* Footer */

#footer {
	width: 100%;
	bottom: 0;
	background: #000;
	border-top: 5px solid #333;
}
#footer div {
	width: 65%;
	min-width: 600px;
	max-width: 900px;
	margin: 0 auto;
	padding: 10px;
	text-align: center;
	font: 0.85em "Lucida Grande", Helvetica, Tahoma;
}
#footer a {
	color: #aaa;
	text-decoration: none;
	border: none;
	padding: 1px;
}
#footer a:hover {
	border-bottom: 1px dotted #ccc;
}
#footer label, #footer input { display: inline; margin: 0 7px; }

/* Clear fix */

.clearfix:after {
    content: ".";
    display: block;
    clear: both;
    visibility: hidden;
    line-height: 0;
    height: 0;
}

html[xmlns] .clearfix {
    display: block;
}

* html .clearfix {
    height: 1%;
}