/*  Reset */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {margin: 0;padding: 0;border: 0;font-size: 100%;font: inherit;vertical-align: baseline;}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {display: block;}
body {line-height: 1.3;}
ol, ul {list-style: none;}
blockquote, q {quotes: none;}
blockquote:before, blockquote:after, q:before, q:after {content: ''; content: none;}
table { border-collapse: collapse; border-spacing: 0;}

/* General Styles */
html {
	background:url('images/gold_bg.png') repeat;
}
body {
	color:#cccccc;
	font-family:Arial, Helvetica, sans-serif;
	text-shadow:1px 1px 1px #333;
}
h1 {
	text-align:center;
	font-weight:bold;
	font-size:48px;
}
h2 {
	text-align:left;
	font-size:30px;
	font-weight:bold;
	margin-bottom:10px;
	color:#FDD900;
}
p {
	text-align:left;
	font-size:20px;
	margin-bottom:12px;
}
strong {
	font-weight:bold;
}

/* Layout */
.outer {
	width:100%;
	display:table;
	height:100%;
	position:absolute;
	top:0;
	left:0;
}
.middle {
	vertical-align:middle;
	display:table-cell;
}
#container {
	width:800px;
	background:#000000;
	margin:0 auto;
	border-radius:15px;
	-moz-border-radius:15px;
	box-shadow:0 0 15px #000000;
}
#header {
	width:635px;
	height:229px;
	margin:0 auto 15px;
	background:transparent url('images/TheaterGuru.png') no-repeat;
	text-indent:-9999px;
}
#content {
	margin:0 30px 25px;
	padding-bottom:25px;
}
#subscribe {
	width:500px;
	height:80px;
	margin:20px auto 0;
	color:#000000;
	border-radius:5px;
	-moz-border-radius:5px;
	-webkit-border-radius:5px;
	background-color: #FF0000; 
	background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#FF0000), to(#A41C20));
	background-image: -webkit-linear-gradient(top, #FF0000, #A41C20); 
	background-image:    -moz-linear-gradient(top, #FF0000, #A41C20);
	background-image:     -ms-linear-gradient(top, #FF0000, #A41C20);
	background-image:      -o-linear-gradient(top, #FF0000, #A41C20);
}
#form {
	padding:22px 40px;
	margin:0 auto;
}
.input {
	width:250px;
	padding:5px 7px;
	font-size:20px;
	color:#999999;
	border:none;
	border-radius:5px;
	-moz-border-radius:5px;
	box-shadow:inset 0 0 5px rgba(0,0,0,.75);
}
.input:active, .input:focus {
	color:#000000;
}
.button {
	padding:5px 7px;
	font-size:20px;
	color:#000000;
	text-align:center;
	border:none;
	border-radius:5px;
	-moz-border-radius:5px;
	box-shadow:1px 1px 1px rgba(0,0,0,.5);
	background-color:rgba(255,255,255,.25);
	transition:background-color .1s ease 0;
	-moz-transition:background-color .1s ease 0;
	-webkit-transition:background-color .1s ease 0;
	-o-transition:background-color .1s ease 0;
}
.button:hover {
	background-color:rgba(255,255,255,.5);
	transition:background-color .1s ease 0;
	-moz-transition:background-color .1s ease 0;
	-webkit-transition:background-color .1s ease 0;
	-o-transition:background-color .1s ease 0;
}

.no-case {
	text-transform:none;
}

.tagline {
	color:#f00;
	text-align:
	center;
	margin:-5px -10px 10px;
	text-transform:uppercase;
	font-size:34px;
}
	.tagline .no-case {
		color:#fff;
		font-style:italic;
		font-weight:normal;
		font-size:22px;
	}


@media only screen and (min-device-width : 768px) and (max-device-width : 1024px) and (orientation : portrait) {

#container {
	width:700px;
}
}

/* Special Stuff */
.yellow {
	color:#FDD900;
}
.red {
	color:#FF0000;
}
.left {
	float:left;
}
.right {
	float:right;
}
.clear {
	clear:both;
}