/*-----------------------------------------------------------------------------------

	Theme Name: MNcapital
	Theme URI: http://www.mncapital.co.za/
	Description: MNCapital -Banking, Finance and Insurance
	Author: Vezu Sigidi
	Author URI: http://www.mncapital.co.za/
	Version: 2.0
	
-----------------------------------------------------------------------------------




/* RESET */
/* ----------------------------------------- */

/* Global reset */
/* Based upon 'reset.css' in the Yahoo! User Interface Library: http://developer.yahoo.com/yui */
*, html, body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, form, label, fieldset, input, 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; font-weight:normal }
ol, ul, 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:''}

/* Global reset-RESET */
/* The below restores some sensible defaults */
strong { font-weight:bold }
em { font-style:italic }
a img { border:none } /* Gets rid of IE's blue borders */



/***************** General Styles *****************/
body {
		font: 13px/24px "Helvetica Neue", Helvetica, Arial, sans-serif;

	color: #626262;
	
	background: url("images/topBG.jpg") top left repeat-x;
}

h1, h2, h3, h4, h5 {
	font-weight: normal;
	font-family: "Oswald", Arial, serif;
	text-transform: uppercase;
	margin-bottom: 20px;
	display:block	
}

h1 {font-size: 28px;}
h2 {font-size: 22px;}
h3 {font-size: 18px;}
h4 {font-size: 14px;}
h5 {font-size: 12px;}

a {
	text-decoration: none;
}

	a:hover {
		color:#F90 !important
	}
	
.cAlign {
	width: 960px;
	margin: 0 auto;
}

.cFloat {
	overflow: hidden;
}

.cBoth {clear: both;}

p {
	line-height: 1.5em;
	margin-bottom: 10px;
}

div.oneFourth {
	float: left;
	width: 22%;
	margin-right: 3%;
}

div.oneHalf {
	float: left;
	width: 47%;
	margin-right: 3%;
}

div.blankSeparator {
	height: 1px;
	margin-bottom: 30px;
	display: block;
}

a.linkButton {
	padding: 10px 15px;
	color: white;

	border-radius: 5px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
}

.preloader {
	background: url('images/preloader.gif') center center no-repeat white;
	display: block;
}


/***************** Color Information *****************/
a, div#footer ul.fullWidthList li p a {
	color: #eb8f23;
}

form#subscribeForm input[type="submit"], form#articleCommentForm input[type="submit"], a.linkButton {
	background-color: #eb8f23;

	/* Some CSS3 Transitions */
	-webkit-transition: background-color 0.2s ease-in-out;
	-moz-transition: background-color 0.2s ease-in-out;
	-o-transition: background-color 0.2s ease-in-out;
	transition: background-color 0.2s ease-in-out;
}

form#subscribeForm input[type="submit"]:hover, form#articleCommentForm input[type="submit"]:hover, a.linkButton:hover {
	color: #eb8f23;
	background-color: white;
	text-decoration: none;
}





/***************** Top Header *****************/
#topHeader {
	margin: 20px auto;
}

a#logo {
	float: left;
}

#nav {
	float: right;
	margin-top: 10px;
	position: relative; /* Setting this so that z-index will work */
	z-index: 10; /* Set z-index to 10 to show the menu over the slider below */
}

#nav li {
	position: relative;
	float: left;
}

#nav li a {
	background-color: #2f3134;
	color: white;
	
	padding: 8px 15px;
	float: left;
	
	font-size: 11px;
	text-transform: uppercase;

	margin-right: 5px;
	
	border-radius: 5px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;


	/* Some CSS3 Transitions */
	-webkit-transition: color 0.2s ease-in-out;
	-moz-transition: color 0.2s ease-in-out;
	-o-transition: color 0.2s ease-in-out;
	transition: color 0.2s ease-in-out;
}

	#nav li a:hover {
		text-decoration: none;
		color: #a9adb7;
	}


/* Submenu */
#nav li ul {
	display: none;
	position: absolute;
	left: 0;
	top: 100%;
	
	background-color: #2f3134;

	border-radius: 5px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	
	border-top: 1px solid white;
}

