/*
==  THEME DETAILS  ============================================================

    Theme Name: Prolio
    Theme URI:  http://www.designerthemes.com/
    Description: A powerful portfolio theme
    Version: 1.1

    Designer: Joe Mercieri
    Designer URI: http://www.designerthemes.com/

    Author: Designer Themes
    Author URI: http://designerthemes.com/

    License: GNU General Public License version 3.0
    License URI: http://www.gnu.org/licenses/gpl-3.0.html

===============================================================================

   ___             _                        ______ __
  / _ \ ___  ___  (_)___ _ ___  ___  ____  /_  __// /  ___  __ _  ___  ___
 / // // -_)(_-< / // _ `// _ \/ -_)/ __/   / /  / _ \/ -_)/  ' \/ -_)(_-<
/____/ \__//___//_/ \_, //_//_/\__//_/     /_/  /_//_/\__//_/_/_/\__//___/
                   /___/

==  WARNING! DO NOT EDIT THIS FILE! (PLEASE)  =================================

    If you wish to make CSS changes to this theme, DO NOT EDIT THIS FILE.
    Instead, use the custom-style.css file to define custom styles. Adding your
    custom CSS there will make it much easier to upgrade to a newer version
    of this theme without losing any of your customizations.

===============================================================================
*/


/* default stylesheet */
@import url('engine/css/default.css');

/*-----------------------------------------------------------------------------------*/
/*	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, font, 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 { margin: 0; padding: 0; border: 0; outline: 0; font-size: 100%; vertical-align: baseline; background: transparent; } body { line-height: 1; } ol, ul { list-style: none; } blockquote, q { quotes: none; } blockquote:before, blockquote:after, q:before, q:after { content: ''; content: none; } :focus { outline: 0; } ins { text-decoration: none; } del { text-decoration: line-through; } table { border-collapse: collapse; border-spacing: 0; }

.clearfix:after { content: "."; display: block; height: 0; clear: both; visibility: hidden; } .clearfix { display: inline-block; } /* Hide from IE Mac \*/ .clearfix { display: block; } /* End hide from IE Mac */ .none { display: none; } /* End Clearfix */


/*-----------------------------------------------------------------------------------*/
/*	Global Styles
/*-----------------------------------------------------------------------------------*/

