/*
____________________________________________________________________________
CSS DOCUMENT

 * Authored by Brad Shaw
 * brad.shaw@deepbass.com
 * deepbass.com

 * Copyrights, credits and inspiration are noted in the humans.txt file */


/*
____________________________________________________________________________
CONTENTS

 * HTML5 BOILERPLATE
   - Reset
   - Font Normalization
   - Minimal Base Styles
 * TYPOGRAPHY
   - Font Stack Reference
   - @font-face
   - Global Fonts
   - Headings
   - Paragraphs
   - Last Children
   - Ampersands
   - Links
   - Blockquotes
   - Horizontal Rules
   - List Styles
   - Drop Caps
   - Other Default Styles
 * 984px GRID SYSTEM
   - Containers
   - Grid - Global
   - Grid - Children (Alpha ~ First, Omega ~ Last)
   - Grid - 12 Columns
   - Prefix Extra Space - 12 Columns
   - Suffix Extra Space - 12 Columns
   - Push Space - 12 Columns
   - Pull Space - 12 Columns
 * STRUCTURE
   - Layout Grids
   - No Javascript Alert
   - Main Structure (html, body)
   - Background Columns
   - Body Drop Shadow
   - Rounded Corners
   - Vertical Dividers
   - Equal Columns
   - Pre Header
   - Header
   - Subheader
   - Search
   - Feature
   - Breadcrumbs
   - Buttons
   - Tables
   - Image Styles
   - Slickbox
   - Sticky Footer
   - Pre Footer
   - Footer
   - Sub Footer
 * FORMS
   - Forms
   - Fieldsets
   - Legends
   - Labels
   - Text Inputs
   - Text Fields
   - Dropdowns
   - Radio Buttons
   - Check Boxes
   - Buttons
 * SUPERFISH NAVIGATION
   - Essential Styles
   - Skin
   - Arrows
   - Shadows
 * HTML5 BOILERPLATE
   - Non-Semantic Helper Clases (Includes Clearfix)
   - Media Queries
   - Print Styles */


/*
____________________________________________________________________________
HTML5 BOILERPLATE ***/

/*
____________________________________________________________________________
Reset */

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

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

blockquote, q { quotes: none; }

blockquote:before, blockquote:after,
q:before, q:after { content: ""; content: none; }

