/* Table of Contents

	- HTML5 Reset
		- Baseline Normalize
		- Box Sizing
		- Float Clearing
	- Defaults
		- Typographical Elements
		- Headings
		- Objects
		- Forms
		- Tables
	- Structure and Layout
		- Site Containers
		- Column Widths and Positions
		- Column Classes
	- Common Classes
		- WordPress
		- Genesis
		- Titles
	- Widgets
		- Featured Content
	- Plugins
		- Genesis eNews Extended
		- Genesis Latest Tweets
		- Gravity Forms
		- Jetpack
	- Site Header
		- Title Area
		- Widget Area
	- Site Navigation
		- Header Navigation
		- Primary Navigation
		- Secondary Navigation
	- Content Area
		- Entries
		- Pagination
		- Comments
	- Sidebars
	- Footer Widgets
	- Site Footer
	- Media Queries
		- max-width: 1139px
		- max-width: 1023px
		- max-width: 767px

*/


/*
HTML5 Reset
---------------------------------------------------------------------------------------------------- */

/* Baseline Normalize
	normalize.css v2.1.2 | MIT License | git.io/normalize
--------------------------------------------- */

article,aside,details,figcaption,figure,footer,header,hgroup,main,nav,section,summary{display:block}
audio,canvas,video{display:inline-block}
audio:not([controls]){display:none;height:0}
[hidden]{display:none}
html{font-family:sans-serif;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}
body{margin:0}
a:focus{outline:thin dotted}
a:active,
a:hover{outline:0}
abbr[title]{border-bottom:1px dotted}
b,strong{font-weight:bold}
dfn{font-style:italic}
hr{-moz-box-sizing:content-box;box-sizing:content-box;height:0}
mark{background:#ff0;color:#000}
code,kbd,pre,samp{font-family:monospace,serif;font-size:1em}
pre{white-space:pre-wrap}
q{quotes:"\201C" "\201D" "\2018" "\2019"}
small{font-size:80%}
sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}
sup{top:-0.5em}
sub{bottom:-0.25em}
img{border:0}
svg:not(:root){overflow:hidden}
figure{margin:0}
fieldset{border:1px solid silver;margin:0 2px;padding:.35em .625em .75em}
legend{border:0;padding:0}
button,input,select,textarea{font-family:inherit;font-size:100%;margin:0}
button,input{line-height:normal}
button,select{text-transform:none}
button,html input[type="button"],input[type="reset"],input[type="submit"]{-webkit-appearance:button;cursor:pointer}
button[disabled],html input[disabled]{cursor:default}
input[type="checkbox"],input[type="radio"]{box-sizing:border-box;padding:0}
input[type="search"]{-webkit-appearance:textfield;-moz-box-sizing:content-box;-webkit-box-sizing:content-box;box-sizing:content-box}
input[type="search"]::-webkit-search-cancel-button,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{border-collapse:collapse;border-spacing:0}

/* Box Sizing
--------------------------------------------- */

*,
input[type="search"] {
	-webkit-box-sizing: border-box;
	-moz-box-sizing:    border-box;
	box-sizing:         border-box;
}

/* Float Clearing
--------------------------------------------- */

.archive-pagination:before,
.clearfix:before,
.entry:before,
.entry-pagination:before,
.footer-widgets:before,
.header-widgets:before,
.nav-primary:before,
.nav-secondary:before,
.site-container:before,
.site-footer:before,
.site-header:before,
.site-inner:before,
.wrap:before {
	content: " ";
	display: table;
}

.archive-pagination:after,
.clearfix:after,
.entry:after,
.entry-pagination:after,
.footer-widgets:after,
.header-widgets:after,
.nav-primary:after,
.nav-secondary:after,
.site-container:after,
.site-footer:after,
.site-header:after,
.site-inner:after,
.wrap:after {
	clear: both;
	content: " ";
	display: table;
}


/*
Defaults
---------------------------------------------------------------------------------------------------- */

/* Typographical Elements
--------------------------------------------- */

html #wpadminbar { min-width: 0px;}