#nav li ul li {
	border-bottom: 1px solid #3e4043;
}

#nav li ul li:last-child {
	border-bottom: none;
}

#nav li ul li a {
	width: 300px;
	padding: 10px 15px;
}

	#nav li:hover > ul {
		display: block;
	}

/* Submenu level 3 */
#nav li ul li ul {
	border-top: none;
}

	#nav li ul li:hover ul {
		left: 100%;
		top: 0;
	}

	a#activeMenu {
		background-color: white !important;
		color: #2f3134 !important;
	}
	
	
	
	
	
/***************** Slider *****************/
div#sliderSection {
	background-color: #e88d2f;
	border-top: 1px solid #e4e8ea;
	border-bottom: 1px solid #e4e8ea;
	
	padding: 20px 0;
}

dl.slidedeck dd images {
	float: left;
	/* Making 1000px bottom margin will make sure the 
	content on the right will stay aligned no matter how 
	long it is and will not "spill" under the image */
	margin: 0 30px 1000px 0; 

	box-shadow: 0px 0px 3px #888;
	-webkit-shadow: 0px 0px 3px #888;
	-moz-shadow: 0px 0px 3px #888;
	
	border: 1px solid white;
	padding: 1px;
	
	/* Some CSS3 Transitions */
	-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;
	
	display: block;
}

dl.slidedeck dd images:hover {
	opacity: 0.7;
}




/***************** Categories Bar *****************/
div#categorySection {
	background-color: #4c4e53;
	margin-top: 1px;
}

	div#categorySection div.cAlign {
		border-right: 1px solid #78797d;
		border-left: 1px solid #78797d;
	}

	div#categorySection ul li a {
		text-transform: uppercase;
		padding: 15px 25px;
		color: white;
		border-right: 1px solid #78797d;
		display: block;
		float: left;

		/* Some CSS3 transitions */
		-webkit-transition: background-color 0.2s ease-in-out;
		-moz-transition: background-color 0.2s ease-in-out;
		-o-transition: background-color 0.2s ease-in-out;
		transition: background-color 0.2s ease-in-out;
	}

	div#categorySection ul li a:hover {
		text-decoration: none;
		background-color: #2f3134;
	}

images.toggleButton {
	float: right;
	margin: 7px 15px 0 0;
	cursor: pointer;
}

#hiddenButton {
	display: none;
}





/***************** Breadcrumbs *****************/
div#breadcrumbsSection {
	border-bottom: 1px solid #dadce1;
}

	div#breadcrumbsSection div.cAlign {
		border-right: 1px solid #dadce1;
		border-left: 1px solid #dadce1;
	}

	div#breadcrumbsSection p {
		float: left;
		height: 45px;
		line-height: 45px;
		margin: 0 0 0 15px;
		font-size: 11px;
	}
	
	form#searchForm {
		float: right;
	}
	
		
		
		
		
/***************** Blog Post List *****************/
div#mainSection, div#sidebar {
	margin-top: 40px;
}

div#mainSection {
	float: left;
	width: 660px;
}

p.articleMeta {
	width: 100px;
	text-align: right;
	margin: 5px 40px 0 0;
	float: left;
	font-size: 11px;
	
	
	color: #bfbfbf;
}

div.articleContent {
	float: left;
	width: 650px;
}

ul#articles li, div#articleBody, div#articleExtra {
	margin-bottom: 30px;
	padding-bottom: 20px;
	
	background: url('images/blogPostSeparator.png') center bottom no-repeat;
	
	overflow: hidden;
}

	ul#articles li images, div#articleBody images {
		margin-bottom: 20px;
		box-shadow: 0px 0px 3px #888;
		-webkit-shadow: 0px 0px 3px #888;
		-moz-shadow: 0px 0px 3px #888;
		
		border: 1px solid white;
		padding: 1px;
		
		/* Change these to match the desired size */
		width: 510px;
		height: 130px;

		/* Some CSS3 transitions */
		-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;
	}
	
	ul#articles li images:hover {
		opacity: 0.7;
	}
		
	ul#articles li h2 a, div#articleBody li h2 a {
		color: #44464a;
	}
	
	
	
	#articles ul { list-style-type: disc !important; }