ins { background-color: #ff9; color: #000; text-decoration: none; }

mark { background-color: #ff9; color: #000; font-style: italic; font-weight: bold; }

del { text-decoration: line-through; }

abbr[title], dfn[title] { border-bottom: 1px dotted; cursor: help; }

table { border-collapse: collapse; border-spacing: 0; }

hr { display: block; height: 1px; border: 0; border-top: 1px solid #ccc; margin: 1em 0; padding: 0; }

input, select { vertical-align: middle; }

/*
____________________________________________________________________________
Font normalization inspired by YUI Library's fonts.css: developer.yahoo.com/yui/ */

body { font:13px/1.231 sans-serif; *font-size: small; } /* Hack retained to preserve specificity */
select, input, textarea, button { font: 99% sans-serif; }

/* Normalize monospace sizing:
   en.wikipedia.org/wiki/MediaWiki_talk:Common.css/Archive_11#Teletype_style_fix_for_Chrome */
pre, code, kbd, samp { font-family: monospace, sans-serif; }

/*
____________________________________________________________________________
Minimal Base Styles */

/* Always force a scrollbar in non-IE */
html { overflow-y: scroll; }

/* Accessible focus treatment: people.opera.com/patrickl/experiments/keyboard/test */
a:hover, a:active { outline: none; }

ul, ol { margin-left: 2em; }
ol { list-style-type: decimal; }

/* Remove margins for navigation lists */
nav ul, nav li { margin: 0; list-style: none; list-style-image: none; }

small { font-size: 85%; }
strong, th { font-weight: bold; }

td { vertical-align: top; }

/* Set sub, sup without affecting line-height: gist.github.com/413930 */
sub, sup { font-size: 75%; line-height: 0; position: relative; }
sup { top: -0.5em; }
sub { bottom: -0.25em; }

pre {
  /* www.pathf.com/blogs/2008/05/formatting-quoted-code-in-blog-posts-css21-white-space-pre-wrap/ */
  white-space: pre; white-space: pre-wrap; word-wrap: break-word;
  padding: 15px;
}

textarea { overflow: auto; } /* www.sitepoint.com/blogs/2010/08/20/ie-remove-textarea-scrollbars/ */

.ie6 legend, .ie7 legend { margin-left: -7px; } 

/* Align checkboxes, radios, text inputs with their label by: Thierry Koblentz tjkdesign.com/ez-css/css/base.css */
input[type="radio"] { vertical-align: text-bottom; }
input[type="checkbox"] { vertical-align: bottom; }
.ie7 input[type="checkbox"] { vertical-align: baseline; }
.ie6 input { vertical-align: text-bottom; }

/* Hand cursor on clickable input elements */
label, input[type="button"], input[type="submit"], input[type="image"], button { cursor: pointer; }

/* Webkit browsers add a 2px margin outside the chrome of form elements */
button, input, select, textarea { margin: 0; }

/* Colors for form validity */
input:valid, textarea:valid   {  }
input:invalid, textarea:invalid {
   border-radius: 1px; -moz-box-shadow: 0px 0px 5px red; -webkit-box-shadow: 0px 0px 5px red; box-shadow: 0px 0px 5px red;
}
.no-boxshadow input:invalid, .no-boxshadow textarea:invalid { background-color: #f0dddd; }


/* These selection declarations have to be separate
   No text-shadow: twitter.com/miketaylr/status/12228805301
   Also: hot pink! */
::-moz-selection{ background: #ff5e99; color:#fff; text-shadow: none; }
::selection { background:#ff5e99; color:#fff; text-shadow: none; }

/* j.mp/webkit-tap-highlight-color */
a:link { -webkit-tap-highlight-color: #ff5e99; }

/* Make buttons play nice in IE:
   www.viget.com/inspire/styling-the-button-element-in-internet-explorer/ */
button {  width: auto; overflow: visible; }

/* Bicubic resizing for non-native sized IMG:
   code.flickr.com/blog/2008/11/12/on-ui-quality-the-little-things-client-side-image-resizing/ */
.ie7 img { -ms-interpolation-mode: bicubic; }


/*
____________________________________________________________________________
TYPOGRAPHY ***/

/*
____________________________________________________________________________
@font-face */

@font-face {
	font-family: 'DejaVuSansCondensed';
	src: url('../fonts/sans-serif/DejaVu-Sans-fontfacekit/DejaVuSansCondensed-webfont.eot');
	src: url('../fonts/sans-serif/DejaVu-Sans-fontfacekit/DejaVuSansCondensed-webfont.eot?iefix') format('eot'),
			 url('../fonts/sans-serif/DejaVu-Sans-fontfacekit/DejaVuSansCondensed-webfont.woff') format('woff'),
			 url('../fonts/sans-serif/DejaVu-Sans-fontfacekit/DejaVuSansCondensed-webfont.ttf') format('truetype'),
			 url('../fonts/sans-serif/DejaVu-Sans-fontfacekit/DejaVuSansCondensed-webfont.svg#webfontxsYM2XhJ') format('svg');
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: 'DejaVuSansCondensedBold';
	src: url('../fonts/sans-serif/DejaVu-Sans-fontfacekit/DejaVuSansCondensed-Bold-webfont.eot');
	src: url('../fonts/sans-serif/DejaVu-Sans-fontfacekit/DejaVuSansCondensed-Bold-webfont.eot?iefix') format('eot'),
			 url('../fonts/sans-serif/DejaVu-Sans-fontfacekit/DejaVuSansCondensed-Bold-webfont.woff') format('woff'),
			 url('../fonts/sans-serif/DejaVu-Sans-fontfacekit/DejaVuSansCondensed-Bold-webfont.ttf') format('truetype'),
			 url('../fonts/sans-serif/DejaVu-Sans-fontfacekit/DejaVuSansCondensed-Bold-webfont.svg#webfontkge96hEp') format('svg');
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: 'DejaVuSerifCondensed';
	src: url('../fonts/serif/DejaVu-Serif-fontfacekit/DejaVuSerifCondensed-webfont.eot');
	src: url('../fonts/serif/DejaVu-Serif-fontfacekit/DejaVuSerifCondensed-webfont.eot?iefix') format('eot'),
			 url('../fonts/serif/DejaVu-Serif-fontfacekit/DejaVuSerifCondensed-webfont.woff') format('woff'),
			 url('../fonts/serif/DejaVu-Serif-fontfacekit/DejaVuSerifCondensed-webfont.ttf') format('truetype'),
			 url('../fonts/serif/DejaVu-Serif-fontfacekit/DejaVuSerifCondensed-webfont.svg#webfontTggiuN3g') format('svg');
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: 'DejaVuSerifCondensedItalic';
	src: url('../fonts/serif/DejaVu-Serif-fontfacekit/DejaVuSerifCondensed-Italic-webfont.eot');
	src: url('../fonts/serif/DejaVu-Serif-fontfacekit/DejaVuSerifCondensed-Italic-webfont.eot?iefix') format('eot'),
			 url('../fonts/serif/DejaVu-Serif-fontfacekit/DejaVuSerifCondensed-Italic-webfont.woff') format('woff'),
			 url('../fonts/serif/DejaVu-Serif-fontfacekit/DejaVuSerifCondensed-Italic-webfont.ttf') format('truetype'),
			 url('../fonts/serif/DejaVu-Serif-fontfacekit/DejaVuSerifCondensed-Italic-webfont.svg#webfontA4fD3JE8') format('svg');
	font-weight: normal;
	font-style: normal;

}

@font-face {
	font-family: 'DejaVuSerifCondensedBold';
	src: url('../fonts/serif/DejaVu-Serif-fontfacekit/DejaVuSerifCondensed-Bold-webfont.eot');
	src: url('../fonts/serif/DejaVu-Serif-fontfacekit/DejaVuSerifCondensed-Bold-webfont.eot?iefix') format('eot'),
			 url('../fonts/serif/DejaVu-Serif-fontfacekit/DejaVuSerifCondensed-Bold-webfont.woff') format('woff'),
			 url('../fonts/serif/DejaVu-Serif-fontfacekit/DejaVuSerifCondensed-Bold-webfont.ttf') format('truetype'),
			 url('../fonts/serif/DejaVu-Serif-fontfacekit/DejaVuSerifCondensed-Bold-webfont.svg#webfontTEORlH35') format('svg');
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: 'DejaVuSerifCondensedBoldItalic';
	src: url('../fonts/serif/DejaVu-Serif-fontfacekit/DejaVuSerifCondensed-BoldItalic-webfont.eot');
	src: url('../fonts/serif/DejaVu-Serif-fontfacekit/DejaVuSerifCondensed-BoldItalic-webfont.eot?iefix') format('eot'),
			 url('../fonts/serif/DejaVu-Serif-fontfacekit/DejaVuSerifCondensed-BoldItalic-webfont.woff') format('woff'),
			 url('../fonts/serif/DejaVu-Serif-fontfacekit/DejaVuSerifCondensed-BoldItalic-webfont.ttf') format('truetype'),
			 url('../fonts/serif/DejaVu-Serif-fontfacekit/DejaVuSerifCondensed-BoldItalic-webfont.svg#webfontTEORlH35') format('svg');
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: 'BodoniRegular';
	src: url('../fonts/open-amp/Bodoni/bodoni-openamp.eot');
	src: url('../fonts/open-amp/Bodoni/bodoni-openamp.eot?iefix') format('eot'),
			 url('../fonts/open-amp/Bodoni/bodoni-openamp.woff') format('woff'),
			 url('../fonts/open-amp/Bodoni/bodoni-openamp.ttf') format('truetype'),
			 url('../fonts/open-amp/Bodoni/bodoni-openamp.svg#webfonthPx7eFJu') format('svg');
	font-weight: normal;
	font-style: normal;
}

/*
____________________________________________________________________________
Global Fonts */

body {
	font: 14px/21px 'DejaVuSansCondensed', Arial, Helvetica, sans-serif;
	color: #f9f9f4;
}

/*
____________________________________________________________________________
Headings */

h1, h2, h3 {
	font-family: 'DejaVuSerifCondensed', Georgia, serif;
}

h4, h5, h6 {
	font-family: 'DejaVuSerifCondensedBold', Georgia, serif;
}

h1, h2, h3, h4, h5, h6 {
	font-weight: normal;
	padding: 0 0 6px;
	margin: 0 0 14px;
	color: #999;
	border-bottom: 1px dotted #444;
	text-shadow: 0 -1px 0 rgba(0,0,0,1.0);
}

h1 {
	font-size: 36px;
	line-height: 42px;
}

h2 {
	font-size: 32px;
	line-height: 42px;
}

h3 {
	font-size: 18px;
}

h4 {
	font-size: 16px;
}

h5 {
	font-size: 14px;
}

h6 {
	font-size: 14px;
	text-transform: uppercase;
}

.descriptive {
	font-family: 'DejaVuSerifCondensedBoldItalic';
	color: #8ca0b4;
}

/*
____________________________________________________________________________
Paragraphs */

p {
	margin: 0 0 21px;
}

.intro {
	font-size: 16px;
}

/*
____________________________________________________________________________
Last Children */

.rounded p.last-child, .equal p.last-child, .equal ul.last-child {
	margin-bottom: 0;
}

/*
____________________________________________________________________________
Ampersands */

.amp {
	font: 110%/1 'BodoniRegular' ,serif;
}

/*
____________________________________________________________________________
Links */

a, a:active, a:visited {
	color: #8ca0b4;
	text-decoration: none;
}

a:hover {
	color: #fff;
	text-decoration: underline;
}

/*
____________________________________________________________________________
Blockquotes */

blockquote {
	margin: 21px 0;
	padding: 0 0 0 42px;
	font-size: 16px;
	color: #f9f9f4;
	background: url(../img/icon-quotes.png) no-repeat;
}

/*
____________________________________________________________________________
Horizontal Rules */

hr {
	height: 0;
	margin: 0 0 19px;
	padding: 0;
	font-size: 0;
	line-height: 0;
	border-top: 1px solid #000;
	border-bottom: 1px solid #444;
	clear: both;
}

hr.dotted {
	border-top: 2px dotted #444;
	border-style: dotted none none;
}

hr.compact {
	margin: -11px 0 9px;
}

.top {
	display: block;
	font-size: 10px;
	margin-right: -80px;
	position: relative;
	text-align: right;
	color: #ff6c00;
}

.top:hover {
	color: #ff9500;
}

.divider {
	display: block;
	margin: 20px 80px 19px 0;
	line-height: 0;
	border-top: 1px solid #000;
	border-bottom: 1px solid #444;
}

/*
____________________________________________________________________________
List Styles */

ul {
	margin: 0 0 21px 24px;
	list-style: disc outside;
}

ol {
	margin: 0 0 21px 24px;
	list-style: decimal outside;
}

ul ul,
ol ol,
ul li,
ol li,
li ul,
li ol,
li li {
	margin-bottom: 0;
}

ol.latin {
	list-style-type: lower-latin;
}

ol.roman {
	list-style-type: lower-roman;
}

.bullets li {
	margin: 0 0 0 -24px;
	padding: 0 0 0 24px;
	list-style: none;
	background: url(../img/bullet-round-blue.png) 0 0 no-repeat;
}

.squares li {
	margin: 0 0 0 -24px;
	padding: 0 0 0 24px;
	list-style: none;
	background: url(../img/bullet-square-blue.png) 0 0 no-repeat;
}

.smallchecks li {
	margin: 0 0 0 -24px;
	padding: 0 0 0 24px;
	list-style: none;
	background: url(../img/bullet-checkmark-blue.png) 0 0 no-repeat;
}

.largechecks li {
	margin: 0 0 0 -24px;
	padding: 0 0 0 24px;
	list-style: none;
	background: url(../img/bullet-square-blue.png) 0 0 no-repeat;
}

.arrows li {
	margin: 0 0 0 -24px;
	padding: 0 0 0 24px;
	list-style: none;
	background: url(../img/bullet-arrow.png) 0 0 no-repeat;
}

.stars li {
	margin: 0 0 0 -24px;
	padding: 0 0 0 24px;
	list-style: none;
	background: url(../img/bullet-star.png) 0 0 no-repeat;
}

.rosette li {
	margin: 0 0 0 -24px;
	padding: 0 0 0 24px;
	list-style: none;
	background: url(../img/bullet-rosette.png) 0 0 no-repeat;
}

.color {
	color: #ff6c00;
}

.color_bullets {
	color: #f9f9f4;
}

/*
____________________________________________________________________________
Drop Caps */

.dropcap1 {
	display: block;
	float: left;
	font-family: 'DejaVuSerifCondensed', 'Trebuchet MS', Tahoma, Arial, sans-serif;
	font-size: 73px;
	line-height: 61px;
	margin: 0 8px 0 0;
	padding: 2px 0 0 0;
}

.dropcap2 {
	display: block;
	float: left;
	font-family: 'DejaVuSerifCondensed', 'Trebuchet MS', Tahoma, Arial, sans-serif;
	font-size: 73px;
	line-height: 61px;
	margin: 0 8px 0 -5px;
	padding: 2px 5px 0;
	color: #f9f9f4;
	background: #333;
}

.dropcap3 {
	display: block;
	float: left;
	font-family: 'DejaVuSerifCondensed', 'Trebuchet MS', Tahoma, Arial, sans-serif;
	font-size: 73px;
	line-height: 60px;
	margin: 0 8px 0 -5px;
	padding: 1px 4px 0;
	border: 1px solid #000;
	background: #000;
	-webkit-border-radius: 5px;
	   -moz-border-radius: 5px;
	        border-radius: 5px;
	-webkit-box-shadow: 0px 0px 4px #888, inset 0px 0px 4px #333;
	   -moz-box-shadow: 0px 0px 4px #888, inset 0px 0px 4px #333;
	        box-shadow: 0px 0px 4px #888, inset 0px 0px 4px #333;
	behavior: url(pie/PIE.php);
}

.dropcap4 {
	display: block;
	float: left;
	font-family: 'DejaVuSerifCondensed', 'Trebuchet MS', Tahoma, Arial, sans-serif;
	font-size: 73px;
	line-height: 60px;
	margin: 0 8px 0 -5px;
	padding: 1px 4px 0;
	border: 1px solid #666;
	background: #000;
}

.dropcap5 {
	display: block;
	width: 60px;
	height: 60px;
	float: left;
	font-family: 'DejaVuSerifCondensed', 'Trebuchet MS', Tahoma, Arial, sans-serif;
	font-size: 48px;
	line-height: 60px;
	text-align: center;
	margin: 0 8px 0 -5px;
	border: 1px solid #000;
	background: #000;
	-webkit-border-radius: 31px;
	   -moz-border-radius: 31px;
	        border-radius: 31px;
	-webkit-box-shadow: 0px 0px 4px #888, inset 0px 0px 4px #333;
	   -moz-box-shadow: 0px 0px 4px #888, inset 0px 0px 4px #333;
	        box-shadow: 0px 0px 4px #888, inset 0px 0px 4px #333;
	behavior: url(pie/PIE.php);
}

.dropcap6 {
	display: block;
	float: left;
	font-family: 'DejaVuSerifCondensed', 'Trebuchet MS', Tahoma, Arial, sans-serif;
	font-size: 73px;
	line-height: 60px;
	color: #f9f9f4;
	margin: 0 8px 0 -5px;
	padding: 2px 6px 0;
	background: url(../img/bg-dropcap5.png);
	-webkit-background-size: 100% 100%;
	   -moz-background-size: 100% 100%;
	     -o-background-size: 100% 100%;
	        background-size: 100% 100%;
	behavior: url(pie/PIE.php);
}

/*
____________________________________________________________________________
Other Default Styles */

dl {
	margin-bottom: 21px;
}

small {
	font-size: 11px;
	line-height: 18px;
}

strong {
	font-weight: bold;
}

em {
	font-style: italic;
}

strong em {
	
}

.attention {
	color: #cc0000;
}

.center {
	text-align: center;
}

/*
____________________________________________________________________________
END TYPOGRAPHY ***/


/*
____________________________________________________________________________
984px GRID SYSTEM ***/

/*
____________________________________________________________________________
Containers */

.container_12
{
	position: relative;
	width: 984px;
	margin: 0 auto;
}

/*
____________________________________________________________________________
Grid - Global */

.grid_1,
.grid_2,
.grid_3,
.grid_4,
.grid_5,
.grid_6,
.grid_7,
.grid_8,
.grid_9,
.grid_10,
.grid_11,
.grid_12 {
	position: relative;
	display: inline;
	float: left;
	margin: 0 5px;
	padding: 0 15px;
}

.push_1, .pull_1,
.push_2, .pull_2,
.push_3, .pull_3,
.push_4, .pull_4,
.push_5, .pull_5,
.push_6, .pull_6,
.push_7, .pull_7,
.push_8, .pull_8,
.push_9, .pull_9,
.push_10, .pull_10,
.push_11, .pull_11 {
	position: relative;
}

/*
____________________________________________________________________________
Grid - Children (Alpha ~ First, Omega ~ Last) */

.alpha {margin-left: -15px;}
.omega {margin-right: -15px;}

/*
____________________________________________________________________________
Grid - 12 Columns */

.container_12 .grid_1 {width: 42px;}
.container_12 .grid_2 {width: 124px;}
.container_12 .grid_3 {width: 206px;}
.container_12 .grid_4 {width: 288px;}
.container_12 .grid_5 {width: 370px;}
.container_12 .grid_6 {width: 452px;}
.container_12 .grid_7 {width: 534px;}
.container_12 .grid_8 {width: 616px;}
.container_12 .grid_9 {width: 698px;}
.container_12 .grid_10 {width: 780px;}
.container_12 .grid_11 {width: 862px;}
.container_12 .grid_12 {width: 944px;}

/*
____________________________________________________________________________
Prefix Extra Space - 12 Columns */

.container_12 .prefix_1 {padding-left: 82px;}
.container_12 .prefix_2 {padding-left: 164px;}
.container_12 .prefix_3 {padding-left: 246px;}
.container_12 .prefix_4 {padding-left: 328px;}
.container_12 .prefix_5 {padding-left: 410px;}
.container_12 .prefix_6 {padding-left: 492px;}
.container_12 .prefix_7 {padding-left: 574px;}
.container_12 .prefix_8 {padding-left: 656px;}
.container_12 .prefix_9 {padding-left: 738px;}
.container_12 .prefix_10 {padding-left: 820px;}
.container_12 .prefix_11 {padding-left: 902px;}

/*
____________________________________________________________________________
Suffix Extra Space - 12 Columns */

.container_12 .suffix_1 {padding-right: 82px;}
.container_12 .suffix_2 {padding-right: 164px;}
.container_12 .suffix_3 {padding-right: 246px;}
.container_12 .suffix_4 {padding-right: 328px;}
.container_12 .suffix_5 {padding-right: 410px;}
.container_12 .suffix_6 {padding-right: 492px;}
.container_12 .suffix_7 {padding-right: 574px;}
.container_12 .suffix_8 {padding-right: 656px;}
.container_12 .suffix_9 {padding-right: 738px;}
.container_12 .suffix_10 {padding-right: 820px;}
.container_12 .suffix_11 {padding-right: 902px;}

/*
____________________________________________________________________________
Push Space - 12 Columns */

.container_12 .push_1 {left: 82px;}
.container_12 .push_2 {left: 164px;}
.container_12 .push_3 {left: 246px;}
.container_12 .push_4 {left: 328px;}
.container_12 .push_5 {left: 410px;}
.container_12 .push_6 {left: 492px;}
.container_12 .push_7 {left: 574px;}
.container_12 .push_8 {left: 656px;}
.container_12 .push_9 {left: 738px;}
.container_12 .push_10 {left: 820px;}
.container_12 .push_11 {left: 902px;}

/*
____________________________________________________________________________
Pull Space - 12 Columns */
.container_12 .pull_1 {left: -82px;}
.container_12 .pull_2 {left: -164px;}
.container_12 .pull_3 {left: -246px;}
.container_12 .pull_4 {left: -328px;}
.container_12 .pull_5 {left: -410px;}
.container_12 .pull_6 {left: -492px;}
.container_12 .pull_7 {left: -574px;}
.container_12 .pull_8 {left: -656px;}
.container_12 .pull_9 {left: -738px;}
.container_12 .pull_10 {left: -820px;}
.container_12 .pull_11 {left: -902px;}

/*
____________________________________________________________________________
END GRID SYSTEM ***/


/*
____________________________________________________________________________
STRUCTURE ***/

/*
____________________________________________________________________________
Layout Grids */

/* horizontal and vertical grids that can be commented in/out in the header to provide layout guidance */

#gridhorz {
	position: absolute;
	bottom: 0;
	width: 984px;
	height: 100%;
	margin-left: 50%;
	left: -492px;
	z-index: 20;
	background: url(../img/grid-horz-984-72-42.png);
}

#gridvert {
	position: absolute;
	bottom: 0;
	width: 984px;
	height: 100%;
	margin-left: 50%;
	left: -492px;
	z-index: 20;
	background: url(../img/grid-vert-21.png);
}

/*
____________________________________________________________________________
No Javascript Alert */

.js #jsnotice {
	display: none;
}

.no-js #jsnotice {
	position: relative;
	margin-bottom: 21px;
	padding: 20px 14px 0;
	text-align: center;
	border: 1px solid #ff0000;
	background: #ffc;
	-webkit-background-clip: padding-box;
	-webkit-border-radius: 5px;
	   -moz-border-radius: 5px;
	        border-radius: 5px;
	-webkit-box-shadow: 0px 0px 4px #999, inset 0px 0px 4px #ff0000;
	   -moz-box-shadow: 0px 0px 4px #999, inset 0px 0px 4px #ff0000;
	        box-shadow: 0px 0px 4px #999, inset 0px 0px 4px #ff0000;
	behavior: url(pie/PIE.php);
}

/*
____________________________________________________________________________
Main Structure */

html {
	height: 100%;
	background: #141414 url(../img/bg-noise.png)
}

body {
	position: relative;
	width: 984px;
	margin: 0 auto;
	background: url(../img/bg-main.jpg) top center no-repeat;
}

body.wide {
	width: 100%;
}

/*
____________________________________________________________________________
Layout 1- No Column Backgrounds */

/* can be commented in/out in the header - alternate method to using 'faux columns' */

body.l1 #primarybg, body.l1 #secondarybg, body.l1 #tertiarybg {
	display: none;
}

/*
____________________________________________________________________________
Rounded Corners */

.rounded {
	position: relative;
	margin-bottom: 21px;
	padding: 20px 14px;
	border: 1px solid #fff;
	background: #fff;
	-webkit-background-clip: padding-box;
	-webkit-border-radius: 5px;
	   -moz-border-radius: 5px;
	        border-radius: 5px;
	-webkit-box-shadow: 0px 0px 4px #999, inset 0px 0px 4px #ddd;
	   -moz-box-shadow: 0px 0px 4px #999, inset 0px 0px 4px #ddd;
	        box-shadow: 0px 0px 4px #999, inset 0px 0px 4px #ddd;
	behavior: url(pie/PIE.php);
}

/*
____________________________________________________________________________
Vertical Dividers */

.vert_divider {
	position: relative;
	float: left;
	border-left: 1px solid #000;
	border-right: 1px solid #333;
	margin: 0 -1px;
}

/*
____________________________________________________________________________
Equal Columns */

.equal {
	margin-bottom: 21px;
}

/*
____________________________________________________________________________
Header */

#header {
	position: relative;
	width: 984px;
	height: 126px;
	margin: 0 auto;
}

.wide #header {
	width: 100%;
}

