/**********
	Author: 
	Author URI: 
	Description: Setting important html tags to 0's, universal classes and wordpress cores to minimize repeatition of css properties and values
**********/

/************************* 
	Reset/Defaults 
*************************/
header, article, section, aside, footer {
	display: block !important;
}

div, header, article, section, aside, footer, 
h1, h2, h3, h4, h5, h6,
table, th, td,
dl, dl dt, dl dd,
cite, address,
blockquote, img, a {
	font-style: normal;
	margin: 0; 
	padding: 0; 
	outline: 0;
	vertical-align: baseline;
}

video, embed, object { 
	max-width: 100%; 
	height: auto;
}

mark {
	background: none;
}

img { 
	max-width: 100%;
	height: auto; 
	-ms-interpolation-mode: bicubic; 
	vertical-align: middle; 
	border: none;
}

a { 
	text-decoration: none;
	color: inherit; 
}

a:hover { 
	text-decoration: underline;
}

/************************* 
	Set Universal Classes 
*************************/
.clear { 
	clear: both;
}

.clearfix { 
	display: block; 
}

.clearfix:after,
.clearfix:before { 
	content: "";
	height: 0; 
	display: block; 
	visibility: hidden;
}

.clearfix:after { 
	clear: both;
}
 
.hidden { 
	text-indent: -999em; 
	overflow: hidden;
}

.left {
	display: block;
	float: left;
}

.no-padding-left {
	padding-right: 0 !important;
}

.right {
	display: block;
	float: right;
}

.no-padding-right {
	padding-left: 0 !important;
}

img.alignleft { 
	margin-right: 20px; 
	float: left;
}

img.alignright { 
	margin-left: 10px; 
	float: right;
}

img.aligncenter {
	margin-left: auto;
	margin-right: auto;
	display: block; 
}

.post-image img {
	max-width: 500px; 
	margin: 0 20px 5px 0; 
	float: left;
}

.post-thumbnail {
	margin-right: 10px; 
	float: left; 
}

.post-thumbnail img { 
	max-width: 120px;
	background-color: #FFF; 
	padding: 5px;
	border: 1px solid #E2EAEF;
}

.post-lists {
	padding: 10px 0 5px 10px;
	border-bottom: 1px solid #E2EAEF;
}

.center { 
	text-align: center !important;
}

.alternate { 
	padding: 10px 15px !important;
}

.alternate:nth-of-type(odd) { 
	background-color: #F7F7F7;
}

.alternate:nth-of-type(even) { 
	
}

.nav-previous {
	padding-left: 10px; 
	float:left;
}

.nav-next {
	padding-right: 10px; 
	float: right;
}

.edit-link,
.continue-reading {
	color: #005F1D;
} 

.continue-reading {
	margin-top: 10px;
	display: block;
} 

.highlight,
.required {
	font-size: 13px; 
	color: #CC0000 !important;
}

.divider {
	height: 1px;
	margin: 10px 0 15px;
	padding: 0;
	border: none;
	border-bottom: 1px solid #999;
	clear: both;
}

.green {
    color: #00763F;
}

