/*-----------------------------------------------------------------------------------

	Template Name: Haze
	Template URI: http://www.deliciousthemes.com
	Description: Portfolio / Photography Template
	Author: Madalin Tudose
	Author URI: http://www.deliciousthemes.com
	License: GNU General Public License version 3.0
	License URI: http://www.gnu.org/licenses/gpl-3.0.html
	Version: 1.0
	
	All files, unless otherwise stated, are released under the GNU General Public License
	version 3.0 (http://www.gnu.org/licenses/gpl-3.0.html)

-----------------------------------------------------------------------------------

	1. CSS Reset & Clearfix
	2. Document Setup (body, common classes, etc)
	3. Columns
	4. Typography
		4.1. Dropcaps
		4.2. Highlighted Text
	5. Header
	6. Main Content
		6.1. Nivo Slider
		6.2. Jcarousel
		6.3. Sidebar	
		6.4. Portfolio
		6.5. Gallery
		6.6. Blog
			6.6.1. Comments
			6.6.2. Pagination		
		6.7. Contact
	7. Footer
		7.1. Twitter
		7.2. Flickr
		7.3. Social Icons
	8. Elements
		8.1. Slides Plugin - for Portfolio Single Page
		8.2. Buttons
		8.3. Tabs
		8.4. Toggles
		8.5. Accordions
		8.6. Tables
		8.7. Info Boxes
		8.8. Lists

-----------------------------------------------------------------------------------*/


/*-----------------------------------------------------------------------------------*/
/*	1.	CSS Reset & Clearfix - http://meyerweb.com/eric/tools/css/reset/
/*-----------------------------------------------------------------------------------*/

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, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}

body {
	line-height: 1;
}

ol, ul {
	list-style: none;
}

blockquote, q {
	quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

input,textarea {
	font: 12px/20px;	
	font:inherit;
	resize:none;
}

a.disabled {
    pointer-events: none; /* ?????? ?????? ?????????????? */
    cursor: default;  /* ????????????? ?????? ? ???? ??????? */
   
}


/*-----------------------------------------------------------------------------------*/
/*	2.	Document Setup (body, common classes, structure etc)
/*-----------------------------------------------------------------------------------*/

@font-face {
    font-family: 'Museo300';
    src: url('fonts/museo/Museo300-Regular-webfont.eot');
    src: url('fonts/museo/Museo300-Regular-webfont.eot@#iefix') format('embedded-opentype'),
         url('fonts/museo/Museo300-Regular-webfont.woff') format('woff'),
         url('fonts/museo/Museo300-Regular-webfont.ttf') format('truetype'),
         url('fonts/museo/Museo300-Regular-webfont.svg#Museo300') format('svg');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Museo500';
    src: url('fonts/museo/Museo500-Regular-webfont.eot');
    src: url('fonts/museo/Museo500-Regular-webfont.eot@#iefix') format('embedded-opentype'),
         url('fonts/museo/Museo500-Regular-webfont.woff') format('woff'),
         url('fonts/museo/Museo500-Regular-webfont.ttf') format('truetype'),
         url('fonts/museo/Museo500-Regular-webfont.svg#Museo500') format('svg');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Museo700';
    src: url('fonts/museo/Museo700-Regular-webfont.eot');
    src: url('fonts/museo/Museo700-Regular-webfont.eot@#iefix') format('embedded-opentype'),
         url('fonts/museo/Museo700-Regular-webfont.woff') format('woff'),
         url('fonts/museo/Museo700-Regular-webfont.ttf') format('truetype'),
         url('fonts/museo/Museo700-Regular-webfont.svg#Museo700') format('svg');
    font-weight: normal;
    font-style: normal;
}

body {
	font: 12px/20px 'Museo500', Museo500, Helvetica, Arial, sans-serif;
	background:#efefef;
	margin:0;
	padding:0;
	color:#686868;
}

#wrapper {
	margin:0 auto;
	background:#fff;
}

a {
	text-decoration:none;
	color:#000;
	-webkit-transition:color 0.2s linear;
    -moz-transition:color 0.2s linear;
    -o-transition:color 0.2s linear;
    transition:color 0.2s linear;
}

a:focus , a:link, a:active {
	outline:none;
}

a:hover {
	color:#BD0D0D;
}

p {
	margin-bottom:20px;
}

.clear {
	clear:both;
}

.aligncenter {
	text-align:center;
}

.alignleft {
	text-align:left;
}

.alignright {
	text-align:right;
}
 
.space {
    height:60px;
    width:100%;
	clear:both;
}

label {
    color:#7F7F7F;
    display:block;
    font-weight:normal;
}

label.error {
    color: red;
    font-style: italic;
    margin: 5px 0 10px 0;
}

input[type="text"], input[type="password"], input.text, input.title, textarea, select {
    background:#FFFFFF;
    border:1px solid #EBEBEB;
}

input[type="text"]:focus, input[type="password"]:focus, input.text:focus, input.title:focus, textarea:focus, select:focus {
    -moz-box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.3);
    -webkit-box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.3);
    border:1px solid #EBEBEB;
    box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.3);
}

input[type="text"], input[type="password"], input.text, input.title, textarea, select {
    font-family:Arial;
    font-size:12px;
    margin:5px 0;
}

input.text, input.title, select {
    padding:5%;
    width:89%;
}

