/* @override 
	http://blog.auroranovus.com/wp-content/themes/auroranovus/style.css
*/

/*  
Theme Name: Aurora Novus
Theme URI: http://www.auroranovus.com/
Description: Theme to match the Aurora Novus website.
Version: 1.0
Author: Jamie Peloquin
Author URI: http://www.jamiepeloquin.com

Theme last updated: Jan 13, 2009
*/

/* Styles for AURORANOVUS - Blog */

/* @Creator: Jamie Peloquin <http://www.jamiepeloquin.com> */


/* @group BASE STYLES */

/* @group Reset */

html, body {
	width: 100%;
	font-size: 100%; /* 16px */
	line-height: 1;
}

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, font, img, ins, kbd, q, s, samp, strike, sub, sup, tt, var, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td {
	margin: 0;
	padding: 0;
	border: 0;
	font-weight: inherit;
	font-style: inherit;
	font-family: inherit;
	line-height: inherit;
	vertical-align: baseline;
	background: transparent none;
}


caption, th, td {
	text-align: left;
	font-weight: normal;
}

/* Remove possible quote marks (") from <q>, <blockquote>. */

blockquote, q {
	quotes: none;
}

	blockquote:before, q:before, blockquote:after, q:after {
		content: '';
	}

/* Remeber to define focus states later in CSS */
:focus {
	outline: none;
}

/* Remeber to define inserts later in CSS */
ins {
	text-decoration: none;
}

del {
	text-decoration: line-through;
}

a, a:link, a:visited, a:hover, a:active, a:focus {
	outline: none;
	text-decoration: none;
}

/* @end */

/* @group Elements */

p, address, ol, ul, dl, dd, blockquote, h1, h2, h3, h4, h5, h6, table, form, fieldset, textarea, select, pre {
	margin-bottom: 1.4em;
}

p, li, dd, dt, th, td, pre, ins, address, del {
	line-height: 1.4;
}

ul, ol, blockquote {
	padding-left: 3em;
}

li {
	margin-bottom: .7em;
}

dt {
	margin-bottom: .7em;
}

dd {
	padding-left: 1.4em;
}

dl *:last-child {
	margin-bottom: 0;
}

h1 {
	font-size: 2em;
}

h2 {
	font-size: 1.5em;
}

h3 {
	font-size: 1.25em;
}

h4 {
	font-size: 1em;
}

h5 {
	font-size: .85em;
}

h6 {
	font-size: .75em;
}

pre, code, var, kbd, samp {
	color: #666;
	white-space: pre;
	font: .85em Monaco, "Lucida Console", "Courier New", Courier, monospaced;
}

del {
	text-decoration: line-through;
}

big {
	font-size: 1.4em;
}

small {
	font-size: 0.8em;
}

sup, sub {
	font-size: .75em;
	padding: 0 .25em;
}

sup {
	position: relative;
	bottom: .4em;
	vertical-align: baseline;
}

sub {
	position: relative;
	bottom: -.4em;
	vertical-align: baseline;
}

acronym, abbr {
	cursor: help !important;
	letter-spacing: 1px;
	border-bottom: 1px dashed;
}

a, a:visited, a:hover, a:focus, a:active  {
	cursor: pointer !important;
	border-bottom: 1px solid;
}

a img, a:visited img, a:hover img, a:focus img, a:active img {
	border-width: 0;
}

input, select, textarea, button {
	font-family: inherit;
	font-size: 1.1em;
}

label, form .label {
	font-weight: bold;
	cursor: pointer !important;
	display: block;
}


form *:last-child {
	margin-bottom: 0;
}

fieldset {
	padding: 1em;
	border: 1px solid #eee;
}

legend {
	padding: .5em;
	font-weight: bold;
	color: #ccc;
	font-size: 1.25em;
}

table {
	background-color: #ccc;
	/*border-spacing: .1em;*/
}

caption, th, td {
	padding: .5em;
}

caption {
	background-color: #eee;
	color: #888;
	border: .1em solid #ccc;
}

th {
	background-color: #bfbfbf;
	font-weight: bold;
}