html,
body {
	height: 100%
}

a,
button,
input:focus,
input[type="button"],
input[type="reset"],
input[type="submit"],
textarea:focus,
.button {
	-webkit-transition: all 0.1s ease-in-out;
	-moz-transition:    all 0.1s ease-in-out;
	-ms-transition:     all 0.1s ease-in-out;
	-o-transition:      all 0.1s ease-in-out;
	transition:         all 0.1s ease-in-out;
}

::-moz-selection {
	background-color: #333;
	color: #fff;
}

::selection {
	background-color: #333;
	color: #fff;
}

a {
	color: #666;
}

strong {
	font-weight: 700;
}

ol,
ul {
	margin: 0;
	padding: 0;
}

blockquote,
blockquote::before {
	color: #999;
}

blockquote {
	margin: 40px 40px 24px;
}

blockquote::before {
	content: "\201C";
	display: block;
	font-size: 30px;
	height: 0;
	left: -20px;
	position: relative;
	top: -10px;
}

.entry-content code {
	background-color: #333;
	color: #ddd;
}

cite {
	font-style: normal;
}

/* Headings
--------------------------------------------- */

h1,h2,h3,h4,h5,h6 {
	font-weight: 700;
}

/* Objects
--------------------------------------------- */

embed,
iframe,
img,
object,
video,
.wp-caption {
	max-width: 100%;
}

img {
	height: auto;
}

/* Forms
--------------------------------------------- */

input,
select,
textarea {
	padding: 16px;
	width: 100%;
}

input:focus,
textarea:focus {
	border: 1px solid #999;
	outline: none;
}

::-moz-placeholder {
	color: #999;
	opacity: 1;
}

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

button,
input[type="button"],
input[type="reset"],
input[type="submit"],
.button,
.entry-content .button {
	border: none;
	box-shadow: none;
	cursor: pointer;
	text-transform: uppercase;
	width: auto;
}

.button {
	border-radius: 3px;
	display: inline-block;
}

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button {
	display: none;
}

/* Tables
--------------------------------------------- */

table {
	border-collapse: collapse;
	border-spacing: 0;
	line-height: 2;
	margin-bottom: 40px;
	width: 100%;
}

tbody {
	border-bottom: 1px solid #ddd;
}

th,
td {
	text-align: left;
}

th {
	font-weight: bold;
	text-transform: uppercase;
}

td {
	border-top: 1px solid #ddd;
	padding: 6px 0;
}


/*
Structure and Layout
---------------------------------------------------------------------------------------------------- */
.content,.sidebar { margin-bottom: 30px;}
.full-width-content .content  { margin-bottom: 50px;}
.site-footer > .wrap,.footer-widgets > .wrap,.header-widgets > .wrap,.site-header > .wrap,.site-inner {width: 1170px;margin: 0 auto;}
.site-inner {margin-top: 40px;overflow: hidden;}
.sidebar-secondary {width: 250px;}
.sidebar-primary { width: 350px;}
.content-sidebar-wrap .content {width: 530px;}

.content-sidebar-sidebar .content { float: left;}
.content-sidebar-sidebar .sidebar-primary { float: right;}
.content-sidebar-sidebar .site-inner > .content-sidebar-wrap {float:left;width: 900px}
.content-sidebar-sidebar .sidebar-secondary {float:right;}

.sidebar-sidebar-content .content { float: right;}
.sidebar-sidebar-content .sidebar-primary { float: left;}
.sidebar-sidebar-content .site-inner > .content-sidebar-wrap {float:right;width: 900px}
.sidebar-sidebar-content .sidebar-secondary {float:left;}

.sidebar-content-sidebar .content { float: left;}
.sidebar-content-sidebar .sidebar-primary { float: right;}
.sidebar-content-sidebar .site-inner > .content-sidebar-wrap {float:right;width: 900px}
.sidebar-content-sidebar .sidebar-secondary {float:left;}

.full-width-content .site-inner > .content-sidebar-wrap {width: auto}
.full-width-content .content {width: auto}