#logo {
	float: left;
	padding: 20px 0 0 0;
}

/*
____________________________________________________________________________
Feature */

#feature {
	position: relative;
	width: 984px;
	height: 399px;
	margin: 0 auto;
	padding: 0 0 21px;
}

.wide #feature {
	width: 100%;
}

#slideshow {
	width: 944px;
	height: 378px;
}

#slides {
	width: 944px;
	height: 378px;
}

.slide {
	display: none;
	width: 944px;
	height: 378px;
}

#slide1 {
	display: block;
	background: url(../img/slide-01.jpg);
}

#slide2 {
	display: block;
	background: url(../img/slide-02.jpg);
}

#slide3 {
	display: block;
	background: url(../img/slide-03.jpg);
}

#slide4 {
	display: block;
	background: url(../img/slide-04.jpg);
}

#slideshowNav {
	position: relative;
	float: right;
	height: 22px;
	margin: -28px 8px 0 0;
	z-index: 10;
}

#slideshowNavPager {
	position: relative;
	float: left;
}

#slideshowNav a {
	width: 22px;
	height: 22px;
	background: transparent url(../img/movie-current.png) no-repeat 0 0;
	display: block;
	float: left;
	margin: 0;
	cursor: pointer;
}

#slideshowNav a:hover {
	background: transparent url(../img/movie-current.png) no-repeat 0 -22px;
}