input.title {
    font-size:13px;
}

textarea {
    height:130px;
    padding:2% 2%;
    width:95.5%;
}

form.inline {
}

form.inline p {
    margin-bottom:0;
}

.preloader { 
	/* background:url(images/nivo-preloaders.gif) center center no-repeat #ffffff; */
	display:inline-block;  
}

/*-----------------------------------------------------------------------------------*/
/*	3.	Columns
/*-----------------------------------------------------------------------------------*/

.one-half { width: 460px }
.one-third { width: 300px; }
.two-third { width: 620px; }
.one-fourth { width: 220px; }
.three-fourth { width:700px; }
.one-sixth { width: 140px; }
.five-sixth { width: 780px }

.one-fourth, .one-half, .two-third, .one-third, .three-fourth, .one-sixth, .five-sixth {
	position: relative;
	margin-right:20px;
	float: left;	
}

.percent-one-half { width: 48%; }
.percent-one-third { width: 30.66%; }
.percent-one-third1 { width: 99.66%; }
.percent-two-third { width: 65.33%; }
.percent-one-fourth { width: 22%; }
.percent-three-fourth { width: 74%;}
.percent-one-fifth { width: 16.8%; }
.percent-two-fifth { width: 37.6%; }
.percent-three-fifth { width: 58.4%; }
.percent-four-fifth { width: 67.2%; }
.percent-one-sixth { width: 13.33%; }
.percent-five-sixth { width: 82.67%; }

.percent-one-half,
.percent-one-third,
.percent-one-third1,
.percent-two-third,
.percent-three-fourth,
.percent-one-fourth,
.percent-one-fifth,
.percent-two-fifth,
.percent-three-fifth,
.percent-four-fifth,
.percent-one-sixth,
.percent-five-sixth {
	position: relative;
	margin-right: 3%;
	float: left;
}

.column-right {
	float:right;
}
.column-last {
	margin-right: 0!important;
	clear: right;
}


/*-----------------------------------------------------------------------------------*/
/*	4.	Typography
/*-----------------------------------------------------------------------------------*/

h1, h2, h3, h4, h5, h6 {
	font-weight:normal;
	color:#000;
}

h1 {
	font-size:32px;
	line-height:40px;
	margin-bottom:13px;	
}

h2 {
	font-size:24px;
	line-height:32px;
	margin-bottom:13px;
}

h3 {
	font-size:18px;
	line-height:24px;	
	margin-bottom:20px;	
}

h4 {
	font-size:16px;
	line-height:22px;
}

h5 {
	font-size:12px;
	line-height:20px;
}


/*--- 4.1. Dropcaps ---*/

.dropcap1 {
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    background: #666666;
    border-radius: 3px;
    color: #fff;
    float: left;
    font-size: 36px;
    margin: 4px 10px 2px 0;
    padding: 12px 6px;
    text-shadow:0 1px 0 #fff;
}

.dropcap2 {
    float: left;
    font-size: 36px;
	line-height:26px;
    padding-right: 10px;
    padding-top: 8px;
}

.dropcap3 {
    float: left;
    font-size: 36px;
	line-height:30px;
    font-style: italic;
    padding-right: 10px;
	padding-top:8px;
}


/*--- 4.2. Hightlighted Text ---*/

.highlight {
    padding: 1px 3px;
}

.highlight.redish {
    background-color: #ffcccf;
    color: #A14A40;
}

.highlight.bluish {
    background-color: #D7E7F5;
    color: #5E6984;
}

.highlight.yellowish {
    background-color: #FFF9CC;
    color: #736B4C;
}

.highlight.greenish {
    background-color: #E2F2CE;
    color: #466840;
}

.highlight.dark {
    background: #333333;
    color:#fff;
}

pre, code {
    background-color: #F5F5F5;
    border-color: #EFEFEF;
    border-style: solid;
    border-width: 1px 5px 1px 5px;
    display: block;
    font-family: monospace;
    font-size: 11px;
    padding: 10px;
}

pre, code {
    margin-bottom:10px;
}

blockquote {
    border-left: 2px solid #efefef;
    color: #787878;
    font-size: 16px;
    font-style: italic;
    line-height:24px;
    margin: 20px 50px;
    padding: 0 0 5px 15px;
}


/*-----------------------------------------------------------------------------------*/
/*	5.	Header
/*-----------------------------------------------------------------------------------*/

#header {
	width:940px;
	margin:0 auto;
}

.logo {
	position:relative;
	height:120px;
}

.logo img {
	display:block;
	position:absolute;
	bottom:0;
}

#navigation {
	float:right;
	margin-top:45px;
}

ul#mainnav {
	float:left;
	position:relative;
	display:block;
	
}

ul#mainnav li {
	display:inline;
	font-family: 'Museo500', Museo500, Helvetica, Arial, sans-serif;
	font-size:14px;
	margin-left:17px;
	float:left;
	position:relative;
	opacity:0.93;
}

ul#mainnav li a {
	position:relative;
	color:#323232;
	padding:0 15px;
	height:36px;
	line-height:40px;
	display:inline-block;
	background:#fff;
	-webkit-transition:background 0.2s linear;
    -moz-transition:background 0.2s linear;
    -o-transition:background 0.2s linear;
    transition:background 0.2s linear;
	
}