#articles ol { list-style-type: decimal !important; }



	
ul#pagination {
	margin-left: 140px;
}

	ul#pagination li a {
		color: #2f3134;
		background-color: #f5f7f8;

		border-radius: 5px;
		-moz-border-radius: 5px;
		-webkit-border-radius: 5px;
		
		padding: 8px 12px;
		float: left;
		font-size: 14px;
		margin-right: 5px;

		/* Some CSS3 Transitions */
		-webkit-transition: background-color 0.2s ease-in-out;
		-moz-transition: background-color 0.2s ease-in-out;
		-o-transition: background-color 0.2s ease-in-out;
		transition: background-color 0.2s ease-in-out;
	}
	
	ul#pagination a.active, ul#pagination a:hover {
		background-color: #2f3134;
		color: #f5f7f8;
		text-decoration: none;
	}
	
p.tags {
	font-style: italic;
	font-size: 11px;
	color: #878f9a;
	margin-top: 30px;
}

div#shareSection {
	width: 100px;
	margin-right: 40px;
	float: left;
	
	text-align: center;
}

	div#shareSection ul {
		display: none;
	}

	div#shareSection ul li {
		float: left;
		border: 1px solid #f1f3f6;
		
		padding: 5px 5px 3px 5px;
		margin: 0 5px 5px 0;
	}

	div#shareSection ul li:hover {
		background-color: #f1f3f6;
	}
	
a#shareThisPost p {
	margin-top: 5px;
	font-size: 11px;
}

div#authorBio {
	float: right;
	width: 520px;
}

	div#authorBio images {
		float: left;
		margin: 0 20px 20px 0;
	}





/***************** Blog Comments  *****************/
h4#commentListHeading {
	margin-left: 140px;
}

	ul#commentList > li {
	}
	
	ul#commentList li ul li {
		margin-left: 40px;
	}
	
	ul#commentList li ul li div.commentBody {
		background: #fafcfe;
	}
	
	div.commentMeta {
		width: 100px;
		margin-right: 40px;
		
		float: left;
		
		text-align: right;
		
		color: #bec1c3;
		font-size: 11px;
		text-transform: uppercase;
	}
	
	div.commentBody {
		margin: 0 0 30px 140px;
		border: 1px solid #f1f3f6;
		
		padding: 20px;
	} 
	
		div.commentBody a, h6 {
			text-transform: uppercase;
			font-size: 11px;
		}
		
		div.commentBody p {
			margin: 10px 0 20px 0;
			color: #878f9a;
		}
		
span.adminComment {
	display: block;
	background-color: #4c4e53;
	
	border-radius: 5px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	
	padding: 5px 10px;
	color: white;
	
	font-size: 9px;
	margin-top: 10px;
	text-align: center;
	
	width: 37px;
	
	float: right;
}

	
	
	
	
/***************** Sidebar *****************/
div#sidebar {
	float: right;
	width: 260px;
}

	ul.twoColList, ul.fullWidthList {
		margin-bottom: 30px;
		overflow: hidden;
	}

	ul.twoColList li a {
		color: #878f9a;
		padding: 10px 0;
		border-bottom: 1px solid #f1f3f6;
		width: 115px;
		margin-right: 15px;
		float: left;
	}

	ul.fullWidthList li {
		padding: 10px 0;
		border-bottom: 1px solid #f1f3f6;
	}

	ul.fullWidthList li p {
		margin-bottom: 0;
	}

	ul.fullWidthList li p span {
		display: block;
		font-style: italic;
		color: #878f9a;
	}	
	
	
	
	
/***************** Footer *****************/
div#footer {
	background-color: #2f3134;
	margin-top: 40px;
	padding: 40px 0 10px 0;
}	

	div#footer h4 {
		color: white;
	}
	
	div#footer p {
		color: #878f9a;
	}
	
	div#footer ul.fullWidthList li {
		border-bottom: 1px solid #404246;
	}

	div#footer ul.fullWidthList li a {
		color: #878f9a;
	}

	div#footer ul.fullWidthList li p {
		margin-bottom: 0;
	}

	div#footer ul.fullWidthList li p span {
		color: white;
	}