#slideshowNav a span {
	display: none;
}

#slideshowNav a.activeSlide {
	background: transparent url(../img/movie-current.png) no-repeat 0 -22px;
}

#slideshowNav a:focus {
	outline: none;
}

#slideshowPrev {
	cursor: pointer;
	background: transparent url(../img/movie-prev-bu.png) no-repeat;
	width: 22px;
	height: 22px;
	display: block;
	float: left;
}

#slideshowPrev:hover {
	background: transparent url(../img/movie-prev-bu.png) no-repeat 0 -22px;
}

#slideshowNext {
	cursor: pointer;
	background: transparent url(../img/movie-next-bu.png) no-repeat;
	width: 22px;
	height: 22px;
	display: block;
	float: left;
}

#slideshowNext:hover {
	background: transparent url(../img/movie-next-bu.png) no-repeat 0 -22px;
}

/*
____________________________________________________________________________
Previews */

#preview {
	position: relative;
	width: 984px;
	padding: 0 auto;
}

.wide #preview {
	width: 100%;
}

#thumbnails {
	width: 944px;
	height: 189px;
	margin: 0;
	padding: 0 0 21px;
}

.thumbswrapper {
	width: 984px;
	height: 189px;
}

.thumb {
	display: block;
	float: left;
	width: 114px;
	height: 179px;
	margin: 0 20px;
	padding: 4px;
	text-align: center;
	border: 1px solid #444;
	background: #000;
}