td {
	background-color: #fff;
}

	tr:hover td {
		background-color: #f6ffdc;
	}

hr {
	margin: 3em 0;
	height: 1px;
	color: #888;
	border-color: #888;
}

/* @end */

/* @group Classes */

.collapse {
	height: 0;
	margin: 0;
	font-size: 0;
	overflow: hidden;
}

.float-left {
	float: left;
}

	img.float-left {
		margin-right: 1em;
	}

.float-right {
	float: right;
}

	img.float-right {
		margin-left: 1em;
	}

.text-left {
	text-align: left;
}

.text-right {
	text-align: right;
}

.text-center {
	text-align: center;
}

.text-justify {
	text-align: justify;
}

.bold {
	font-weight: bold;
}

.italic {
	font-style: italic;
}

.underline {
	border-bottom: 1px solid;
}

.inline {
	display: inline;
}

.block {
	display: block;
}



ul.list-disc {
	list-style-type: disc;
	/* • */
}

ul.list-circle {
	list-style: circle;
	/* O */
}

ul.list-square {
	list-style: square;
	/* [] */
}

ol.list-decimal {
	list-style: decimal;
	/* 1, 2, 3 */
}

ol.list-decimalleadingzero {
	list-style: decimal-leading-zero;
	/* 01, 02, 03 */
}

ol.list-romanlower {
	list-style: lower-roman;
	/* i, ii, iii */
}

ol.list-romanupper {
	list-style: upper-roman;
	/* I, II, III */
}

ol.list-alphalower {
	list-style: lower-alpha;
	/* a, b, c */
}

ol.list-alphaupper {
	list-style: upper-alpha;
	/* A, B, C */
}

.nopadding {
	padding: 0;
}

.noindent {
	margin-left: 0;
	padding-left: 0;
}

.nobullet {
	list-style: none;
	list-style-image: none;
}



table.data {
	border-collapse: separate;
	border-spacing: 1px;
}

tr.alt td {
	background-color: #f1f0ff;
}



form p.label {
	margin-bottom: .7em;
}

form .checkarea label {
	display: inline;
}

form .checkarea ul {
	list-style: none;
	list-style-image: none;
}

form .buttonarea label {
	display: none;
}

form .formpart .note {
	display: block;
}


/* Side-By-Side aligns LABELs to the left of the FIELDs */
form.sidebyside .formpart {
	clear: both;
}

form.sidebyside label, form.sidebyside .label {
	float: left;
	width: 30%;
	padding-right: 1em;
	text-align: right;
}

form.sidebyside .checkarea label {
	float: none;
	text-align: left;
}

form.sidebyside .textarea label {
	padding-top: .2em;
}

form.sidebyside .formpart .note {
	margin-left: 31.5%;
}
/* end */

/* Multicolumn floats FORMPARTs left */
fieldset.multicolumn legend {
	margin-left: .8em;
}

.multicolumn .textarea input, .multicolumn .textarea textarea, .multicolumn .selectarea select {
	width: 45%;
}

/* for IE6 */
* html .multicolumn .textarea input, * html .multicolumn .textarea textarea, * html .multicolumn .selectarea select {
	width: 40%px;
}

* html .multicolumn .short input, * html .multicolumn .short textarea, * html .multicolumn .short select {
	width: 25%;
}
/* end */

/* Buttons */
.action1, .action1:active {
	background-color: #96c900;
	outline-color: #690;
	color: #dfffc1;
}

.action1:hover, .action1:focus {
}

.action1:active {
	outline-color: #96c900;
}

.action2, .action2:active {
	background-color: #a50000;
	outline-color: #953e3e;
	color: #ffd6d3;
}

.action2:hover, .action2:focus {
}

.action2:active {
	outline-color: #a50000;
}

.action3, .action3:active {
	color: #ffedbc;
	background-color: #ff8d00;
	outline-color: #d2691e;
}

.action3:hover, .action3:focus {
}

.action3:active {
	outline-color: #ff8d00;
}
/* end */



/* Help & Tips */