.linear {
	background-color: #0193CF; 
	background-image: -webkit-gradient(linear, left top, left bottom, from(#0193CF), to(#017CB1));
	background-image: -webkit-linear-gradient(top, #0193CF, #017CB1);
	background-image: -moz-linear-gradient(top, #0193CF, #017CB1);
	background-image: -ms-linear-gradient(top, #0193CF, #017CB1);
	background-image: -o-linear-gradient(top, #0193CF, #017CB1);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#0193CF, endColorstr=#017CB1);
}

/************************* 
	Forms 
*************************/
label {
	font-weight: 700;
	font-size: 11px;
	padding: 0 0 2px;
	display: inline-block;
	color: #222;
}

legend {
	padding: 2px 5px;
	color: #222;
}

select,
input[type="text"], 
input[type="password"],
input[type="email"] {
	width: 50%;
	border: 1px solid #CCC;
	margin: 0;
	padding: 3px 0 2px 5px;
	vertical-align: middle;
	outline: none;
}

area,
textarea {
	width: 50%;
	max-height: 70px;
	border: 1px solid #CCC;
	overflow: auto;
	margin: 0;
	padding: 3px 0 2px 5px;
	outline: none;
}

input, 
select {
	cursor: pointer;
}

area:focus,
input:focus, 
textarea:focus {
	border: 1px solid #004767;
    /* border: 1px solid #6cf; */
}

input[type='text'], 
input[type='password'] {
	cursor: text;
}

/************************* 
	Buttons 
*************************/
a.button,
input[type='reset'], 
input[type='button'], 
input[type='submit'] {
	-moz-border-radius: 2px;
	-moz-box-shadow: 0 1px 0 rgba(255, 255, 255, 0.3) inset;
	-webkit-box-shadow: 0 1px 0 rgba(255, 255, 255, 0.3) inset;
	-webkit-border-radius: 2px;
	background-color: #f7f7f7; /* Alabaster */
	background-image: -webkit-gradient(linear, left top, left bottom, from(#f7f7f7), to(#f1f1f1));
	background-image: -webkit-linear-gradient(top, #f7f7f7, #f1f1f1);
	background-image: -moz-linear-gradient(top, #f7f7f7, #f1f1f1);
	background-image: -ms-linear-gradient(top, #f7f7f7, #f1f1f1);
	background-image: -o-linear-gradient(top, #f7f7f7, #f1f1f1);
	background-image: linear-gradient(top, #f7f7f7, #f1f1f1);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#f7f7f7, endColorstr=#f1f1f1);
	box-shadow: 0 1px 0 rgba(255, 255, 255, 0.3) inset;
	border: 1px solid #bbb;
	border-radius: 2px;
	cursor: pointer;
	display: inline-block;
	font-weight: bold;
	margin: 10px 0 0;
	padding: 4px 17px;
	text-decoration: none;
	text-shadow: 0 1px 0 #fff;
	vertical-align: middle;
	white-space: nowrap;
	color: #222;
}

a.button:hover,
input[type='reset']:hover, 
input[type='button']:hover, 
input[type='submit']:hover {
	-moz-box-shadow: 0 1px 0 rgba(255, 255, 255, 0.3) inset;
	-webkit-box-shadow: 0 1px 0 rgba(255, 255, 255, 0.3) inset;
	background-color: #fff;
	background-image: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#f1f1f1));
	background-image: -webkit-linear-gradient(top, #fff, #f1f1f1);
	background-image: -moz-linear-gradient(top, #fff, #f1f1f1);
	background-image: -ms-linear-gradient(top, #fff, #f1f1f1);
	background-image: -o-linear-gradient(top, #fff, #f1f1f1);
	background-image: linear-gradient(top, #fff, #f1f1f1);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#ffffff, endColorstr=#f1f1f1);
	border: 1px solid #ddd;
	box-shadow: 0 1px 0 rgba(255, 255, 255, 0.3) inset;
	color: #020202;
}

a.button:active,
input[type='reset']:active, 
input[type='button']:active, 
input[type='submit']:active {
	-moz-box-shadow: 0 1px 0 #fff, inset 0 1px 1px rgba(0, 0, 0, 0.1);
	-webkit-box-shadow: 0 1px 0 #fff, inset 0 1px 1px rgba(0, 0, 0, 0.1);
	background-color: #f7f7f7;
	background-image: -webkit-gradient(linear, left top, left bottom, from(#f7f7f7), to(#f1f1f1));
	background-image: -webkit-linear-gradient(top, #f7f7f7, #f1f1f1);
	background-image: -moz-linear-gradient(top, #f7f7f7, #f1f1f1);
	background-image: -ms-linear-gradient(top, #f7f7f7, #f1f1f1);
	background-image: -o-linear-gradient(top, #f7f7f7, #f1f1f1);
	background-image: linear-gradient(top, #f7f7f7, #f1f1f1);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#f7f7f7, endColorstr=#f1f1f1);
	box-shadow: 0 1px 0 #fff, inset 0 1px 1px rgba(0, 0, 0, 0.1);
}

/************************* 
	Comments 
*************************/
#commentform {
	margin: 0;
	padding: 0;
}

#commentform p {
	padding: 2px 0 5px !important;
	line-height: normal !important;
	color: #000;
}

.commentlist {	
	list-style: none;
	margin: 0;
	padding: 0 0 5px;
	border-bottom: 1px solid #E5E5E5;
}

.commentlist ol {
	list-style: decimal;
}

.commentlist li {
	background-color: #FFF;
	text-align: left;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	padding:5px 10px !important;
}

.commentlist li cite {
	color: #111;
	font-size: 1.1em;
	font-style: normal;
	font-weight: 400;
}

.commentlist li.alt {
	background: #f9f9f9;
}

.commentlist .children {
	list-style: none;
	margin-left: 0;
	/*padding: 10px;*/
}

.commentlist .avatar {
	-webkit-border-radius: 2px;
	-moz-border-radius: 2px;
	border-radius: 2px;
	float: left;
	margin-right: 10px;
	padding: 0;
	vertical-align: middle;
}

.comment-author .says {
	color: #003260;
}

.comment-body .comment-meta {
	color: #777;
	display: inline-block;
	margin: 0;
	padding: 0;
	text-align: left;
}

.comment-body .comment-meta a {
	font-size: 11px;
}

.comment-body p {
	padding-top: 5px !important;
}

.pingback, .trackback {
	list-style: none;
	margin: 20px 0;
}

.pingback cite, 
.trackback cite {
	font-style: normal;
}

#pings,
#comments {
	text-align: left;
}

#comments li.byuser div.comment-author img,
#comments li.comment-author-pranz div.comment-author img,
#comments li.bypostauthor div.comment-author img {
	display: none;
}

#respond {
	width: 90%;
	background-color: #efefef;
	background-image: -webkit-gradient(linear, left top, left bottom, from(#ffffff), to(#efefef));
	background-image: -webkit-linear-gradient(top, #ffffff, #efefef);
	background-image: -moz-linear-gradient(top, #ffffff, #efefef);
	background-image: -ms-linear-gradient(top, #ffffff, #efefef);
	background-image: -o-linear-gradient(top, #ffffff, #efefef);
	background-image: linear-gradient(top, #ffffff, #efefef);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#ffffff, endColorstr=#efefef);
	border: 1px solid #dcdcdc;
	border-bottom-color: #bbb;
	border-radius: 5px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	margin: 20px auto 0;
	padding: 5px 5px 10px;
	clear: both;
}

#respond label {
	display: inline;
}

.reply {
	font-weight: bold;
	font-size: 11px;
	margin: 5px 0;
}

.comment-form-url input,  
.comment-form-email input,
.comment-form-author input,
.comment-form-comment textarea {
	display: block;
}

.nocomments {
	color: #999;
	font-size: .9em;
	text-align: center;
}

/************************* 
	All hidden
*************************/
.form-allowed-tags,
.comment-form-url,
.nocomments { 
	display: none;
}