.thumb.first {
	margin: 0 20px 0 0;
}

.thumb.last {
	margin: 0 40px 0 20px;
}

.thumb:hover {
	text-decoration: none;
	border: 1px solid #ccc;
}

.thumb_caption {
	height: 21px;
	font: 14px/1 'DejaVuSerifCondensed', serif;
	margin: 0;
	padding: 0;
}

#thumbnailsPrev {
	position: relative;
	cursor: pointer;
	background: transparent url(../img/movie-prev.png) no-repeat;
	width: 40px;
	height: 189px;
	display: block;
	float: left;
	margin: -210px 0 0 -40px;
	z-index: 10;
}

#thumbnailsPrev:hover {
	background: transparent url(../img/movie-prev.png) no-repeat 0 -189px;
}

#thumbnailsNext {
	position: relative;
	cursor: pointer;
	background: transparent url(../img/movie-next.png) no-repeat;
	width: 40px;
	height: 189px;
	display: block;
	float: right;
	margin: -210px -40px 0 0;
	z-index: 10;
}

#thumbnailsNext:hover {
	background: transparent url(../img/movie-next.png) no-repeat 0 -189px;
}

.product {
	width: 432px;
	height: 568px;
	margin-bottom: 21px;
	padding: 9px;
	border: 1px solid #333;
	background: #000;
}

