/*
 * jQuery Nivo Slider v2.0
 * http://nivo.dev7studios.com
 *
 * Copyright 2010, Gilbert Pellegrom
 * Free to use and abuse under the MIT license.
 * http://www.opensource.org/licenses/mit-license.php
 * 
 * March 2010
 */
 
 
/* The Nivo Slider styles */
.nivoSlider {
	position:relative;
}
.nivoSlider img {
	position:absolute;
	top:0px;
	left:0px;
}
/* If an image is wrapped in a link */
.nivoSlider a.nivo-imageLink {
	position:absolute;
	top:0px;
	left:0px;
	width:100%;
	height:100%;
	border:0;
	padding:0;
	margin:0;
	z-index:60;
	display:none;
}
/* The slices in the Slider */
.nivo-slice {
	display:block;
	position:absolute;
	z-index:50;
	height:100%;
}
/* Caption styles */
.nivo-caption {
	position:absolute;
	left:0px;
	bottom:0px;
	background:#000;
	color:#fff;
	opacity:0.8; /* Overridden by captionOpacity setting */
	width:100%;
	z-index:89;
}
.nivo-caption p {
	padding:5px;
	margin:0;
}
/* Direction nav styles (e.g. Next & Prev) */
.nivo-directionNav a {
	position:absolute;
	top:45%;
	z-index:99;
	cursor:pointer;
}
.nivo-prevNav {
	left:0px;
}
.nivo-nextNav {
	right:0px;
}
/* Control nav styles (e.g. 1,2,3...) */
.nivo-controlNav a {
	position:relative;
	z-index:99;
	cursor:pointer;
}
.nivo-controlNav a.active {
	font-weight:bold;
}/*
    ColorBox Core Style
    The following rules are the styles that are consistant between themes.
    Avoid changing this area to maintain compatability with future versions of ColorBox.
*/
#colorbox, #cboxOverlay, #cboxWrapper{position:absolute; top:0; left:0; z-index:9999; overflow:hidden;}
#cboxOverlay{position:fixed; width:100%; height:100%;}
#cboxMiddleLeft, #cboxBottomLeft{clear:left;}
#cboxContent{position:relative; overflow:hidden;}
#cboxLoadedContent{overflow:auto;}
#cboxLoadedContent iframe{display:block; width:100%; height:100%; border:0;}
#cboxTitle{margin:0;}
#cboxLoadingOverlay, #cboxLoadingGraphic{position:absolute; top:0; left:0; width:100%;}
#cboxPrevious, #cboxNext, #cboxClose, #cboxSlideshow{cursor:pointer;}

/* 
    Example user style
    The following rules are ordered and tabbed in a way that represents the
    order/nesting of the generated HTML, so that the structure easier to understand.
*/
#cboxOverlay{background:url(/assets/images/colorbox/overlay.png) 0 0 repeat;}
#colorbox{}
    #cboxTopLeft{width:21px; height:21px; background:url(/assets/images/colorbox/controls.png) -100px 0 no-repeat;}
    #cboxTopRight{width:21px; height:21px; background:url(/assets/images/colorbox/controls.png) -129px 0 no-repeat;}
    #cboxBottomLeft{width:21px; height:21px; background:url(/assets/images/colorbox/controls.png) -100px -29px no-repeat;}
    #cboxBottomRight{width:21px; height:21px; background:url(/assets/images/colorbox/controls.png) -129px -29px no-repeat;}
    #cboxMiddleLeft{width:21px; background:url(/assets/images/colorbox/controls.png) left top repeat-y;}
    #cboxMiddleRight{width:21px; background:url(/assets/images/colorbox/controls.png) right top repeat-y;}
    #cboxTopCenter{height:21px; background:url(/assets/images/colorbox/border.png) 0 0 repeat-x;}
    #cboxBottomCenter{height:21px; background:url(/assets/images/colorbox/border.png) 0 -29px repeat-x;}
    #cboxContent{background:#fff;}
        #cboxLoadedContent{margin-bottom:28px;}
        #cboxTitle{position:absolute; bottom:4px; left:0; text-align:center; width:100%; color:#949494;}
        #cboxCurrent{position:absolute; bottom:4px; left:58px; color:#949494;}
        #cboxSlideshow{position:absolute; bottom:4px; right:30px; color:#0092ef;}
        #cboxPrevious{position:absolute; bottom:0; left:0px; background:url(/assets/images/colorbox/controls.png) -75px 0px no-repeat; width:25px; height:25px; text-indent:-9999px;}
        #cboxPrevious.hover{background-position:-75px -25px;}
        #cboxNext{position:absolute; bottom:0; left:27px; background:url(/assets/images/colorbox/controls.png) -50px 0px no-repeat; width:25px; height:25px; text-indent:-9999px;}
        #cboxNext.hover{background-position:-50px -25px;}
        #cboxLoadingOverlay{background:url(/assets/images/colorbox/loading_background.png) center center no-repeat;}
        #cboxLoadingGraphic{background:url(/assets/images/colorbox/loading.gif) center center no-repeat;}
        #cboxClose{position:absolute; bottom:0; right:0; background:url(/assets/images/colorbox/controls.png) -25px 0px no-repeat; width:25px; height:25px; text-indent:-9999px;}
        #cboxClose.hover{background-position:-25px -25px;}