.tooltip {
	display: none;
	position: absolute;
	z-index: 1;
	background-color: #ffc;
	border: 1px solid #ffd55e;
	padding: .25em;
}

	.tooltip:hover, .tip:hover, .help:hover {
		cursor: help;
	}

	*:hover > .tooltip {
		display: inline;
	}

/* end */



/* User Messages / Alerts */

.highlight {
	padding: 2px;
	background: #ffc;
}

.usermessage {
	display: block;
	margin-bottom: 22px;
	padding: .25em .5em;
	background-color: #fff4d6;
	border: 1px solid #ffd55e;
	color: #9f5000;
}

	form .usermessage {
		margin-top: 22px;
	}

p.good, div.good {
	color: #363;
	background-color: #cf9;
	border-color: #9c3;
}

	.good a {
		color: #690;
	}

p.bad, div.bad {
	color: #900;
	background-color: #feafaf;
	border-color: #cd5c5c;
}

	.bad a {
		color: #c00;
	}

.bad a.button, .bad button, .good a.button, good button {
	color: #fff !important;
}

.note {
	color: #bbb;
}
/* end */


/* Navigation */
*.navigation {
	list-style: none;
	position: relative;
	padding-left: 0;
	margin-left: 0;
}

	*.navigation li, dl.navigation dt, dl.navigation dd {
		padding-left: 0;
		margin-left: 0;
	}
/* end */

.clear-both {
	clear: both !important;
}

.clear-left {
	clear:  left !important;
}

.clear-right {
	clear:  right !important;
}


/* Clear floats for browsers supporting :after */
.clearfloats:after {
	content: ".";
	display: block;
	height: 0;
	clear: both;
	visibility: hidden;
}

/* self-clearing floats for IE 6 */
* html .clearfloats {
	height: 1%;
}

/* self-clearing floats for IE 7 */
*:first-child+html .clearfloats {
	min-height: 1px;
}


.hide {
	display: none;
}

.hidden {
	visibility: hidden;
}

/* @end */



/* @end */

/*

 @group SITE STYLES */

body {
	color: #444;
	background-color: #e8e8ef;
	font-family: Helvetica, Arial, Geneva, sans-serif;
}

a, a:link {
	color: #369;
}

a:visited {
	color: #888;
}

a:focus, a:hover {
	color: #84d4ff;
}

a:active {
	color: #3992ff;
}

a.lightwindow {
	border-width: 0;
}

h1, h2, h3, h4, h5, h6 {
	font-family: "Times New Roman", Times, serif;
	font-weight: normal;
}

h1, h2 {
	color: #000;
	margin-bottom: .65em;
}

h1 {
	display: none;
	font-size: 2.5em;
}

h2 {
	font-size: 1.875em;
}

h3 {
	font-size: 1.25em;
	color: #000;
}

div.master, div.master .content {
	position: relative;
	margin: 0;
}

div.master {
	background-color: #fff;
	width: 748px;
	margin: 0 auto;
	padding: 0 38px;
}

/* @group Header */

div#header {

}

div#header .content {
	margin: 0 auto;
}

div#header #trademark.branding {
	height: 76px;
	padding: 12px 0;
}

div#header #trademark.branding a {
	border-width: 0;
}

div#header #trademark.branding img {
	display: inline-block;
}

div#header .branding label {
	position: absolute;
	top: -1000px;
}

#navigationMain {
	border: 1px dotted #888;
	border-width: 1px 0;
	text-transform: uppercase;
	text-align: center;
	letter-spacing: .25em;
	font: .6875em/1 "Times New Roman", Times, serif;
	padding: 0;
}

#navigationMain a {
	border-width: 0;
	text-decoration: none;
}

#navigationMain .active a {
	color: #69c;
}

#navigationMain #navSkip {
	position: absolute;
	top: -1000px;
}

#navigationMain dl {
	display: block;
	float: left;
	height: auto;
	margin-bottom: 0;
}

#navigationMain dt {
	display: block;
	padding: .5em 1em;
	margin: 0;
}

#navigationMain dt a {
	color: #000;
	display: block;
}

#navigationMain dd {
	display: none;
}

#navigationMain dt a:hover, #navigationMain dt a:focus, #navigationMain dt a.active {
	color: #69c !important;
	outline: none;
}



