/**
 * Table of Contents:
 *
 * 1.0 - Reset
   2.0 - Repeatable Patterns
   3.0 - Columns Layout
   4.0 - Plugin Common Values
   5.0 - Loading Ball
 * -----------------------------------------------------------------------------
 */


/**
 * 1.0 Reset
 *
 * Resetting and rebuilding styles have been helped along thanks to the fine
 * work of Eric Meyer http://meyerweb.com/eric/tools/css/reset/index.html
 * along with Nicolas Gallagher and Jonathan Neal
 * http://necolas.github.com/normalize.css/ and Blueprint
 * http://www.blueprintcss.org/
 *
 * -----------------------------------------------------------------------------
 */

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, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td {
	border: 0;
	font-family: inherit;
	font-style: inherit;
	font-weight: inherit;
	margin: 0;
	outline: 0;
	padding: 0;
	vertical-align: baseline;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
nav,
section {
	display: block;
}

audio,
canvas,
video {
	display: inline-block;
	max-width: 100%;
}

html {
	overflow-y: scroll;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust:     100%;
}

body,
button,
input,
select,
textarea {
	font-weight: 400;
}

a {
	text-decoration: none;
	outline: none;
	-moz-transition:all 0.4s ease;
	-webkit-transition:all 0.4s ease;
	-ms-transition:all 0.4s ease;
	-o-transition:all 0.4s ease;
	transition:all 0.4s ease;
}

a:hover,
a:active {
	outline: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	clear: both;
	font-weight: 400;
	margin: 26px 0 12px;
}

h1 {
	font-size: 26px;
	line-height: 1.3846153846;
}

h2 {
	font-size: 24px;
	line-height: 1;
}

h3 {
	font-size: 22px;
	line-height: 1.0909090909;
}

h4 {
	font-size: 20px;
	line-height: 1.2;
}

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

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

address {
	margin-bottom: 15px;
}

address ~ address{
	margin-top:-15px;	
}

abbr[title] {
	border-bottom: 1px dotted transparent;
	cursor: help;
}

b,
strong {
	font-weight: 700;
}

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

mark,
ins {
	background:;
	text-decoration: none;
}

p {
	margin-bottom: 15px;
}

code,
kbd,
tt,
var,
samp,
pre {
	font-family: monospace, serif;
	font-size: 80%;
	-webkit-hyphens: none;
	-moz-hyphens:    none;
	-ms-hyphens:     none;
	hyphens:         none;
}

pre {
	border: 1px solid rgba(0, 0, 0, 0.1);
	-webkit-box-sizing: border-box;
	-moz-box-sizing:    border-box;
	box-sizing:         border-box;
	margin-bottom: 15px;
	max-width: 100%;
	overflow: auto;
	padding: 12px;
	white-space: pre;
	white-space: pre-wrap;
	word-wrap: break-word;
}

blockquote,
q {
	-webkit-hyphens: none;
	-moz-hyphens:    none;
	-ms-hyphens:     none;
	hyphens:         none;
	quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
	content: "";
	content: none;
}

blockquote {
	margin-bottom:15px;
}

blockquote p:last-of-type{
	margin-bottom:5px;
}

blockquote cite,
blockquote small {
	line-height: 1.5;
}

blockquote,.quote{
	display:block;
	font-size:120%;
	line-height:1.4em;
	border-left-width: 4px;
	border-left-style: solid;
	padding:5px 0 5px 20px;
}

cite{
	text-transform: capitalize;
	font-style: italic;
	text-align:right;
	display:block;
}

blockquote cite{
	font-size:80%;
	margin-top:10px;
	line-height: 1.3em;
}

cite:before{
	content:"- ";	
}

blockquote em,
blockquote i,
blockquote cite {
	font-style: normal;
}

blockquote strong,
blockquote b {
	font-weight: 400;
}

small {
	font-size: smaller;
}

big {
	font-size: 125%;
}

sup,
sub {
	font-size: 75%;
	height: 0;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}

sup {
	bottom: 1ex;
}

sub {
	top: .5ex;
}

dl {
	margin-bottom: 5px;
}

dt {
	font-weight: bold;
}

dd {
	margin-bottom: 15px;
}

ul, ol{
	list-style-type: none;	
}

.entry ul,
.entry ol {
	list-style: none;
	margin: 0 0 15px 15px;
}

.entry ul {
	list-style: disc;
}

.entry ol {
	list-style: decimal;
}

li > ul,
li > ol {
	margin: 0 0 0 15px;
}

img {
	-ms-interpolation-mode: bicubic;
	border: 0;
	vertical-align: middle;
	max-width:100%;
}

figure {
	margin: 0;
}

fieldset {
	border: 1px solid transparent;
	margin: 0 0 15px;
	padding: 11px 12px 0;
}

legend {
	white-space: normal;
}

button,
input,
select,
textarea {
	-webkit-box-sizing: border-box;
	-moz-box-sizing:    border-box;
	box-sizing:         border-box;
	margin: 0;
	max-width: 100%;
	vertical-align: baseline;
}

button,
input {
	line-height: normal;
}

input,
textarea {
	background-image: -webkit-linear-gradient(hsla(0,0%,100%,0), hsla(0,0%,100%,0)); /* Removing the inner shadow, rounded corners on iOS inputs */
}

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
	-webkit-appearance: button;
	cursor: pointer;
}