.content-sidebar .site-inner > .content-sidebar-wrap {width: auto}
.content-sidebar .content { float: left;width: 800px;}
.content-sidebar .sidebar-primary { float: right;}

.sidebar-content .site-inner > .content-sidebar-wrap {width: auto}
.sidebar-content .content { float: right;width: 800px;}
.sidebar-content .sidebar-primary { float: left;}

/* Column Classes
	Link: http://twitter.github.io/bootstrap/assets/css/bootstrap-responsive.css
--------------------------------------------- */
.five-sixths,
.four-sixths,
.one-fourth,
.one-half,
.one-sixth,
.one-third,
.three-fourths,
.three-sixths,
.two-fourths,
.two-sixths,
.two-thirds {
	float: left;
	margin-left: 2.564102564102564%;
}

.entry-content .five-sixths:first-child,
.entry-content .four-sixths:first-child,
.entry-content .one-fourth:first-child,
.entry-content .one-half:first-child,
.entry-content .one-sixth:first-child,
.entry-content .one-third:first-child,
.entry-content .three-fourths:first-child,
.entry-content .three-sixths:first-child,
.entry-content .two-fourths:first-child,
.entry-content .two-sixths:first-child,
.entry-content .two-thirds:first-child {
	margin-left: 0%;
}

.one-half,
.three-sixths,
.two-fourths {
	width: 48.717948717948715%;
}

.one-third,
.two-sixths {
	width: 31.623931623931625%;
}

.four-sixths,
.two-thirds {
	width: 65.81196581196582%;
}

.one-fourth {
	width: 23.076923076923077%;
}

.three-fourths {
	width: 74.35897435897436%;
}

.one-sixth {
	width: 14.52991452991453%;
}

.five-sixths {
	width: 82.90598290598291%;
}

.first {
	clear: both;
	margin-left: 0;
}


/*
Common Classes
---------------------------------------------------------------------------------------------------- */

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

.avatar {
	float: left;
}

.alignleft .avatar {
	margin-right: 24px;
}

.alignright .avatar {
	margin-left: 24px;
}

.search-form input[type="submit"] {
	border: 0;
	clip: rect(0, 0, 0, 0);
	height: 1px;
	margin: -1px;
	padding: 0;
	position: absolute;
	width: 1px;
}

.sticky {
}

img.centered,
.aligncenter {
	display: block;
	margin: 0 auto 24px;
	text-align: center;
}

img.alignnone {
	margin-bottom: 12px;
}

.alignleft {
	float: left;
	text-align: left;
}

.alignright {
	float: right;
	text-align: right;
}

img.alignleft,
.wp-caption.alignleft {
	margin: 0 24px 24px 0;
}

img.alignright,
.wp-caption.alignright {
	margin: 0 0 24px 24px;
}

.wp-caption-text {
	font-size: 14px;
	font-weight: 700;
	text-align: center;
}

.gallery-caption {
}

.widget_calendar table {
	width: 100%;
}

.widget_calendar td,
.widget_calendar th {
	text-align: center;
}

/* Genesis
--------------------------------------------- */

.breadcrumb {
	margin-bottom: 20px;
}

.archive-description,
.author-box {
	background-color: #fff;
	margin-bottom: 40px;
}

.archive-description {
	padding: 40px 40px 24px;
}

.author-box {
	padding: 40px;
}

.author-box-title {
	color: #333;
	font-size: 16px;
	margin-bottom: 4px;
}

.author-box a {
	border-bottom: 1px solid #ddd;
}

.author-box p {
	margin-bottom: 0;
}

.author-box .avatar {
	margin-right: 24px;
}

/* Titles
--------------------------------------------- */

.entry-title a,
.sidebar .widget-title a {
	color: #333;
}

.entry-title a:hover {
	color: #666;
}

.widget-title {
	font-size: 16px;
	margin-bottom: 24px;
	text-transform: uppercase;
}

.sidebar .widget-title a {
	border: none;
}

.archive-title {
	font-size: 20px;
	margin-bottom: 24px;
}


