/*
Theme Name: Minim
Theme URI: http://www.wpexplorer.com
Description: Minim WordPress theme by AJ Clarke from <a href="http://www.wpexplorer.com">WPExplorer.com</a>
Author: AJ Clarke
Version: 1.02
*/


/*import css files*/
@import url(http://fonts.googleapis.com/css?family=Open+Sans:400,400italic,700,700italic&subset=latin,greek);
@import url(http://fonts.googleapis.com/css?family=PT+Serif+Caption:400,400italic);
@import url(http://fonts.googleapis.com/css?family=Pacifico);

/*-----------------------------------------------------------------------------------*
/* = Reset default browser CSS. Based on work by Eric Meyer: http://meyerweb.com/eric/tools/css/reset/index.html
/*-----------------------------------------------------------------------------------*/
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, em, font, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
	border: 0;
	font-family: inherit;
	font-size: 100%;
	font-style: inherit;
	font-weight: inherit;
	margin: 0;
	outline: 0;
	padding: 0;
	vertical-align: baseline;
}

/* remember to define focus styles! */
:focus {
	outline: 0;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}

/* tables still need 'cellspacing="0"' in the markup */
table {
	border-collapse: separate;
	border-spacing: 0;
}
caption, th, td {
	font-weight: normal;
	text-align: left;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: "";
}
blockquote, q {
	quotes: "" "";
}
a img {
	border: 0;
}

/* Block elements */
header, hgroup, footer, section, article, aside {
	display: block;
}

/*-----------------------------------------------------------------------------------*
/* = Body, Common Classes & Wrap
/*-----------------------------------------------------------------------------------*/

html{
	background-color: #C3B295;
    background-image: url("http://www.buschier.eu/images/bg.gif");
    background-position: left top;
    background-repeat: repeat-x;
    height: 100%;
    width: 100%;
}
body {
    font-size: 13px;
    line-height: 1.4em;
    color: #444;
    font-family: 'Helvetica Nue', Arial, sans-serif;
	margin-bottom: 25px;
}

/*links and text*/
a {
    text-decoration: none;
    color: #c5aa02;
}
a:hover {
    text-decoration: none;
	color: #169cdd;
}
p { margin: 0 0 1em }
strong { font-weight: 700 }
em { font-style: italic }
blockquote{
	background: #fff;
    margin: 30px 0px;
    padding: 20px;
    border: 1px solid #ddd;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
}
blockquote p:last-child{
	margin: 0px;
}
pre {
	background: #fff url("images/pre-bg.png") repeat;
	margin: 30px 0px;
	padding: 25px 20px;
	line-height: 25px;
	border: 1px solid #ddd;
	white-space: pre-wrap;       /* css-3 */
	white-space: -moz-pre-wrap;  /* Mozilla */
	white-space: -pre-wrap;      /* Opera 4-6 */
	white-space: -o-pre-wrap;    /* Opera 7 */
	word-wrap: break-word;       /* Internet Explorer 5.5+ */
}

address{
	font-family: Georgia, "Times New Roman", Times, serif;
	font-style: italic;
	margin-top: 20px;
	margin-bottom: 20px;
}

.entry ul{
	margin-top: 20px;
	margin-bottom: 17px;
	margin-left: 20px;
	list-style: disc;
	list-style-position: inside;
}
.entry ol{
	margin-top: 20px;
	margin-bottom: 17px;
	margin-left: 20px;
	list-style: decimal;
	list-style-position: inside;
}

.entry ul li,
.entry ol li{
	margin-bottom: 3px;
}


/*clear fix*/
.clear { clear: both }
.clearfix:after {
    display: block;
    visibility: hidden;
    content: ".";
    clear: both;
    text-indent: -9999px;
    height: 0;
}
.remove-margin { margin-right: 0 !important }

/*-----------------------------------------------------------------------------------*
/* = Structure
/*-----------------------------------------------------------------------------------*/
#wrap{
	margin: 0 auto;
	width: 950px;
	position: relative;
	background-color:#f9f9f9;
	-webkit-border-top-right-radius: 4px;
	-webkit-border-top-left-radius: 04px;
	-moz-border-radius-topright: 4px;
	-moz-border-radius-topleft: 04px;
	border-top-right-radius: 4px;
	border-top-left-radius: 4px;
}
#main{
	float: right;
	width: 610px;
	padding: 20px;
	padding-top:22px;
	background:#f9f9f9;
	text-shadow: 1px 1px 1px #fff;
	-moz-border-radius:4px; 
	-khtml-border-radius:4px; 
	-webkit-border-radius:4px; 
	border-radius:4px;
}
#sidebar {
	position: absolute;
	top: 0px;
	left: 0px;
	margin-top:0 !important;
}


/*-----------------------------------------------------------------------------------*
/* = Headings
/*-----------------------------------------------------------------------------------*/

h1,
h2,
h3,
h4,
h5,
h6 {
    color: #333;
    line-height: 1.2em;
	font-weight: bold;
}
h1 {
	font-family: 'Helvetica Nue', Open Sans, Arial, sans-serif;
    font-size: 24px;
    line-height: 1.2em;
	margin-bottom: 20px;
	padding-bottom: 20px;
	background: url("images/double-border.png") bottom repeat-x;
}
h2 { font-size: 18px }
h3 { font-size: 14px }
h4 { font-size: 12px; }
h2,
h3,
h4,
h5,
h6 {
    margin-top: 30px;
    margin-bottom: 20px;
}
h1 a,
h2 a,
h3 a,
h4 a { color: #333 }
h2 a:hover,
h3 a:hover,
h4 a:hover { color: #c5aa02; text-decoration: none; }

/*-----------------------------------------------------------------------------------*
/* = WordPress Styles
/*-----------------------------------------------------------------------------------*/

/*sticky*/
.sticky{}

/*gallery captio*/
.gallery-caption

/*by post author*/
.bypostauthor{}

/*aligns*/
.aligncenter{
	display:block;
	margin:0 auto;
}
.alignright{
	float:right;
	margin:15px 0 15px 15px;
}
.alignleft{
	float:left;
	margin:15px 15px 15px 0;
}
img.aligncenter,
img.alignright,
img.alignleft{
	padding: 3px;
	background: #eee;
	border: 1px solid #ddd;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
}


/*floats*/
.floatleft{ float:left}
.floatright{ float:right}
.nofloat{ float: none !important; }

/*text style*/
.textcenter{ text-align:center}
.textright{ text-align:right}
.textleft{ text-align:left}

/*captions*/
.wp-caption{
	border:1px solid #ddd; 
	text-align:center; 
	background-color:#f3f3f3; 
	padding-top:4px; 
	margin:10px; 
	-moz-border-radius:3px; 
	-khtml-border-radius:3px; 
	-webkit-border-radius:3px; 
	border-radius:3px;
}
.wp-caption img{
	margin:0; 
	padding:0; 
	border:0 none;
}
.wp-caption p.wp-caption-text{
	font-size:12px; 
	line-height:17px; 
	padding:0 4px 5px; 
	margin:0;
}

/*smiley reset*/
.wp-smiley{
	margin:0 !important;
	max-height:1em;
}

/*blockquote*/
blockquote.left{
	margin-right:20px;
	text-align:right;
	margin-left:0;
	width:33%;
	float:left;
}
blockquote.right{
	margin-left:20px;
	text-align:left;
	margin-right:0;
	width:33%;
	float:right;
}

/* calendar widget */
.widget_calendar {float: left;}
#wp-calendar {width: 100%; }
#wp-calendar caption {
	text-align: right;
	color: #999;
	font-size: 12px;
	margin-bottom: 10px;
}
#wp-calendar thead th { font-size: 12px; color: #999; text-align: center; } }
#wp-calendar tbody { color: #666; }
#wp-calendar tbody td { text-align: center; padding:6px;}
#wp-calendar tbody td:hover{ cursor: pointer; }
#wp-calendar tbody a { color: #fff !important; }
#wp-calendar tbody .pad { background: none; }
#wp-calendar tfoot #next { font-size: 12px; text-transform: uppercase; text-align: right; }
#wp-calendar tfoot #prev { font-size: 12px; text-transform: uppercase; padding-top: 10px; }


/*subscribe widget*/
#subscribe-blog #subscribe-field{
	margin-top: 5px;
	padding: 10px !important;
	webkit-border-radius: 2px;
	-moz-border-radius: 2px;
	border-radius: 2px;
}
#subscribe-blog #subscribe-field:focus{ }
#subscribe-blog input[type="submit"] {
	cursor: pointer;
	padding: 5px;
	font-size: 11px;
    background: #ffd964 url("images/yellow-btn.png");
    border: 1px solid #F9B653;
    color: #9C6533 !important;
    text-shadow: 1px 1px 0px rgba(255,255,255,0.4);
    box-shadow: 1px 1px 1px 0px rgba(0, 0, 0, 0.1);
	webkit-border-radius: 2px;
	-moz-border-radius: 2px;
	border-radius: 2px;
}
#subscribe-blog input[type="submit"]:hover{
	opacity: 0.90;
}