body.layout-fullwidth { background: #444444; }

body { background: #ccc; }

html { overflow-y: scroll; } 

body,
input,
textarea {
	font: 12px/20px "Helvetica Neue", Helvetica, Arial, sans-serif;
	color: #333;
}

a { 
	text-decoration: none; 
	transition: color 0.1s linear;
	-moz-transition: color 0.1s linear;
	-webkit-transition: color 0.1s linear;
	-o-transition: color 0.1s linear;
}

a:hover { text-decoration: none; }

h1,h2,h3,h4,h5,h6 {
	font-weight: normal;
	padding: 0;
	margin: 0 0 10px 0;
}

h1 {
	font-size: 24px;
	line-height: 28px;
	margin: 0 0 20px 0;
}

h2 {
	font-size: 20px;
	line-height: 22px;
	margin: 0 0 20px 0;
}

h3 {
	font-size: 16px;
	line-height: 20px;
}

h4 {
	font-size: 14px;
	line-height: 18px;
}

h5 {
	font-size: 12px;
	line-height: 18px;
}

h6 {
	font-size: 10px;
	line-height: 16px;
}

.hidden { display: none; }

.alignleft { float: left; }

.alignright { float: right; }

.aligncenter {
	margin-left: auto;
	margin-right: auto;
	display: block;
	clear: both;
}

a img { border: none; }

strong { font-weight: bold; 
		color: #ffffff;}


small { font-size: 11px; }

code,
pre {
	font: 12px/18px Consolas, "Andale Mono", Courier, "Courier New", monospace;
	background: #f1f1f1;
	line-height: 18px;
}

pre {
	white-space: pre;
	overflow: auto;
	padding: 10px;
	border: 1px solid #ddd;
	clear: both;
}

code { padding: 3px; }

ul,
ol,
dl { margin-left: 30px; }

table {
	width: 100%;
	margin-bottom: 20px;
	border-top: solid 3px #333;
	border-spacing: 0;
	border-collapse: collapse;
}

tr,
th,
td {
	margin: 0;
	padding: 0 15px 0 10px;
	vertical-align: middle;
	text-align: center;
	height: 20px;
}

th, td {
	line-height: 18px;
	padding: 9px 18px 8px 0;
	position: relative;
}

tr:nth-child(odd) td { background-color: #eee; }

blockquote {
	font-family: Georgia, "Times New Roman", Times, serif;
	color: #666;
	font-style: italic;
	border-left: 1px solid #ddd;
	margin: 20px;
	padding-left: 20px;
}

img.alignleft {
	float: left;
	margin: 10px 25px 20px 0;
}

img.alignright {
	display: block;
	margin: 10px 0 25px 20px;
}

img.aligncenter {
	margin-left: auto;
	margin-right: auto;
	display: block;
	clear: both;
	margin-top: 5px;
}

.widget .s,
input,
textarea,
button {
	background: #fff;
	color: #333;
	border: 1px solid #eee;
	border-bottom-width: 5px;
}

input,
textarea { padding: 5px; }

button {
	padding: 3px 10px;
	cursor: pointer;
}

.widget .s:focus,
input:focus,
textarea:focus,
button:hover {
	border: 1px solid #ddd;
	border-bottom-width: 5px;
}

input.s { border: 1px solid #eee; }

#submit { 
	cursor: pointer;
	padding: 3px 10px;
	background: #333;
	color: #fff;
}

button#submit { padding: 7px 10px; }

/*-----------------------------------------------------------------------------------*/
/*	Header Styles
/*-----------------------------------------------------------------------------------*/

#header {
	background: #fff;
	border-bottom: 5px solid #df2d3d;
	border-top: 10px solid #df2d3d;
}

#header-bottom {
	padding: 35px 20px;
}

.layout-fullwidth #header-bottom {
	padding: 30px 30px 30px 0px;
}

#logo { 
	float: left; 
	margin: 5px 0 0 0;
	padding: 0;
}

#logo,
#logo a {
	font-size: 28px;
	line-height: 30px;
	color: #000;
	font-weight: bold;
}

#logo a:hover { text-decoration: none; }

#tagline {
	color: #999;
	font-size: 12px;
	line-height: 20px;
	font-weight: normal;
}

#primary-menu {
	float: right;
	margin: 10px 0 0 0;
}

#primary-menu ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

#primary-menu ul a {
	position: relative;
}

#primary-menu ul li {
	display: inline;
	position: relative;
	z-index: 40;
}

#primary-menu ul li:hover { visibility: inherit;  }

#primary-menu ul ul {
	position: absolute;
	top: -9999em;
	width: 180px;
}

#primary-menu ul ul li { width: 100%; }

#primary-menu ul li:hover ul,
#primary-menu ul li.sfHover ul {
	left: -3px;
	top: 30px; 
	z-index: 99;
}

#primary-menu ul li:hover li ul,
#primary-menu ul li.sfHover li ul,
#primary-menu ul li li:hover li ul,
#primary-menu ul li li.sfHover li ul,
#primary-menu ul li li li:hover li ul,
#primary-menu ul li li li.sfHover li ul { top: -9999em; }

#primary-menu ul li li:hover ul,
#primary-menu ul li li.sfHover ul,
#primary-menu ul li li li:hover ul,
#primary-menu ul li li li.sfHover ul,
#primary-menu ul li li li li:hover ul,
#primary-menu ul li li li li.sfHover ul {
	left: 180px;
	top: -1px;
}
	
/* top level skin */
#primary-menu ul li.current-menu-item li a,
#primary-menu ul a {
	padding: 0 15px;
	color: #666;
	font-size: 14px;
}

#primary-menu ul li:after {
	content: '//';
	color: #ccc;
}

#primary-menu ul li:last-child:after { content: ''; }

#primary-menu ul li:last-child a { padding-right: 0; }

#primary-menu ul a:hover,
#primary-menu ul li.sfHover a,
#primary-menu ul li.current-cat a,
#primary-menu ul li.current_page_item a,
#primary-menu ul li.current-menu-item a {
	text-decoration: none;
}