/*
    The following fixes png-transparency for IE6.  
    It is also necessary for png-transparency in IE7 & IE8 to avoid 'black halos' with the fade transition
    
    Since this method does not support CSS background-positioning, it is incompatible with CSS sprites.
    Colorbox preloads navigation hover classes to account for this.
    
    !! Important Note: AlphaImageLoader src paths are relative to the HTML document,
    while regular CSS background images are relative to the CSS document.
*/
.cboxIE #cboxTopLeft{background:transparent; filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src=/assets/images/colorbox/internet_explorer/borderTopLeft.png, sizingMethod='scale');}
.cboxIE #cboxTopCenter{background:transparent; filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src=/assets/images/colorbox/internet_explorer/borderTopCenter.png, sizingMethod='scale');}
.cboxIE #cboxTopRight{background:transparent; filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src=/assets/images/colorbox/internet_explorer/borderTopRight.png, sizingMethod='scale');}
.cboxIE #cboxBottomLeft{background:transparent; filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src=/assets/images/colorbox/internet_explorer/borderBottomLeft.png, sizingMethod='scale');}
.cboxIE #cboxBottomCenter{background:transparent; filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src=/assets/images/colorbox/internet_explorer/borderBottomCenter.png, sizingMethod='scale');}
.cboxIE #cboxBottomRight{background:transparent; filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src=/assets/images/colorbox/internet_explorer/borderBottomRight.png, sizingMethod='scale');}
.cboxIE #cboxMiddleLeft{background:transparent; filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src=/assets/images/colorbox/internet_explorer/borderMiddleLeft.png, sizingMethod='scale');}
.cboxIE #cboxMiddleRight{background:transparent; filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src=/assets/images/colorbox/internet_explorer/borderMiddleRight.png, sizingMethod='scale');}
/* custom styles */

:focus {outline: none;}

body {
	background-repeat: repeat-x;
	background-position: left bottom;
	height:100%;
}

body.home {
	background-color: #4f4f4f;
	color: #FFF;
	background-image: url(/assets/images/interface/footer_bg.png);
}

body.inner {
	background-color: #FFF;
	color: #333;
	background-image: url(/assets/images/interface/inner_footer_bg.png);
}

p+p {
	text-indent: 0;
	margin-top: 0;
}

a:hover {
	text-decoration: underline;
}

/* header */
.header_bg {
	background-image: url(/assets/images/interface/header_bg.png);
	background-repeat: repeat-x;
	background-position: left -40px;
}

#header {
	height:152px;
	position: relative;	
}

#header #logo {
	position:absolute;
	top: 10px;
	left: 0px;
}

#header #main_nav {
	height:40px;
	left:400px;
	position:absolute;
	top:70px;
}

#header #main_nav a,
#header #main_nav a:visited {
	text-decoration: none;
	color: #FFF;
	text-transform: uppercase;
	display:block;
	float:left;
	line-height:25px;
	padding: 0 13px 0 13px;
	font-size: 1.1em;
	font-weight: bold;
}

#header #main_nav a:hover,
#header #main_nav a.active {
	background-color: #57335F;
	border-top:1px solid #FFF;
	line-height:23px;
	padding-bottom:17px;
	background-image: url(/assets/images/interface/active_link_bg.png);
	background-repeat: no-repeat;
	background-position: center bottom;
}

#header #main_nav a.active {
	cursor: default;
}

/* homepage top */
#homepage_top {
	height:250px;
	background-image: url(/assets/images/interface/homepage_top_bg.png);
	background-repeat: repeat-x;
	background-position: left top;
	position: relative;
}

#homepage_top #slider_border {
	width:560px;
	height:280px;
	background-image: url(/assets/images/interface/slider_bg.png);
	background-repeat: no-repeat;
	background-position: left top;
	position: absolute;
	top: -17px;
	left: 400px;
	z-index: 100;
}

