/*
	*** TABLE OF CONTENTS ***
	--------------------------------------------------------------------------	
	Following the name of each section is -n- and a 3 or 4 digit code, for example
	abc, which you can use find next to skip to the next section.
	--------------------------------------------------------------------------
	
	Base = bas
	Modules = mdl
	Primary = prm
	Home Page = hpg
	Media Queries = mdq	
	Plugins -n- plg
	
	Header = hdr
	Content = cnt
	Main = main
	Sidebar = sdb
	Footer = ftr
	Media Queries = mdq

*/

/* ==========================================================================
   Base -n- bse   
   ========================================================================== */
@font-face {
    font-family: 'ProximaNovaRegular';
    src: url('../fonts/proximanova-regular-webfont.eot');
    src: url('../fonts/proximanova-regular-webfont.eot?#iefix') format('embedded-opentype'),
         url('../fonts/proximanova-regular-webfont.woff') format('woff'),
         url('../fonts/proximanova-regular-webfont.ttf') format('truetype'),
         url('../fonts/proximanova-regular-webfont.svg#ProximaNovaRegular') format('svg');
    font-weight: normal;
    font-style: normal;
}
   
html, button, input, select, textarea { font-family: sans-serif; color: #222; }

body {
	background: #fbf8f8 url('../img/background.png') fixed;
	font-size: 14px;
	line-height: 1.4;
}

h1,h2,h3,h4,h5,h6 {}

::-moz-selection { background: #06c; color: #fff; text-shadow: none; }
::selection { background: #06c; color: #fff; text-shadow: none; }

a { color: #142756; }
a:hover { color: #3a588c; }

.button, input[type=submit] {
	background-color: #06c;
	background-image: url('../img/bg-nav.png');
	border: none;
	color: #fff;
	display: inline-block;
	width: auto;
	padding: 8px 16px;
	margin: 0;
	font-size: 1em;
	line-height: 1;
	text-decoration: none;
	text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.15);	
	overflow: visible;
	-webkit-border-radius: 6px;
	-moz-border-radius: 6px; 
	border-radius: 6px;
	-webkit-appearance: none;
}
.button:hover, input[type=submit]:hover { background: #3a588c; color: #fff; }

/* ==========================================================================
   Modules -n- nrm   
   ========================================================================== */

/* ==========================================================================
   Primary Styles -n- prm  
   ========================================================================== */
   
.nav { word-wrap: normal; }

/* ==|== Header hdr -n- ====================================================== */

#header {
	background: #efefef url('../img/bg-header.png');
	border-bottom: 15px solid #656d84;
	margin-bottom: 1em;
}

.home #header {
	border-bottom: 15px solid #000;
}

#header-links {
	background: url('../img/header-stripe.png') right 27px no-repeat;
	float: right;
	height: 30px;
	margin-top: 15px;
	text-align: right;
	width: 670px;
}

a#logo { float: left; margin: 15px 0; }
.ie7 a#logo { margin: 0; text-decoration: none; }
.ie7 a#logo img { margin: 15px 0; }

/* Navigation */
#main-nav-wrap { background: url('../img/bg-nav.png'); position: relative; z-index: 1000; }
#main-nav-wrap .container {}
#main-nav .nav { position: relative; left: 0; display: block; float: left; }

#main-nav .nav > li {
	background: url('../img/nav-separator.png') left no-repeat;
	display: block; 
	float: left;
}

#main-nav .nav {
	background: url('../img/nav-separator.png') right no-repeat;
}