/*-----------------------------------------------------------------------------------*
/* = Headings
/*-----------------------------------------------------------------------------------*/
#logo{ 
	font-family: 'Pacifico';
	overflow: hidden;
	background: #fff;
	-webkit-border-top-left-radius: 3px;
	-webkit-border-top-right-radius: 3px;
	-moz-border-radius-topleft: 3px;
	-moz-border-radius-topright: 3px;
	border-top-left-radius: 3px;
	border-top-right-radius: 3px;
}
#logo img{
	display: block;
}
#logo h2,
#logo h1 {
	font-family: 'Pacifico';
	margin: 0;
    font-size: 32px;
	font-weight: normal;
	line-height: 1em;
	background: none;
	padding: 0px;
}
#logo h2 a,
#logo h1 a {
	display: block;
	padding: 25px 20px;
    color: #fff;
    text-decoration: none;
	-webkit-border-top-left-radius: 3px;
	-webkit-border-top-right-radius: 3px;
	-moz-border-radius-topleft: 3px;
	-moz-border-radius-topright: 3px;
	border-top-left-radius: 3px;
	border-top-right-radius: 3px;
}
#logo a{
	-webkit-border-top-left-radius: 3px;
	-webkit-border-top-right-radius: 3px;
	-moz-border-radius-topleft: 3px;
	-moz-border-radius-topright: 3px;
	border-top-left-radius: 3px;
	border-top-right-radius: 3px;
}
#logo a:hover,
#logo a:hover {
	background-color: #111;
}

#page-heading{
	margin-bottom: 10px;
}

/*-----------------------------------------------------------------------------------*
/* = Notification bar
/*-----------------------------------------------------------------------------------*/
#notifications{
	display: none;
	background: #E34529;
	border-bottom: 1px solid #fff;
	z-index: 3;
}
#notifications-inner{
	position: relative;
	margin: 0 auto;
	padding: 10px 0;
	width: 920px;
	color: #fff;
	text-align: center;
	text-shadow: 1px 1px 1px rgba(0,0,0, 0.4);
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 14px;
}
#notifications-inner p{
	margin: 0;
}
#notifications-inner a{
	color: #f9de64;
	font-style: italic;
}
#notifications-inner a:hover{
	text-decoration: underline;
}

a#notifications-exit{
	position: absolute;
	right: 0px;
	top: 50%;
	margin-top: -10px;
	text-indent: -9999px;
	height: 20px;
	width: 20px;
	background: url("images/notifications-exit.png") no-repeat;
	webkit-border-radius: 2px;
	-moz-border-radius: 2px;
	border-radius: 2px;
}
a#notifications-exit:hover{
	background-position: 0px -20px;
}

a#notifications-open{
	position: absolute;
	right: 0px;
	top: -60px;
	display: block;
	height: 55px;
	width: 38px;
	text-indent: -9999px;
	background: url("images/notification-ribbon.png") no-repeat;
	z-index: 2;
	-webkit-transition: top 0.2s ease-in-out;
    -moz-transition: top 0.2s ease-in-out;
    -o-transition: top 0.2s ease-in-out;
    -ms-transition: top 0.2s ease-in-out;
    transition: top 0.2s ease-in-out;
}
a#notifications-open:hover{
	top: -55px;
}


/*-----------------------------------------------------------------------------------*
/* = Menu
/*-----------------------------------------------------------------------------------*/
#menu {
	margin-bottom: 30px;
	color: #787878;
	font-size: 12px;
	font-weight: bold;
	border-bottom: 1px solid #fff;
}
#menu a{
	display: block;
	text-decoration: none;
	color: #787878;
	padding: 12px 20px;
	-webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}
#menu li{
	position:relative;
	display:block;
	overflow:visible;
	border-top: 1px solid #fff;
	border-bottom: 1px solid #eee;
}
#menu li:first-child{
	border-top: 1px solid #eee;
}
#menu a:hover,
.current-menu-item > a{
	color: #c5aa02 !important;
	background-color: #F5F5F5;
}
.sf-menu li.sfHover > a{
	background-color: #F5F5F5;
}

/* arrows */
.sf-sub-indicator {
	display: block;
	position: absolute;
	background: url("images/menu-arrow.png");
	top: 50%;
	right: 20px;
	width: 8px;
	height: 7px;
	text-indent: -9999px;
}
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 {
}


/*sub-items*/
.sf-menu li:hover {
	visibility:		inherit; /* fixes IE7 'sticky bug' */
}
.sf-menu ul {
	position: absolute;
	display: none;
	left: 250px;
	top: -2px;
	padding: 0px;
	margin: 0px;   
	width: 180px;
	background: #f9f9f9;
	border: 1px solid #ddd;
	-webkit-border-top-right-radius: 4px;
	-webkit-border-bottom-right-radius: 4px;
	-moz-border-radius-topright: 4px;
	-moz-border-radius-bottomright: 4px;
	border-top-right-radius: 4px;
	border-bottom-right-radius: 4px;
	z-index: 9999;
}
.sf-menu ul ul{
	left: 179px;
}
.sf-menu ul li:first-child{
	border-top: 1px solid #fff !important;
	-webkit-border-top-right-radius: 4px;
	-moz-border-radius-topright: 4px;
	border-top-right-radius: 4px;
}
.sf-menu ul li:first-child a{
	-webkit-border-top-right-radius: 4px;
	-moz-border-radius-topright: 4px;
	border-top-right-radius: 4px;
}
.sf-menu ul li:last-child{
	border-bottom: 0px !important;
}
.sf-menu ul li:last-child a{
	-webkit-border-bottom-right-radius: 4px;
	-moz-border-radius-bottomright: 4px;
	border-bottom-right-radius: 4px;
}


/*menu icons*/
#menu .icon-home > a{
	background-image: url("images/menu-icons/icon-home.png");
	background-position: 20px 40%;
	background-repeat: no-repeat;
	padding-left: 45px;
}
#menu .icon-briefcase > a{
	background-image: url("images/menu-icons/icon-briefcase.png");
	background-position: 20px center;
	background-repeat: no-repeat;
	padding-left: 45px;
}
#menu .icon-photo > a{
	background-image: url("images/menu-icons/icon-photo.png");
	background-position: 20px center;
	background-repeat: no-repeat;
	padding-left: 45px;
}
#menu .icon-pencil > a{
	background-image: url("images/menu-icons/icon-pencil.png");
	background-position: 20px center;
	background-repeat: no-repeat;
	padding-left: 45px;
}
#menu .icon-mail > a{
	background-image: url("images/menu-icons/icon-mail.png");
	background-position: 20px center;
	background-repeat: no-repeat;
	padding-left: 45px;
}
#menu .icon-gear > a{
	background-image: url("images/menu-icons/icon-gear.png");
	background-position: 20px center;
	background-repeat: no-repeat;
	padding-left: 45px;
}
#menu .icon-staff > a{
	background-image: url("images/menu-icons/icon-staff.png");
	background-position: 20px center;
	background-repeat: no-repeat;
	padding-left: 45px;
}
#menu .icon-bolt > a{
	background-image: url("images/menu-icons/icon-bolt.png");
	background-position: 20px center;
	background-repeat: no-repeat;
	padding-left: 45px;
}
#menu .icon-map > a{
	background-image: url("images/menu-icons/icon-map.png");
	background-position: 20px center;
	background-repeat: no-repeat;
	padding-left: 45px;
}
#menu .icon-testimonials > a{
	background-image: url("images/menu-icons/icon-testimonials.png");
	background-position: 20px center;
	background-repeat: no-repeat;
	padding-left: 45px;
}
#menu .icon-pen > a{
	background-image: url("images/menu-icons/icon-pen.png");
	background-position: 20px center;
	background-repeat: no-repeat;
	padding-left: 45px;
}
#menu .icon-grid > a{
	background-image: url("images/menu-icons/icon-grid.png");
	background-position: 20px center;
	background-repeat: no-repeat;
	padding-left: 45px;
}

#menu .icon-eyedropper > a{
	background-image: url("images/menu-icons/icon-eyedropper.png");
	background-position: 20px center;
	background-repeat: no-repeat;
	padding-left: 45px;
}
#menu .icon-shoppingcart > a{
	background-image: url("images/menu-icons/icon-shoppingcart.png");
	background-position: 20px center;
	background-repeat: no-repeat;
	padding-left: 45px;
}
#menu .icon-shoppingbasket > a{
	background-image: url("images/menu-icons/icon-shoppingbasket.png");
	background-position: 20px center;
	background-repeat: no-repeat;
	padding-left: 45px;
}
#menu .icon-camera > a{
	background-image: url("images/menu-icons/icon-camera.png");
	background-position: 20px center;
	background-repeat: no-repeat;
	padding-left: 45px;
}
#menu .icon-film > a{
	background-image: url("images/menu-icons/icon-film.png");
	background-position: 20px center;
	background-repeat: no-repeat;
	padding-left: 45px;
}
#menu .icon-marker > a{
	background-image: url("images/menu-icons/icon-marker.png");
	background-position: 20px center;
	background-repeat: no-repeat;
	padding-left: 45px;
}
#menu .icon-error > a{
	background-image: url("images/menu-icons/icon-error.png");
	background-position: 20px center;
	background-repeat: no-repeat;
	padding-left: 45px;
}