button[disabled],
input[disabled] {
	cursor: default;
}

input[type="checkbox"],
input[type="radio"] {
	padding: 0;
}

input[type="search"] {
	-webkit-appearance: textfield;
}

input[type="search"]::-webkit-search-decoration {
	-webkit-appearance: none;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
	border: 0;
	padding: 0;
}

textarea {
	overflow: auto;
	vertical-align: top;
}

table,
th,
td {
	border: 1px solid transparent;
}

table {
	border-collapse: separate;
	border-spacing: 0;
	border-width: 1px 0 0 1px;
	margin-bottom: 15px;
	width: 100%;
}

caption,
th,
td {
	font-weight: normal;
	text-align: left;
}

th {
	border-width: 0 1px 1px 0;
}

td {
	border-width: 0 1px 1px 0;
}

del {

}

hr {
	border: 0;
	height: 1px;
	margin-bottom: 15px;
}

/* Clear and Horizontal
 *
 */
 
.clearfix:before,.clearfix:after,.row:before,.row:after {
    content: '.';
    display: block;
    overflow: hidden;
    visibility: hidden;
    width: 0;
    height: 0;
}

.row:after,.clearfix:after {
    clear: both;
}

.row,.clearfix {
    zoom: 1;
}

.clear {
    clear: both;
    display: block;
    overflow: hidden;
    visibility: hidden;
    width: 0;
    height: 0;
}

hr {
    clear: both;
    display: block;
    overflow: hidden;
    width: 100%;
    position: relative;
    margin:auto;
    height: 1px;
    border: none;
}

hr.line {
    clear: both;
    display: block;
    overflow: hidden;
    float: none;
    width: 100%;
    position: relative;
    margin: 30px 0;
    height: 1px;
    border: none;
}

 
 
/* Support a widely-adopted but non-standard selector for text selection styles
 * to achieve a better experience. See http://core.trac.wordpress.org/ticket/25898.
 */
::selection {
	text-shadow: none;
}

::-moz-selection {
	text-shadow: none;
}


/**
 * 2.0 Repeatable Patterns 
 * -----------------------------------------------------------------------------
 */

/* Input fields */

input,
textarea {
	border-width: 1px;
	border-style: solid;
	border-radius: 3px;
	padding: 8px 10px 7px;
}

textarea {
	width: 100%;
}

input:focus,
textarea:focus {
	outline: 0;
}

/* Buttons */

button,
.contributor-posts-link,
input[type="button"],
input[type="reset"],
input[type="submit"] {
	border-width:1px;
	border-style: solid;
	border-radius:3px;
	font-size: 80%;
	text-transform: uppercase;
	padding:7px 10px;
	-moz-transition: all 0.4s ease;
	-webkit-transition: all 0.4s ease;
	-ms-transition: all 0.4s ease;
	transition: all 0.4s ease;
	-o-transition: all 0.4s ease;
}

button:hover,
button:focus,
.contributor-posts-link:hover,
input[type="button"]:hover,
input[type="button"]:focus,
input[type="reset"]:hover,
input[type="reset"]:focus,
input[type="submit"]:hover,
input[type="submit"]:focus {
	opacity:0.8;
}