.addthis_toolbox {
	float: left;
	width: 452px;
}

.addthis_toolbox a {
	padding: 0;
	margin: 0 2px;
}

/*
____________________________________________________________________________
Sticky Footer */

#sticky_footer {
	position: relative;
	width: 984px;
	margin: 0 auto;
}

.wide #sticky_footer {
	width: 100%;
}

/*
____________________________________________________________________________
Footer */

#footer {
	position: relative;
	width: 984px;
	margin: 0 auto;
	padding: 42px 0 0;
}

.wide #footer {
	width: 100%;
}

/*
____________________________________________________________________________
Subfooter */

#subfooter {
	position: relative;
	width: 984px;
	margin: 0 auto;
	padding: 21px 0;
}

.wide #subfooter {
	width: 100%;
}

#copyright {
	float: left;
}

#terms {
	float: right;
}

/*
____________________________________________________________________________
END STRUCTURE ***/


/*
____________________________________________________________________________
FORMS ***/

form {
	margin: 0 -10px 21px;
}

fieldset {
}

form .row {
	margin: 0 0 2px 0;
	padding: 10px;
	-webkit-transition: background-color 350ms ease-out;
	   -moz-transition: background-color 350ms ease-out;
	     -o-transition: background-color 350ms ease-out;
	        transition: background-color 350ms ease-out;
	-webkit-border-radius: 8px;
	   -moz-border-radius: 8px;
	        border-radius: 8px;
	behavior: url(pie/PIE.php);
}