/*-----------------------------------------------------------------------------------*
/* = Homepage
/*-----------------------------------------------------------------------------------*/


/*heading*/
#homepage-heading{
	margin-top: 20px;
	margin-bottom: 20px;
	padding: 20px;
	border-top: 1px solid #ddd;
	border-bottom: 1px solid #ddd;
	background: #fff;
	text-align: center;
	font-size: 16px;
	font-family: Georgia, "Times New Roman", Times, serif;
	font-weight: normal;
	font-style: italic;
	color: #999;
}
#homepage-heading h1{
	margin: 0px;
	padding: 0px;
	border: 0px;
	background: none;
	font-style: normal;
	font-size: 28px;
	font-family: 'Helvetica Nue', Open Sans, Arial, sans-serif;
}
#homepage-heading p{
	margin-top: 5px;
	margin-bottom: 0px;
}


/*tabs*/
ul.home-tabs{
	font-size: 12px;
	font-weight: bold;
	border-bottom: 1px solid #ddd;
}
ul.home-tabs li{

}
ul.home-tabs li a{
	cursor: pointer;
	position: relative;
	float: left;
	height: 32px;
	line-height: 33px;
	padding: 0 10px;
	margin-right: 0px;
	background: #ddd url("images/homepage-tab.png") repeat-x;
	border: 1px solid #ccc;
	border-bottom: none;
}
ul.home-tabs li:first-child a {
	border-width: 1px 1px 0 1px;
	-moz-border-radius-topleft: 4px;
	-webkit-border-top-left-radius: 4px;
	border-top-left-radius: 4px;
}
ul.home-tabs li:last-child a {
	-moz-border-radius-topright: 4px;
	-webkit-border-top-right-radius: 4px;
	border-top-right-radius: 4px;
}
ul.home-tabs li a:hover{
	opacity: 0.8;
	color: #000;
}
ul.home-tabs li.ui-state-active a{
	background: #E92414 url("images/homepage-tab-active.png") repeat-x;
	border-color: #BE1D10;
	text-shadow: none;
	color: #fff;
	height: 33px;
	padding-top: 4px;
	margin-top: -4px;
	margin-bottom: -1px;
	-webkit-border-top-left-radius: 4px;
	-webkit-border-top-right-radius: 4px;
	-moz-border-radius-topleft: 4px;
	-moz-border-radius-topright: 4px;
	border-top-left-radius: 4px;
	border-top-right-radius: 4px;
}
ul.home-tabs a{
	display: block;
	color: #666;
}
ul.home-tabs a:hover{
	text-decoration: none;
}

.tab_content{
	border-top: 1px solid #fff;
}


/*portfolio*/
#homepage-portfolio{
}

/*blog*/
#homepage-blog .loop-entry:first-child{
	margin-top: 20px;
}

#homepage-blog .loop-entry:last-child{
	background: none;
	padding-bottom: 0px;
}

/*-----------------------------------------------------------------------------------*
/* = Portfolio
/*-----------------------------------------------------------------------------------*/

/*header*/
#portfolio-single-header{
	position: relative;
}


/*main*/
#portfolio-description{
	margin-bottom: 20px;
	padding-bottom: 20px;
	background: url("images/double-border.png") bottom repeat-x;
}
#portfolio-description p:last-child{
	margin: 0;
}
#portfolio-content{
	margin-top: -20px;
	margin-right: -20px;
}

/*portfolio items*/
li.portfolio-item{
	overflow: hidden;
	width: 295px;
	float: left;
	margin-right: 20px;
	margin-top: 20px;
	background: #f5f5f5 url("images/diagonal.png") repeat;
	border-bottom: 1px solid #ddd;
	-webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}
li.portfolio-item:hover{
}
li.portfolio-item a img{
	display: block;
	margin: 0px;
}


li.portfolio-item h2{
	margin: 0px;
	padding: 15px 5px;
	font-size: 12px;
	text-align: center;
	text-shadow: 1px 1px 1px #fff;
}
li.portfolio-item h2 span{
	font-size: 11px;
	color: #444;
	font-weight: normal;
}
li.portfolio-item h2 span a{
	margin-right: 5px;
	padding-right: 5px;
	background: url("images/terms-dash.png") right no-repeat;
}
li.portfolio-item h2 span a:last-child{
	background: none;
}

.portfolio-item-media{
	height: 165px;
	overflow: hidden;
	width: 100%;
}



/*single portfolio*/

#portfolio-single .fitvids{
	margin-bottom: 20px;
}

#portfolio-single-header{
	position: relative;
}

/*portfolio next/prev*/
#portfolio-single-nav{ }
#portfolio-single-nav a{
	position: absolute;
	display: block;
	top: 50%;
	margin-top: -30px; /*20px for bottom margin & 10px for arrow height*/
	height: 20px;
	width: 20px;
	text-indent: -9999px;
	-webkit-border-radius: 2px;
	-moz-border-radius: 2px;
	border-radius: 2px;
	-webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}
#portfolio-single-nav #nav-left a{
    background: #333 url('images/arrow-left.png') center center no-repeat;
    right: 25px;
}
#portfolio-single-nav #nav-right a{
    background: #333 url('images/arrow-right.png') center center no-repeat;
    right: 0px;
}
#portfolio-single-nav #nav-left a:hover,
#portfolio-single-nav #nav-right a:hover{
	background-color: #c5aa02;
}

/*images*/
#portfolio-single-images{
	float: right;
	margin-left: 20px;
	margin-bottom: 20px;
}
.portfolio-single-img{
	margin-bottom: 20px;
	border: 1px solid #ddd;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
}
.portfolio-single-img img{
	display: block;
	margin: 0;
	padding: 3px;
	background: #eee;
	border: 1px solid #fff;
	background: #eee;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
}

/*gallery*/
#portfolio-gallery-images{
	margin-right: -20px;
}



/*button*/
#portfolio-single-btn {
}

/*-----------------------------------------------------------------------------------*
/* = Homepage Slider
/*-----------------------------------------------------------------------------------*/

/*video slide*/
.home-video{
	position: relative;
	margin-bottom: -10px;
}

.page-slider{
	margin-bottom: 20px;
}


/* The Nivo Slider styles */
#slider-wrap{
	height: 320px;
	width: 610px;
	position: relative;
}
.nivoSlider {
	position:relative;
	height: 320px;
	width: 610px;
	background:url("images/loader.gif") no-repeat 50% 50%;
}
.nivoSlider img {
	display: none;
	position:absolute;
	top:0px;
	left:0px;
}
.nivoSlider a.nivo-imageLink {
	position:absolute;
	top:0px;
	left:0px;
	width:100%;
	height:100%;
	border:0;
	padding:0;
	margin:0;
	z-index:6;
	display:none;
}
.nivo-slice {
	display:block;
	position:absolute;
	z-index:5;
	height:100%;
}
.nivo-box {
	display:block;
	position:absolute;
	z-index:5;
}
.nivo-caption {
	display: none !important;
}
.nivo-directionNav a {
	z-index:9;
	cursor:pointer;
	width: 25px;
	height: 25px;
	display: block;
	position: absolute;
	bottom : 10px;
	cursor: pointer;
	text-indent: -9999px;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
}
.nivo-prevNav {
	left: 40px;
	background: #1a1a1a url("images/slider/arrow-right.png") center center no-repeat;
}
.nivo-nextNav {
	left: 10px;
	background: #1a1a1a url("images/slider/arrow-left.png") center center no-repeat;
}
.nivo-directionNav a:hover{
	background-color: #ee3124;
}


/*Shadow*/
#slider-shadow{
	display: block;
	width: 427px;
	height: 20px;
	background: url("images/slider/slider-shadow.png");
	position: absolute;
	bottom: -14px;
	right: 0px;
}
#video-shadow{
	position: relative;
	top: -3px;
	display: block;
	width: 100%;
	height: 20px;
	background: url("images/slider/slider-shadow.png") right bottom no-repeat;
}


/*-----------------------------------------------------------------------------------*
/* = Category Drop-Down / Portfolio & Blog
/*-----------------------------------------------------------------------------------*/
#cat-drop{
	position: absolute;
	width: 130px;
	background: #fff;
	border: 1px solid #B8B8B8;
	top: 50%;
	margin-top: -25px;
	right: 0px;
	z-index: 99;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
}
#cat-drop a.all{
	display: block;
	font-size: 12px;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
}
#cat-drop a.inactive{
	background: url("images/portfolio-category-drop.png") right top no-repeat;
}
#cat-drop a.active{
	background: none;
}
#cat-drop a{
	height: 26px;
	line-height: 26px;
	padding: 0px 10px;
	color: #666;
}
#cat-drop a:hover{
	color: #000;
	text-decoration: none;
}
#cat-drop ul a{
	display: block;
}
#cat-drop ul a:hover{
	color: #c5aa02;
	background-color: #f5f5f5;
	text-decoration: none;
}