div#socialSection {
	background-color: #222326;
	border-radius: 5px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	
	margin-top: 20px;
	padding: 0 20px;
	
	overflow: hidden;
}	

	div#socialSection p {
		float: left;
		height: 42px;
		line-height: 42px;
		margin-bottom: 0;
	}

	div#socialSection ul {
		float: left;
		border-right: 1px solid #2f3134;
		padding: 12px 30px 12px 10px;
		margin-right: 30px;
	}

	div#socialSection ul li {
		display: inline;
		margin-left: 5px;
	}
	
form#subscribeForm {
	margin-top: 20px;
}



	
	
/***************** Copyright *****************/
div#copyrightSection {
	background: url('images/bottomBG.jpg') left bottom repeat-x;
	padding: 30px 0;
	text-align: center;
}

	div#copyrightSection images {
		margin-bottom: 10px;
	}
	
	
	
	
	
/***************** Form Styling *****************/
form#subscribeForm input[type="text"], form#articleCommentForm input[type="text"], form#articleCommentForm textarea {
	background-color: #f5f7f8;
	border: 1px solid #edeff2;
	
	border-radius: 5px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	
	height: 35px;
	padding: 0 10px;
}

form#subscribeForm input[type="text"]:hover, form#articleCommentForm input[type="text"]:hover, form#articleCommentForm textarea:hover, form#searchForm input[type="text"]:hover {
	background-color: #edeff2;
}

form#subscribeForm input[type="submit"], form#articleCommentForm input[type="submit"] {
	border: none;
	outline: none;

	border-radius: 5px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	
	height: 35px;
	padding: 0 15px;
	
	font-size: 12px;
	
	cursor: pointer;
	
	color: white;
}

form#subscribeForm input[type="text"]:focus, form#articleCommentForm input[type="text"]:focus, form#articleCommentForm textarea:focus, form#searchForm input[type="text"]:focus {
	outline: none;
}

form#subscribeForm input[type="text"], form#articleCommentForm input[type="text"] {
	width: 250px;
}

form#articleCommentForm p {
	margin-bottom: 15px;
}

form#articleCommentForm textarea {
	width: 500px;
	height: 200px;
	
	padding: 10px;
}

form#articleCommentForm label {
	margin-left: 20px;
}

	form#articleCommentForm label span {
		color: #878f9a;
	}
	
form#searchForm input[type="text"] {
	border: none;
	border-left: 1px solid #dadce1;
	background-color: #f5f7f8;
	padding: 15px 10px;
	width: 240px;
	height: 15px;
}

/* Blog Widget & Twitter wWidget */

.tz_tweet_widget ul,
.tz-blog-widget ul {
	margin: 0;
	padding: 0; 
	list-style: none;
	border-bottom: 1px solid #fefdfd;
}

.cotton-area .tz_tweet_widget ul,
.cotton-area .tz-blog-widget ul {
	border-bottom: none;
}

.tz_tweet_widget li,
.tz-blog-widget li {
	padding: 15px 0 15px 0;
	border-bottom: 1px solid #e4e1d9;
	border-top: 1px solid #fefdfd;
	min-height: 58px;
}

.cotton-area .tz_tweet_widget li,
.cotton-area .tz-blog-widget li {
	border-bottom: 1px solid #121212;
	border-top: 1px solid #2c2c2c;
}

.cotton-area .tz_tweet_widget li:last-child,
.cotton-area .tz-blog-widget li:last-child {
	border-bottom: none;
}

.tz_tweet_widget li:first-child,
.tz-blog-widget li:first-child {
	padding-top: 0;
	border-top: none;
}

.tz-blog-widget .post-thumb {
	float: left;
	padding: 0;
	margin: 5px 15px 0 0;
}

.tz-blog-widget .entry-title,
.tz-blog-widget .entry-title a {
	font-size: 12px;
	font-weight: normal;
	line-height: 20px;
}

.cotton-area .tz-blog-widget .entry-title,
.cotton-area .tz-blog-widget .entry-title a {
	color: #f1eee5;
}