ul#mainnav li a:active, ul#mainnav li a:hover , ul#mainnav li a.current{
	background:#323232;
	color:#fff;
	text-decoration:none;
	
}


#mainnav ul li:hover,
#mainnav ul ul li:hover,
#mainnav ul ul ul li:hover { 
	background:#323232;
	color: #F00;
	text-decoration:none;
	border-top: 5px  solid #D10A0A;

	
}



/*-----------------------------------------------------------------------------------*/
/*	6.	Main Content
/*-----------------------------------------------------------------------------------*/

.intro {
	position:relative;
	padding-top:60px;
}

.services {
	overflow:hidden;
}

h2.intro-text {
	text-align:center;
}

h2.intro-text a {
	color:#fff;
	background:#222;
	padding:3px 7px 1px;
}

h2.intro-text a:hover {
	color:#fff;
	background:#000;
	padding:3px 7px 1px;
}

.centered-wrapper {
	width:940px;
	margin:0 auto;
}

.page-title {
	width:940px;
	margin:0 auto;
	clear:both;
	margin-bottom:50px;
	padding-top:50px;
}

.page-title .double-separator {
	margin:0;
}

.breadcrumbs {
	font-size:12px;
	padding:10px 0;
	width:100%;
	overflow:hidden;
}

.service-item {
	text-align:center;
	overflow:hidden;
}

.img-srv {
	width:50px;
	height:auto;
	opacity:0.6;
	margin:20px;
}

img.service-img {
	float:left;
	margin:0 20px 20px 0;
	width:60px;
	height:auto;
}

img.service-img-center {
	text-align:center;
	margin:0 0 20px 0;
	width:60px;
	height:auto;
}

h3.service {
	line-height:32px;
}



.separator {
	width:100%;
	height:1px;
	clear:both;
	background:#efefef;
	margin:40px 0;
}




.double-separator {
	width:100%;
	height:1px;
	clear:both;
	border-top:1px solid #efefef;
	border-bottom:1px solid #efefef;
	margin:40px 0;
}

#footer .double-separator {
	margin:50px 0;
}

h2.bgtitle {
	font-size:14px;
	font-family:'Museo500', Museo500, Helvetica, Arial, sans-serif;
	float:left;
	background:#000;
	color:#fff;
	height:25px;
	line-height:26px;
	padding:0 5px;
	margin-bottom:20px;
}

h2.bgtitle1 {
	font-size:20px;
	font-family:'Museo500', Museo500, Helvetica, Arial, sans-serif;
	background:#000;
	color:#fff;
	height:25px;
	line-height:26px;
	padding:0 5px;
	margin-bottom:20px;
}

h2.bgtitle2 {
	font-size:14px;
	font-family:'Museo500', Museo500, Helvetica, Arial, sans-serif;
	float:left;
	background:#F00;
	color:#fff;
	height:25px;
	line-height:26px;
	padding:0 5px;
	margin-bottom:20px;
}

h2.bgtitle3 {
	font-size:14px;
	font-family:'Museo500', Museo500, Helvetica, Arial, sans-serif;
	background: #333;
	color:#fff;
	height:25px;
	line-height:26px;
	padding:0 5px;
	margin-bottom:20px;
}

.team-member {
    border-bottom:1px solid #efefef;
    margin-bottom:60px;
    padding-bottom:40px;
    position:relative;
}

.team-details {
    float:left;
    margin-right:20px;
    width:110px;
}


.tonewood-details {
    float:left;
    margin-right:350px;
    width:110px;
}

.team-avatar {
    float:left;
    height:110px;
    padding-bottom:5px;
    width:110px;
}


.tonewood-avatar {
    float:left;
    height:200px;
    padding-bottom:5px;
    width:400px;
}

.team-social {
    margin-bottom:10px;
}

.team-social a img {
    -moz-transition: all .2s ease-in-out;
    -o-transition: color .2s ease-in-out, opacity .2s ease-in-out, border-color .3s ease-in-out;
    -webkit-transition: all .2s ease-in-out;
    opacity: .3;
    transition: all .2s ease-in-out;
}

.team-social a img:hover{
    opacity: 1;
}

.team-twitter, .team-facebook, .team-linkedin {
    float:left;
    padding:0 6px;
	margin-top:5px;
}

.team-text span {
    color:#787878;
}

.team-text p {
    margin-top:10px;
}


/*--- 6.1. Nivo Slider ---*/

#slider-wrapper {
	margin: 0 auto;
	overflow:hidden;
	clear:both;
	position:relative;
}

.nivo {
	height:400px;
	clear:both;
	padding-top:50px;
}

#preloader {
	position:absolute; 
	top:0; 
	left:50%; 
	width:12px; 
	height:400px;
}

#preloader img {
 padding-top:190px;
}

#slider {
	width:940px;
	height:400px;
	display: block;
	clear: left;
	position: absolute;
	top: 0px;
	left: 50%;
	margin-left: -960px;
	background:#000 url(images/nivo-preloader.gif) no-repeat 50% 50%;
}

.nivoSlider {
	position:absolute;
	width: 940px;
	
}

.nivoSlider img {
	position:relative;
	top:0px;
	left:-320px;
}

.nivoSlider a {
	border:0;
}