/* 2nd level skin */
#primary-menu ul ul {
	padding: 10px 0;
	background: #333333;
	display: block;
}

/* 3rd level skin */
#primary-menu ul ul ul { margin: -10px 0 0 5px; }

#primary-menu ul ul li {
	float: none;
	display: block;
	background: none;
}

#primary-menu ul ul li:after { content: ''; }

#primary-menu ul li.menu-item-ancestor li:last-child a,
#primary-menu ul ul li:last-child a {
	border: none;
}

#primary-menu ul li.menu-item-ancestor li a,
#primary-menu ul ul li a {
	font-size: 12px;
	margin: 0 15px;
	padding: 7px 0;
	display: block;
	border-bottom: 1px solid #555555;
	background: none;
	color: #ccc;
}

#primary-menu li.menu-item-ancestor a {
	background: url(images/drop-arrow.png) right center no-repeat;
	padding-right: 20px;
	margin-right: 10px;
}

#primary-menu ul li.sfHover ul a:hover { color: #fff;  }


/*-----------------------------------------------------------------------------------*/
/*	Main Content Styles
/*-----------------------------------------------------------------------------------*/

#container {
	width: 980px;
	margin: 50px auto;
}

.layout-fullwidth .inner {
	width: 980px;
	margin: 0 auto;
}

.inner-padding {
	padding: 0 20px;
}

.layout-fullwidth #container { 
	width: auto;
	margin-top: 0;
}
	
#main {
	float: left;
	width: 620px;
	margin: 0;
	position: relative;
}

.layout-fullwidth #main,
.layout-fullwidth #sidebar {
	margin: 10px 0 30px;
}

.layout-fullwidth.page-template-template-home-php #main,
.layout-fullwidth.page-template-template-portfolio-php #main,
.layout-fullwidth.page-template-template-full-width-php #main { margin: 0; }

#content { 
	padding: 20px 0;
	border-bottom: 10px solid #333;
	background: #fff url(images/main-bg.gif) repeat-y center;
}

.layout-fullwidth #content { border: 0; }

/*-----------------------------------------------------------------------------------*/
/*	Page Templates
/*-----------------------------------------------------------------------------------*/

#page-caption {
	background: #333;
	padding: 20px 0;
	border-bottom: 5px solid #ddd;
	color: #999;
}

#page-caption-text p { margin: 0; }

#page-caption .post-meta {
	margin: 15px 0 0 0;
}

#page-caption .post-meta a { color: #fff; }

#page-caption p:last-child { margin: 0; }

#page-title {
	color: #fff;
	font-size: 24px;
	font-weight: normal;
	margin: 0;
}

#page-caption-text { margin: 10px 0 0 0;}

.slides_container {
	width: 980px;
	height: 500px;
	overflow: hidden;
}

.layout-fullwidth #slides {
	background: #000000;
	padding: 30px 0;
}

#slides .hentry {
	position: relative;
	margin: 0;
	border: none;
	padding: 0;
}


#slides.hide-slides .hentry {
	display: none;
}


#slides .post-content {
	position: absolute;
	bottom: 0;
	right: 0;
	z-index: 20;
	padding: 20px 20px 25px 20px;
	font-family: Georgia, "Times New Roman", Times, serif;
	color: #fff;
	font-size: 24px;
	font-style: italic;
	line-height: 36px;
	max-width: 700px;
}

#slides .post-content a { border: none; }

#slides .post-content p:last-child { margin: 0; }

#slides .featured-image {
	position: relative;
	z-index: 10;
	margin: 0;
}

#slides a.next,
#slides a.prev {
	position: absolute;
	width: 45px;
	height: 45px;
	display: block;
	right: 0;
	top: -45px;
	text-indent: -9999px;
}

#slides a.prev { 
	right: 45px;
}

#slides a.next span,
#slides a.prev span { 
	background-image: url(images/slide-arrow-left.png);
	background-position: top left;
	width: 6px;
	height: 11px;
	margin: 17px 0 0 20px;
	display: block;
	text-indent: -9999px;
}

#slides a.next span { 
	background-image: url(images/slide-arrow-right.png);
}

#services {
	background: #434343;
	padding: 30px 0 0;
}