form .row:hover {
	background-color: #222;
}

form .row.over {
	background-color: #444;
}

form .buttonrow {
	margin: 0 0 2px 0;
	padding: 10px;
}

legend {
	padding: 0 10px 10px;
	font-size: 18px;
	text-transform: uppercase;
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
	        box-sizing: border-box;
}

label {
	display: block;
	text-transform: uppercase;
}

input[type="text"], input[type="password"], select, textarea {
	position: relative;
	width: 100%;
	color: #f9f9f4;
	padding: 8px;
	margin: 0;
	border: solid 1px #000;
	border-left, border-right: solid 1px #111;
	border-bottom: solid 1px #333;
	background: #000 url(../img/input.png) 0 0 repeat-x;
	-webkit-background-clip: padding-box;
	-webkit-border-radius: 5px;
	   -moz-border-radius: 5px;
	        border-radius: 5px;
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
	        box-sizing: border-box;
	behavior: url(pie/PIE.php);
}

form ul {
	list-style: none;
	margin: 0;
}

input[type="radio"], input[type="checkbox"] {
	margin: 3px 8px -3px 0;
	float: left;
}

textarea {
	font-size: 14px;
	line-height: 21px;
	background: url(../img/textarea.png) 0 0 repeat-x;
	overflow: auto;
}

input, select, textarea {
	outline: 0 none;
}

input[type="submit"] {
	padding: 0 20px;
	line-height: 42px;
	font: 16px/42px 'DejaVuSansCondensedBold', serif;
	color: #f9f9f4;
	border: none;
	background: #333;
	-webkit-transition: background-color 350ms ease-out;
	   -moz-transition: background-color 350ms ease-out;
	     -o-transition: background-color 350ms ease-out;
	        transition: background-color 350ms ease-out;
	-webkit-border-radius: 5px;
	   -moz-border-radius: 5px;
	        border-radius: 5px;
	behavior: url(pie/PIE.php);
}

input[type="submit"]:hover, input[type="submit"]:focus {
	background: #666;
}

#message {
}

.error_message {
	border: 1px solid #ff0000;
	padding: 4px 9px;
	margin: 0 0 21px;
}

/*
____________________________________________________________________________
END FORMS ***/


/*
____________________________________________________________________________
SUPERFISH DROPDOWN MENU ***/

/*
____________________________________________________________________________
Essential Styles */

.sf-menu,
.sf-menu * {
	margin: 0;
	padding: 0;
	list-style: none;
}

.sf-menu {
	line-height: 1.0;
}

.sf-menu ul {
	position: absolute;
	top: -999em;
	width: 20px; /* left offset of submenus need to match (see below) */
}

.sf-menu ul li {
	width: 100%;
}

.sf-menu li:hover {
	visibility: inherit; /* fixes IE7 'sticky bug' */
}

.sf-menu li {
	float: left;
	position: relative;
}

.sf-menu a {
	float: left;
	display: block;
	position: relative;
}

.sf-menu li:hover ul,
.sf-menu li.sfHover ul {
	left: 0;
	top: 30px; /* match top ul list item height */
	z-index: 99;
}

ul.sf-menu li:hover li ul,
ul.sf-menu li.sfHover li ul {
	top: -999em;
}

ul.sf-menu li li:hover ul,
ul.sf-menu li li.sfHover ul {
	left: 20px; /* match ul width */
	top: 0;
}

ul.sf-menu li li:hover li ul,
ul.sf-menu li li.sfHover li ul {
	top: -999em;
}

ul.sf-menu li li li:hover ul,
ul.sf-menu li li li.sfHover ul {
	left: 20px; /* match ul width */
	top: 0;
}

/*
____________________________________________________________________________
Skin */

.sf-menu {
	float: right;
	height: 42px;
	padding-top: 57px;
	font: 21px/42px 'DejaVuSerifCondensed', Georgia, sans-serif;
	text-shadow: 0 -1px 0 rgba(0,0,0,1.0);
}

.sf-menu a {
	height: 42px;
	padding: 0 12px;
	text-decoration: none;
}

.sf-menu a,
.sf-menu a:visited { /* visited pseudo selector so IE6 applies text colour */
	color: #ccc;
}

.sf-menu li {
	margin: 0 0 0 2px;
	color: #ccc;
}

.sf-menu li li {
	margin: 0;
	color: #ccc;
	background: #666;
}

.sf-menu li li li {
	margin: 0;
	color: #ccc;
	background: #666;
}

.sf-menu a:focus,
.sf-menu a:hover,
.sf-menu a:active {
	color: #fff;
	outline: 0;
	text-decoration: none;
}

/*
____________________________________________________________________________
Arrows */

.sf-menu a.sf-with-ul {
	padding-right: 24px;
	min-width: 1px; /* trigger IE7 hasLayout so spans position accurately */
}

.sf-sub-indicator {
	position: absolute;
	display: block;
	top: 10px; /* IE6 only */
	right: 4px;
	width: 10px;
	height: 10px;
	text-indent: -999em;
	overflow: hidden;
	background: url(../img/arrows.png) no-repeat -1px -37px; /* 8-bit indexed alpha png. IE6 gets solid image only */
}