/* @end */

/* @group Content */

div#content.master {
}

div#content .content {
	margin-bottom: 2em;
	padding: 15px 0;
	background-repeat: no-repeat;
	background-position: 0 15px;
	min-height: 440px;
	height: 440px;
	height: auto !important;
	font-size: .875em;
}

div#contentColumn1, div#contentColumn2 {
	border: 1px dotted #ddd;
}

div#contentColumn1 {
	float: left;
	width: 517px;
	padding-right: 10px;
	margin-right: -1px;
	border-width: 0 1px 0 0;
	/*outline: 1px dashed green;*/
}

div#contentColumn2 {
	float: right;
	width: 210px;
	padding-left: 10px;
	margin-left: -1px;
	border-width: 0 0 0 1px;
	color: #666;
	/*outline: 1px dashed pink;*/
}

div#content ul li {
	padding-left: 1em;
}

div#content ul.navigation li {
	padding-left: 0px;
	background: none;
}

div#sidebar ul {
	padding-left: 0;
}

div#sidebar ul li.widget {
	list-style: none;
	padding-left: 0;
}

div#sidebar .widget ul {
	padding-left: 2em;
	font-size: .875em;
}

div#sidebar .widget ul li {
	padding-left: 0;
}

div#sidebar h2 {
	font-size: 1.25em;
	color: #888;
	margin-bottom: .25em;
}

div#content blockquote {
	padding: 0;
	border: 1px solid #eee;
	border-width: 0;
}

div#content blockquote p {
	margin-bottom: .5em;
}

div#content blockquote p.credit {
	margin: 0 auto;
	padding: .7em 0 1.4em 0;
	font-size: .75em;
	font-style: italic;
}

div#content .photobox {
	border: 1px solid #fffacd;
	padding: .6em;
	background-color: #fff;
	margin-bottom: .7em;
}

div#content .photobox img {
	display: block;
	position: relative;
	border: 1px solid #888;
}

div#contentColumn2 .photobox img {
	max-width: 240px;
}

div#content .photobox label {
	display: block;
	margin-top: 1.4em;
	color: #888;
	font: italic .7em Georgia, "Times New Roman", Times, serif;
}

#content dl.linklist {
	margin-bottom: .3em;
	border: 1px solid #eee;
	border-width: 1px 0;
	padding: .6em;
	position: relative;
}

#content dl.linklist dt {
	font-weight: bold;
}

#content dl.linklist dd {
	padding: 0;
	font-size: .785em;
}

/* @group Forms */

form label {
	font-weight: normal;
}

form input, form textarea {
	font-size: 1em;
	line-height: 1;
	padding: .4em;
	border: 1px solid #ddd;
	width: 95%;
}

form .buttonarea input, form .buttonarea button, #content .button {
	display: inline-block;
	position: relative;
	color: #666;
	padding: .4em .7em;
	background: #dce3ee url(images/btn.highlight.png) repeat-x center top;
	font-size: 1em;
	line-height: 1;
	font-weight: normal;
	font-style: normal;
	text-decoration: none;
	border: 2px solid #ddd;
	border-radius: 4px;
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
}

form .buttonarea input:hover, form .buttonarea button:hover, #content .button:hover {
	cursor: pointer;
}

form .buttonarea input:active, form .buttonarea button:active, #content .button:active {
	color: #fff;
	background: url(images/btn.darken.png) repeat-x center center;
}

#content .button {
	padding: .5em .7em;
}

form .textfield {
	margin-bottom: .7em;
}

#contentColumn2 form .textarea input, #contentColumn2 form .textarea textarea {
	width: 16em;
}

#contentColumn2 form {
	margin-top: 1.4em;
	padding: .6em;
}

form *[disabled=disabled], .disabled {
	opacity: 0.5;
	background-image: none !important;
}

/* @end */

.widget_calendar h2 {
	display: none;
}

table#wp-calendar {
	width: 100%;
	table-layout: fixed;
	background-color: #eee;
	font-size: .875em;
}