#services a { color: #fff; }

#services .col {
	float: left;
	width: 220px;
	margin: 0 0 10px 20px;
}

#services .widget {
	color: #c1c1c1;
}

#services .widget-title {
	color: #fff;
	border-bottom: 5px solid #df2d3d;
}

#services .widget .read-more {
	color: #fff;
	padding: 0 15px 0 0;
	background: url(images/read-more.png) no-repeat center right;
}

#featured-projects {
	background: #eee;
	padding: 30px 0 0;
}

#featured-projects .hentry {
	border: none;
}

#featured-projects .featured-image {
	margin: 0 0 10px;
}

.featured-image a { 
	position: relative;
	float: left;
}

.featured-image img { display: block; }

.overlay {
	display: none;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: url(images/overlay.png);
}

#featured-projects .post-title,
#featured-projects .post-title a {
	color: #333;
	font-size: 14px;
	font-weight: bold;
	margin: 0;
}

#featured-projects .post-content {
	color: #888888;
	font-size: 12px;
}

#featured-projects .post-content p:last-child { margin: 0; }

#featured-projects .post-title a:hover {
	color: #fff;
}

.page-template-template-portfolio-php #main,
.page-template-template-full-width-php #main,
.page-template-template-home-php #main {
	float: none;
	width: auto;
}

.page-template-template-portfolio-php #content,
.page-template-template-full-width-php #content {
	background: #fff;
}

.page-template-template-home-php #content { 
	padding: 0;
	background: #fff;
}

.title-wrap {
	float: left;
	width: 220px;
}

.title {
	font-size: 14px;
	color: #999;
	float: left;
	margin: 0 0 20px 0;
	padding: 0 16px 0 0;
	height: 50px;
}

.title span {
	background: url("images/title-services-arrow2.jpg") repeat-x scroll right center transparent;
	height: 50px;
	line-height: 50px;
	float: left;
	padding: 0 20px;
	margin: 0 0 0 -20px;
	color: #ffffff;
}

#services .title { background: url(images/title-services-arrow.png) right center no-repeat; }
#featured-projects .title { background: url(images/title-featured-arrow.png) right center no-repeat; }

#filter .title,
#news .title { background: url(images/title-featured-arrow.png) right center no-repeat; }

#featured-projects .title span { 
	background: url("images/title-featured-arrow2.jpg") repeat-x scroll right center transparent; 
	color: #fff; 
}

#filter .title span,
#news .title span { 
	background: url("images/title-featured-arrow2.jpg") repeat-x scroll right center transparent;
	color: #fff; 
}

#filter .title span { color: #333; }

#featured-projects ul {
	width: 720px;
	float: right;
	margin: 0;
}

#featured-projects li {
	float: left;
	width: 220px;
	padding: 0 0 30px 20px;
	margin: 0;
}

#news { padding: 30px 0; }

.layout-fullwidth #news {
	padding: 30px 0 10px 0;
}


#home-bottom-center {
	float: left;
	width: 460px;
	margin: 0 20px;
}

#home-bottom-right {
	float: right;
	width: 220px;
}

.sitemap .children { margin-bottom: 0; }

.sitemap h4 {
	font-weight: bold;
	font-size: 14px;
	margin: 0 0 20px 0;
}

.full-width { width: 940px!important; }

/* contact form */
.dt-contactform label {
    display: block;
    margin: 0 0 10px 0;
}
.dt-contactform input {
    width: 45%;
    margin: 0 0 20px 0;
}
.dt-contactform select { margin: 0 0 20px 0 }
.dt-contactform textarea {
    width: 98%;
    margin: 0 0 20px 0;
}
.dt-contactform .submit {
    width: auto;
    float: right;
    background: #fff;
    margin: 0;
}

.contact .alert {
	display: none;
}

.contact .alert p {
	margin: 0;
}

#filter {
	font-size: 14px;
}

#filter li {
	float: left;
	margin: 15px 0 0 0;
}

#filter li.title {
	margin-top: 0;
}

/* top level skin */
#filter a {
	padding: 0 15px;
	color: #666;
	font-size: 14px;
}

/* top level skin */
#filter li:after {
	content: '//';
	color: #ccc;
}