.nivo-controlNav {
	position:absolute;
	height:7px;
	width:940px;
	background:#5c5c5c;
	margin-top:393px;
	z-index:8;
}

.nivo-wrapper {
	width: 940px;
	margin: 0 auto;
	overflow: hidden;
}

.nivo-controlNav a {
	display:block;
	width:188px;
	height:7px;
	float:left;
	background:#5c5c5c;
	text-indent:-9999px;
	cursor:pointer;
	position:relative;
	z-index:9;
	-webkit-transition: background 0.2s linear;
}

.nivo-controlNav a.active {
	background:#000;
}

.nivo-controlNav a:hover {
	background:#000;
}

.nivo-directionNav {
	width:940px;
	margin:0 auto;
	position:relative;
	z-index:50;
	cursor:pointer;
}

.nivo-directionNav a {
	display:block;
	width:57px;
	height:57px;
	background:url(images/arrows.png) no-repeat;
	text-indent:-9999px;
	border:0;
	position:absolute;
	top:183px;
	z-index: 10;
	opacity:0.9;
}

.nivo-directionNav a:hover {
	opacity:1;
}

a.nivo-nextNav {
	background-position:-57px 0;
	right:15px;
}

a.nivo-prevNav {
	left:15px;
}

/* 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:6;
	display:none;
}

/* The slices and boxes in the Slider */
.nivo-slice {
	display:block;
	position:absolute;
	z-index:5;
	height:100%;
}

.nivo-box {
	display:block;
	position:absolute;
	z-index:5;
	height:100%;
}

.nivo-caption {
	position:absolute;
	left:50%;
	margin-left:-185px;
	background:#000;
	color:#fff;
	opacity:0.8; /* Overridden by captionOpacity setting */
	width:340px;
	height:auto;
	z-index:11;
	bottom:20px;
	padding:10px 15px 10px 20px;
}

.caption-bg {
	background: url(images/caption-bg.png) no-repeat scroll bottom center;
	width:375px;
	height:14px;
	position:absolute;
	bottom: -14px;
	left: 0;
}

.nivo-caption h1 {
	font-family: 'Museo500', Museo500, Helvetica, Arial, sans-serif;
	font-size:20px;
	color:#fff;
	margin:0;
	height:32px;
	line-height:32px;
}

.nivo-caption p {
	padding:5px 0;
	font-family:'Museo500', Museo500, Helvetica, Arial, sans-serif;
	margin:0;
	color:#d4d4d4;
}

.nivo-caption a {
	color:#fff;
}

.nivo-caption a:hover {
	color:#bd0d0d;
}

.nivo-html-caption {
    display:none;
}


/*--- 6.2. Jcarousel ---*/

.jcarousel-container {
	margin-bottom:20px;
}

.jcarousel-direction-rtl {
	direction: rtl;
}

.jcarousel-container-horizontal {
    width: 940px;
	clear:both;
}

.jcarousel-clip {
    overflow: hidden;
}

.jcarousel-clip-horizontal {
    width:  940px;
    height: 150px;
}

.jcarousel-item {
    width: 220px;
    height: 150px;
	display: block;
	position: relative;
}

.jcarousel-item img {
	width:220px;
	height:auto;
}

.jcarousel-item-horizontal {
	margin-left: 0;
    margin-right: 20px;
}

.jcarousel-direction-rtl .jcarousel-item-horizontal {
	margin-left: 10px;
    margin-right: 0;
}

.jcarousel-item-vertical {
    margin-bottom: 10px;
}

.jcarousel-item-placeholder {
    background: #fff;
    color: #000;
}

.jcarousel-next-horizontal {
    position: absolute;
    top: -44px;
    right: 0px;
    width: 24px;
    height: 24px;
    cursor: pointer;
    background: transparent url(images/next-horizontal.png) no-repeat 0 0;
}

.jcarousel-next-horizontal:hover,
.jcarousel-next-horizontal:focus {
    background-position: -24px 0;
}

.jcarousel-next-horizontal:active {
    background-position: -24px 0;
}

.jcarousel-next-disabled-horizontal,
.jcarousel-next-disabled-horizontal:hover,
.jcarousel-next-disabled-horizontal:focus,
.jcarousel-next-disabled-horizontal:active {
    cursor: default;
    background-position: -48px 0;
}

.jcarousel-prev-horizontal {
    position: absolute;
    top: -44px;
    right: 25px;
    width: 24px;
    height: 24px;
    cursor: pointer;
    background: transparent url(images/prev-horizontal.png) no-repeat 0 0;
}

.jcarousel-prev-horizontal:hover, 
.jcarousel-prev-horizontal:focus {
    background-position: -24px 0;
}

.jcarousel-prev-horizontal:active {
    background-position: -24px 0;
}

.jcarousel-prev-disabled-horizontal,
.jcarousel-prev-disabled-horizontal:hover,
.jcarousel-prev-disabled-horizontal:focus,
.jcarousel-prev-disabled-horizontal:active {
    cursor: default;
    background-position: -48px 0;
}

span.caption  {
	position:absolute;
	bottom:-30px;
	left:0px;
	font-size:12px;
	background:#000;
	color:#fff;
	opacity:0.8;
	height:30px;
	line-height:30px;
	padding:0 10px;
	font-family:'Museo700', Museo700, Helvetica, Arial, sans-serif;
}