#cat-drop ul{
	display: none;
	border-top: 1px solid #eee;
}
#cat-drop li li{
	border-bottom: 1px solid #eee;
}
#cat-drop li li:last-child{
	border: 0px;
}

/*-----------------------------------------------------------------------------------*
/* = Staff
/*-----------------------------------------------------------------------------------*/
#staff-wrap{
}
.staff-member{
	float: left;
	width: 295px;
	margin-right: 20px;
	margin-bottom: 40px;
	padding-bottom: 40px;
	text-align: center;
	border-bottom: 1px solid #ddd;
}
.staff-member p:last-child{
	margin: 0;
}
.staff-img,
.staff-post-thumbnail{
	margin: 0 auto;
	width: 200px;
	border-radius: 999px; /*give thumb rounded look*/
	border: 1px solid #ddd;
}
.staff-img img,
.staff-post-thumbnail img{
	width: 190px;
	display: block;
	border-radius: 999px; /*give thumb rounded look*/
	padding: 4px;
	background: #eee;
	border: 1px solid #fff;
}
.staff-post-thumbnail{
	float: right;
	width: 200px;
	margin-left: 20px;
}
.staff-member h2{
	margin-top: 20px;
	font-size: 16px;
}
.staff-member h2 span{
	display: block;
	font-size: 12px;
	color: #999;
}


/*staff page*/
#single-staff-header{
	position: relative;
	margin-bottom: 20px;
	background: url("images/double-border.png") bottom repeat-x;
}
#single-staff-header h1{
	width: 300px;
	background: 0px;
	margin: 0px;
}
#single-staff-social{
	height: 30px;
	line-height: 30px;
	position: absolute;
	right: 0px;
	top: 50%;
	margin-top: -25px;
	color: #999;
	font-weight: bold;
}
#single-staff-social span{
	display: block;
	float: left;
	height: 30px;
	line-height: 30px;
	border-right: 1px dotted #666;
	padding-right: 10px;
	margin-right: 10px;
}
#single-staff-social a{
	position: relative;
}
#staff-post-meta{
	color: #999;
	margin-bottom: 20px;
	padding-bottom: 10px;
	background: url("images/small-line.png") left bottom no-repeat;
}
#staff-post-meta strong{
	color: #444;
}

/*-----------------------------------------------------------------------------------*
/* = Gallery
/*-----------------------------------------------------------------------------------*/
.gallery-wrap{
	margin-right: -20px;
}
.gallery-item{
	float: left;
	margin-right: 20px;
	margin-bottom: 20px;
}
.gallery-item{
	border: 1px solid #ddd;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
}
.gallery-item img{
	display: block;
	margin: 0;
	width: 180px;
	padding: 3px;
	border: 1px solid #fff;
	background: #eee;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
}


/*-----------------------------------------------------------------------------------*
/* = Sitemap
/*-----------------------------------------------------------------------------------*/
#sitemap-wrap{
	margin-right: -40px; /*make up for extra right margin from container below*/
	margin-top: -30px;
}
.sitemap-container{
	width: 285px;
	float: left;
	margin-right: 40px;
	color: #999;
}

.sitemap-container h2{
	margin-bottom: 20px;
	padding-bottom: 20px;
	border-bottom: 1px solid #eee;
}

.sitemap-container ul{
	list-style-position: inside;
	list-style-type: disc;
}
.sitemap-container li{
	margin-bottom: 5px;
}

/*-----------------------------------------------------------------------------------*
/* = Entries
/*-----------------------------------------------------------------------------------*/

.loop-entry{
	position: relative;
	margin-bottom: 20px;
	padding-bottom: 20px;
	background: url("images/double-border-light.png") bottom center repeat-x;
}
.loop-entry-content{
	float: right;
	width: 280px;
}
.loop-entry h2{
	margin-top: 0px;
	margin-bottom: 0px;
}
.loop-meta{
	height: 20px;
	line-height: 20px;
	margin-bottom: 10px;
	font-size: 11px;
	color: #888;
}
.loop-meta .meta-date{
	background: url("images/calendar.gif") left center no-repeat;
	padding-left: 15px;
	margin-right: 10px;
}
.loop-meta .meta-comments{
	background: url("images/comments.gif") left center no-repeat;
	padding-left: 15px;
}
.loop-entry-thumbnail{
	position: relative;
	float: left;
	border: 1px solid #ddd;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
}
.loop-entry-thumbnail img{
	z-index: 1;
	display: block;
	padding: 3px;
	background: #eee;
	border: 1px solid #fff;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
}
.entry-btn{
	margin-top: -10px;
	float: left;
	display: block;
	height: 30px;
	line-height: 30px;
	padding: 0 10px;
	color: #5E3D1C;
	font-size: 11px;
    background: #FFC74A url("images/yellow-btn.png") repeat-x;
    border: 1px solid #F9B653;
    color: #9C6533 !important;
    text-shadow: 1px 1px 0px rgba(255,255,255,0.4);
	webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	-moz-box-shadow: 0px 0px 2px rgba(0,0,0, .2);
	-webkit-box-shadow: 0px 0px 2px rgba(0,0,0, .2);
	box-shadow:  0px 0px 2px rgba(0,0,0, .2);
}
.entry-btn:hover{
	background-image: url("images/yellow-btn-hover.png");
	text-decoration: none;
	color: #5c3c1e;
	opacity: 0.90;
}
.entry-btn:active{
	background-image: url("images/yellow-btn-active.png");
}

/*-----------------------------------------------------------------------------------*
/* = Blog, Posts & Pages
/*-----------------------------------------------------------------------------------*/
#blog-header{
	position: relative;
}
.post {
	margin-bottom: 20px;

}
.post ul,
.post ol {
    margin-left: 30px;
    margin-bottom: 10px;
	list-style: disc;
}

/*thumbnail*/
.post-thumbnail{
	margin-left: 20px;
	margin-bottom: 20px;
	float: right;
	border: 1px solid #ddd;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
}
.post-thumbnail img{
	display: block;
	padding: 3px;
	background: #eee;
	border: 1px solid #fff;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
}

.post-thumbnail-full{
	float: none !important;
	margin-left: 0px !important;
}

/*header*/
#single-post-header{
	position: relative;
	background: url("images/double-border.png") bottom repeat-x;
	margin-bottom: 20px;
}
#single-post-header h1{
	background: none;
	width: 430px;
	margin-bottom: 0px;
}

/*post meta*/
.post-meta{
	font-size: 12px;
    color: #999;
	position: absolute;
	right: 0px;
	top: 0px;
	border-left: 1px dotted #666;
	padding-left: 20px;
	max-width: 160px;
}
.post-meta strong{
	color: #444;
}

.post-meta span{
	display: block;
}
.post-meta span:first-child{
	margin-left: 0px;
}


/*post tags*/
.post-tags {
    margin-right: 10px;
    margin-top: 30px;
    font-size: 11px;
}
.post-tags a {
}

/*-----------------------------------------------------------------------------------*
/* = Pagination
/*-----------------------------------------------------------------------------------*/

/*regular pagination*/
.pagination {
	margin-top: 20px;
	text-shadow: none;
}
.pagination a,
.pagination span
{
    line-height: 25px;
    height: 25px;
    width: 25px;
    text-align: center;
    margin-right: 5px;
    display: block;
    float: left;
	background: #eee url("images/pagination.png") repeat-x;
	border: 1px solid #ccc;
	font-size: 12px;
	color: #888;
	text-shadow: 1px 1px 1px #fff;
	-webkit-border-radius: 2px;
	-moz-border-radius: 2px;
	border-radius: 2px;
}
.pagination a:hover,
.pagination span.current
{
    text-decoration: none;
	color: #FFF;
	text-shadow: none;
	background: #f04f44 url("images/pagination-color.png") repeat-x;
	border-color: #BE1D10;
}

/*post pagination*/
#post-page-navigation{
	margin-top: 20px;
}
#post-page-navigation span{
	font-weight: bold;
	font-size: 12px;
    line-height: 25px;
    height: 25px;
    width: 25px;
    text-align: center;
    margin-right: 5px;
    display: block;
    float: left;
	color: #FFF;
	text-shadow: none;
	background: #f04f44 url("images/pagination-color.png") repeat-x;
	border: 1px solid #BE1D10;
	-webkit-border-radius: 2px;
	-moz-border-radius: 2px;
	border-radius: 2px;
}
#post-page-navigation a span{
	text-shadow: 1px 1px 1px #fff;
	background: #eee url("images/pagination.png") repeat-x;
	border-color:  #ccc;
	font-size: 12px;
	color: #888;
	text-decoration: none;
}
#post-page-navigation a:hover span{
	color: #000;
	opacity: 0.8;
}

/*cats and tags*/
#post-bottom{
	margin-top: 20px;
	padding-top: 20px;
	font-size: 12px;
	background: url("images/double-border.png") top repeat-x;
	text-transform: capitalize;
}
#post-bottom ul{
	list-style: none;
	margin: 0px;
}
#post-bottom  li{
	float: left;
	margin-right: 5px;
	padding-right: 5px;
	background: url("images/terms-dash.png") right center no-repeat;
}
#post-bottom li:first-child,
#post-bottom li:last-child{
	background: none;
	padding-right: 0px;
}