#filter li:first-child:after,
#filter li:last-child:after {
	content: '';
}

#filter li:last-child a {
	padding-right: 0;
}

#filter {
	margin: -20px 0 20px 0;
	padding-top: 20px;
}

#filter a { cursor: pointer; }

#filter li:first-child { padding-left: 0; }

.image-grid {
  width: 960px;
  margin: 0;
  position: relative;
}

.image-grid li {
  width: 300px;
  margin: 0 20px 20px 0;
  float: left;
}

.image-grid .hentry {
	margin: 0;
}

.post-overlay {
	position: absolute;
	opacity: 0;
	filter: alpha(opacity=0); 
	top: 0;
	left: 0;
	width: 100%;
	color: #fff;
	height: 100%;
	text-align: center;
	background: url(images/post-overlay.png) repeat;
	z-index: 5;
}

.post-overlay-inner { margin: auto 0; }

.post-overlay .post-title {
	color: #fff;
	font-weight: normal;
	font-size: 24px;
	padding: 0 10px;
	margin: 0 0 5px 0;
}

.post-overlay .post-title a {
	color: #fff;
}

.post-overlay .post-content {
	color: #999;
	font-weight: normal;
	font-style: italic;
	font-size: 14px;
	padding: 0 10px;
}

.post-overlay .icon {
	background: url(images/post-overlay-icon.png);
	width: 49px;
	height: 49px;
	margin: 0 auto;
	margin-bottom: 20px;
}

.post-link {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 10;
}

.layout-fullwidth.page-template-template-portfolio-php #main {
}

/* Start: Recommended Isotope styles */

/**** Isotope Filtering ****/

.isotope-item {
  z-index: 2;
}

.isotope-hidden.isotope-item {
  pointer-events: none;
  z-index: 1;
}

/**** Isotope CSS3 transitions ****/

.isotope,
.isotope .isotope-item {
  -webkit-transition-duration: 0.8s;
     -moz-transition-duration: 0.8s;
          transition-duration: 0.8s;
}

.isotope {
  -webkit-transition-property: height, width;
     -moz-transition-property: height, width;
          transition-property: height, width;
}

.isotope .isotope-item {
  -webkit-transition-property: -webkit-transform, opacity;
     -moz-transition-property:    -moz-transform, opacity;
          transition-property:         transform, opacity;
}

/**** disabling Isotope CSS3 transitions ****/

.isotope.no-transition,
.isotope.no-transition .isotope-item,
.isotope .isotope-item.no-transition {
  -webkit-transition-duration: 0s;
     -moz-transition-duration: 0s;
          transition-duration: 0s;
}

/* End: Recommended Isotope styles */



/* disable CSS transitions for containers with infinite scrolling*/
.isotope.infinite-scrolling {
  -webkit-transition: none;
     -moz-transition: none;
          transition: none;
}

#teleport {
	height: 0;
	overflow: hidden;
}

#teleport .hentry{
	margin: 0;
}

#teleport .post-title{
	font-size: 18px;
	float: left;
	font-weight: normal;
}

#teleport-header {
	padding: 0 0 10px 0;
	border-bottom: 5px solid #ccc;
	margin: 0 0 20px 0;
	position: relative;
}

.close {
	position: absolute;
	top: 0;
	right: 0;
	width: 20px;
	height: 19px;
}

.close a {
	display: block;
	width: 100%;
	height: 100%;
	text-indent: -9999px;
	background: url(images/slider-close.png);
}

#teleport-slides {
	position: relative;
}

#teleport-slides .slides_container {
	width: 940px;
	height: auto;
	position: relative;
}

.slides_container iframe { display: block; }

#teleport-slides .slides_container .slide {
	margin: 0 auto;
	width: 940px;
	text-align: center;
	background: #ddd;
}

#teleport-slides .slides_container .slide img {
	vertical-align: bottom;
}

#teleport-slides .slide-title {
	position: absolute;
	top: 0;
	left: 0;
	width: 900px;
	background: url(images/teleport-title-bg.png) repeat;
	padding: 0 20px;
	font-size: 14px;
	height: 47px;
	line-height: 47px;
	font-weight: normal;
	z-index: 80;
	color: #999;
	text-align: left;
}