a.lightbox {
	position:absolute;
	top:-25px;
	right:25px;
	width:25px;
	height:25px;
	background:url(images/lightbox.png) no-repeat scroll 0 0;
	text-indent:-9999px;
}

a.more {
	position:absolute;
	top:-25px;
	right:0px;
	width:25px;
	height:25px;
	background:url(images/link.png) no-repeat scroll 0 0;
	text-indent:-9999px;
}


/*--- 6.3. Sidebar ---*/

#sidebar {
	width:260px;
	float:right;
}

.widget {
	overflow:hidden;
	margin-bottom:60px;
}

.widget ul li {
	font-size:12px;
	background:url(images/breadcrumb-arrow.png) no-repeat scroll 0 6px;
	padding:5px 0 5px 30px;
	border-top:1px dashed #efefef;
}

.widget ul li:last-child {
	border-bottom:1px dashed #efefef;
}

.sidebar-post {
	overflow:hidden;
	border-bottom:1px dashed #efefef;
	margin-bottom:15px;
	padding-bottom:15px;
}

.sidebar-post span {
	float:left;
	width:55px;
	height:32px;
	line-height:32px;
	background:#eeeeee;
	border-right:1px solid #efefef;
	text-align:center;
	margin-right:14px;
	margin-top:4px;
} 

.sidebar-post h5 {
	font-size:12px;
	width:190px;
	float:right;
}


/*--- 6.4. Portfolio ---*/

ul#filters {
	float:right;
}

ul#filters li {
	display:inline;
	margin:0 0 0 10px;
}

ul#filters li a {
	color:#323232;
}

ul#filters li a:hover {
	color:#BD0D0D;
}

ul#filters li.selected a {
	color:#BD0D0D;
}

a.selected {
	color:#BD0D0D;
}

.portfolio {
	clear:both;
	overflow:hidden;
	margin-right:-20px;
}

.portfolio li {
	margin-right:20px;
	float:left;
	position:relative;
	margin-bottom:20px;
	overflow:hidden;
	background:#fff;
	padding-bottom:5px;
	text-align:center;
	border-bottom:1px solid #d9d8d7;
   -webkit-transition:background 0.3s ease-in;
   -moz-transition:background 0.3s ease-in;
   -o-transition:background 0.3s ease-in;
   transition:background 0.3s ease-in;		
}

.portfolio li:hover {
	background:#f2f2f0;
}

.portfolio h4 {
	font-size:14px;
	color:#000;
	font-family:'Museo700', Museo700, Helvetica, Arial, sans-serif;
	margin:10px 5px 5px;
}

.portfolio p {
	padding:5px;
}	

#portfolio-wrapper .four-columns img {
	width:220px;
	height:auto;
}

#portfolio-wrapper .three-columns img {
	width:300px;
	height:auto;
}

#portfolio-wrapper .two-columns img {
	width:460px;
	height:auto;
}

#portfolio-wrapper .four-columns li {
	width:220px;
}

#portfolio-wrapper .three-columns li {
	width:300px;
	height:295px;
}

#portfolio-wrapper .two-columns li {
	width:460px;
}

.item-details p {
	margin:0;
	padding:3px 0;
	border-bottom:1px dashed #efefef;
}

.item-details span {
	color:#000;
}

.portfolio-single {
	margin-bottom:50px;
	overflow:hidden;
}


/*--- 6.5. Gallery ---*/

#gallery {
	clear:both;
	width:960px;
}

.col4 {
	width:220px;
}

.col4 img {
	max-width:220px;
}

.col3 {
	width:300px;
}

.col3 img {
	max-width:300px;
}

.rollover {
	background:url(images/lightbox.png) no-repeat scroll 0 0;
	width:25px;
	height:25px;
	position:absolute;
	top:0;
	right:0;
	display:none;
	opacity:1;
}

.gallery-item {
	float:left;
	margin-right:20px;
	margin-bottom:20px;
	position:relative;
}

.gallery-item a {
	display:block;
	float:left;
}


/*--- 6.6. Blog ---*/

#posts {
	float:left;
	position:relative;
	width:640px;
	margin-right:40px;
	overflow:hidden;
}

.post-thumbnail {
	margin-bottom:30px;
	display:block;
}

.meta {
	width:110px;
	float:left;
	margin-right:30px;
}

.meta p {
	margin:0;
	padding:5px 0;
}

.excerpt {
	float:right;
	width:500px;
}

p.readmore {
	text-align:right;
}

.post {
	margin-bottom:50px;
	padding-bottom:20px;
	border-bottom:1px solid #efefef;
	overflow:hidden;
}

.post-content {
	clear:both;
	padding-top:40px;
}

.right-image {
    float:right;
    margin:5px 0 0 20px;
}

.left-image {
    float:left;
    margin:5px 20px 0 0;
}

.post-image {
    margin:5px 0 20px;
}

.author-bio {
    background:#fbfbfb;
    clear:both;
    margin-top:30px;
    overflow:hidden;
    padding:25px;
    position:relative;
}

ul.tags {
    padding:0 0 10px;
    position:relative;
	overflow:hidden;
}

ul.tags li {
    display:inline;
    float:left;
    height:16px;
    line-height:20px;
    margin:30px 20px 0 0;
}

