@import url(http://fonts.googleapis.com/css?family=Merriweather);

/*----------------------------------------------------------------------------------

	Theme Name: Footage
	Theme URI: http://themeforest.net/user/themeprovince
	Version: 1.2
	Author: ThemeProvince
	Author URI: http://themeforest.net/user/themeprovince
	Description: A photography/portfolio theme for WordPress 3.2 or higher
	License: GPLv3
	License URI: http://www.gnu.org/copyleft/gpl.html 
	Tags: WPML
	
/*----------------------------------------------------------------------------------
/*	CONTENTS
/*----------------------------------------------------------------------------------
	
	1. CSS Reset
	2. Main Tags
	3. Common Classes
	4. Header
	5. Navigation
	6. Footer
	7. Backgrounds	
	8. Portfolios
	9. Page Styles
	10. Post Styles
	11. Contact
	12. Comments
	13. Shortcodes
		
-----------------------------------------------------------------------------------*/

/*---------------------------------------------------------------------------------*/
/*	1. CSS RESET
/*---------------------------------------------------------------------------------*/

html{color:#000;}body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,code,form,fieldset,legend,input,textarea,p,blockquote,th,td{margin:0;padding:0;}table{border-collapse:collapse;border-spacing:0;}fieldset,img{border:0;}address,caption,cite,code,dfn,em,strong,th,var{font-style:normal;}li{list-style:none;}caption,th{text-align:left;}h1,h2,h3,h4,h5,h6{font-size:100%;font-weight:normal;}q:before,q:after{content:'';}abbr,acronym{border:0;font-variant:normal;}sup{vertical-align:text-top;}sub{vertical-align:text-bottom;}input,textarea,select{font-family:inherit;font-size:inherit;font-weight:inherit;}input,textarea,select{*font-size:100%;}legend{color:#000;}input:focus,textarea:focus{outline: none;}

/*---------------------------------------------------------------------------------*/
/*	2. Main Tags
/*---------------------------------------------------------------------------------*/

body {
	font-family: "Helvetica Neue", Arial, sans-serif;
	color: #333;
	font-size: 12px;
	background: #111;
}

a {
	color: #ff6e24;
	text-decoration: none;
} 

a.r-more {
	padding: 5px 7px;
	border-radius: 2px;
	-moz-border-radius: 2px;
	-webkit-border-radius: 2px;
	text-decoration: none;
	color: #fff;
	font-weight: bold;
	font-size: 10px;
	text-transform: uppercase;
}

a.r-more:hover {
	color: #fff;
}

h1,h2,h3,h4,h5,h6 {
	font-weight: bold;
	margin-bottom: 20px;
	font-family: "Merriweather";
}

h1 {
	font-size: 30px;
}

h2 {
	font-size: 26px;
}

h3 {
	font-size: 22px;
}

h4 {
	font-size: 18px;
}

h5 {
	font-size: 14px;
}

h6 {
	font-size: 10px;
}

h1.heading {
	font-size: 30px;
	font-weight: 700;
	margin-bottom: 10px;
	font-family: "Merriweather";
}

h2.subheading {
	font-family: Arial;
	font-size: 15px;
	padding-bottom: 20px;
	margin-bottom: 20px;
	border-bottom: 1px solid #ddd;
	display: block;
	font-weight: normal;
	color: #777;
}

blockquote p {
	border-left: 5px solid #ddd;
	margin-left: 15px;
	padding: 10px 0px 10px 15px;
	color: #ddd;
	font-size: 14px;
}

a:hover, #page a:hover {
	color: #888;
}

em {
	font-style: italic;
}

.input {
	padding: 6px 8px;
	background: #eee;
	width: 602px;
	border: 1px solid #ddd;
	color: #666;
}

form#contact #submit, form #submit {
	padding: 9px 11px;
	font-size: 14px;
	color: #fff;
	border: none;
	padding: 5px 7px;
	border-radius: 2px;
	-moz-border-radius: 2px;
	-webkit-border-radius: 2px;
	text-decoration: none;
	color: #fff;
	font-weight: bold;
	font-size: 10px;
	text-transform: uppercase;
	cursor: pointer;
}


/*---------------------------------------------------------------------------------*/
/*	3. Common Classes
/*---------------------------------------------------------------------------------*/

.clear {
	clear: both;
}

/*---------------------------------------------------------------------------------*/
/*	4. Header
/*---------------------------------------------------------------------------------*/