#teleport-pagination {
	position: absolute;
	top: 0;
	right: 0;
	z-index: 90;
}

#teleport-pagination .next,
#teleport-pagination .prev {
	display: block;
	width: 47px;
	height: 47px;
	text-indent: -9999px;
	cursor: pointer;
}

#teleport-pagination .next { 
	float: right;
	background-image: url(images/teleport-slide-pagination-right.png);
	background-position: top left;
}

#teleport-pagination .prev { 
	float: left; 
	background-image: url(images/teleport-slide-pagination-left.png);
	background-position: top left;
}

#teleport-pagination .next:hover { 
	background-position: top right;
}

#teleport-pagination .prev:hover { 
	background-position: top right;
}

.teleport-left {
	width: 280px;
	margin: 0 20px 0 0;
	float: left;
}

.teleport-right {
	width: 579px;
	float: right;
	border-left: 1px solid #ccc;
	color: #666;
	padding: 0 0 0 20px;
}

.post-content p,
.teleport-right p { clear: both; }

.teleport-right p:last-child {
	margin: 0;
}

#teleport .teleport-left .post-title,
.teleport-left .post-title {
	font-size: 30px;
	float: none;
	display: block;
	margin: 0 0 10px 0;
	font-weight: normal;
	line-height: 1.2em;
}

.teleport-left p {
	font-size: 14px;
	font-style: italic;
	color: #999;
	clear: both;
}

#teleport-content {
	border-bottom: 5px solid #ddd;
	padding: 30px 20px;
	background: #eee;
}

#loader {
	position: absolute;
	top: 20px;
	right: 0;
	display: none;
}

.single-portfolio #content {
	background: #fff;
}

.single-portfolio #main {
	width: auto;
}

#related-projects {
	float: right;
	width: 220px;
}

#comment-wrap {
	float: left;
	width: 700px;
}

#related-projects ul {
	margin: 20px 0 0 0;
}

#related-projects .post-title a {
	font-size: 13px;
}

#related-projects .featured-image {
	margin: 0 0 10px 0;
}

#related-projects .post-content p:last-child {
	margin: 0;
}

#related-projects .post-content {
	font-size: 12px;
	color: #999;
	font-style: italic;
}

#related-projects li {
	margin: 0 0 30px 0;
}



/*-----------------------------------------------------------------------------------*/
/*	Post Content Styles
/*-----------------------------------------------------------------------------------*/

.page-navigation .nav-next { float: left; }

.page-navigation .nav-previous { float: right; }

.single-page-navigation .nav-next { float: right; }

.single-page-navigation .nav-previous { float: left; }

.post.on { cursor: pointer; }

.post-content.fixed {
	float: left;
	width: 470px;
}

.post-content p { clear: both; }

.post-title.fixed {
	float: left;
	width: 470px;
	margin: -5px 0 10px 0;
}

.post-title,
.post-title a {
	font-size: 18px;
	line-height: 26px;
	font-weight: bold;
	color: #333;
	margin: 0;
}

.hentry {
	border-bottom: 5px solid #eee;
	position: relative;
	margin-bottom: 30px;
}

.page .hentry,
.single .hentry {
	border: none;
}

.post-meta {
	font-size: 11px;
	color: #999;
	margin: 0 0 20px 0;
	font-style: italic; 
	font-family: Georgia, "Times New Roman", Times, serif;
}

.fixed .post-meta {
	float: left;
	background: #333;
	padding: 15px;
	width: 100px;
	margin: 0 20px 20px 0;
}

.fixed .meta-published,
.fixed .meta-comment,
.fixed .meta-category {
	border-bottom: 1px solid #4e4e4e;
	padding: 0 0 10px 0;
	margin: 0 0 10px 0;
	display: block;
}

.fixed .meta-category {
	margin: 0;
	padding: 0;
	border: none;
}

.post-footer { 
	margin: 0 0 15px 0;
}

.post-meta a { 
	color: #fff; 
}

.fixed .post-meta a { 
	color: #fff; 
	display: block;
}

.author-title {
	font-weight: bold;
	margin-left: 60px;
}