h3.tag-title {
    background-image:none;
    float:left;
    line-height:18px;
    margin:30px 20px 0 0;
}

.authorp {
    float:left;
    width:85%;
}

.author-bio {
	margin-bottom:40px;
}

.author-bio p {
	margin-bottom:0;
}	

.author-bio img {
    float:left;
    margin:0 25px 0 0;
}


/*--- 6.6.1. Comments ---*/

.commentlist {
    list-style-type: none;
    margin: 30px 0 40px;
}

.comment {
    margin-top: 35px;
    position: relative;
}

.commentwrap {
    background:#fafafa;
    margin: 0 0 0 75px;
    padding:15px 20px;
}

.avatar {
    left: 0;
    position: absolute;
    top: 0;
}

.metacomment {
    margin-bottom: 10px;
}

.metacomment span {
    font-weight:bold;
    margin: 0 5px 0 0;
}

ul.threaded {
    margin-left:75px;
}

#commentform {
	width:640px;
	position:relative;
}

#commentform fieldset {
	clear:both;
}

#commentform input[type="text"] {
	width:174px;
	padding:9px 10px;
	font-size:12px;
}

textarea#mycomment {
	width:618px;
	padding:10px;
	clear:both;
	overflow:hidden;
	float:left;
	margin-bottom:5px;
}

#commentform input[type="submit"] {
	margin-top:5px;
}


/*--- 6.6.2. Pagination ---*/

.pagenav {
    text-align:center;
}

.pagenav a {
    background:#f6f6f6;
    color:#777777;
    display:inline-block;
    margin:4px;
    padding:5px 12px;
}

.pagenav a:hover {
    background:#777777;
    color:#efefef;
}

span.current {
    background:#777777;
    color:#efefef;
    display:inline-block;
    margin:4px;
    padding:5px 12px;
}

span.pages {
    margin-right:10px;
}


/*--- 6.7. Contact ---*/

.contact-info p {
	margin:0;
	padding:5px;
	border-top:1px dashed #efefef;
}

.contact-info p:last-child {
	border-bottom:1px dashed #efefef;
}

.contact-info span {
	color:#000;
}

.contact-map {
	margin-bottom:50px;
}

#contactform label {
	clear:both;
}	

#contactform input[type=text] {
	margin-bottom:10px;
	width:89%;
	padding:4% 5%;
}

#contactform input[type=submit] {
	font-size:12px;
	clear:both;
	float:right;
	cursor:pointer;
	margin:0;
}

#contactform textarea { 
	height:130px;
	clear:both;
}

.contact-loader {
	float: right;
	padding: 11px 11px 0 0;
}

/***  Video styles  ********************************************************/

/***  Video styles  ********************************************************/

.video,.new_custom 
{
	float: left;
	width: 277px;
	padding: 5px;
	background: #fff;
	-webkit-box-shadow: 0 1px 1px #ccc;
	-moz-box-shadow: 0 1px 1px #ccc;
	box-shadow: 0 1px 1px #ccc;
	margin-right: 39px;
}

.hr
{
	height: 16px;
	background: url('../images/headers-bg.jpg');
	margin: 20px auto;
}

.video.last ,.new_custom.last
{
	margin: 0px;
}

.new_custom a
{
	display:block;
}


.video:hover, .new_custom:hover, .polaroid:hover, .image_wrapper:hover, .image_on_white:hover
{
	background: #525252;
	-webkit-transition: background 0.5s ease;
	-moz-transition: background 0.5s ease;
	-ms-transition: background 0.5s ease;
	-o-transition: background-color 0.5s ease;
	transition: background 0.5s ease;
}



/*-----------------------------------------------------------------------------------*/
/*	7.	Footer
/*-----------------------------------------------------------------------------------*/

#footer {
	overflow:hidden;
	clear:both;
}

#bottomfooter {
	margin-top:30px;
	padding:30px 0 15px;
	position:relative;
	overflow:hidden;
	border-top:1px solid #efefef;
	clear:both;
}

#bottomfooter p {
	float:left;
}

.totop {
	background:url(images/top.png) no-repeat scroll 0 0;
	width:37px;
	height:42px;
	position:absolute;
	bottom:-10px;
	left:50%;
	margin-left:-18px;
	text-indent:-9999px;
}


/*--- 7.1. Twitter ---*/

.tweet,
.query {
	margin:0;
}

.tweet_list {
	list-style: none;
	margin: 0;
	padding: 0;
	overflow-y: hidden;
}
	
.tweet_list li {
	overflow-y: auto;
	overflow-x: hidden;
	padding-bottom:10px;
	margin-bottom:10px;
	list-style-type: none;
	border-bottom:1px dashed #efefef;
}

.tweet_list li:last-child {
	border-bottom:0 none;
}

.tweet_list li a {
}

.tweet_list .tweet_avatar {
	padding-right: .5em; float: left;
}

.tweet_list .tweet_avatar img {
	vertical-align: middle;
}


/*--- 7.2. Twitter ---*/

#flickr {
	margin-right:-4px;
}

.thumbs { 
	margin: 0; 
	padding: 0; 
	overflow: hidden; 
}

.thumbs li { 
	list-style: none; 
	float: left; 
	margin: 0 4px 4px 0; 
}

.thumbs li img { 
	display: block; 
	width:40px;
	height:40px;
}