#main-nav .nav > li > a {
	display: block;
	padding: 10px 20px 11px;
	color: #fff;
	font-family: 'Francois One';
	font-size: 15px;
	text-shadow: 1px 1px #000;
	text-transform: uppercase;
}
#main-nav .nav > li > a .caret {
	display: inline-block;
	width: 0;
	height: 0;
	margin-top: 8px;
	margin-left: 2px;
	text-indent: -99999px;
	*text-indent: 0;
	vertical-align: top;
	border-left: 4px solid transparent;
	border-right: 4px solid transparent;
	border-top: 4px solid #fff;
	opacity: 0.3;
	filter: alpha(opacity=30);
	content: "\2193";
}
#main-nav .nav > li > a:hover,
#main-nav .nav > li.dropdown.open > a,
#main-nav .nav > li.current-menu-item > a,
#main-nav .nav > li.current-menu-parent > a,
#main-nav .nav > li.current-menu-ancestor > a {
	background: url('../img/bg-nav-active.png');
}
#main-nav .nav > li > a:hover > .caret,
#main-nav .nav > li.dropdown.open > a > .caret
#main-nav .nav > li.current-menu-item > a > .caret,
#main-nav .nav > li.current-menu-parent > a > .caret,
#main-nav .nav > li.current-menu-ancestor > a > .caret {
	opacity: 1;
	filter: alpha(opacity=100);
}
/* Drop Down */
#main-nav .nav .dropdown { position: relative; }
#main-nav .nav .dropdown-toggle { *margin-bottom: -3px; }
#main-nav .nav .dropdown-toggle:active, .open .dropdown-toggle { outline: 0; }
#main-nav .nav > .dropdown > .dropdown-menu {
	position: absolute;
	top: 100%;
	left: 0;
	z-index: 1000;
	float: left;
	display: none;
	min-width: 160px;
	max-width: 220px;
	_width: 160px;
	padding: 4px 0;
	margin: 1px 0 0 0;
	list-style: none;
	background-color: #ffffff;
	border-color: #ccc;
	border-style: solid;
	border-width: 1px;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	-webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
	-moz-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
	box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
	-webkit-background-clip: padding-box;
	-moz-background-clip: padding;
	background-clip: padding-box;
	*border-right-width: 2px;
	*border-bottom-width: 2px;
}
#main-nav .nav > .dropdown > .dropdown-menu:before {
	content: '';
	display: inline-block;
	border-left: 7px solid transparent;
	border-right: 7px solid transparent;
	border-bottom: 7px solid #ccc;
	position: absolute;
	top: -7px;
	left: 9px;
}
#main-nav .nav > .dropdown > .dropdown-menu:after {
	content: '';
	display: inline-block;
	border-left: 6px solid transparent;
	border-right: 6px solid transparent;
	border-bottom: 6px solid #ffffff;
	position: absolute;
	top: -6px;
	left: 10px;
}
#main-nav .nav > .dropdown.open { *z-index: 1000; }
#main-nav .nav > .dropdown.open > .dropdown-menu { background: #000; display: block; }
#main-nav .nav .dropdown-menu li a {
	clear: both;
	color: #fff;
	display: block;
	padding: 3px 15px;
	font-family: 'Francois One';
	font-weight: normal;
	text-transform: uppercase;
	white-space: nowrap;
}
#main-nav .nav .dropdown-menu li li a { padding-left: 25px; }
#main-nav .nav .dropdown-menu li li li a { padding-left: 35px; }
#main-nav .nav .dropdown-menu li li li li a { padding-left: 45px; }
#main-nav .nav .dropdown-menu li li li li li a { padding-left: 55px; }
#main-nav .nav .open > .dropdown-toggle { }
#main-nav .nav .dropdown-menu li > a:hover { background: #142756; }
#main-nav .nav .dropdown-menu li.current-menu-item > a {
	color: #fff;
	background: #8E8E8E;
}
/* End Navigation */

#utility-nav { position: absolute; top: -95px; right: 0px; }
#utility-nav ul { text-align: right; }
#utility-nav li { display: inline; }
#utility-nav a { padding: 0 8px; color: #06c; }
#utility-nav ul li a:hover,
#utility-nav ul li.current-menu-item a, 
#utility-nav ul li.current-menu-parent a,
#utility-nav ul li.current-menu-ancestor a {
	color: #09c;
}


/* ==|== Content cnt -n- ===================================================== */

#content-wrap {}
#content {}

.wp-tabs { margin-top: -20px; }

.wp-tabs h2 {
	color: #203b72;
	font-family: 'Francois One';
	font-size: 18px;
	font-weight: normal;
	text-transform: uppercase;
}

.wp-tabs ul li {
	background: url('../img/bullet-logo.png') left 4px no-repeat;
	line-height: 1.9;
	list-style: none;
	padding-left: 15px;
}

.wp-tabs .gform_wrapper ul li {
	background: none;
}