.author-description { margin-left: 60px; }

.post-content ul { list-style-type: disc; }

.post-content ol { list-style-type: decimal; }

.post-content a {
	border-bottom: 1px solid #ddd;
	font-weight: normal;
}

.post-content a:hover {
	color: #333;
}

.post-content .more-link { 
	border: none;
	font-weight: bold;
}


/*-----------------------------------------------------------------------------------*/
/*	Comments
/*-----------------------------------------------------------------------------------*/

#related-projects h3,
#reply,
#comments {
	background: #333;
	color: #fff;
	font-size: 14px;
	font-weight: bold;
	padding: 5px 8px;
}

#comments a {
	float: right;
	font-size: 11px;
	font-weight: normal;
	color: #fff;
}

.commentlist {
	margin: 20px 0 40px 0;
	list-style-type: none;
}

.comment {
	margin-top: 25px;
	clear:both;
}

.comment ul {
	margin: 0 0 0 80px;
}

#commentform {
	margin-top: 20px;
}

#commentform input { margin-right: 10px; }

#commentform textarea { 
	width: 98%; 
	resize: vertical;
}

.children { list-style-type: none; }

.comment .avatar {
	float: left;
	margin: 3px 20px 0 0;
}

.says { display: none; }

.comment-meta { 
	display: inline;
	font-size: 11px;
	font-style: italic;
}

.comment-meta a { color: #999; }

.comment-meta a:hover { color: #666; }

.comment-author {
	display: inline;
	padding: 0 10px 0 0;
}

.comment-author:after {
	content: '//';
	padding: 0 0 0 10px;
}

.comment-author,
.comment-author a { 
	font-weight: bold;
	font-style: normal;
	font-size: 14px;
}

.nocomments {
	text-align: center;
	padding: 20px;
}

.comment-body ul { list-style-type: disc; }

.comment-body ol { list-style-type: decimal; }

.comment-body {
	padding: 0 0 0 80px;
	margin: 10px 0 0 0;
	border-bottom: 5px  solid #eee;
	padding: 0 0 20px 0;
}

.moderation {
	font-size: 11px;
	display: block;
	color: #999;
}

.reply {
	text-align: right;
}

.comment-reply-link {
	display: block;
	background: #eee;
	color: #999;
	float: right;
	padding: 3px 8px;
	margin: -2px 0 0 0;
}

.comment-reply-link:hover {
	background: #333;
	color: #fff;
}

/*-----------------------------------------------------------------------------------*/
/*	Comment Form
/*-----------------------------------------------------------------------------------*/

#respond {
	margin: 0 0 40px 0;
}

#respond form {
	margin: 30px 0 0 0;
}

#respond input {
	width: 45%;
}

#respond small {
	font-size: 12px;
}

#respond input#submit { 
	width: auto;
	border: none; 
}

ol #respond {
	margin: 40px 0 40px 0;
}

.cancel-comment-reply {	
	display: block;
	margin: 20px 0 0 0;
	font-size: 11px;
}

.cancel-comment-reply a:hover { color: #333; }


/*-----------------------------------------------------------------------------------*/
/*	Footer Styles
/*-----------------------------------------------------------------------------------*/

#footer .inner-padding {
	padding: 0 20px;
}

.layout-fullwidth #footer {
	background: #444444;
	margin: 0;
	padding: 0 0 20px 0;
	color: #ccc;
}

#footer .inner-padding {
	margin: 20px 0;

}

.layout-fullwidth #footer a { color: #ccc; }

.layout-fullwidth #footer a:hover { color: #fff; }

.layout-fullwidth .copyright span { color: #777; }

#footer {
	font-size: 11px;
	font-weight: bold;
	color: #333;
	padding: 0 0 20px 0;
	margin: 20px 0 0 0;
}

.copyright { float: left; }

.copyright a { color: #333; }

.copyright a:hover { color: #111; }

.copyright span { color: #999; }

.layout-fullwidth #footer-menu li:after {
	content: '//';
	color: #777;
}

.layout-fullwidth #footer-menu a { text-shadow: 0 1px 1px rgba(0, 0, 0, 0.5); }

#footer-menu {
	float: right;
	font-size: 11px;
}

#footer-menu li { display: inline; }

#footer-menu li:after {
	content: '//';
	color: #aaa;
}