.thumbs li a img { 
	border: none;
}


/*--- 7.3. Social Icons ---*/

ul#social {
	float:right;
	margin-right:-5px;
}

ul#social li {
	display:inline;
}

ul#social li a {
	display:block;
	margin:0 5px;
	width:24px;
	float:left;
	height:24px;
	text-indent:-9999px;
	opacity:0.5;
	-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
	filter: alpha(opacity=50);
}

a.forrst {
	background:url(images/social/forrst.png) no-repeat scroll 0 0;
}
a.dribbble {
	background:url(images/social/dribbble.png) no-repeat scroll 0 0;
}
a.vimeo {
	background:url(images/social/vimeo.png) no-repeat scroll 0 0;
}
a.linkedin {
	background:url(images/social/linkedin.png) no-repeat scroll 0 0;
}
a.google {
	background:url(images/social/google.png) no-repeat scroll 0 0;
}
a.skype {
	background:url(images/social/skype.png) no-repeat scroll 0 0;
}
a.facebook {
	background:url(images/social/facebook.png) no-repeat scroll 0 0;
}
a.twitter {
	background:url(images/social/twitter.png) no-repeat scroll 0 0;
}
a.flickr {
	background:url(images/social/flickr.png) no-repeat scroll 0 0;
}
a.rss {
	background:url(images/social/rss.png) no-repeat scroll 0 0;
}


/*-----------------------------------------------------------------------------------*/
/*	8.	Elements
/*-----------------------------------------------------------------------------------*/


/*--- 8.1. Slides ---*/

#slides img {
	width:100%;
	height:auto;
}

#container-slides {
	width:100%;
	min-height:10px;
	position:relative;
}

#slides {
	position:absolute;
	top:5px;
	left:0;
	z-index:100;
	width:100%;
}

/*
	Slides container
	Important:
	Set the width of your slides container
	Set to display none, prevents content flash
*/
.slides_container {
	width:100%;
	overflow:hidden;
	position:relative;
	display:none;
}

/*
	Each slide
	Important:
	Set the width of your slides
	If height not specified height will be set by the slide content
	Set to display block
*/
.slides_container div.slide {
	width:695px;
	height:430px;
	position:relative;
	display:block;
}

#slides .next,#slides .prev {
	position:absolute;
	top:0;
	left:0;
	width:25px;
	height:25px;
	display:block;
	z-index:101;
}

#slides .next {
	left:25px;
}

.pagination {
	position:absolute;
	bottom:10px;
	right:5px;
	z-index:1000;
}

.pagination li {
	float:left;
	margin-left:1px;
	list-style:none;

}

.pagination li a {
	display:block;
	width:13px;
	height:0;
	padding-top:12px;
	background-image:url(images/pagination.png);
	background-position:0 0;
	float:left;
	overflow:hidden;
}

.pagination li.current a {
	background-position:0 -14px;
}

#slides .caption {
	z-index:500;
	position:absolute;
	bottom:-35px;
	left:0;
	height:30px;
	padding:5px 20px 0 20px;
	background:#000;
	background:rgba(0,0,0,.5);
	width:540px;
	font-size:1.3em;
	line-height:1.33;
	color:#fff;
	border-top:1px solid #000;
	text-shadow:none;
}


/*--- 8.2. Buttons ---*/

.button {
    cursor:pointer;
    display:inline-block;
    font-size: 12px;
    font-family:'Museo700', Museo700, Helvetica, Arial, sans-serif;
    line-height:16px;
    margin:0 10px 20px 0;
    padding: 7px 11px;
	position:relative;
	border-radius: 2px;
	-moz-border-radius: 2px;
	-webkit-border-radius: 2px;	
	-moz-box-shadow:0px 1px 1px rgba(000,000,000,0.1);
	-webkit-box-shadow:0px 1px 1px rgba(000,000,000,0.1);		
	box-shadow:0px 1px 0px rgba(000,000,000,0.1);
}
.button:hover { 
	background-position: 0 -30px; 
}

.white {
    background:url(images/buttons/button-small-white.png) repeat-x scroll 0 0;
    border: 1px solid #d3d3d3;
    color: #717171;
}

.white:hover {
    color: #717171;
}

.yellow {
    background:url(images/buttons/button-small-yellow.png) repeat-x scroll 0 0;
    border: 1px solid #daad4b;
    color: #896d31;
}

.yellow:hover {
    color: #896d31;
}

.black {
    background:url(images/buttons/button-small-black.png) repeat-x scroll 0 0;
    border: 1px solid #464646;
    color: #ffffff;
}

.black:hover {
    color: #ffffff;
}

.green {
    background:url(images/buttons/button-small-green.png) repeat-x scroll 0 0;
    border: 1px solid #4f9937;
    color: #fff;
}

.green:hover {
    color: #fff;
}

.bleumarin {
    background:url(images/buttons/button-small-bluemarin.png) repeat-x scroll 0 0;
    border: 1px solid #4bb6da;
    color: #3c7389;
}

.bleumarin:hover {
    color: #3c7389;
}

.rose {
    background:url(images/buttons/button-small-rose.png) repeat-x scroll 0 0;
    border: 1px solid #dc5653;
    color: #8e3d3b;
}

.rose:hover {
    color: #8e3d3b;
}


/*--- 8.3. Tabs ---*/