/*next/prev post links*/
#post-nextprev{
	margin-top: 20px;
	padding-top: 20px;
	background: url("images/double-border.png") top repeat-x;
	color: #666;
	font-size: 12px;
}
#post-nextprev a{
	color: #666;
}
#post-nextprev a:hover{
	color: #333;
	text-decoration: none;
	font-style: italic;
}
#post-next,
#post-prev{
	width: 50%;
	float: left;
}
#post-prev{
	text-align: right;
	float: right;
}

/*-----------------------------------------------------------------------------------*
/* = Comments
/*-----------------------------------------------------------------------------------*/
#commentsbox {
	width: 100%;
	overflow: hidden;
}
#comments{
	font-size: 16px;
	margin-top: 20px;
	margin-bottom: 20px;
	padding-top: 20px;
	background: url("images/double-border.png") top repeat-x;
}
#commentsbox ol,
#commentsbox ul {
    list-style: none;
    margin: 0 !important;
}
#commentsbox li { }
.children {
    list-style: none;
    margin: 30px 0 0;
    text-indent: 0;
}
.children li.depth-2 { margin: 0 0 0px 65px }
.children li.depth-3 { margin: 0 0 0px 65px }
.children li.depth-4 { margin: 0 0 0px 65px }
.children li.depth-5 { margin: 0 0 0px 65px }
.children li.depth-6 { margin: 0 0 0px 65px }
.children li.depth-7 { margin: 0 0 0px 65px }
.children li.depth-8 { margin: 0 0 0px 65px }
.children li.depth-9 { margin: 0 0 0px 65px }
.children li.depth-10 { margin: 0 0 0px 65px }
.comment-body {
    position: relative;
    padding: 15px 15px 0;
	margin-left: 65px;
	margin-bottom: 20px;
	background: #ffffff;
	border: 1px solid #ddd;
	transition: all 0.4s ease;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
}
.comment-body p{
	margin-bottom: 15px !important;
}
.comment-body:after {
    content: '';
    position: absolute;
    top: 10px;
    left: -7px;
    width: 7px;
    height: 13px;
    background: url("images/comment-arrow.png") no-repeat;
}
.comment-body:hover{
}
.reply{
	position: absolute;
	top: 15px;
	right: 15px;
}
.comment-reply-link {
	font-size: 10px;
	padding: 5px 7px !important;
	border: 1px solid #ccc;
	background: #f5f5f5;
	color: #444;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	cursor: pointer;
	nowhitespace: afterproperty;
	background:-moz-linear-gradient(center top,rgba(255,255,255,.1) 0%,rgba(0,0,0,.1) 100%);
	background:-webkit-gradient(linear,center bottom,center top,from(rgba(0,0,0,.1)),to(rgba(255,255,255,.1)));
	filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#19FFFFFF',EndColorStr='#19000000');
	-ms-filter:"progid:DXImageTransform.Microsoft.gradient(startColorStr='#19FFFFFF',EndColorStr='#19000000')";
	-moz-user-select:none;
	-webkit-transition:opacity 0.2s ease-in-out; 
	-moz-transition:opacity 0.2s ease-in-out;
	 -o-transition:opacity 0.2s ease-in-out;
	 transition:opacity 0.2s ease-in-out;
	text-decoration: none;
}
.comment-reply-link:hover{
	text-decoration: none;
	color: #c5aa02;
}
#commentsbox .avatar {
	position: absolute;
	top: 0px;
	left: -65px;
	height: 40px;
	width: 40px;
	padding: 0px;
	padding: 3px;
	background: #fff;
	border: 1px solid #ddd;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
}
.comment-author {
	font-weight: bold;
    color: #000;
	line-height: 1em;
	margin-bottom: 5px;
}
.says { display: none }
.comment-meta{
	margin-bottom: 10px;
	margin-top: -4px;
}
.comment-meta a {
    font-size: 11px;
	font-style: italic;
    color: #666;
}
.cancel-comment-reply {
	font-size: 12px;
}
.cancel-comment-reply a {
    color: #F00 !important;
    line-height: 20px;
    height: 20px;
}
.cancel-comment-reply a:hover{
	text-decoration: none;
	font-style: italic;
}
#comments-respond {
	clear: left;
	text-transform: none;
	font-weight: bold;
	font-size: 14px;
	margin-top: 0px;
	margin-bottom: 15px;
}
#comments-respond-meta{
	font-size: 12px;
}
#commentform label {
    display: block;
}
#commentform input#author,
#commentform input#email,
#commentform input#url {
	width: 45%;
	margin-top: 10px;
}
#commentform textarea {
	width: 95%;
	margin: 10px 0;
}
#commentSubmit {
	margin-bottom: 20px;
	outline: none;
}

/*WP JetPack*/
.comment-subscription-form{
	font-size: 12px;
}
.comment-subscription-form input{
	float: left;
	margin-right: 5px;
}

/*-----------------------------------------------------------------------------------*
/* = Sidebar
/*-----------------------------------------------------------------------------------*/

/*sidebar with animation*/
#sidebar-menu{
	width: 250px;
	background: #f9f9f9;
	-moz-border-radius:4px; 
	-khtml-border-radius:4px; 
	-webkit-border-radius:4px; 
	border-radius:4px;
	-webkit-box-shadow: 0px 0px 3px rgba(128, 128, 128, 0.1);
	-moz-box-shadow: 0px 0px 3px rgba(128, 128, 128, 0.1);
	box-shadow: 0px 0px 3px rgba(128, 128, 128, 0.1);
}


/*static sidebar*/
.sidebar-box{
	margin-top: 20px;
	width: 210px;
	padding: 20px;
	background: #f9f9f9;
	border:1px solid #ddd;
	border-bottom: double #ddd;
	-moz-border-radius:4px; 
	-khtml-border-radius:4px; 
	-webkit-border-radius:4px; 
	border-radius:4px;
	-webkit-box-shadow: 0px 0px 3px rgba(128, 128, 128, 0.1);
	-moz-box-shadow: 0px 0px 3px rgba(128, 128, 128, 0.1);
	box-shadow: 0px 0px 3px rgba(128, 128, 128, 0.1);
}
.sidebar-box h4 {
	color: #333;
	font-size: 12px;
    margin-top: 0px !important;
	border-bottom: 1px solid #eee;
	padding-bottom: 10px;
    margin-bottom: 20px;
}
.sidebar-box ul {
    list-style: none;
}
.sidebar-box li{
	margin-bottom: 5px;
}
.sidebar-box a{
	color: #666;
}
.sidebar-box a:hover,
.current-menu-item a{
	color: #c5aa02;
}


/*sidebar widgets*/
#sidebar .tagcloud a {
	float: left;
	font-size: 12px !important;
	line-height: 1em !important;
	display: block;
	color: #666;
    margin-right: 5px;
	margin-bottom: 5px;
    padding: 7px 10px;
	line-height: 1.3em;
    background: #eee;
	webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	-webkit-transition: background 0.2s ease-in-out;
    -moz-transition: background 0.2s ease-in-out;
    -o-transition: background 0.2s ease-in-out;
    -ms-transition: background 0.2s ease-in-out;
    transition: background 0.2s ease-in-out;
}
#sidebar .tagcloud a:hover{
	background: #333 !important;
	color: #fff;
	text-decoration: none;
}
#sidebar #wp-calendar caption { color: #999; }
#sidebar #wp-calendar tbody { color: #666; }
#sidebar #wp-calendar tbody td { background: #fff; border: 1px solid #eee;}
#sidebar #wp-calendar tbody td:hover{ background: #eee; }
#sidebar #wp-calendar tbody a { color: #c5aa02 !important; }

#sidebar #subscribe-blog #subscribe-field{
	font-size: 11px;
	width: 200px !important;
	padding: 10px 5px !important;
}
#sidebar .tweets a{
	color: #c5aa02;
}
#sidebar .tweets a:hover{
	color: #169cdd;
}

/*back to top button*/
#backtop{
	display: none;
	position: absolute;
	bottom: -23px;
	left: 50%;
	width: 110px;
	margin-left: -55px;
	height: 25px;
	line-height: 25px;
	text-align: center;
	text-decoration: none;
	color: #eee;
	text-shadow: none;
	font-weight: bold;
	font-size: 11px;
	background: #333;
	-webkit-border-bottom-right-radius: 4px;
	-webkit-border-bottom-left-radius: 04px;
	-moz-border-radius-bottomright: 4px;
	-moz-border-radius-bottomleft: 04px;
	border-bottom-right-radius: 4px;
	border-bottom-left-radius: 04px;
}
#backtop:after{
	content:"";
	position: absolute;
	top: -5px;
	left: 50%;
	margin-left: -6px;
	width:0px; 
	height:0px; 
	border-left:6px solid transparent;  /* left arrow slant */
	border-right:6px solid transparent; /* right arrow slant */
	border-bottom:6px solid #333; /* bottom, add background color here */
	font-size:0px;
	line-height:0px;
}
#backtop:hover{
	background-color: #c5aa02;
}
#backtop:hover:after{
	border-left:6px solid transparent;  /* left arrow slant */
	border-right:6px solid transparent; /* right arrow slant */
	border-bottom:6px solid #c5aa02; /* bottom, add background color here */
}