header {
	width: 210px;
	background: #fff;
	position: fixed;
	height: 100%;
	text-align: center;
	z-index: 2;
	box-shadow: 1px 0px 5px rgba(0,0,0,0.2);
	-moz-box-shadow: 1px 0px 5px rgba(0,0,0,0.2);
	-webkit-box-shadow: 1px 0px 5px rgba(0,0,0,0.2);
}

#logo {
	margin: 10px 0px;
	display: block;
}

#logo img (
	with: 155px;
)

/*---------------------------------------------------------------------------------*/
/*	5. Navigation
/*---------------------------------------------------------------------------------*/

nav {
	padding: 0px 20px;
}

nav ul, nav ul li {
	list-style-type: none;
}

nav ul li {
	position: relative;
}

nav ul li ul {
	position: absolute;
	left: 95%;
	top: 6px;
	border: 4px solid #555;
	border: 4px solid rgba(0,0,0,0.7);
	z-index: 11;
}

nav ul li ul li a {
	width: 200px;
	display: block;
	background: #fff;
	font-size: 12px;
	color: #666;
	padding: 10px;
	text-align: left;
}

nav ul li a {
	color: #222;
	text-decoration: none;
	font-size: 14px;
	display: block;
	border-top: 1px solid #ddd;
	padding: 10px 0px 0px 0px;
}

nav ul li a span {
	display: block;
	padding-top: 5px;
	padding-bottom: 10px;
	font-size: 11px;
	color: #888;
	text-transform: none;
}

nav ul li ul {
	display: none;
}

/*---------------------------------------------------------------------------------*/
/*	6. Footer
/*---------------------------------------------------------------------------------*/

footer {
	background: #333;
	color: #ccc;
	position: absolute;
	bottom: 0px;
	left: 0px;
	width: 210px;
	line-height: 18px;
	font-size: 10px;
	border-top: solid 5px #555;
	text-transform: uppercase;
}

footer p {
	background: #111;
	padding: 15px 5px;	
}

/*---------------------------------------------------------------------------------*/
/*	7. Backgrounds
/*---------------------------------------------------------------------------------*/

#youtube_background, #vimeo_background, .video_background {
	position: fixed;
	z-index: 0;
	width: 100%;
	height: 100%;
	top: 0px;
	bottom: 0px;
}

#content_wrapper {
	opacity: 0;
}

/*---------------------------------------------------------------------------------*/
/*	8. Portfolios
/*---------------------------------------------------------------------------------*/

#portfolio_navigation {
	position: fixed;
	z-index: 1;
	top: 0px;
	left: 210px;
	width: 140px;
	height: 100%;
	background: #222;
}

#portfolio_navigation a {
	display: none;
}

#portfolio_container {
	z-index: 0;
	position: fixed;
	overflow: hidden;
	width: 100%;
	height: 100%;
}

#portfolio_container img {
	margin-left: 355px;	
	position: absolute;
	left: 355px;
	top: 0px;
}

a.portfolio_list_item {
	margin-bottom: 1px;
	background: #222;
	padding: 5px;
	display: block;
	text-decoration: none;
	color: #888;
}

a.portfolio_list_item.active_portfolio {
	background: #121212;
}

.portfolio_list_item_thumb {
	float: left;
	background: #111;
	padding: 5px 5px -0px 5px;
	cursor: pointer;
}

.portfolio_list_item_info {
	float: right;
	margin-left: 5px;
	text-align: left;
	width: 150px;
	font-size: 12px;
	font-weight: normal;
	text-transform: none;
	padding-top: 10px;
}

#portfolio_ajax_loader {
	background: url(images/ajax-loader.gif) no-repeat center center;
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0px;
	left: 0px;
	display: none;
}

#portfolios {
	text-align: left;
	padding: 0px;
	display: none;
}

#portfolios_toggle a {
	background: #444;
	padding: 5px;
	color: #fff;
	display: block;
	text-decoration: none;
	font-size: 11px;
	text-transform: uppercase;
	font-weight: bold;
}

/*---------------------------------------------------------------------------------*/
/*	9. Page Styles
/*---------------------------------------------------------------------------------*/

#page_container {
	position: relative;
	z-index: 1;
	background: #fff;
	margin-left: 350px;
	width: 700px;
	opacity: 0;
}

#page {
	min-height: 700px;
	padding: 15px 20px;
	position: relative;
}

#page p {
	line-height: 20px;
	font-size: 14px;
	color: #969696;
	margin-bottom: 20px;
}

#page_ajax_loader {
	background: url(images/ajax-loader-white.gif) no-repeat center center;
	width: 700px;
	height: 100%;
	position: fixed;
	margin-left: 340px;
	z-index: 10;	
	display: none;
}