.tabs-wrapper { 
	width: 100%;
}

.tab-item {
	clear:both;
	overflow:hidden;
	padding:15px 0;
	border-bottom:1px solid #dedede;
}

.tabs-container {
	float:left;
	position:relative;
	display:block;
	width:100%;
}

.tabs-wrapper .tab-content { 
	background:#fff; 
	padding:20px;
	overflow:hidden; 
	border: 1px solid #EFEFEF;
}

ul.tabs {
	float: left; 
	height: 34px; 
	width: 100%; 
	padding-left: 0 !important; 
	margin-bottom: 0 !important;
}

.tabs-container p:last-child {
	margin-bottom:0;
}

ul.tabs li { 
	float: left; 
	padding-left: 0 !important; 
	overflow: hidden; 
	padding-bottom: 0; 
	position: relative; 
	text-align:center;
	outline:none;
}

ul.tabs li a { 
	height: 34px; 
	line-height: 34px; 
	text-decoration:none; 
	font-size:12px; 
	display: block; 
	padding: 0 25px; 
	outline:none;
    border-top: 1px solid #EFEFEF;
	border-left: 1px solid #EFEFEF;
}

ul.tabs li:last-child {
	border-right: 1px solid #EFEFEF;	
}

ul.tabs li a:hover { 
	color:#000;
}

ul.tabs li.active a:hover {
	color:#000;
}

ul.tabs li.active, ul.tabs li.active a:hover  { 
    background:#fbfbfb;
}


/*--- 8.4. Toggles ---*/

#toggle-view {
    list-style:none;    
    font-size:12px;
    margin:0;
    padding:0;
    width: 100%;
	
}

#toggle-view li {
	margin-bottom:1px;
    background:#fbfbfb;
    border: 1px solid #EFEFEF;
	position:relative;
}

#toggle-view li:hover {
	background:#f7f7f7;
}

#toggle-view h3 {
	margin:0;
	font-size:12px;
	cursor:pointer;
    padding: 7px 10px;
	color:#686868;
}

#toggle-view h3:hover {
	color:#000;
}

#toggle-view span {
	position:absolute;
	right:10px; top:12px;
}

.toggle-plus {
	background:url(images/plus.png) no-repeat scroll right center;
	width:12px;
	height:12px;
	opacity:0.5;
}

.toggle-minus {
	background:url(images/minus.png) no-repeat scroll right center;
	width:12px;
	height:12px;
}
 
#toggle-view .panel {
	display:none;
	background:#fff;
	overflow:hidden;
	padding:20px;
}   

#toggle-view .panel p:last-child {
	margin-bottom:0;
}


/*--- 8.5. Accordions ---*/

.ac-btn {
    background:#fbfbfb;
    border: 1px solid #EFEFEF;
    cursor: pointer;
    font-size: 12px;
    font-weight:normal;
    padding: 7px 10px;
	margin-bottom:1px;
}

.ac-btn h3 {
	margin:0;
	font-size:12px;
	cursor:pointer;
	color:#686868;
}

.ac-btn h3:hover {
	color:#000;
}

.ac-content {
    border-top: 0;
    border: 1px solid #EFEFEF;
    display: none;
    margin-bottom: 2px;
    margin-top: -3px;
    overflow: auto;
    padding: 10px 20px;
    position: relative;
    top: 1px;
}

.on {
	background: #f7f7f7;
	color:#000;
}
	
.over {
	background: #f7f7f7;
	color:#000;
}
	

/*--- 8.6. Tables ---*/

.pricing-table, .normal-table {
    width:100%;
}

.pricing-table td, .normal-table td {
    border:1px solid #efefef;
    padding:10px 20px;
    text-align:center;
}

.pricing-table td.td-empty {
    border:0 none;
}

.pricing-table span {
    font-weight:bold;
    text-transform:uppercase;
}

.pricing-table tr.alt, .normal-table tr.alt  {
    background:#fbfbfb;
}

.pricing-table .button {
    margin:0;
}

.pricing-table .initial {
    color:#000;
    font-weight:bold;
}

.normal-table tr.first-column {
    background:#666666;
    color: #efefef;
}


/*--- 8.7. Info Boxes ---*/

.box-error, .box-alert, .box-notice, .box-success, .box-info {
    border: 1px solid #efefef;
    margin-bottom: 10px;
    padding: 10px;
}

.box-error, .box-alert {
    background:#fce2e3;
    border-color: #fac2c4;
    color: #e54034;
}

.box-notice {
    background:#fdf4bd;
    border-color: #fed223;
    color: #504621;
}

.box-info {
    background:#d4ebf6;
    border-color: #91c8e2;
    color: #20568f;
}

.box-success {
    background:#e5eec0;
    border-color: #c4d67e;
    color: #264509;
}


/*--- 8.8. Lists ---*/


ul.star-list li { 
	background:url(images/list-star-small.png) no-repeat scroll center left; 
}

ul.radio-list li { 
	background:url(images/list-ui-radio-button.png) no-repeat scroll center left; 
}

ul.arrow-list li { 
	background:url(images/list-arrow-small.png) no-repeat scroll center left; 
}

ul.tick-list li { 
	background:url(images/list-okay.png) no-repeat scroll center left; 
}

ul.customlist li {
	padding-left: 20px;
}