/*-----------------------------------------------------------------------------------*/
/* = Custom Widgets
/*-----------------------------------------------------------------------------------*/

.minim-flickr-widget{
	list-style: none !important;
	margin-right: -10px;
}
.minim-flickr-widget li{
	border: 0px !important;
	padding: 0px !important;
}
.minim-flickr-widget a{
	float: left;
	width: 52px;
	height: 52px;
	margin-right: 10px;
	margin-bottom: 6px;
	border: 5px solid #333;
	-webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}
.minim-flickr-widget a:hover{
	border-color: #c5aa02;
}
.minim-flickr-widget img{
	display: block;
	width: 52px;
	height: 52px;
}

/*-----------------------------------------------------------------------------------*/
/* = Footer
/*-----------------------------------------------------------------------------------*/

#main-bottom{
	margin: 20px -20px -20px;
}

/*tagline*/
#footer-tagline{
	position: relative;
	font-family: 'PT Serif Caption';
	font-style: italic;
	text-align: center;
	font-size: 18px;
	background: #e5e5e5 /*url(images/pattern-diamond.png) repeat*/;
	border-top: 1px solid #ccc;
	text-shadow: 1px 1px 1px #fff;
}
#footer-tagline-inner{
	padding: 20px;
	border-top: 1px solid #eee;
}
#footer-tagline p:last-child{
	margin-bottom: 0px;
}

#footer-wrap{
	background: #272727 url("images/footer-bg.png");
	-webkit-border-bottom-right-radius: 4px;
	-webkit-border-bottom-left-radius: 04px;
	-moz-border-radius-bottomright: 4px;
	-moz-border-radius-bottomleft: 04px;
	border-bottom-right-radius: 4px;
	border-bottom-left-radius: 4px;
	width:920px;
	margin-left:auto;
	margin-right:auto;
	padding:10px 0;
	text-align:center;
}
#footer{
	padding: 0 20px;
	color: #666;
	text-shadow: 0px 0px 1px #111;
}

#footer-left{
	float: left;
	width: 280px;
	padding-right: 20px;
}

#footer-right{
	width: 280px;
	float: left;
	padding-left: 20px;
}

#footer-left,
#footer-right{
}

#footer h4{
	margin-top: 0px;
	margin-bottom: 15px;
	color: #eee;
	font-size: 13px;
}
#footer h4 span{
}
#footer a{
	color: #888;
}
#footer a:hover{
	color: #c5aa02;
	text-decoration: none;
}

#footer ul li{
	padding: 8px 0;
	border-bottom: 1px solid #3b3b3b;
}
#footer ul li:first-child{
	border-top: 1px solid #3b3b3b;
}

#footer .textwidget a{
	color: #c5aa02 !important;
}
#footer .textwidget a:hover{
	text-decoration: underline;
}

/*footer widgets*/
.footer-widget{
	margin-bottom: 20px;
}

#footer #searchbar{
	margin: 0;
}

#footer .tagcloud a {
	float: left;
	font-size: 12px !important;
	line-height: 1em !important;
	display: block;
	color: #666;
    margin-right: 5px;
	margin-bottom: 5px;
    padding: 7px 10px;
	line-height: 1.3em;
    background: #333;
	webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	-webkit-transition: background 0.2s ease-in-out;
    -moz-transition: background 0.2s ease-in-out;
    -o-transition: background 0.2s ease-in-out;
    -ms-transition: background 0.2s ease-in-out;
    transition: background 0.2s ease-in-out;
}

#footer .tagcloud a:hover{ background: #555; color: #FFF !important;text-decoration: none; }
#footer #wp-calendar caption { color: #999; }
#footer #wp-calendar tbody { color: #666; }
#footer #wp-calendar tbody td { background: #333; border: 1px solid #000;}
#footer #wp-calendar tbody td:hover{ background: #555; color: #fff; }
#footer #wp-calendar tbody a { color: #fff !important; }
	
	
#footer #subscribe-blog #subscribe-field{
	background: #333;
	border: 1px solid #000;
}
#footer #subscribe-blog #subscribe-field:focus{
	background-color: #555;
	color: #fff;
}

/*callout ribbon*/
.callout-ribbon-wrap{
	height: 55px;
	position: relative;
}
.callout-ribbon{
	position: absolute;
	height: 55px;
	line-height: 37px;
	text-align: left;
	padding-left: 57px;
	padding-right: 30px;
	background: url("images/callout-ribbon.png") left center no-repeat;
	top: 0px;
	left: -57px;
	color: #fff;
	font-size: 14px;
	font-family: 'Helvetica Nue', Open Sans, Arial, sans-serif !important;
	font-weight: bold;
	text-shadow: none;
}
.callout-ribbon:after{
	content: "";
	display: block;
	position: absolute;
	right: -18px;
	top: 0px;
	height: 40px;
	width: 18px;
	background: url("images/callout-ribbon-right.png") no-repeat;
}
.callout-ribbon a{
	color: #1C5B7B !important;
	text-shadow: 1px 1px 1px #fff;
}
.callout-ribbon a:hover{
	color: #fff !important;
	text-shadow: none !important;
	text-decoration: none;
}


/*-------------------------------------------------*
/*	Social Widget
/*-------------------------------------------------*/
#social {
	list-style: none;
	margin-right: -7px;
}
#social li {
	display: block;
	float: left;
    margin-right: 7px;
	border: 0px !important;
}
#social a {
    background: url("images/social-sprite.png") no-repeat;
    display: block;
    float: left;
    height: 24px;
    width: 24px;
    text-indent: -9999px;
    opacity: 0.4;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}
#footer #social li {
}
#footer #social a {
    background: url("images/social-sprite-footer.png") no-repeat;
}
#social a:hover {
	opacity: 1;
}
.twitter {
	background-position: 0px 0px;
}
.twitter:hover {
	background-position: 0px -34px !important;
}
.dribble {
    background-position: -24px 0px !important;
}
.dribble:hover {
	background-position: -24px -34px !important;
}
.forrrst {
    background-position: -48px 0px !important;
}
.forrrst:hover {
	background-position: -48px -34px !important;
}
.flickr {
    background-position: -72px 0px !important;
}
.flickr:hover {
	background-position: -72px -34px !important;
}
.facebook {
	background-position: -96px 0px !important;
}
.facebook:hover {
	background-position: -96px -34px !important;
}
.vimeo {
    background-position: -120px 0px !important;
}
.vimeo:hover {
	background-position: -120px -34px !important;
}
.rss {
    background-position: -144px 0px !important;
}
.rss:hover {
	background-position: -144px -34px !important;
}

/*-----------------------------------------------------------------------------------*
/* = Copyright
/*-----------------------------------------------------------------------------------*/
#copyright {
	width: 640px;
	float: right;
	margin-top: 25px;
	text-shadow: 0px 0px 0px #fff;
    font-size: 10px;
	text-align: center;
}
#copyright a{
	color: #999;
}
#copyright a:hover{
	color: #c5aa02;
	text-decoration: none;
}

/*-----------------------------------------------------------------------------------*
/* = Search Bar
/*-----------------------------------------------------------------------------------*/
#searchbar {
	margin: 20px;
    display: block;
    position: relative;
	width: 210px;
}
#search {
	font-size: 11px;
    position: relative;
    width: 168px;
    padding: 10px 30px 10px 10px;
    outline: none;
	background: #fff url("images/search-input-bg.png") repeat-x;
    border: 1px solid #ccc;
	color: #666;
	text-shadow: 1px 1px 1px #FFF;
	-webkit-border-radius: 0px;
	-moz-border-radius: 0px;
	border-radius: 0px;
	-moz-border-radius: 2px;
	-webkit-border-radius: 2px;
	border-radius: 2px;
}
#search:hover{
	-moz-box-shadow: none;
	-webkit-box-shadow: none;
	box-shadow:  none;
}
#search:focus {
	-moz-box-shadow: none;
	-webkit-box-shadow: none;
	box-shadow:  none;
}