button:active,
.contributor-posts-link:active,
input[type="button"]:active,
input[type="reset"]:active,
input[type="submit"]:active {
	opacity:0.7;
}

.search-field {
	width: 100%;
}

.search-submit {
	display: none;
}

/* Placeholder text color -- selectors need to be separate to work. */

::-webkit-input-placeholder {
	color: #939393;
}

:-moz-placeholder {
	color: #939393;
}

::-moz-placeholder {
	color: #939393;
	opacity: 1; /* Since FF19 lowers the opacity of the placeholder by default */
}

:-ms-input-placeholder {
	color: #939393;
}

/* Responsive images. Fluid images for posts, comments, and widgets */

.comment-content img,
.entry-content img,
.entry-summary img,
#site-header img,
.widget img,
.wp-caption {
	max-width: 100%;
}

/**
 * Make sure images with WordPress-added height and width attributes are
 * scaled correctly.
 */

.comment-content img[height],
.entry-content img,
.entry-summary img,
img[class*="align"],
img[class*="wp-image-"],
img[class*="attachment-"],
#site-header img {
	height: auto;
}

img.size-full,
img.size-large,
.wp-post-image,
.post-thumbnail img {
	height: auto;
	max-width: 100%;
}

.gallery img{
	border:none!important;
	padding:0!important;
}

.entry img{
	padding:6px;
	border-width: 1px;
	border-style: solid;
}

/* Make sure embeds and iframes fit their containers */

embed,
iframe,
object,
video {
	margin-bottom: 15px;
	max-width: 100%;
}

p > embed,
p > iframe,
p > object,
span > embed,
span > iframe,
span > object {
	margin-bottom: 0;
}

/* Alignment */

.alignleft {
	float: left;
}

.alignright {
	float: right;
}

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

blockquote.alignleft,
img.alignleft {
	margin: 7px 24px 7px 0;
}

.wp-caption.alignleft {
	margin: 7px 14px 7px 0;
}

blockquote.alignright,
img.alignright {
	margin: 7px 0 7px 24px;
}

.wp-caption.alignright {
	margin: 7px 0 7px 14px;
}

blockquote.aligncenter,
img.aligncenter,
.wp-caption.aligncenter {
	margin-top: 7px;
	margin-bottom: 7px;
}

.site-content blockquote.alignleft,
.site-content blockquote.alignright {
	padding-top: 17px;
	width: 50%;
}

.site-content blockquote.alignleft p,
.site-content blockquote.alignright p {
	margin-bottom: 17px;
}

.wp-caption {
	margin-bottom: 15px;
}

.wp-caption img[class*="wp-image-"] {
	display: block;
	margin: 0;
}

.wp-caption {

}

.wp-caption-text {
	-webkit-box-sizing: border-box;
	-moz-box-sizing:    border-box;
	box-sizing:         border-box;
	font-size: 90%;
	margin: 9px 0;
	padding: 0 10px;
	text-align: center;
}

.wp-smiley {
	border: 0;
	margin-bottom: 0;
	margin-top: 0;
	padding: 0;
}

/* Assistive text */

.screen-reader-text {
	clip: rect(1px, 1px, 1px, 1px);
	position: absolute;
}

.screen-reader-text:focus {
	background-color: #f1f1f1;
	border-radius: 3px;
	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	clip: auto;
	display: block;
	font-weight: bold;
	height: auto;
	line-height: normal;
	padding: 15px 23px 14px;
	position: absolute;
	left: 5px;
	top: 5px;
	text-decoration: none;
	text-transform: none;
	width: auto;
	z-index: 100000; /* Above WP toolbar */
}

.hide {
	display: none;
}

.gallery-caption{
}

.bypostauthor{
}

.repeated{
	background-repeat: repeat;
}

.covered{
	background-attachment: fixed;
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
}

/**
 * 3.0 Columns Layout
 * -----------------------------------------------------------------------------
 */

.one_fourth,.one_third,.one_half,.three_fourth,.four_fifth,.footer_one_fourth,.footer_one_third,.footer_one_half,.footer_three_fourth,.footer_four_fifth{
	margin-right:4%;
	float:left;
	position:relative;
	overflow:hidden;
}