#slider .nivo-controlNav {
	right:0px;
	position:absolute;
	text-align:right;
	top:275px;
	height:20px;
}

#slider .nivo-controlNav a,
#slider .nivo-controlNav a:visited {

	background-image: url(/assets/images/interface/slider_nav.png);
	background-position: center top;
	text-indent: 1000px;
	text-decoration: none;
	display:block;
	width:12px;
	height:12px;
	float:left;
	margin-left:5px;
	overflow: hidden;
}

#slider .nivo-controlNav a.active {
	background-position: center 12px;
}

#homepage_top #slider_wrapper {
	background-color:#FFF;
	height:265px;
	left:409px;
	position:absolute;
	top:-9px;
	width:542px;
	overflow: visible;
	z-index: 0;
}

#slider {
	width:542px;
	height:265px;
}

#homepage_top_bg {
	background-image: url(/assets/images/interface/homepage_top_bg.png);
	background-repeat: repeat-x;
	background-position: 0 152px;
}

#homepage_top_text {
	left:0px;
	position:absolute;
	top:10px;
}

#homepage_top_text h2 {
	color:#3B0144;
	font-size:2.8em;
	font-weight:bold;
	margin: 0;
}

#homepage_top_text #share_home a {
	margin-right:0;
	margin-bottom:10px;
}

#homepage_top_text p {
	color:#333333;
	font-size:1.6em;
	font-weight:bold;
	line-height:1.2em;
	margin:0 0 15px 0;
	width:290px;
}

#homepage_top_text a {
	text-decoration: none;
	margin-right:15px;
}

#inner_content_top_bg {
	background-image: url(/assets/images/interface/inner_content_bg_top.png);
	background-position: left 152px;
	background-repeat: repeat-x;
}

#inner_content_bot_bg {
	background-image: url(/assets/images/interface/inner_content_bg_bot.png);
	background-position: left bottom;
	background-repeat: repeat-x;
}

#main_content {
	padding-top:15px;
	margin-bottom:40px;
}

.home #main_content {
	margin-top:40px;
}

.home #main_content a {
	color: #FFF;
	text-decoration: underline;
}

.home #main_content a:hover,
#main_content a:hover {
	text-decoration: underline;
}

#main_content h2 {
	color:#FFF;
	font-size:2.4em;
}

#main_content a {
	text-decoration: none;
	color: #57335F;
}

#main_content p {
	font-size:1.1em;
}

.home_main_left a,
.home_main_right a {
	color:#FFF;
}

body.inner h1 {
	border-bottom: 1px solid #ccc;
	margin-bottom:10px;
}

#main_content .showreel_index p {
	margin-bottom:10px;
}

#showreels {
	margin-top:10px;
}

#showreels .item {
	width:286px;
	float:left;
	margin-bottom:20px;
	background-color: #F8F8F8;
	height: 464px;
}

#showreels .item:hover {
	background-color: #f0f0f0;
}

#showreels .item a {
	margin: 10px;
	display:block;
}

#showreels .item p {
	margin: 0 10px 10px 10px;
}

#showreels .center {
	margin: 0 45px 0 45px;
}

#showreels .item h2 {
	color: #333;
	font-size: 2em;
	margin: 10px;
}

#video_player {
	margin-bottom:15px;
	margin-top:10px;
}

#main_content h3 {
	margin-bottom:0.1em;
}

/* footer */
#footer {
	min-height:62px;
	background-image: url(/assets/images/interface/footer_bg.png);
	background-repeat: repeat-x;
	background-position: left top;
	
}

#footer p.copyright {
	margin:25px 0 0 0;
	width:300px;
	color: #FFF;
}

#footer a,
#footer a:visited {
	color: #FFF;
	text-decoration: underline;
}

#footer a:hover {
	text-decoration: underline;
}

#sub_footer {
	background-color: #4f4f4f;
	height:100px;
	color: #fff;
}

#sub_footer .item {
	margin-top:15px;
}

#sub_footer .item p {
	margin: 0 0 10px 0;
	font-weight: bold;
}

#sub_footer a {
	text-decoration: underline;
	color: #FFF;
	line-height: 1.3em;
	font-size: 1.1em;
}

#sub_footer a:hover {
	text-decoration: underline;
}

#breadcrumb {
	margin-bottom:5px;
}

.addthis_toolbox {
	margin-bottom:10px;
}

.home .addthis_toolbox {
	margin-bottom:0;
}