/*-----------------------------------------------------------------------------------*/
/* = Page Breaks
/*-----------------------------------------------------------------------------------*/
.break-page{
	height: 1px;
	background: #ddd;
	margin: 20px 0;
}
hr { border: none }
.break-5 {
    padding: 5px;
    border: none;
}
.break-10 {
    padding: 10px;
    border: none;
}
.break-15 {
    padding: 15px;
    border: none;
}
.break-20 {
    padding: 20px;
    border: none;
}
.break-25 {
    padding: 25px;
    border: none;
}
.break-30 {
    padding: 30px;
    border: none;
}
.break-35 {
    padding: 35px;
    border: none;
}
.break-40 {
    padding: 40px;
    border: none;
}
.break-45 {
    padding: 45px;
    border: none;
}
.break-50 {
    padding: 50px;
    border: none;
}
.break-55 {
    padding: 55px;
    border: none;
}
.break-60 {
    padding: 60px;
    border: none;
}
.break-65 {
    padding: 65px;
    border: none;
}
.break-70 {
    padding: 70px;
    border: none;
}
.break-75 {
    padding: 75px;
    border: none;
}
.break-80 {
    padding: 80px;
    border: none;
}
.break-85 {
    padding: 85px;
    border: none;
}
.break-90 {
    padding: 90px;
    border: none;
}
.break-95 {
    padding: 95px;
    border: none;
}
.break-100 {
    padding: 100px;
    border: none;
}


/*-----------------------------------------------------------------------------------*/
/* = Form Styling
/*-----------------------------------------------------------------------------------*/
input[type="text"],
input[type="password"] {
	margin-top: -12px;
}
input[type="text"],
input[type="password"],
textarea {
    color: #999;
    padding: 7px;
   	border: 1px solid #ddd;
    background: #fff;
	-webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
}
input[type="text"]:focus,
input[type="password"]:focus,
textarea:focus {
	background: #fff;
	border: 1px solid #aaa;
	color: #444;
	-moz-box-shadow: 0 0 3px rgba(0,0,0,.2);
	-webkit-box-shadow: 0 0 3px rgba(0,0,0,.2);
	box-shadow:  0 0 3px rgba(0,0,0,.2);
}

/*contact form 7 specific*/
.wpcf7-form{
	margin-top: 40px;
}
.wpcf7 input[type="text"] {
	width: 250px;
}
.wpcf7 textarea {
    width: 95%;
	margin-top: 5px;
}
.wpcf7-form p { margin: 0; margin-bottom: 20px; font-weight: bold; }
.wpcf7-submit{margin-top: -5px; }

div.wpcf7-validation-errors,
.wpcf7-not-valid-tip { 
	text-shadow: none;
	border: transparent !important;
	background: #FFF780;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px; 
	padding: 10px !important;
	font-weight: bold;
	text-align: center;
	margin: 0 !important;
} 
div.wpcf7-validation-errors{
	width: 95%;
	padding: 10px 5px !important;
}

.wpcf7-not-valid-tip {
	display: block;
	position: relative !important;
	top: 0 !important;
	left: 0 !important;
	background: #FFF780 !important;
	font-size: 12px !important;
	margin-top: 8px !important;
	width: 40% !important;
}
span.wpcf7-not-valid-tip{
	text-align: center;
	text-shadow: none;
	padding: 5px;
	font-size: 11px;
	background: #ff5454 !important;
	border-color: #ff5454;
	color: #fff;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
}
.wpcf7-mail-sent-ok{
	text-align: center;
	text-shadow: none;
	padding: 10px;
	font-size: 11px;
	background: #59a80f !important;
	border-color: #59a80f;
	color: #fff;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
}

/*-----------------------------------------------------------------------------------*/
/* = Shortcodes
/*-----------------------------------------------------------------------------------*/

/*testimonials*/
.testimonial-wrap{
	position: relative;
	margin-top: 25px;
	min-height: 120px;
}
.testimonial {
	font-family: Georgia, "Times New Roman", Times, serif;
    position: relative;
	margin-right: 90px;
	padding: 15px 15px 20px;
    border: 1px solid #ddd;
	border-bottom-width: 2px;
    background: #fff;
	color: #666;
	font-style: italic;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}
.testimonial h3{
	margin-top: 0px;
	margin-bottom: 10px;
	font-style: normal;
}
.testimonial:after {
    content: "";
    position: absolute;
	top: 20px;
    height: 20px;
	right: -10px;
    width: 10px;
    background: url("images/testimonial-arrow.png") no-repeat;
    display: block;
}
.testimonial p:last-child { margin-bottom: 0px }
.testimonial-author {
	position: absolute;
	text-align: center;
	top: 0px;
	right: 0px;
	width: 68px;
	height: 68px;
	font-size: 11px;
	font-weight: bold;
}

.testimonial-img {
	margin: 0 auto;
	width: 68px;
	height: 68px;
	border: 1px solid #ddd;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
}
.testimonial-img img{
	width: 60px;
	height: 60px;
	padding: 3px;
	background: #eee;
	border: 1px solid #fff;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
}
.testimonial-author p{
	line-height: 1em;
	margin-top: 7px;
	margin-bottom: 0px;
}

/*icons*/
.icon-float-left{ display: block; float: left; margin-right: 5px; margin-bottom: 5px; }
.icon-float-right{ display: block; float: right; margin-left: 5px; margin-bottom: 5px; }

/*alerts*/
.alert-red,
.alert-yellow,
.alert-green,
.alert-blue {
    font-weight: bold;
	color: #444;
    text-align: left;
    margin: 20px 0;
	text-shadow: none;
	color: #fff;
	background-position: 15px center !important;
	background-repeat: no-repeat !important;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
}
.alert-red span,
.alert-yellow span,
.alert-green span,
.alert-blue span,
.alert-silver span {
	display: block;
	padding: 20px 20px 20px 60px;
	border-bottom: 1px solid rgba(0,0,0, 0.2);
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
}
.alert-red {
	background: #ff5454;
	background-image: url("images/error.png");
}
.alert-yellow {
	background: #FFF780;
	color: #333;
	background-image: url("images/warning.png");
}
.alert-green {
	background: #59a80f;
	background-image: url("images/check.png");
}
.alert-blue {
	background: #037ebe;
	background-image: url("images/info.png");
}