#portfolio_navigation a {
	position: relative;
}

#portfolio_navigation_thumbs {
	overflow: hidden;
	height: 100%;
	position: relative;
}

#portfolio_navigation_thumbs a {
	position: absolute;
	left:0px;
	top: 0px;
}

#portfolio_navigation_thumbs a img {
	display: block;
}

span.hover {
	position: absolute;
	width: 100%;
	height: 100%;
	background: #000;
	left: 0px;
	top: 0px;
}

span.video {
	position: absolute;
	width: 100%;
	height: 100%;
	z-index: 30;
	background: url(images/video.png) no-repeat center center;
	left: 0px;
	top: 0px;
}

/*---------------------------------------------------------------------------------*/
/*	10. Post Styles
/*---------------------------------------------------------------------------------*/

.post {
	margin-bottom: 20px;
	padding-bottom: 30px;
	border-bottom: solid #ddd 1px;
}

.post h3 {
	font-weight: bold;
	margin-bottom: 20px;
	font-family: "Merriweather";
	font-size: 20px;
}

.post_info {
	margin: 15px 0px 15px 0px;
	border-bottom: 1px solid #ddd;
	padding-bottom: 18px;
}

.post_info ul li {
	display: inline;
	float: left;
}

.post_info ul li a {
	border-right: 1px solid #ccc;
	text-decoration: none;
	padding-right: 5px;
	margin-right: 5px;
}

#page a h3 {
	color: #555;
}

.post_info ul li a:hover, #page a.post_title:hover, #page a h3:hover {
	color: #888;
}

.post_info ul li a[rel=category] {
	padding-left: 0px;
}

.older_posts {
	float: left;
	margin-top: 14px;
}

.newer_posts {
	float: right;
	margin-top: 14px;
}

.older_posts a, .newer_posts a, a.comment-reply-link {
	padding: 5px 7px;
	border-radius: 2px;
	-moz-border-radius: 2px;
	-webkit-border-radius: 2px;
	text-decoration: none;
	color: #fff;
	font-weight: bold;
	font-size: 10px;
	text-transform: uppercase;
}

a.post_title {
	color: #333;
}

.older_posts span, .newer_posts span {
	padding: 5px 7px;
	border-radius: 2px;
	-moz-border-radius: 2px;
	-webkit-border-radius: 2px;
	text-decoration: none;
	color: #fff;
	font-weight: bold;
	font-size: 10px;
	text-transform: uppercase;
	background: #999;
}

/*---------------------------------------------------------------------------------*/
/*	11. Contact
/*---------------------------------------------------------------------------------*/

.result {
	color: #3a5b62;
	padding: 13px 15px;
	border: 1px solid #8ccddd;
	background: #d8eef4;
	margin-bottom: 20px;
	display: none;
}

/*---------------------------------------------------------------------------------*/
/*	12. Comments
/*---------------------------------------------------------------------------------*/

ul.comment_list li{
	margin-bottom:20px; 
	padding-bottom:30px;
	float:left; 
	border-bottom: 1px solid #ddd;
}

ul.comment_list li .avatar{
	float:left; 
	margin-right:15px;
}

ul.comment_list li .comment_left{
	width:530px; 
	float:left;
}

.comment_name,.comment_date,.commentary p{
	margin-bottom:15px;
}

ul.comment_list li .media_holder{
	margin-bottom:0px;
}

ul.comment_list ul li {
	padding-left: 90px;
	list-style: none;
}

ul.comment_list ul li .comment_left {
	width:440px; 
	float:left;
}

ul.comment_list ul ul li {
	padding-left: 180px;
	list-style: none;
}

ul.comment_list ul ul li .comment_left{
	width:350px; 
	float:left;
}

ul.comment_list ul ul ul li {
	padding-left: 270px;
	list-style: none;
}

ul.comment_list ul ul ul li .comment_left{
	width:260px; 
	float:left;
}

/*---------------------------------------------------------------------------------*/
/*	13. Shortcodes
/*---------------------------------------------------------------------------------*/

.cf_success {
	border-color: #63ff5e;
	border-width: 1px;
	border-style: solid;
	color: #377520;
	background-color: #c0ffb2;
}

.cf_error {
	border-color: #ff4845;
	border-width: 1px;
	border-style: solid;
	color: #9b201c;
	background-color: #ffd2cf;
}

.one_half, .one_third, .one_fourth,.one_fifth, .two_third, .three_fourth{
	height:auto; 
	float:left;
	margin-right:8%;
	overflow:hidden;
}