.one_fourth,.footer_one_fourth{
	width:22%;
}

.one_third,.footer_one_third{
	width:30.5%;
}

.one_half,.footer_one_half{
	width:48%;
}

.three_fourth,.footer_three_fourth{
	width:74%;
}

.four_fifth,.footer_four_fifth{
	width:79%;
}

.last{
	margin-right:0
}


/**
 * 4.0 Plugin Common Values
 * -----------------------------------------------------------------------------
 */

.mejs-time-loaded{
	background-color:#999!important;
}

.mejs-overlay-button{
	background:url(../img/newplay.png) no-repeat center center!important;
	background-size: 80%!important;
}

.blog-box .mejs-overlay-button{
	background-size:50%!important;
}

.mejs-overlay-button:hover{
	background-image:url(../img/play.png)!important;
}

.portfolio-extension .wp-video{
	width:100%!important;
}

.video-iframe {
    height: 0px;
    padding-bottom: 56%;
    position: relative;
}

.video-iframe iframe {
    height: 100%;
    left: 0px;
    position: absolute;
    top: 0px;
    width: 100%;
}

.sound-iframe iframe{
	width:100%;
	margin-bottom: 0;
}

.soundclould-iframe{
    height: 0px;
    padding-bottom: 115px;
    position: relative;
}

.soundclould-iframe iframe {
    height: 100%;
    left: 0px;
    position: absolute;
    top: 0px;
    width: 100%;
}

/* Owl slides UI */

.owl-slides{
	cursor: move;
	cursor: -webkit-grab;
	cursor: -o-grab;
	cursor: -ms-grab;
	cursor: grab;
}

.owl-slides .owl-controls{
	position:absolute;
	width:100%;
	height:1px;
	top:50%;
	left:0;
}

.owl-slides a{
	display:block;
}

.owl-slides .owl-stage a{
	cursor: -webkit-grab;
	cursor: -o-grab;
	cursor: -ms-grab;
	cursor: grab;
}

.owl-slides .owl-grab a{
	cursor: -webkit-grabbing;
	cursor: -o-grabbing;
	cursor: -ms-grabbing;
	cursor: grabbing;	
}

.owl-slides .owl-prev,.owl-slides .owl-next{
	width:30px;
	height:30px;
	border-radius: 100px;
	overflow: hidden;
	text-align:center;
	line-height:30px;
	font-size:14px;
	position:absolute;
	top:50%;
	margin-top:-15px;
	opacity: 0;
	transition:all 0.4s cubic-bezier(0.215, 0.610, 0.355, 1.300);
	-webkit-transition:show 0.4s cubic-bezier(0.215, 0.610, 0.355, 1.300);	
	-ms-transition:all 0.4s cubic-bezier(0.215, 0.610, 0.355, 1.300);
	-o-transition:all 0.4s cubic-bezier(0.215, 0.610, 0.355, 1.300);
	-moz-transition:all 0.4s cubic-bezier(0.215, 0.610, 0.355, 1.300);
}

.owl-slides .owl-prev{
	left:50px;
}

.owl-slides .owl-next{
	right:50px;
}

.owl-slides:hover .owl-prev{
	left:25px;
	opacity: 0.4;
}

.owl-slides:hover .owl-next{
	right:25px;
	opacity:0.4;
}

.owl-slides .owl-prev:hover,.owl-slides .owl-next:hover{
	-moz-transform: scale(1.2);
	-ms-transform: scale(1.2);
	-webkit-transform: scale(1.2);
	-o-transform: scale(1.2);
	transform: scale(1.2);
	opacity:1;
}

.lightbox{
	display:block;
	position:relative;
	overflow:hidden;
}

.lightbox span,.lightbox img{
	transition:all 0.4s ease;
	-webkit-transition:all 0.4s ease;	
	-ms-transition:all 0.4s ease;
	-o-transition:all 0.4s ease;
	-moz-transition:all 0.4s ease;	
}

.lightbox span{
	position:absolute;
	width:40px;
	height:40px;
	border-radius:40px;
	left:50%;
	top:50%;
	margin-top:-20px;
	margin-left:-20px;
	font-size:18px;
	text-align: center;
	line-height: 40px;
	opacity:0;
	-moz-transform: scale(0);
	-webkit-transform: scale(0);
	-ms-transform: scale(0);
	-o-transform: scale(0);
	transform: scale(0);
	z-index: 9;
	cursor: pointer;
}