/*buttons*/
.button { margin-right: 5px }
.button,
.button span {
    display: inline-block;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
}
.button {
    white-space: nowrap;
    nowhitespace: afterproperty;
    line-height: 1em;
    position: relative;
    outline: none;
    overflow: visible;
    /* removes extra side padding in IE */cursor: pointer; nowhitespace: afterproperty; border:1px solid #999; /* IE */border:rgba(0,0,0,.1) 1px solid; /* Saf4+,Chrome,FF3.6 */border-bottom:rgba(0,0,0,.3) 1px solid; nowhitespace: afterproperty; background:-moz-linear-gradient(center top,rgba(255,255,255,.1) 0%,rgba(0,0,0,.1) 100%); /* FF3.6 */background:-webkit-gradient(linear,center bottom,center top,from(rgba(0,0,0,.1)),to(rgba(255,255,255,.1))); /* Saf4+,Chrome */filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#19FFFFFF',EndColorStr='#19000000'); /* IE6,IE7 */-ms-filter:"progid:DXImageTransform.Microsoft.gradient(startColorStr='#19FFFFFF',EndColorStr='#19000000')"; /* IE8 */-moz-user-select:none; -webkit-user-select:none; -khtml-user-select:none; user-select:none; margin-bottom:10px; opacity:1.0; -webkit-transition:opacity 0.2s ease-in-out;  -moz-transition:opacity 0.2s ease-in-out;  -o-transition:opacity 0.2s ease-in-out;  transition:opacity 0.2s ease-in-out; font-family:'Helvetica Neue',Arial,sans-serif; font-size:11px; min-height:34px;
	text-decoration: none;
}
.button.full,
.button.full span { display: block }
.button:hover,
.button.hover { opacity: 0.8 }
.button:active,
.button.active { top: 1px }
.button span {
    position: relative;
    color: #fff;
    font-weight: bold;
    text-shadow: 0 1px 1px rgba(0,0,0,0.25);
    border-top: rgba(255,255,255,.4) 1px solid;
    padding: 0.8em 1.3em;
    line-height: 1.3em;
    text-decoration: none;
    text-align: center;
    white-space: nowrap;
}
.button.black { background-color: #333 }
.button.gray { background-color: #666 }
.button.light-gray {
    background-color: #D5D2D2;
    text-shadow: 1px 1px 0px #FFF;
}
.button.light-gray span {
    color: #444;
    text-shadow: 1px 1px 0px #e7e7e7;
    border-top: rgba(255,255,255,.6) 1px solid;
}
.button.red { background-color: #D4363A }
.button.orange { background-color: #FF6347 }
.button.teal { background-color: #e45635 }
.button.blue { background-color: #025D8C }
.button.pink { background-color: #e22092 }
.button.green { background-color: #86b662 }
.button.rosy { background-color: #FE4365 }
.button.brown { background-color: #7B5C5D }
.button.purple { background-color: #66435F }
.button.copper { background-color: #CE534D }
.button.gold { background-color: #febd4c }


/*toggle*/
.toggle-wrap{
	margin: 10px 0;
}
h3.trigger {
	margin: 0px;
}
h3.trigger a {
	display: block;
	border: 1px solid #ddd;
	padding: 10px;
	outline: 0 !important;
    font-weight: 400;
	font-size: 12px;
    text-shadow: 1px 1px 1px rgba(255,255,255,1);
    margin-bottom: 0px;
    margin-top: 5px;
    text-indent: 25px;
	background-color: #fff;
	background-image: url("images/plus.png");
	background-position: 10px center;
	background-repeat: no-repeat;
}
h3.trigger a:hover,
h3.active a{
	background-color: #f5f5f5;
}

h3.active a {
	background-image: url("images/minus.png");
}
 
h3.active a:hover {
}

.toggle_container {
	background-color: #fff;
	overflow: hidden;
	padding: 20px;
    border: 1px solid #ddd;
	border-top: 0px;
}

/*accordion*/
.accordion h3 {
    font-size: 12px;
    text-shadow: 1px 1px 1px rgba(255,255,255,1);
    margin-bottom: 0px;
    margin-top: 5px;
}
.accordion h3 a {
    display: block;
    padding: 10px;
    border: 1px solid #ddd;
    background-color: #fff;
    outline: 0 !important;
    font-weight: 400;
    text-indent: 10px;
}
.ui-state-focus { outline: none; }
.accordion h3 a:hover,
.accordion .ui-state-active a {
    text-shadow: none;
	background-color: #f5f5f5;
}
.accordion .ui-accordion-content {
    padding: 20px;
	background: #fff;
    border: 1px solid #ddd;
	border-top: 0px;
}
.accordion .ui-accordion-content p:last-child { margin: 0px }

/*columns*/
.one-half { width: 48% }
.one-third { width: 30.66% }
.two-third { width: 65.33% }
.one-fourth { width: 22% }
.three-fourth { width: 74% }
.one-fifth { width: 16.8% }
.one-sixth { width: 13.33% }
.one-half,
.one-third,
.two-third,
.one-fourth,
.three-fourth,
.one-fifth,
.one-sixth {
    position: relative;
    margin-right: 4%;
    float: left;
}
.column-last { margin-right: 0px }
.column-first { margin-left: 0px }

/*tabs*/
.tab-shortcode ul.ui-tabs-nav {
		display: block;
		margin: 0;
		padding: 0;
		border-bottom: solid 1px #ddd;
		margin-left: 1px;
		}
.tab-shortcode	ul.ui-tabs-nav li {
		display: block;
		width: auto;
		height: 30px;
		padding: 0;
		float: left;
		margin-bottom: 0;
}
.tab-shortcode	ul.ui-tabs-nav li a {
		display: block;
		text-decoration: none;
		width: auto;
		height: 29px;
		padding: 0px 20px;
		line-height: 30px;
		border: solid 1px #ddd;
		border-width: 1px 1px 0 0;
		margin: 0;
		background: #f5f5f5;
		font-size: 12px;
}
.tab-shortcode	ul.ui-tabs-nav .ui-state-active a {
		background: #fff;
		height: 30px;
		position: relative;
		top: -4px;
		padding-top: 4px;
		border-left-width: 1px;
		margin: 0 0 0 -1px;
		color: #111;
		-moz-border-radius-topleft: 2px;
		-webkit-border-top-left-radius: 2px;
		border-top-left-radius: 2px;
		-moz-border-radius-topright: 2px;
		-webkit-border-top-right-radius: 2px;
		border-top-right-radius: 2px;
	}
.tab-shortcode ul.ui-tabs-nav li:first-child .ui-state-active a {
		margin-left: 0; }
.tab-shortcode ul.ui-tabs-nav li:first-child a {
		border-width: 1px 1px 0 1px;
		-moz-border-radius-topleft: 2px;
		-webkit-border-top-left-radius: 2px;
		border-top-left-radius: 2px;
}
.tab-shortcode ul.ui-tabs-nav li:last-child a {
		-moz-border-radius-topright: 2px;
		-webkit-border-top-right-radius: 2px;
		border-top-right-radius: 2px;
}
		
.tab-shortcode .tab_content{
		background: #fff;
		padding: 20px;
		border-left: solid 1px #ddd;
		border-right: solid 1px #ddd;
		border-bottom: solid 1px #ddd;
	}

	/* Clearfixing tabs for beautiful stacking */
	ul.tab-shortcode:before,
	ul.tab-shortcode:after {
	  content: '\0020';
	  display: block;
	  overflow: hidden;
	  visibility: hidden;
	  width: 0;
	  height: 0; }
	ul.tab-shortcode:after {
	  clear: both; }
	ul.tab-shortcode {
	  zoom: 1; }
	  
	.ui-tabs-hide {  
		display: none;  
	}
	

/*-----------------------------------------------------------------------------------*/
/* = Clean button
/*-----------------------------------------------------------------------------------*/	
a.clean-button,
clean-button,
input[type="clean-button"],
.wpcf7-submit,
#commentSubmit {
    background: #eee; /* Old browsers */
    background: -moz-linear-gradient(top, rgba(255,255,255,.2) 0%, rgba(0,0,0,.2) 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(255,255,255,.2)), color-stop(100%,rgba(0,0,0,.2))); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top, rgba(255,255,255,.2) 0%,rgba(0,0,0,.2) 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top, rgba(255,255,255,.2) 0%,rgba(0,0,0,.2) 100%); /* Opera11.10+ */
    background: -ms-linear-gradient(top, rgba(255,255,255,.2) 0%,rgba(0,0,0,.2) 100%); /* IE10+ */
    background: linear-gradient(top, rgba(255,255,255,.2) 0%,rgba(0,0,0,.2) 100%); /* W3C */
    border: 1px solid #aaa;
    border-top: 1px solid #ccc;
    border-left: 1px solid #ccc;
    padding: 4px 12px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    color: #444;
    display: inline-block;
    font-size: 11px;
    font-weight: bold;
    text-decoration: none;
    text-shadow: 0 1px rgba(255, 255, 255, .75);
    cursor: pointer;
    margin-bottom: 20px;
    line-height: 21px;
    font-family: "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
}
a.clean-button:hover,
clean-button:hover,
input[type="clean-button"]:hover,
.wpcf7-submit:hover,
#commentSubmit:hover {
    color: #222;
    background: #ddd; /* Old browsers */
    background: -moz-linear-gradient(top, rgba(255,255,255,.3) 0%, rgba(0,0,0,.3) 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(255,255,255,.3)), color-stop(100%,rgba(0,0,0,.3))); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top, rgba(255,255,255,.3) 0%,rgba(0,0,0,.3) 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top, rgba(255,255,255,.3) 0%,rgba(0,0,0,.3) 100%); /* Opera11.10+ */
    background: -ms-linear-gradient(top, rgba(255,255,255,.3) 0%,rgba(0,0,0,.3) 100%); /* IE10+ */
    background: linear-gradient(top, rgba(255,255,255,.3) 0%,rgba(0,0,0,.3) 100%); /* W3C */
    border: 1px solid #888;
    border-top: 1px solid #aaa;
    border-left: 1px solid #aaa;
}
a.clean-button:active,
clean-button:active,
input[type="clean-button"]:active,
ul.portfolio-filter a.active,
.wpcf7-submit:active,
#commentSubmit:active {
    border: 1px solid #666;
    background: #ccc; /* Old browsers */
    background: -moz-linear-gradient(top, rgba(255,255,255,.35) 0%, rgba(10,10,10,.4) 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(255,255,255,.35)), color-stop(100%,rgba(10,10,10,.4))); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top, rgba(255,255,255,.35) 0%,rgba(10,10,10,.4) 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top, rgba(255,255,255,.35) 0%,rgba(10,10,10,.4) 100%); /* Opera11.10+ */
    background: -ms-linear-gradient(top, rgba(255,255,255,.35) 0%,rgba(10,10,10,.4) 100%); /* IE10+ */
    background: linear-gradient(top, rgba(255,255,255,.35) 0%,rgba(10,10,10,.4) 100%); /* W3C */
}
.clean-button.full-width,
clean-button.full-width,
input[type="clean-button"].full-width {
    width: 100%;
    padding-left: 0 !important;
    padding-right: 0 !important;
    text-align: center;
}
		
/*-----------------------------------------------------------------------------------*
/* 404 Page
/*-----------------------------------------------------------------------------------*/
#error-page-title{
	font-size: 300px;
	text-align: center;
	font-weight: bold;
	font-family: Arial, Helvetica, sans-serif;
	color: #D5D5D5;
	background: none;
	line-height: 1em;
}
#error-page-text{
	margin-top: -60px;
	text-align: center;
	font-size: 14px;
	color: #999;
}


#wpstats{ display: none; }

#lang{
	margin-top:40px;
	width:920px;
	margin-left:auto;
	margin-right:auto;
	padding-right:20px;
	w\idth:900px;
}
#lang_tab{
	width:80px;
	padding:5px;
	background-color:#f9f9f9;
	w\idth:70px;
	text-align:center;
	margin-left:820px;
	text-transform:uppercase;
	-webkit-border-top-right-radius: 4px;
	-webkit-border-top-left-radius: 04px;
	-moz-border-radius-topright: 4px;
	-moz-border-radius-topleft: 04px;
	border-top-right-radius: 4px;
	border-top-left-radius: 4px;

}
#lang a{
	color:#333;
	text-decoration:none;
	margin-left:5px;
	margin-right:5px;
}
#lang a:hover{
	color:#999;
}