.one_half{
	width:46%;
}
.one_third{
	width:28%;
}
.one_fourth{
	width:19%;
}
.one_fifth{
	width:19%;
}
.two_third{
	width:64%;
}
.three_fourth{	
	width:73%;
}
.col_last{
	margin-right: 0 !important; 
	clear: right;
}

form#commentform label {
	margin-bottom: 10px;
	display: block;
}

ul.list p {
	display: none;
	margin-bottom: 100px;
}

ul.list {
	padding-left: 15px;
	margin-bottom: 20px;
}

ul.list li {
	margin-bottom: 5px;
	color: #555;
}

.box_success {
	padding: 13px 15px;
	margin-bottom: 20px;
	border-color: #63ff5e;
	border-width: 1px;
	border-style: solid;
	color: #377520;
	background-color: #c0ffb2;
	font-weight: bold;
}

.box_error {
	padding: 13px 15px;
	margin-bottom: 20px;
	border-color: #ff4845;
	border-width: 1px;
	border-style: solid;
	color: #9b201c;
	background-color: #ffd2cf;
	font-weight: bold;
}

.box_info {
	border-color: #4087ff;
	border-width: 1px;
	border-style: solid;
	background-color: #d7ecff;
	color: #246dbd;
	padding: 13px 15px;
	margin-bottom: 20px;
	font-weight: bold;
}

.box_alert {
	border-color: #ffe627;
	border-style: solid;
	border-width: 1px;
	background-color: #fffed3;
	color: #ce3735;
	padding: 13px 15px;
	margin-bottom: 20px;
	font-weight: bold;
}

.highlight {
	padding: 2px;
}

.flowplayer {

}

#twitter_update_list {
	list-style: none;
	color: #555;
}

#twitter_update_list li {
	margin-bottom: 9px;
	min-height: 35px;
	padding-left: 30px;
	background: url(images/tweet.png) no-repeat 0px -5px;
}

#twitter_update_list span a {
	text-decoration: none;
	border: none;	
	font-size: 12px;
	color: #999;
}

#twitter_update_list a {
	display: inline;
	background: none;
	padding: 0px;
	margin: 0px;
	border: none;	
	color: #555;
}

.entry-content img {
	margin: 0 0 1.5em 0;
}

.alignleft, img.alignleft {
	margin-right: 1.5em;
	display: inline;
	float: left;
}

.alignright, img.alignright {
	margin-left: 1.5em;
	display: inline;
	float: right;
}

.aligncenter, img.aligncenter {
	margin-right: auto;
	margin-left: auto;
	display: block;
	clear: both;
	margin-bottom: 1.5em;
}

.alignnone, img.alignnone {
	/* not sure about this one */
}

.wp-caption {
	margin-bottom: 1.5em;
	text-align: center;
	padding: 0px;
}

.wp-caption img {
	border: 0 none;
	padding: 0;
	margin: 0;
}

.wp-caption p.wp-caption-text {
	line-height: 1.5;
	font-size: 10px;
	margin: 0;
}

.wp-smiley {
	margin: 0 !important;
	max-height: 1em;
}

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;
}
	
.gallery dl {}
.gallery dt {}
.gallery dd {}
.gallery dl a {}
.gallery dl img {}
.gallery-caption {}

.size-full {}
.size-large {}
.size-medium {}
.size-thumbnail {}

.sticky {}
.bypostauthor {}

a.button {
	font-size: 14px;
	color: #fff;
	border: none;
	padding: 5px 7px;
	border-radius: 2px;
	-moz-border-radius: 2px;
	-webkit-border-radius: 2px;
	text-decoration: none;
	color: #fff;
	font-weight: bold;
	font-size: 10px;
	text-transform: uppercase;
	cursor: pointer;	
	margin: 0px 5px 20px 0px;
	display: inline-block;	
}

a.button.medium {
	font-size: 14px;
	padding: 7px 9px;
}

a.button.large {
	font-size: 16px;
	padding: 9px 11px;
}

.pullquote_left {
	margin-right: 1.5em;
	margin-bottom: 0.5em;
	display: inline;
	float: left;
	width: 200px;
	padding: 8px 10px;
	border-radius: 5px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	background: #eee;
	border: 1px solid #ddd;
	line-height: 20px;
	color: #555;
	font-size: 11px;
}

.pullquote_right {
	margin-left: 1.5em;
	margin-bottom: 0.5em;
	display: inline;
	float: right;
	width: 200px;
	border-radius: 5px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	background: #eee;
	border: 1px solid #ddd;
	padding: 8px 10px;
	line-height: 20px;
	color: #555;
	font-size: 11px;
}