table#wp-calendar caption {
	color: #888;
	background-color: #f9f9f9;
	border: 1px solid #eee;
	font: 1.42em Georgia, "Times New Roman", Times, serif;
	text-align: center;
	margin-bottom: -1px;
}

table#wp-calendar th, table#wp-calendar th {
	font-size: .8em;
}

table#wp-calendar th {
	text-align: center;
	background-color: #e6e6e6;
}

table#wp-calendar td {
	text-align: right;
	background-color: #fff;
}

table#wp-calendar td a {

}

/* @group Posts */

.post {
	padding-bottom: 1.3em;
}

.postmeta {
	font-size: .75em;
	color: #888;
}

/* @end */

/* @group Comments */

.nocomments {
    color: #eee;
}

.commentsarea, .commentreplyarea {
	padding: .5em;
	font-size: .875em;
	margin-bottom: 1em;
	border: 1px dashed #ddd;
	color: #888;
	background-color: #f5f5f5;
	-moz-border-radius: 6px;
	-webkit-border-radius: 6px;
}

.commentsarea h3, .commentreplyarea h3 {
	padding: .5em;
	color: #888;
	background-color: #eee;
	margin: -.5em;
	margin-bottom: 1em;
	-moz-border-radius-topleft: 6px;
	-moz-border-radius-topright: 6px;
	-webkit-border-top-left-radius: 6px;
	-webkit-border-top-right-radius: 6px;
	-moz-border-radius-bottomleft: 0;
	-moz-border-radius-bottomright: 0;
	-webkit-border-bottom-left-radius: 0;
	-webkit-border-bottom-right-radius: 0;
}

/* @end */

a.icn {
	padding-left: 20px;
	background-repeat: no-repeat;
	background-position: left center;
}

a.web {
	background-image: url(images/icn-web-sm.png);
}

a.map {
	background-image: url(images/icn-map.png);
}

.vcard a.dnld, a.vcard {
	background-image: url(images/icn-vcard-sm.png);
}

a.doc {
	background-image: url(images/icn-page_word.png);
}

a.img {
	background-image: url(images/icn-picture.png);
}

a.pdf {
	background-image: url(images/icn-page_white_acrobat);
}

a.txt, a.rtf {
	background-image: url(images/icn-page_word.png);
}

a.xls {
	background-image: url(images/icn-page_excel.png);
}

a.zip {
	background-image: url(images/icn-page_white_zip.png);
}

dl.vcard {
	margin-bottom: .3em;
	border: 1px solid #fffacd;
	border-width: 1px 0;
	padding: .6em;
}

dl.vcard dt, dl.vcard dd {
	padding: 0;
	margin-bottom: .3em;
}

dl.vcard dt {
	font-weight: bold;
}

dl.vcard dd.tools {
	font-size: .78em;
}

dl.vcard dd.tools a {
	display: inline-block;
	margin-right: .7em;
	line-height: 2;
	border-width: 0;
}

dl.vcard dd abbr {
	border-width: 0;
}

#featuredMovie img {
	position: relative;
	display: block;
	width: 720px;
	height: 408px;
	padding: 6px 4px 14px;
	margin: 0 auto;
	background: url(images/moviestill.shadow.wide.jpg) no-repeat center center;
}

.movieinfo {
}

.movieinfo dt, .movieinfo dd {
	padding: 0;
	margin-bottom: .5em;
}

.movieinfo dt {
	text-transform: uppercase;
	letter-spacing: .25px;
	font-size: 1.142em;
	margin-bottom: 0em;
}

.movieinfo dd {
	font-size: .857em;
}

.movieinfo dd.note {
	color: #888;
	font-size: .642em;
}

.shoebox {
	background-color: #f5f5f5;
	font-size: .857em;
}

.shoebox, .shoebox .caption {
	-moz-border-radius: 6px;
	-webkit-border-radius: 6px;
}

.shoebox .caption {
	clear: left;
	padding: 10px 18px;
	background-color: #ebebeb;
	-moz-border-radius-topleft: 0;
	-moz-border-radius-topright: 0;
	-webkit-border-top-left-radius: 0;
	-webkit-border-top-right-radius: 0;
}