#footer-menu li:last-child:after { content: ''; }

#footer-menu li:last-child a { padding-right: 0; }

#footer-menu a { 
	padding: 0 10px;
	color: #555;
	font-weight: normal;
	text-shadow: 0 1px 1px rgba(255, 255, 255, 0.5);
}

#footer-menu a:hover { color: #111; }

/*-----------------------------------------------------------------------------------*/
/*	Sidebar & Widgets
/*-----------------------------------------------------------------------------------*/

#sidebar {
	float: right;
	width: 275px;
}

#sidebar .widget {
	color: #999;
	margin: 0 0 40px 0;
}

#sidebar .s {
	width: 265px;
	border: 1px solid #eee;
}

#sidebar a {
	font-weight: normal;
}

.widget {
	margin: 0 0 20px 0;
	color: #333;
}

.widget a {
	font-weight: bold;
	color: #333;
}

.widget-title { 
	margin: 0 0 20px 0;
	font-size: 14px;
	font-weight: bold;
	border-bottom: 5px solid #eeeeee;
	padding: 0 0 5px 0;
	color: #333;
	
}

.widget ul { 
	margin: 0 0 0 0;
}

.widget ul ul { 
	margin: 0 0 0 20px;
	list-style: none;
}

/*---------------------*/
/*	Twitter
/*---------------------*/

.DT_Twitter a {
	color: #999;
	font-size: 11px;
	display: block;
	font-weight: normal;
}

.DT_Twitter span a {
	color: #333;
	font-size: 12px;
	font-weight: bold !important;
	display: inline;
}

.DT_Twitter li {
	background: url(images/icon-twitter.png) no-repeat 0 5px;
    margin: 0 0 20px 0;
    padding-left: 20px;	
    color: #333;
}

.ie7 .DT_Twitter li {
	background: none;
    padding-left: 0;	
}

.DT_Twitter li:last-child { margin: 0; }

.follow-me { 
	display: block;
	margin: 20px 0 0 0;
}

/*---------------------*/
/*	Video
/*---------------------*/


.dt_video {
	margin: 0 0 10px 0;
}

.dt_video object {
	display: block;
}

.dt_video_desc {
	font-family: Georgia, "Times New Roman", Times, serif;
	font-style: italic;
	text-align: center;
	font-size: 11px;
}

/*---------------------*/
/*	Blog
/*---------------------*/

.dt_blog {
	margin: 0;
}

.dt_blog a {
	float: left;
	width: 60%;
	background: url(images/icon-blog.png) no-repeat 0 5px;
    padding-left: 20px;
}

.dt_blog li {
	margin: 0 0 20px 0;
}

.dt_blog li:last-child {
	margin: 0;
}

.dt_blog span {
	color: #999;
	float: left;
	width: 30%;
}

.widget_recent_entries li {
	background: url(images/icon-blog.png) no-repeat 0 4px;
    margin: 0 0 10px;
    padding-left: 20px;
}

/*-----------------------------------------------------------------------------------*/
/*	WordPress Gallery
/*-----------------------------------------------------------------------------------*/

.gallery { margin: auto; }

.gallery-image {
	margin-left: 0;
}

.gallery-caption { margin-left: 0; }

.gallery-item {
	float: left;
	text-align: center;
	margin-left: 0;
}

.gallery {
	float: left;
	width: 100%;
}

.gallery-item {
	width: auto !important;
	float: left;
	margin:  10px 10px 0 0 !important;
}

.gallery-item img {
	margin: 0 !important;
	padding:  0 !important;
}

.gallery-item a {
	float: left;
	border: none !important;
	margin:  0 !important;
	padding: 0 !important;
}

.wp-caption {
	text-align: center;
	margin: 10px 20px 20px 20px;
	font-style: italic;
}

.wp-caption img,
.wp-caption img a {
	margin: 0;
	padding: 0;
	border: 0 none;
}

.wp-caption
.wp-caption-text {
	margin: 0;
	padding: 5px;
}

.wp-smiley {
	max-height: 13px;
	margin: 0 !important;
}