.wpui-light ul.ui-tabs-nav li {
	background: -moz-linear-gradient(top, #4b6695, #132554) !important;
	background: -webkit-gradient(linear, left top, left bottom, from(#4b6695), to(#132554)) !important;
	background: -webkit-linear-gradient(top, #4b6695, #132554) !important;
	background: -o-linear-gradient(top, #4b6695, #132554) !important;
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr = '#4b6695', endColorstr = '#132554') !important;
	-ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr = '#4b6695', endColorstr = '#132554')" !important;
	background-image: -ms-linear-gradient(top, #4b6695, #132554) !important;
	background-image: linear-gradient(top, #4b6695, #132554) !important;
	border-color: #AAA !important;
	border-width: 1px !important;
	border-style: solid !important;
	margin-right: 3px !important;
	padding: 0px !important;
}

.wpui-light ul.ui-tabs-nav li a {
	color: #fff !important;
	padding: .4em 2em !important;
	text-shadow: 1px 1px #000 !important;
}

.wpui-light ul.ui-tabs-nav li.ui-state-active {
	background: -moz-linear-gradient(top, #132554, #4b6695) !important;
	background: -webkit-gradient(linear, left top, left bottom, from(#132554), to(#4b6695)) !important;
	background: -webkit-linear-gradient(top, #132554, #4b6695) !important;
	background: -o-linear-gradient(top, #132554, #4b6695) !important;
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr = '#132554', endColorstr = '#4b6695') !important;
	-ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr = '#132554', endColorstr = '#4b6695')" !important;
	background-image: -ms-linear-gradient(top, #132554, #4b6695) !important;
	background-image: linear-gradient(top, #132554, #4b6695) !important;
}

img.alignright {
	margin: .4em 0 20px 1em;
}

.single-products img.alignright {
	margin-right: 40px;
}

.products-list li {
	float: left;
	list-style: none;
	margin-bottom: 20px;
	margin-right: 80px;
}

.products-list .last-item {
	margin-right: 0px;
}

.products-list img {
	-moz-border-radius: 7px;
	-webkit-border-radius: 7px;
	background: #c0c0c0 url('../img/placeholder.png');
	border-radius: 7px;
}

.products-list .products-title {
	color: #203b72;
	font-family: 'Francois One';
	font-size: 20px;
	margin-top: 10px;
	text-align: center;
	text-shadow: 1px 1px #fff;
	text-transform: uppercase;
}

.wp-tabs .row {
	border-bottom: 1px solid #c0c0c0;
	margin-bottom: 20px;
}

/* ==|== Main main -n- ======================================================= */

#main {}
.main-title h1 {
	color: #203b72;
	font-family: 'Francois One';
	font-size: 20px;
	font-weight: normal;
	text-shadow: 1px 1px #fff;
	text-transform: uppercase;
}

/* ==|== Sidebar sdb -n- ===================================================== */

#sidebar {}

/* ==|== footer ftr -n- ====================================================== */

#footer {
	background: url('../img/bg-footer.png'); 
	font-family: 'ProximaNovaRegular';
	height: 166px;
	margin-top: 1em;
	text-shadow: 1px 1px #000;
}

.home #footer {
	background: url('../img/bg-footer-home.png');
}

#footer-nav {}
#footer-nav > ul { text-align: left; margin: 1em 0; }
#footer-nav > ul > li { display: inline; }

#footer-nav > ul > li > a {
color: #fff;
padding: 0 10px;
}

#footer-nav > ul > li:after {
	color: #fff;
	content: ' | ';
}

#footer-nav > ul > li:last-child::after {
	content: '';
}

#footer-nav > ul > li:first-child > a { padding-left: 0; }
#footer-nav ul ul { display: none; }
#footer-nav ul li a:hover,
#footer-nav ul li.current-menu-item a, 
#footer-nav ul li.current-menu-parent a,
#footer-nav ul li.current-menu-ancestor a{
	color: #9a9b9f;
}

#copyright {
	color: #9a9b9f;
	float: right;
	font-size: 12px;
	margin-top: 15px;
}

#design-by {
	color: #9a9b9f;
	font-size: .8em;
	text-align: center;
}

#design-by a { color: #fff; }
#design-by a:hover { color: #9a9b9f; }

/* ==========================================================================
   Home Page -n- hpg
   ========================================================================== */
   
.home-features { margin-top: 1em; }

/* ==========================================================================
   Media Queries -n- mdq   
   ========================================================================== */
   
/*  Desktop
================================================== */
/*@media only screen and (max-width: 979px) {
	#main-nav-wrap { display: block !important; }
}*/
@media screen and (min-width: 980px) {
	.mobile #main-nav-wrap { display: block !important; }
}
.oldie #main-nav-wrap { display: block !important; }

/* ==========================================================================
   Plugins -n- plg  
   ========================================================================== */
   
/*
 * jQuery FlexSlider v1.8
 * http://www.woothemes.com/flexslider/
 *
 * Copyright 2012 WooThemes
 * Free to use under the MIT license.
 * http://www.opensource.org/licenses/mit-license.php
 */
/* Browser Resets */
.flex-container a:active,
.flexslider a:active {outline: none;}
.slides,
.flex-control-nav,
.flex-direction-nav {margin: 0; padding: 0; list-style: none;} 
/* FlexSlider Necessary Styles
*********************************/ 
.flexslider {width: 100%; margin: 0; padding: 0;}
.flexslider .slides > li {display: none;} /* Hide the slides before the JS is loaded. Avoids image jumping */
.flexslider .slides img {max-width: 100%; display: block;}
.flex-pauseplay span {text-transform: capitalize;}
/* Clearfix for the .slides element */
.slides:after {content: "."; display: block; clear: both; visibility: hidden; line-height: 0; height: 0;} 
html[xmlns] .slides {display: block;} 
* html .slides {height: 1%;}
/* No JavaScript Fallback */
/* If you are not using another script, such as Modernizr, make sure you
 * include js that eliminates this class on page load */
.no-js .slides > li:first-child {display: block;}
/* FlexSlider Default Theme
*********************************/
.flexslider {
	background: #c0c0c0;
	height: 310px;
	position: relative; 
	width: 940px;
	zoom: 1;
 }
 
.flexslider .slides {zoom: 1;}
.flexslider .slides > li {position: relative;}
/* Suggested container for "Slide" animation setups. Can replace this with your own, if you wish */

.flex-container {
	height: 340px;
	position: relative;
	zoom: 1; 
}

/* Caption style */
/* IE rgba() hack */
.flex-caption {background:none; -ms-filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#4C000000,endColorstr=#4C000000);
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#4C000000,endColorstr=#4C000000); zoom: 1;}
.flex-caption {width: 96%; padding: 2%; position: absolute; left: 0; bottom: 0; background: rgba(0,0,0,.3); color: #fff; text-shadow: 0 -1px 0 rgba(0,0,0,.3); font-size: 14px; line-height: 18px;}
/* Direction Nav */
.flex-direction-nav li a {width: 52px; height: 52px; margin: -13px 0 0; display: block; background: url(../img/flexslider/bg_direction_nav.png) no-repeat 0 0; position: absolute; top: 50%; cursor: pointer; text-indent: -9999px;}
.flex-direction-nav li .next {background-position: -52px 0; right: -24px;}
.flex-direction-nav li .prev {left: -16px;}
.flex-direction-nav li .disabled {opacity: .3; filter:alpha(opacity=30); cursor: default;}

/* Control Nav */

.flex-control-nav {
	background: url('../img/bg-stripe-control-nav.png') 0 6px no-repeat;
	width: 100%; 
	position: absolute; 
	bottom: -34px; 
	text-align: center;
}

.flex-control-nav ol { width: 200px; height: 20px; background: #000; }

.flex-control-nav li {margin: 0 0 0 5px; display: inline-block; zoom: 1; *display: inline; }
.flex-control-nav li:first-child {margin: 0;}

.flex-control-nav li a {
	width: 15px; 
	height: 15px; 
	display: block; 
	background: url('../img/bg-control-nav.png') no-repeat 0 -20px; 
	cursor: pointer; 
	text-indent: -9999px;
}

.flex-control-nav li a:hover {background-position: 0 -41px;}
.flex-control-nav li a.active {background-position: 0 0; cursor: default;}