@charset "utf-8";
/* CSS Document */

body  {
	background: #000;
	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: #FFF;
	font-family: Verdana, Arial, Helvetica, sans-serif;
}

@font-face {
    font-family: 'GillSansStdRegular';
    src: url('../gillsansstd-webfont.eot');
    src: url('../gillsansstd-webfont.eot?#iefix') format('embedded-opentype'),
         url('../gillsansstd-webfont.woff') format('woff'),
         url('../gillsansstd-webfont.ttf') format('truetype'),
         url('../gillsansstd-webfont.svg#GillSansStdRegular') format('svg');
    font-weight: normal;
    font-style: normal;

}

h1 {
	font-size:1.5em;
	margin-top:0;
}

.sf-menu {
	font-family: 'GillSansStdRegular';
	margin-bottom:10px;
}

.twoColFixRtHdr #container {
	width: 1050px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #000;
	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. */
} 
.twoColFixRtHdr #header {
	background: #000;
	padding: 0 1px 0 1px;  /* 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. */
} 
.twoColFixRtHdr #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 */
}
.twoColFixRtHdr #sidebar1 {
	float: right; /* since this element is floated, a width must be given */
	width: 375px; /* 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: #000;
	text-align: right;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	padding-top: 0px;
	padding-right: 10px;
	padding-bottom: 10px;
	padding-left: 35px;
	border-left: 1px solid #F90;
}
.twoColFixRtHdr #mainContent {
	margin: 0 430px 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: 0 20px 0 10px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	border-right: grey;
} 
.twoColFixRtHdr #footer {
	padding: 0 10px 0 20px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#000;
} 
.twoColFixRtHdr #footer p {
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 10px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	text-align: center;
	font-weight: normal;
	font-size: 12px;
}
.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;
}
.Paragraph {
	color: #999;
}
a:link {
	color: #FC9;
}
a:visited {
	color: #FC9;
}
a:hover {
	color: #F90;
}
.Paragraph1 {	color: #CCC;
}

#header {
	color:	#F90;
}.twoColFixRtHdr .screeningWrapper {
	width: 650px;
}

.screeningDiv {
	margin-bottom:50px;
	border-bottom:1px solid #333;
	width:90%;
}

.date {
	font-weight:bold;
}

.review {
	padding-left:50px;
	margin-bottom:30px;
}

.fbLike {
	margin-top:20px;
}

.storePic {
	float:left;
	margin-right:20px;
	margin-bottom:30px;
}

.comment {
	margin-bottom:40px;
}

/* ---------------------Blog Page-------------------- */

.blog {
	margin:0px;
	padding:0px;
}

.blogHead {
	background: #e2e2e2; /* Old browsers */
	background: -moz-linear-gradient(top, #e2e2e2 0%, #dbdbdb 50%, #d1d1d1 51%, #fefefe 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#e2e2e2), color-stop(50%,#dbdbdb), color-stop(51%,#d1d1d1), color-stop(100%,#fefefe)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top, #e2e2e2 0%,#dbdbdb 50%,#d1d1d1 51%,#fefefe 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top, #e2e2e2 0%,#dbdbdb 50%,#d1d1d1 51%,#fefefe 100%); /* Opera11.10+ */
	background: -ms-linear-gradient(top, #e2e2e2 0%,#dbdbdb 50%,#d1d1d1 51%,#fefefe 100%); /* IE10+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e2e2e2', endColorstr='#fefefe',GradientType=0 ); /* IE6-9 */
	background: linear-gradient(top, #e2e2e2 0%,#dbdbdb 50%,#d1d1d1 51%,#fefefe 100%); /* W3C */
	padding-top:20px;
}

ol.tumblr_posts {
	list-style-type:none;
	padding:0px;
}

.tumblr_title {
	font-weight: bold;
	font-style:italic;
	font-size:1.3em;
	color:#F90;
}

.tumblr_post {
	border-bottom:1px solid #F90;
	margin-bottom:30px;
}

.tumblr_text_post {
	padding-bottom:30px;
}

.tumblr_photo_post {
	padding-bottom:30px;
}

.tumblr_quote_post {
	font-size:25px;
	font-family: TendernessRegular;
	font-style: italic;
	font-weight: normal;
	padding:5px;
	padding-bottom:30px;
}

.tumblr_audio_post {
	padding-bottom:30px;
}

.tumblr_link_post {
	padding-bottom:30px;
	font-size:20px;
}

.tumblr_body {
	font-size:16px;
}

.tumblr_caption {
	color: #666;
	font-style: italic;
	font-weight: normal;
	padding:5px;
	font-size:20px;
}

.tumblr_caption p, tumblr_caption a {
	font-weight: normal;
	padding:5px;
	font-size:16px;
	font-style:normal;
}

.audio_player embed {
	padding:1px;
}

.tumblr_source {
	font-size:15px;
	font-weight:bold;
	text-align:right;
}.twoColFixRtHdr #container #sidebar1 div h1 {
	margin-bottom: 0px;
}
.twoColFixRtHdr #container #sidebar1 div .Paragraph {
	margin-top: 0px;
	margin-bottom: 8px;
}
.twoColFixRtHdr #container #sidebar1 div #mc_embed_signup #mc-embedded-subscribe-form {
	margin-top: 5px;
}