.lightbox:hover span{
	opacity:1;
	-moz-transform: scale(1);
	-webkit-transform: scale(1);
	-ms-transform: scale(1);
	-o-transform: scale(1);
	transform: scale(1);	
}

.lightbox:hover img{
	opacity:0.7;
}


/**
 * 5.0 Loading Ball
 * -----------------------------------------------------------------------------
 */


.loading-ball{
	position:relative;
	width:120px;
	height:41px;
}

.escapingBallG{
position:absolute;
top:0;
left:0;
width:41px;
height:41px;
-moz-border-radius:21px;
-moz-animation-name:bounce_escapingBallG;
-moz-animation-duration:1.3s;
-moz-animation-iteration-count:infinite;
-moz-animation-timing-function:linear;
-moz-animation-delay:0s;
-moz-transform:scale(0.5, 1);
-webkit-border-radius:21px;
-webkit-animation-name:bounce_escapingBallG;
-webkit-animation-duration:1.3s;
-webkit-animation-iteration-count:infinite;
-webkit-animation-timing-function:linear;
-webkit-animation-delay:0s;
-webkit-transform:scale(0.5, 1);
-ms-border-radius:21px;
-ms-animation-name:bounce_escapingBallG;
-ms-animation-duration:1.3s;
-ms-animation-iteration-count:infinite;
-ms-animation-timing-function:linear;
-ms-animation-delay:0s;
-ms-transform:scale(0.5, 1);
-o-border-radius:21px;
-o-animation-name:bounce_escapingBallG;
-o-animation-duration:1.3s;
-o-animation-iteration-count:infinite;
-o-animation-timing-function:linear;
-o-animation-delay:0s;
-o-transform:scale(0.5, 1);
border-radius:21px;
animation-name:bounce_escapingBallG;
animation-duration:1.3s;
animation-iteration-count:infinite;
animation-timing-function:linear;
animation-delay:0s;
transform:scale(0.5, 1);
}

@-moz-keyframes bounce_escapingBallG{
0%{
left:0px;
-moz-transform:scale(0.5, 1);
}

25%{
left:39px;
-moz-transform:scale(1, 0.5);
}

50%{
left:99px;
-moz-transform:scale(0.5, 1);
}

75%{
left:39px;
-moz-transform:scale(1, 0.5);
}

100%{
left:0px;
-moz-transform:scale(0.5, 1);
}

}

@-webkit-keyframes bounce_escapingBallG{
0%{
left:0px;
-webkit-transform:scale(0.5, 1);
}

25%{
left:39px;
-webkit-transform:scale(1, 0.5);
}

50%{
left:99px;
-webkit-transform:scale(0.5, 1);
}

75%{
left:39px;
-webkit-transform:scale(1, 0.5);
}

100%{
left:0px;
-webkit-transform:scale(0.5, 1);
}

}

@-ms-keyframes bounce_escapingBallG{
0%{
left:0px;
-ms-transform:scale(0.5, 1);
}

25%{
left:39px;
-ms-transform:scale(1, 0.5);
}

50%{
left:99px;
-ms-transform:scale(0.5, 1);
}

75%{
left:39px;
-ms-transform:scale(1, 0.5);
}

100%{
left:0px;
-ms-transform:scale(0.5, 1);
}

}

@-o-keyframes bounce_escapingBallG{
0%{
left:0px;
-o-transform:scale(0.5, 1);
}

25%{
left:39px;
-o-transform:scale(1, 0.5);
}

50%{
left:99px;
-o-transform:scale(0.5, 1);
}

75%{
left:39px;
-o-transform:scale(1, 0.5);
}

100%{
left:0px;
-o-transform:scale(0.5, 1);
}

}

@keyframes bounce_escapingBallG{
0%{
left:0px;
transform:scale(0.5, 1);
}

25%{
left:39px;
transform:scale(1, 0.5);
}

50%{
left:99px;
transform:scale(0.5, 1);
}

75%{
left:39px;
transform:scale(1, 0.5);
}

100%{
left:0px;
transform:scale(0.5, 1);
} 
}