a > .sf-sub-indicator { /* give all except IE6 the correct values */
	top: 10px;
	right: 4px;
	background-position: -1px -37px; /* use translucent arrow for modern browsers */
}

/* apply hovers to modern browsers */
a:focus > .sf-sub-indicator,
a:hover > .sf-sub-indicator,
a:active > .sf-sub-indicator,
li:hover > a > .sf-sub-indicator,
li.sfHover > a > .sf-sub-indicator {
	top: 15px;
	right: 4px;
	background-position: -37px -37px; /* arrow hovers for modern browsers */
}

/* point right for anchors in subs */
.sf-menu ul .sf-sub-indicator {
	top: 10px; /* IE6 only */
	right: 9px;
	background-position: -3px 1px;
}

.sf-menu ul a > .sf-sub-indicator { /* give all except IE6 the correct values */
	top: 10px;
	right: 9px;
	background-position: -3px -1px;
}

/* apply hovers to modern browsers */
.sf-menu ul a:focus > .sf-sub-indicator,
.sf-menu ul a:hover > .sf-sub-indicator,
.sf-menu ul a:active > .sf-sub-indicator,
.sf-menu ul li:hover > a > .sf-sub-indicator,
.sf-menu ul li.sfHover > a > .sf-sub-indicator {
	top: 10px;
	right: 4px;
	background-position: -39px -1px; /* arrow hovers for modern browsers */
}

/*
____________________________________________________________________________
Shadows */

.sf-shadow ul {
	-webkit-box-shadow: 3px 3px 3px #000;
	   -moz-box-shadow: 3px 3px 3px #000;
	        box-shadow: 3px 3px 3px #000;
	behavior: url(pie/PIE.php);
}

/*
____________________________________________________________________________
END SUPERFISH DROPDOWN MENU ***/


/*
____________________________________________________________________________
HTML5 BOILERPLATE ***/

/*
____________________________________________________________________________
Non-semantic helper classes: please define your styles before this section. */

/* For image replacement */
.ir { display: block; text-indent: -999em; overflow: hidden; background-repeat: no-repeat; text-align: left; direction: ltr; }

/* Hide for both screenreaders and browsers:
   css-discuss.incutio.com/wiki/Screenreader_Visibility */
.hidden { display: none; visibility: hidden; }

/* Hide only visually, but have it available for screenreaders: by Jon Neal.
  www.webaim.org/techniques/css/invisiblecontent/  &  j.mp/visuallyhidden */
.visuallyhidden { border: 0; clip: rect(0 0 0 0); height: 1px; margin: -1px; overflow: hidden; padding: 0; position: absolute; width: 1px; }
/* Extends the .visuallyhidden class to allow the element to be focusable when navigated to via the keyboard: drupal.org/node/897638 */
.visuallyhidden.focusable:active,
.visuallyhidden.focusable:focus { clip: auto; height: auto; margin: 0; overflow: visible; position: static; width: auto; }

/* Hide visually and from screenreaders, but maintain layout */
.invisible { visibility: hidden; }

/* The Magnificent Clearfix: Updated to prevent margin-collapsing on child elements.
   j.mp/bestclearfix */
.clearfix:before, .clearfix:after { content: "\0020"; display: block; height: 0; overflow: hidden; }
.clearfix:after { clear: both; }
/* Fix clearfix: blueprintcss.lighthouseapp.com/projects/15318/tickets/5-extra-margin-padding-bottom-of-page */
.clearfix { zoom: 1; }

/*
____________________________________________________________________________
Media queries for responsive design. These follow after primary styles so they will successfully override. */

@media all and (orientation:portrait) {
  /* Style adjustments for portrait mode goes here */
}

@media all and (orientation:landscape) {
  /* Style adjustments for landscape mode goes here */
}

/* Grade-A Mobile Browsers (Opera Mobile, Mobile Safari, Android Chrome)
   consider this: www.cloudfour.com/css-media-query-for-mobile-is-fools-gold/ */
@media screen and (max-device-width: 480px) {
  /* Uncomment if you don't want iOS and WinMobile to mobile-optimize the text for you: j.mp/textsizeadjust */
  /* html { -webkit-text-size-adjust:none; -ms-text-size-adjust:none; } */
}

/*
____________________________________________________________________________
Print styles. Inlined to avoid required HTTP connection: www.phpied.com/delay-loading-your-print-css/ */

@media print {
  * { background: transparent !important; color: black !important; text-shadow: none !important; filter:none !important;
  -ms-filter: none !important; } /* Black prints faster: sanbeiji.com/archives/953 */
  a, a:visited { color: #444 !important; text-decoration: underline; }
  a[href]:after { content: " (" attr(href) ")"; }
  abbr[title]:after { content: " (" attr(title) ")"; }
  .ir a:after, a[href^="javascript:"]:after, a[href^="#"]:after { content: ""; }  /* Don't show links for img, or javascript/internal links */
  pre, blockquote { border: 1px solid #999; page-break-inside: avoid; }
  thead { display: table-header-group; } /* css-discuss.incutio.com/wiki/Printing_Tables */
  tr, img { page-break-inside: avoid; }
  @page { margin: 0.5cm; }
  p, h2, h3 { orphans: 3; widows: 3; }
  h2, h3{ page-break-after: avoid; }
}

/*
____________________________________________________________________________
END HTML5 BOILERPLATE ***/


/*
____________________________________________________________________________
END CSS DOCUMENT ***/