.cotton-area a:hover {
	color: #fff;
}

.tz_tweet_widget li { min-height: 0; }

#twitter-link { 
	margin-top: 20px;
	display: block;
}

.tz_tweet_widget a {
    font-family: Georgia, "Times New Roman", Times, serif;
    font-size: 11px;
    color: #888888;
    font-style: italic;
}

.cotton-area .tz_tweet_widget span a { border: none; }

.tz_tweet_widget a:hover { color: #444444 }

.tz_tweet_widget span a {
    font-style: normal;
    font-family: "Helvetica-Neue", Helvetica, Arial, sans-serif;
    font-size: 12px;
}

.tz_tweet_widget ul {
    float: left;
    border-bottom: 1px solid #fefdfd;
}

.tz_tweet_widget li {
    float: left;
    padding: 15px 0 15px 0;
    border-top: 1px solid #fefdfd;
    border-bottom: 1px solid #e4e1d9;
    width: 100%;
}

.tz_tweet_widget li:first-child {
    border-top: none;
    padding: 0 0 15px 0;
}

.tz_tweet_widget p { margin: 0 0 1px 0 }

/*scroll to on event pages*/

.part{
	background-color:white;
	margin-bottom:30px;
}
	.part h3{
		color:#000;
	}
#toc{
	display:block;
	padding:10px;
	position:relative;
	margin:15px 0;

	width:300px;
	background:#eb8f23;
	-webkit-box-shadow: 0 0 6px rgba(0, 0, 0, 0.25);
    -moz-box-shadow: 0 0 6px rgba(0, 0, 0, 0.25);
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.25);
	}
	#toc h3{
		padding-bottom:10px;
	}
	#toc h3 strong{
		font-size:13px;
		color:#2f3134;
	}

	#toc li{
		list-style-type:none;
		margin-left:5px;
		/*border-bottom: 1px solid #f1f3f6;*/
		margin-bottom:10px;
		font-family:Arial, Helvetica, sans-serif;
			font-family: "Oswald", Arial, serif;
	text-transform: uppercase;
		
		}
		#toc a{
						color:#2f3134 !important;

		}
div.section{
	width:600px;
	padding:0px;
	padding-bottom:20px;
	padding-top:20px;
	margin: 5px 0;
	position:relative;
	clear:both;
}
	div.section h3{
		margin-bottom:10px;
	}
	div.section li{
		float:left;
	}
	div.pane{
		overflow:auto;
		clear:left;
		margin: 10px 0 0 10px;
		position:relative;
		width:600px;
	}
	/*Sponsors logos*/
	
	.sponsorsLogos{
		width:273px;
		min-height:146px;
			margin-right:20px;

		margin-bottom:20px;
		float:left;
		}
		
		
		
		#register{
	display:block;
	padding:10px;
	position:relative;
	margin:15px 0;
	font-family:Arial, Helvetica, sans-serif;
	font-family: "Oswald", Arial, serif;
	text-transform: uppercase;
	color:#FFF;
	width:300px;
	background:#2f3134;
	-webkit-box-shadow: 0 0 6px rgba(0, 0, 0, 0.25);
    -moz-box-shadow: 0 0 6px rgba(0, 0, 0, 0.25);
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.25);
	}
	#register h3{
		padding-bottom:10px;
	}
	#register h3 strong{
		font-size:13px;
		color:#2f3134;
	}



/*-----------------------------------------------------------------------------------*/
/*	5.	Main Content Styles
/*-----------------------------------------------------------------------------------*/

address { font-style: italic; }

abbr[title],
acronym[title],
dfn[title] {
	cursor: help;
	border-bottom: 1px dotted #666;
}

blockquote {
    font-family: Georgia, "Times New Roman", Times, serif;
    font-size: 12px;
    font-style: italic;
    line-height: 22px;
    background: url(images/quote.png) no-repeat left 5px;
    padding: 0 40px 0 50px;
    margin: 0 0 30px 50px;
    min-height: 40px;
}

strong { font-weight: bold; }

em,
dfn,
cite { font-style: italic; }

dfn { font-weight: bold; }

sup {
	font-size: 11px;
	vertical-align: top;
}