.shoebox .caption a {
	padding-right: 1em;
	background: url(images/link.arrow.blue.png) no-repeat right center;
}

.moviecard {
	/*position: relative;*/
	width: 151px;
	height: 123px;
	overflow: hidden;
	background: #ccc url(images/moviecard.gradient.png) repeat-x center 86px;
	color: #fff;
	font-size: .857em;
}

.moviecard a.cardLink {
	position: relative;
	display: block;
	border-width: 0;
	color: #fff;
	height: 123px;
}

.shoebox .moviecard, .shoebox .movieinfo {
	float: left;
	margin: 12px 18px;
}

.shoebox .moviecard a.cardLink:hover, .shoebox .moviecard a.cardLink:focus, .shoebox .moviecard a.cardLink:hover img, .shoebox .moviecard a.cardLink:focus img {
	opacity: 0.60;
}

.shoebox .moviecard {
	font-size: 1em;
}

.moviecard span {
	position: relative;
	display: block;
	padding: 0 10px;
	color: #fff;
}

.moviecard .title {
}

.moviecard span {
	margin-bottom: .25em;
}

.moviecard .photo {
	display: block;
	padding: 0;
	margin-bottom: .25em;
	border: 1px solid #222;
	border-width: 0 0 1px 0;
}

.moviecard .photo img {
	display: block;
}

.slide {
	position: relative;
	padding: 14px 10px 0 10px;
	width: 152px;
	height: 158px;
	background: url(images/moviecard.frame.png) no-repeat;
}

.slide .moviecard, .slide .moviecard a.cardLink {
	height: 142px;
}

.gallery .slide {
	float: left;
	margin: 8px 7px;
}

.gallery .slide .moviecard .description {
	display: none;
	text-align: center;
	vertical-align: middle;
}


.gallery .flip {
	background-image: url(images/moviecard.frame.active.png);
}

.gallery .flip .moviecard {
	background: none !important;
}

.gallery .flip .moviecard span {
	color: #333;
}

.gallery .moviecard a.cardLink:hover .description {
	display: block;
	display: table-cell;
}

.gallery .flip .moviecard a.cardLink:hover .photo {
	display: none;
}

.gallery .moviecard a.cardLink:hover .title {
	display: none;
}

#scrollwrap {
	position: relative;
	overflow: hidden;
}

#scroller {
}

a.scrollarrow {
	position: absolute;
	z-index: 500;
	background-repeat: no-repeat;
	background-position: center center;
	border-width: 0;
}

a#scrollarrowLeft, a#scrollarrowRight {
	width: 32px;
}

a#scrollarrowLeft {
	background-image: url(images/scrollarrow-left.png);
}

a#scrollarrowRight {
	background-image: url(images/scrollarrow-right.png);
}

a#scrollarrowUp, a#scrollarrowDown {
	height: 25px;
	width: 748px;
}

a#scrollarrowUp {
	background-image: url(images/scrollarrow-up.png);
}

a#scrollarrowDown {
	background-image: url(images/scrollarrow-down.png);
}


/* @end */

/* @group Footer */

div#footer {
	display: none;
}

div#footer .content {
	width: 960px;
	padding-bottom: 1em;
	margin: 0 auto;
}

/* @end */

.scrollbox {
	overflow: auto;
	position: relative;
}

/* @end */

/* @group IE 6 Fixes */

* html {

}

* html .movieversions {
	height: auto !important;
	height: 240px;
}

* html #navigationMain {
	letter-spacing: .20em;
}


/* @end */

/* @group IE 7 Fixes */

*:first-child+html {

}

*:first-child+html #navigationMain {
	letter-spacing: .20em;
}

/* @end */

/* @group Debug */

/*
body {
background-color: orange;
}
*/

/*
#header, #footer {
background-color: #eee;
}
*/

/*
#content {
background-color: #ddd;
}
*/

/*
div#contentColumn1 {
background-color: #dff;
}
*/

/*
div#contentColumn2 {
background-color: #fff;
}
*/

/*
.master {
outline: 1px dotted pink;
}
*/

/*
.content {
outline: 1px dashed red;
}
*/

/* @end */