/*
Widgets
---------------------------------------------------------------------------------------------------- */

/* Featured Content
--------------------------------------------- */

.featured-content .entry {
	border-bottom: 2px solid #f5f5f5;
	margin-bottom: 20px;
	padding: 0 0 24px;
}

.featured-content .entry-title {
	border: none;
	font-size: 24px;
	line-height: 1.2;
}

.featured-content .entry-title a {
	border: none;
}


/*
Plugins
---------------------------------------------------------------------------------------------------- */

/* Genesis eNews Extended
--------------------------------------------- */

.enews-widget {
	color: #999;
}

.enews-widget .widget-title {
	color: #fff;
}

.enews-widget input {
	margin-bottom: 16px;
}

.enews-widget input:focus {
	border: 1px solid #ddd;
}

.enews-widget input[type="submit"] {
	background-color: #f15123;
	color: #fff;
	margin: 0;
	width: 100%;
}

.enews-widget input:hover[type="submit"] {
	background-color: #fff;
	color: #333;
}

/* Genesis Latest Tweets
--------------------------------------------- */

.latest-tweets ul li {
	margin-bottom: 16px;
}

/* Gravity Forms
--------------------------------------------- */

div.gform_wrapper input[type="email"],
div.gform_wrapper input[type="text"],
div.gform_wrapper textarea,
div.gform_wrapper .ginput_complex label {
	font-size: 16px;
	padding: 16px;
}

div.gform_wrapper .ginput_complex label {
	padding: 0;
}

div.gform_wrapper li,
div.gform_wrapper form li {
	margin: 16px 0 0;
}

div.gform_wrapper .gform_footer input[type="submit"] {
	font-size: 14px;
}

/* Jetpack
--------------------------------------------- */

img#wpstats {
	display: none;
}