sub {
	font-size: 11px;
	vertical-align: bottom;
}

small { font-size: 12px; }

del { text-decoration: line-through; }

ins { text-decoration: underline; }

code,
pre { line-height: 18px; }

var,
kbd,
samp,
code,
pre {
	font: 12px/18px Consolas, "Andale Mono", Courier, "Courier New", monospace;
	background: #efefef;
}

kbd { font-weight: bold; }

samp,
var { font-style: italic; }

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

code { padding: 3px; }

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


caption { text-align: left; }



*-----------------------------------------------------------------------------------*/
/*	7.	Comments
/*-----------------------------------------------------------------------------------*/

#respond-wrap .comments-sidebar { padding-top: 30px; }

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

#comments {
	font-weight: bold;
	font-size: 16px;
	margin-bottom: 30px;
	margin-top: 50px;
}

.commentlist {
	margin: 10px 0 40px 0;
	padding: 0 10px 0 0;
	list-style-type: none;
	width: 600px;
	float: left;
}

.page-template-template-full-width-php .commentlist { width: 100%; }

.commentlist .line { display: none; }

.commentlist li {
	border-bottom: 1px dashed #d5d3ce;
	padding-bottom: 25px;
	min-height: 65px;
}

.commentlist li li { border-bottom: none; }

.commentlist li li .line{
	display: block;
	position: absolute;
	width: 30px;
	height: 30px;
	border-bottom: 1px dashed #d5d3ce;
	margin: 0 0 0 0px;
}

.comment-body { padding-left: 86px; }

li li .comment-body { padding-left: 137px; }

.commentlist ul {
	border-left: 1px dashed #d5d3ce;
	margin: 30px 0 0 30px;
}

.comment-body p:last-child { margin: 0;}

.commentlist ul ul{	
	margin: 45px 0 0 88px;
	padding: 10px 0 0 0;
}

.commentlist li li { margin-top: 15px; }
.commentlist li li:last-child {	margin-bottom:0; }
.commentlist li li li {	margin-top: 0; }

.commentlist li #respond { padding: 40px 0 0 0px; }
.commentlist li li #respond { padding: 40px 0 0 55px; }

.pinglist {
	margin: 20px 0 40px 30px;
	list-style-type: decimal;
}

.comment {margin-bottom: 25px; }

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

li .cancel-comment-reply { padding-bottom: 20px; }

ol #commentform { width: 100%; }

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

#commentform textarea {
	width: 96%;
	height: 150px;
}

#commentform small span,
.contactform small span { color: #F00; }

#commentform small span.grey,
.contactform small span.grey{
	color: #999;
	font-family: "Droid Serif", Georgia, Times, serif;
	font-style: italic;
}

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


.avatar {
	margin: 0 20px 20px 0;
	background: url(images/body_bg.gif) repeat;
	position: relative;
	z-index: 5;
	-webkit-box-shadow: 0 0 4px rgba(0, 0, 0, 0.30);
    -moz-box-shadow: 0 0 4px rgba(0, 0, 0, 0.30);
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.30);
}


li li .avatar { margin:0 0 20px 55px; }

.comment-author .comment-meta a{
	color: #999;
	font-family: Georgia, "Times New Roman", Times, serif;
	font-style: italic;
	font-size: 11px;
}

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

.fn { 
	float: left;
	font-weight: bold;
	margin-right: 10px;
	color: #333;
}

.comment-author { 
	padding-left: 85px;
	padding-bottom: 15px; 
}

li li .comment-author { padding-left: 137px; }

.comment-author a{ color: #444444; }



.comment-author { margin-top: -95px; }

.comment-author-admin { }

.comment-author cite { 
	font-style: normal;
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.says { display: none; }

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

.comment-body ul { 
	list-style-type: disc; 
	border: none;
	margin-bottom: 20px;
}

.comment-body ul li {
	padding: 0;
	margin: 0;
}

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

.moderation {
	padding-left: 45px;
	color: red;
	font-size: 11px;
}

.author-tag {
	font-family: "Droid Serif", Georgia, Times, serif;
	font-size: 11px;
}