/*
Site Header
---------------------------------------------------------------------------------------------------- */
.site-header {background: #2E2E2E;}
.title-area { width: 235px; float: left;}
.header-widget-area { float: right; width: 935px }

/* Full width header, no widgets */
.header-full-width .title-area,
.header-full-width .site-title {
	width: 100%;
	text-align: center;
	font-weight: 400;
	padding: 18px 0 25px;
}


/* Logo, hide text */

.header-image .site-description,
.header-image .site-title a {
	display: block;
	text-indent: -9999px;
}

.header-image .site-title { height: 95px;position: relative;margin: 0;}
.header-image .site-title a {position: absolute;top: 0;bottom: 0;left: 0;right: 0;}
.header-image .site-description {display: none;}

/* Widget Area
--------------------------------------------- */




/* Link Top
----------------------------------------*/ 
 .to-top {display: none}


.to-top {
height:40px;
width:40px;
position:fixed;
bottom:40px;
right:10px;
box-shadow:0 0 10px rgba(0,0,0,0.05);
overflow:hidden;
visibility:hidden;
opacity:0;
-webkit-transition:all .3s;
-moz-transition:all .3s;
transition:all .3s;
color: #333;
display: table;
z-index: 100;
}

.to-top span {
	display: table-cell;
	vertical-align: middle;
	text-align: center;
}
 
.to-top.top-is-visible {
visibility:visible;
opacity:1;
}

.to-top.top-fade-out {
opacity:.5;
}
 
.no-touch .to-top:hover {
opacity:1;
}

/*
Content Area
---------------------------------------------------------------------------------------------------- */

/* Entries
--------------------------------------------- */

.entry {
	background-color: #fff;
	border-radius: 1px;
	margin-bottom: 20px;
	padding: 30px;
}

.entry-content {
	overflow: hidden;
}

.entry-content a {
	color: #f15123;
}

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

.entry-content .attachment a,
.entry-content .gallery a {
	border: none;
}

.entry-content ol,
.entry-content ul,
.quote-caption {
	margin-bottom: 26px;
}

.entry-content ol,
.entry-content ul {
	margin-left: 40px;
}

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

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

.entry-content ol ol,
.entry-content ul ul {
	margin-bottom: 0;
}

.entry-content .search-form {
	width: 50%;
}

.entry-meta {
	color: #999;
	font-size: 14px;
}

.entry-meta a {
	border-bottom: 1px solid #ddd;
}

.entry-header .entry-meta {
	margin-bottom: 24px;
}

.entry-footer .entry-meta {
	border-top: 2px solid #f5f5f5;
	border-bottom-width: 0px;
	padding: 15px 0 8px;
}

.entry-comments-link::before {
	content: "\2014";
	margin: 0 6px 0 2px;
}

.entry-categories,
.entry-tags {
	display: block;
}

/* Pagination
--------------------------------------------- */

.archive-pagination,
.entry-pagination {
	font-size: 14px;
	margin: 40px 0;
}

.archive-pagination li {
	display: inline;
}

.archive-pagination li a {
	background-color: #333;
	border-radius: 3px;
	color: #fff;
	cursor: pointer;
	display: inline-block;
	padding: 8px 12px;
}

.archive-pagination li a:hover,
.archive-pagination li.active a {
	background-color: #f15123;
}

.entry-pagination a {
	border-bottom: 1px solid #ddd;
}

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

.comment-respond,
.entry-comments,
.entry-pings {
	background-color: #fff;
	margin-bottom: 40px;
}

.entry-comments {
	padding: 40px;
}

.comment-respond,
.entry-pings {
	padding: 40px 40px 16px;
}

.comment-respond a,
.entry-comments a {
	border-bottom: 1px solid #ddd;
}

.comment-content {
	clear: both;
}

.entry-comments .comment-author {
	margin-bottom: 0;
}

.comment-respond input[type="email"],
.comment-respond input[type="text"],
.comment-respond input[type="url"] {
	width: 50%
}

.comment-respond label {
	display: block;
	margin-right: 12px;
}

.comment-list li,
.ping-list li {
	list-style-type: none;
}

.comment-list li {
	margin-top: 24px;
	padding: 32px;
}

.comment-list li li {
	margin-right: -32px;
}

li.comment {
	background-color: #f5f5f5;
	border: 2px solid #fff;
	border-right: none;
}

.comment .avatar {
	margin: 0 16px 24px 0;
}

.entry-pings .reply {
	display: none;
}

.bypostauthor {
}

.form-allowed-tags {
	background-color: #f5f5f5;
	font-size: 14px;
	font-size: 1.4rem;
	padding: 24px;
	padding: 2.4rem;
}


/*
Sidebars
---------------------------------------------------------------------------------------------------- */

.sidebar li {
	list-style-type: none;
	margin-bottom: 6px;
	word-wrap: break-word;
}

.sidebar .widget {
	background-color: #fff;
	border-radius: 1px;
	margin-bottom: 20px;
	padding: 30px;
}

.sidebar .enews-widget {
	background-color: #333;
}

/*
Header Widgets
-----------------------------------------------------------------------*/
.header-widgets > .wrap > div.header-1-widget-area {
	width: 49%;
	margin: 0.5%;
	float:left;
}
.header-widgets > .wrap > div.header-2-widget-area {
	text-align: right;
	width: 49%;
	margin: 0.5%;
	float:right;
}


/*
Footer Widgets
---------------------------------------------------------------------------------------------------- */

.footer-widgets {
	background-color: #333;
	color: #999;
	clear: both;
	padding: 40px 0 16px;
}

div[class*="footer-widgets-"]{float: left;}
.footer-widgets a {color: #999;}
.footer-widgets a:hover {color: #ddd;}
.footer-widgets .widget {margin-bottom: 24px;}
.footer-widgets .widget-title {color: #fff;}
.footer-widgets li {list-style-type: none;margin-bottom: 6px;word-wrap: break-word;}
.footer-widgets .search-form input:focus {border: 1px solid #ddd;}
.footer-widgets .widget-wrap {margin: 0px 5%;}
/*
Site Footer
---------------------------------------------------------------------------------------------------- */

.site-footer a:hover,
.before-site-footer a:hover {
	text-decoration: underline;
}

.site-footer {
	background-color: #343333;
	color: #999;
	font-size: 14px;
	padding: 40px 0;
	text-align: center;
	border-top: 1px dotted #fff;
	color: #fff;
}

.site-footer a {
	border-bottom: 1px solid #ddd;
}

.site-footer p {
	margin-bottom: 0;
}

.gallery {
	overflow: hidden;
}


/*
Media Queries
---------------------------------------------------------------------------------------------------- */
@media only screen and (max-width: 1199px) {
	.site-footer > .wrap,.footer-widgets > .wrap,.header-widgets > .wrap,.site-header > .wrap, .site-inner {width: 940px;}
	.sidebar-secondary {width: 190px;}
	.sidebar-primary { width: 275px;}
	.content-sidebar-wrap .content {width: 435px;}
	.content-sidebar-sidebar .site-inner > .content-sidebar-wrap,
	.sidebar-sidebar-content .site-inner > .content-sidebar-wrap,
	.sidebar-content-sidebar .site-inner > .content-sidebar-wrap {width: 730px}
	.content-sidebar .content,
	.sidebar-content .content {width: 645px;}
	.full-width-content .content {width: auto;}
	.header-widget-area { float: right; width: 695px }
	.gallery-columns-9 .gallery-item,
	.gallery-columns-8 .gallery-item,
	.gallery-columns-7 .gallery-item {width: 14.2% !important}

	.gallery-columns-6 .gallery-item,
	.gallery-columns-5 .gallery-item {width: 25% !important}

}

@media only screen and (max-width: 979px) {
	.site-footer > .wrap,
	.site-header > .wrap,
	.footer-widgets > .wrap,
	.header-widgets > .wrap,
	.site-inner,
	.sidebar-secondary,
	.sidebar-primary,
	.content-sidebar-wrap .content,
	.content-sidebar-sidebar .site-inner > .content-sidebar-wrap,
	.sidebar-sidebar-content .site-inner > .content-sidebar-wrap,
	.sidebar-content-sidebar .site-inner > .content-sidebar-wrap,
	.content-sidebar .content,
	.sidebar-content .content,
	.full-width-content .content {width: 100%;}
	.header-widget-area { float: none; width: auto; padding: ; }
	.title-area { width: auto; float: none;}

	.header-image .site-title { height: 50px;}

	.header-widgets > .wrap > div,
	.header-widgets > .wrap > div:last-child {
		width: 99%;
		float: none;
		text-align: center;
		padding: 2px 0px;
	}

	.header-widget-area,.site-inner {padding-left: 5%;padding-right: 5%;}

	.archive-description,
	.author-box,
	.comment-respond,
	.entry,
	.entry-comments,
	.entry-footer .entry-meta,
	.header-image .site-header .widget-area,
	.sidebar .widget {
		padding: 5%;
	}

	.site-description,
	.site-header .title-area,
	.site-header .search-form,
	.site-title {
		text-align: center;
	}

	.site-header .search-form {margin: 16px auto;}

	.entry-footer .entry-meta {
		margin: 0;
		padding-top: 12px;
	}

	.sidebar .widget.enews-widget {padding: 40px;}

	.site-footer {padding: 24px 0;}

	.to-top {
		height:60px;
		width:60px;
		right:30px;
		bottom:30px;
	}

	.gallery-columns-9 .gallery-item,
	.gallery-columns-8 .gallery-item,
	.gallery-columns-7 .gallery-item {width: 20% !important}

	.gallery-columns-6 .gallery-item,
	.gallery-columns-5 .gallery-item,
	.gallery-columns-4 .gallery-item {width: 33.3% !important}

}

@media only screen and (max-width: 767px) {

	.five-sixths,
	.four-sixths,
	.one-fourth,
	.one-half,
	.one-sixth,
	.one-third,
	.three-fourths,
	.three-sixths,
	.two-fourths,
	.two-sixths,
	.two-thirds {
		margin: 0;
		width: 100%;
	}

	.to-top {
		right:20px;
		bottom:20px;
	}

	.gallery-columns-9 .gallery-item,
	.gallery-columns-8 .gallery-item,
	.gallery-columns-7 .gallery-item {width: 33.3% !important}

	.gallery-columns-6 .gallery-item,
	.gallery-columns-5 .gallery-item,
	.gallery-columns-4 .gallery-item,
	.gallery-columns-3 .gallery-item {width: 50% !important}

}

/*-------------Shortcode lightbox---------------*/
.lightbox_wrap {
	display:block;
	overflow:hidden;
	text-align: center;
}
.lightbox_theme {
    #display: inline-block;
    #display: block;
    #float: left;
    #left: 50%;
    #position: relative;
}
.lightbox_theme > a {
    border-radius: 3px;
    display: inline-block;
    #float: left;
    #left: -50%;
    overflow: hidden !important;
    position: relative;
    max-width: 100%;
}
.lightbox_theme > a > span {
    background: none repeat scroll 0 0 rgba(0, 0, 0, 0.8);
    border-radius: 3px;
    bottom: 0;
    left: 0;
    opacity: 0;
    overflow: hidden;
    position: absolute;
    right: 0;
    top: 0;
    transition: all 0.5s ease 0s;
}
.lightbox_theme i {
    color: #f15123;
    margin-top: -20px;
    position: absolute;
    right: -50px;
    top: 50%;
    transition: all 0.2s ease 0.3s;
}
.lightbox_theme img {
    transition: all 0.5s ease 0s;
    #width: 100%;
    margin: 0px;
}
.lightbox_theme > a:hover > span {
    opacity: 1;
}
.lightbox_theme > a:hover i {
    margin-right: -20px;
    right: 50%;
}
.lightbox_theme > a:hover img {
    transform: scale(1.2);
}

#lang_sel_list a {
	margin-right: 20px;
}
#lang_sel_list a:hover {
	text-decoration: underline !important;
}
#lang_sel_list img.iclflag {
	top: -2px;
}

.search-form {
	position: relative;
	z-index: 4;
}

.search-form input[type="search"] {
	position: relative;
	z-index: 5;
	box-sizing: border-box;
	padding-right: 1.6rem;
}

.search-form button {
	position: absolute;
	z-index: 6;
	top: 0;
	bottom: 0;
	right: 0;
	clip: auto !important;
	font-size: 10px;
	border-radius: 0px 3px 3px 0px;
	padding: 1.6rem;
}

#map-canvas {
	min-height: 300px;
}

.alert-success.opacity {
	background-image: linear-gradient(to bottom, rgba(223,240,216,0.4) 0%, rgba(200,229,188,0.4) 100%);
	background-color: rgba(223,240,216,0.4);
}

.alert-success.default {
	background-image: linear-gradient(to bottom, #FFFFFF 0%, #FAFAFA 100%);
	background-color: #FFFFFF;
	color: #424242;
	border-color: #E6E6E6;
}
.default.opacity {
	background-image: linear-gradient(to bottom, rgba(255,255,255,0.4) 0%, rgba(250,250,250,0.4) 100%);
	background-color: rgba(255,255,255,0.4);
}

.alert-warning.opacity {
	background-image: linear-gradient(to bottom, rgba(252,248,227,0.4) 0%, rgba(248,239,192,0.4) 100%);
	background-color: rgba(252,248,227,0.4);
}

.alert-info.opacity {
	background-image: linear-gradient(to bottom, rgba(217,237,247,0.4) 0%, rgba(185,222,240,0.4) 100%);
	background-color: rgba(217,237,247,0.4);
}

.alert-danger.opacity {
	background-image: linear-gradient(to bottom, rgba(242,222,222,0.4) 0%, rgba(231,195,195,0.4) 100%);
	background-color: rgba(242,222,222,0.4);
}

div.container-fluid {
	padding-left: 0px;
    padding-right: 0px;
}

.panel-group .panel-heading { padding: 0px;}
.panel-group .panel-heading .panel-title a {display: block;padding: 10px 15px;}