/* --------------------------------------
=========================================
   1. GLOBAL STYLES
=========================================
-----------------------------------------*/
/*---------------------------------------
   1. GENERAL STYLES                
-----------------------------------------*/

body {
    color: #333;
    font-family: "Lato",Tahoma,Arial,sans-serif;
    font-size: 14px;
}

/*---------------------------------------
   FIX FOOTER ON BOTTOM               
-----------------------------------------*/
	html {
		position: relative;
		min-height: 100%;
	}
	
	body {
		margin-bottom: 307px;
	}
	
	#footer {
		position: absolute;
		bottom: 0;
		width: 100%;
		min-height: 307px;
	}

	@media (max-width: 767px) {
		body {
			margin-bottom: 0;
		}
	
		#footer {
			position: relative;
		}
	}

/*---------------------------------------
   ANCHOR AND BOLD TEXT           
-----------------------------------------*/
a {
	text-decoration: none;
	/** -webkit-transition: all ease 0.25s;*/
	/** transition: all ease 0.25s; */
}

a {
	color: #000;
}

a:hover, a:focus {
	
}

a:hover {
	text-decoration: none;
}

/*---------------------------------------
   MISC FIXES         
-----------------------------------------*/
@-webkit-viewport {
	width: device-width;
}

@-moz-viewport {
	width: device-width;
}

@-ms-viewport {
	width: device-width;
}

@-o-viewport {
	width: device-width;
}

@viewport {
	width: device-width;
}

*,
*:before,
*:after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

ul,
ol {
	padding-left: 0 !important;
}

li {
	list-style: none;
}

figure {
    margin: 0;
}

.row.no-gutters[class^="col-"],
.row.no-gutters[class*=" col-"] , 
.no-gutters{
	padding-right: 0;
	padding-left: 0;
}

.no-margins{
	margin: 0 !important;
}

/* --------------------------------------
=========================================
   2. COMPONENTS
=========================================
-----------------------------------------*/
/*---------------------------------------
   TYPOGRAPHY      
-----------------------------------------*/

/* HEADINGS */
h1,
h2 {
	
}

h1 {
	
}

h2 {
	font-size: 24px;
}

h3 {
	font-size: 16px;
}

h4 {
	font-size: 14px;
}

h5 {
	font-size: 13px;
}

h6 {
	
}

.xsmall-text {
	
}

p{
	font-size: 14px;
}

blockquote {
	position: relative;
	font-weight: 300;
    border-left: 0;
    color: #10547b;
    font-style: italic;
    padding-left: 40px;
    padding-right: 40px;
}

blockquote:after {
	position: absolute;
	content: "\201C";
	font-family: Georgia,serif;
    font-size: 40px;
	right: 30px;
    bottom: -25px;
}

blockquote:before {
    position: absolute;
    content: "\201C";
	font-family: Georgia,serif;
    font-size: 40px;
	left: 10px;
    top: 0px;
}

/*---------------------------------------
   BUTTONS      
-----------------------------------------*/
.btn {
    border-radius: 0;
}

.btn-primary {
    color: #FFF;
    background-color: #10547b;
    border-color: #10547b;
}

.btn-primary:hover,
.btn-primary:focus {
    color: #FFF;
    background-color: #00a195;
    border-color: #00a195;
}

.btn-primary.btn-small{
	font-size: 12px;
	padding: 4px 8px;
} 

/*---------------------------------------
   NAVBAR      
-----------------------------------------*/
.navbar {
    background-color: #f1f2f2;
    border: none;
}

.navbar li a{
	color: #22537A; /** */
  font-family: 'Open Sans Condensed', sans-serif; /** */
  font-size: 16px; /** */
  font-weight: 700; /** */
  text-transform: uppercase; /** */
}

.navbar .navbar-nav > li > a {
  /**color: #497c99;*/
	padding-bottom: 8px;
	padding-top: 18px;
}

.navbar .navbar-nav > li > a:focus,
.navbar .navbar-nav > li > a:hover {
	background-color: transparent;
	color: #497c99;
	border-bottom: 2px solid #497c99;
}

.navbar .navbar-nav li.open > a.dropdown-toggle.level-1{
	background-color: transparent;
	color: #497c99;
	border-bottom: 2px solid #497c99;
}

.navbar .search{
	
}

.navbar .search .btn{
	border: none;
	background: transparent;
}

.navbar .search .btn{
	color: #497c99;
}

.dropdown-menu {
	border-radius:0;
	background-color: transparent;
	border: none;
	box-shadow: none;
}

.dropdown-menu > li > a {
	padding: 10px 80px 10px 20px;
	background-color: rgba(250,250,250,0.95);
}

.dropdown-menu > li {
	/**border: 1px solid #497c99;*/
  border-bottom: 0;
}

.dropdown-menu > li:last-child {
	border-bottom: 1px solid #497c99;
}

.navbar-toggle {
	float: none;
	margin-left: 15px;
	margin-top: 2px;
	margin-bottom: 2px;
	background-color: transparent;
    border: 1px solid transparent;
    border-radius: 0;
}

.navbar-toggle .icon-bar {
	background: #ffffff;
}

@media (max-width: 768px){
	
	.navbar-form {
		margin-left: 0;
		margin-right: 0;
	}
	
}

/*---------------------------------------
   NAV TABS  
-----------------------------------------*/

.nav-tabs > li.active > a, 
.nav-tabs > li.active > a:focus, 
.nav-tabs > li.active > a:hover {
    color: #FFF;
    cursor: default;
	background-color: #00a195;
    border-color: #00a195;
    border-bottom-color: transparent;
}

.nav-tabs > li > a {
    color: #000;
    cursor: default;
	background-color: #c4c4c4;
    border-color: #c4c4c4;
    border-bottom-color: transparent;
	cursor: pointer;
}

.nav-tabs > li > a:focus, 
.nav-tabs > li > a:hover {
	background-color: #00a195;
    border-color: #00a195;
}

.nav-tabs {
	border: none;
}

.nav-tabs > li {
	text-align: center;
	padding: 0;
	margin-bottom: 0;
}

.nav-tabs > li > a {
	margin-right: 0;
	border-radius: 0;
}

.tab-content {
	padding-top: 20px;
}

/*---------------------------------------
   MEDIA 
-----------------------------------------*/
.media{
	position: relative;
}

.media-left{
	float: left;
}

.media .media-body time {
	position: absolute;
    bottom: 0;
}

.media .media-body .media-heading{
	font-weight: 700;
}


/*---------------------------------------
   FORMS    
-----------------------------------------*/

input {
    border-color: #497c99;
    color: #333;
}

.form-control {
	 border-radius: 0;
}

.form-control:focus {
   border-color: #497c99;
   box-shadow: none;
}

#footer .form-control {
    background-color: #0c2c35;
    border-color: transparent;
	border: 0;
}

#footer .form-control:focus {
	border: none;
	box-shadow: none;
}

/*---------------------------------------
   PAGE HEADER 
-----------------------------------------*/
.page-header {
    border-bottom-color: #333;
    border-bottom-style: dashed;
	margin-top: 0;
	margin-bottom: 30px;
}

.page-header time{
	color: #10547b;
}

.page-header h2 {
	font-weight: 700;
}

/*---------------------------------------
   TOP PANEL
-----------------------------------------*/

.top-panel {
	margin-bottom: 30px;
}

.top-panel img{
	width: 100%;
	height: auto;
}

.article-text .top-panel img{max-height: 600px; width: auto; margin: 0 auto;}

/*---------------------------------------
   GRID ARTICLES | CATEGORIES
-----------------------------------------*/

#content .gridlist-articles .media-body time {
    color: #bbb;
    font-size: 9px;
}

#content .gridlist-articles div[class*='col-'] {
    margin-bottom: 20px;
}


/*---------------------------------------
   GRID LARGE ARTICLES | OPINION ARTICLES
-----------------------------------------*/

#content .gridlist-lg-articles div[class*='col-'] {
    margin-bottom: 20px;
}

#content .gridlist-lg-articles .media-body time {
    color: #bbb;
    font-size: 10px;
}

/*---------------------------------------
   GRID FULL ARTICLES | SPEAKERS CORNER
-----------------------------------------*/

#content .gridlist-lg-articles div[class*='col-'] {
    margin-bottom: 20px;
}

#content .gridlist-lg-articles .media-body time {
    color: #bbb;
    font-size: 10px;
}

/* --------------------------------------
=========================================
   3. SECTION STYLES
=========================================
-----------------------------------------*/
/*---------------------------------------
   HEADER    
-----------------------------------------*/

header .language-social,
#header .language-social {
    background-color: #10547b;
}

#header .language-social nav ul {
  display: none; /** */
    margin-bottom: 0;
    padding: 6px 0;
}

#header .language-social nav li {
    border-right: 1px solid #fff;
    margin: 0 4px 0 0;
    padding: 0;
}

#header .language-social nav li:last-child {
    border-right: 0;
    margin-right: 0;
}

#header .language-social nav li {
    color: #fff;
    padding-right: 8px;
	cursor: pointer;
}

#header .content {
  height: 180px; /** */
  background: #22537A /**url(../img/contents/header.jpg) no-repeat 0 0*/;
  border-bottom: 4px solid #0b3649;
  background-size: cover;
}

#header .content article.container{
	position: relative;
    /*height: 120px;*/
    height: 176px;
}

#header .content figure {
	position: absolute;
	bottom: 0;
}

#header .content h2, 
#header .content h4 {
    color: #fff;
    margin-left: 180px;
}

#header .content h2 {
    /** margin-top: 60px; */
  margin-top: 108px; /** */
  	margin-bottom: 2px;
    font-weight: 100;
}

#header .content h2 a, #header .content h4 a{ /** */
  color: #fff;
}

#header .content h4 {
    font-weight: 300;
	margin-top: 0;
	margin-bottom: 0;
}

#header .content nav{
	position: absolute;
	bottom: 0;
	right: 15px;
}

#header .content nav ul {
	margin-bottom: 0;
}

#header .content nav ul li{
	padding: 0;
}

#header .content nav ul li a {
  background-color: #00a195; color: #fff; border: 0; text-transform: uppercase;
  font-family: "Open Sans Condensed",sans-serif; font-size: 15px;
}

/*---------------------------------------
   CONTENT
-----------------------------------------*/

#content{
	/**margin-top: 20px;*/
}

/*---------------------------------------
   ENTRY-MEDIA
-----------------------------------------*/
.entry-media {
	position: relative;
	margin-bottom: 0;
}

.entry-media a{
	
}

.entry-media .media-image {
    position: relative;
    overflow: hidden;
    /**margin-bottom: 1.25rem;*/
}

.entry-media .media-overlay {
    position: relative;
    display: block;
    background-color: #272729;
    text-align: center;
    overflow: hidden;
    -webkit-transition: -webkit-transform 0.35s ease,opacity 0.35s ease;
    -moz-transition: -moz-transform 0.35s ease,opacity 0.35s ease;
    -ms-transition: transform 0.35s ease,opacity 0.35s ease;
    transition: transform 0.35s ease,opacity 0.35s ease;
}

.entry-media figcaption {
	position: absolute;
    left: 4px;
    bottom: 12px;
    color: #fff;
    margin-left: 16px;
}

.entry-media figcaption time {
	font-size: 12px;
}

.entry-media .media-overlay img {
    width: 100%;
    -webkit-transform: rotateZ(0) scale(1);
    transform: rotateZ(0) scale(1);
    -webkit-transition: -webkit-transform 0.35s ease,opacity 0.35s ease;
    -moz-transition: -moz-transform 0.35s ease,opacity 0.35s ease;
    -ms-transition: transform 0.35s ease,opacity 0.35s ease;
    transition: transform 0.35s ease,opacity 0.35s ease;
}

.entry-media .media-overlay:hover img{
	opacity: .3;

	-webkit-transform: rotateZ(-3deg) scale(1.2);
	transform: rotateZ(-3deg) scale(1.2);
}  

.entry-media .media-overlay:hover:after{
	-webkit-transform: scale(1);
	transform: scale(1);

}

.entry-media .media-overlay:after {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 40px;
    height: 40px;
    margin-top: -20px;
    margin-left: -20px;
    background-image: url(../img/contents/plus.png);
	
    background-repeat: no-repeat;
    background-position: center center;
    content: "";
    -webkit-transform: scale(0);
    transform: scale(0);
    -webkit-transition: -webkit-transform 0.35s ease;
    -moz-transition: -moz-transform 0.35s ease;
    -ms-transition: transform 0.35s ease;
    transition: transform 0.35s ease;
}


/*---------------------------------------
   CONTENT MULTIMEDIA
-----------------------------------------*/

#content .headline-panel {
	margin-bottom: 30px;
}

#content .content-multimedia .item {
	/**margin-bottom: 30px;*/
}

#content .content-multimedia .item figure {
	position: relative;
}

#content .content-multimedia .item figure figcaption {
    position: absolute;
    left: 0;
    bottom: 0;
    color: #fff;
    width: 100%;
    background-color: rgba(42, 42, 44, 0.8);
    margin-left: 0;
    padding: 0 20px 20px;
}

/**#content*/ .content-multimedia .item .info h3{ /** */
  margin-top: 8px;
  font-size: 16px;
}

/**#content*/ .content-multimedia .item .info time{ /** */
  color: #bbb;
}

#content .content-multimedia .item:hover figcaption {
  display: none;
}

#content .side-content-multimedia .sliding-panels{
	margin-bottom: 0;
}

#content .side-content-multimedia #carousel-multimedia figcaption{
    left: 0;
    bottom: 0;
    width: 100%;
    background-color: rgba(42, 42, 44, 0.8);
    margin-left: 0;
    padding: 0 20px 20px;
}
#content .side-content-multimedia #carousel-multimedia:hover figcaption{ /** */
  display: none;
}
#content .side-content-multimedia #carousel-multimedia .item{
  height: 199px;
}
#content .side-content-multimedia .sliding-panels h3{
  margin: 4px 0; font-size: 14px;
}


/*---------------------------------------
   CONTENT NEWS
-----------------------------------------*/
#content .content-news {
    margin-bottom: 30px;
}

#content .box-news h5, #content .box-news h5 a{
    color: #10547b;
}

#content .box-news h2 {
    margin: 10px 0 20px;
    border-bottom: 2px solid #333;
    line-height: 140%;
	font-weight: 700;
}

#content .box-news .gridlist-articles div[class*='col-'] .media-body time {
    color: #bbb;
    font-size: 12px;
}

#content .box-last-news .caption {
	background-color: #f1f2f2;
    padding: 20px;
	margin-bottom: 20px;
}


#content .box-last-news .caption a:hover h2{
	color: #10547b;
}

#content .box-last-news .caption h2 {
	border: none;
	color: #000;
}

#content .box-last-news .caption .bar-stats {
	padding-top: 10px;
	padding-bottom: 20px;
	font-size: 10px;
}

#content .box-news .gridlist-articles .recommend-articles {
    border: 1px solid #bbb;
    border-top-style: dashed;
    border-bottom-style: dashed;
    padding: 12px 48px 0;
}

/*---------------------------------------
   CONTENT BIOGRAPHY
-----------------------------------------*/
#content #main .tab-content{
	background-color: #f1f2f2;
	padding-left: 20px;
	padding-right: 20px;
	padding-bottom: 20px;
	text-align: justify; 
}

#content #main .tab-content {
	margin-bottom: 20px;
}

/*---------------------------------------
   CONTENT PAGES / ARTICLES
-----------------------------------------*/

#content .article .box-article-opinion {
    margin-bottom: 20px;
}

#content .box-article-opinion article{
	text-align: justify;
}

.article-text article{
	text-align: justify;
}

.article-text article p{ /** */
  font-size: 15px;
}

/*---------------------------------------
   CONTENT OPINION ARTICLES
-----------------------------------------*/
#content .gridlist-lg-articles h3 {
	color: #10547b;
	font-weight: 700;
  font-size: 15px;
}

#content .gridlist-lg-articles h3 span {
	font-size: 12px;
}

#content .gridlist-lg-articles figure {
	position: relative;
}

#content .gridlist-lg-articles figcaption {
	position: absolute;
	bottom: 0;
	width: 100%;
	background-color: rgba(42, 42, 44, 0.8);
	color: #fff;
	padding: 10px 15px;
	cursor: pointer;
}

#content .gridlist-lg-articles figure:hover figcaption{
	background-color: rgba(0, 161, 149, 0.8);
}

#content .gridlist-lg-articles .legend{
	padding: 20px;
	text-align: center;
}

#content .gridlist-lg-articles article{
	border: 1px;
	border-bottom-color: #333;
    border-bottom-style: dashed;
	margin-bottom: 30px;
}

/*---------------------------------------
   CONTENT SPEAKERS CORNER
-----------------------------------------*/
#content .gridlist-full-articles h3 {
	color: #10547b;
	font-weight: 700;
}

#content .gridlist-full-articles h3 span {
	font-size: 12px;
}

#content .gridlist-full-articles figure {
	position: relative;
  height: 100%;
  overflow: hidden;
}

#content .gridlist-full-articles.fix-size > article { /** */
  /*width: 360px;*/
  height: 220px;
}

#content .gridlist-full-articles figcaption {
	position: absolute;
	bottom: 0;
	width: 100%;
	background-color: rgba(42, 42, 44, 0.8);
	color: #fff;
	padding: 10px 15px;
	cursor: pointer;
	margin-left: 0;
	left: 0;
}

#content .gridlist-full-articles figure:hover figcaption{
	background-color: rgba(0, 161, 149, 0.8);
}

#content .gridlist-full-articles figcaption a{color: #fff;}

#content .gridlist-full-articles .legend{
	padding: 20px;
	text-align: center;
}

#content .gridlist-full-articles article{
	margin-bottom: 30px;
}

/*---------------------------------------
   SIDEBAR CATEGORIES
-----------------------------------------*/
#categories {
	margin-bottom: 30px;
}

#categories .list-categories {
    background-color: #10547b;
}

#categories .list-categories nav {
    padding: 15px 20px;
}

#categories .list-categories nav li a {
    font-size: 14px;
    color: #fff;
    font-weight: 300;
    display: block;
    padding: 6px 0;
}

#categories .list-categories nav li, 
#categories .list-categories nav li:last-child {
    border-bottom: 1px dashed #999;
}

/*---------------------------------------
   RELATED ARTICLES
-----------------------------------------*/

#related-articles {
	margin-top: 30px;
}

#related-articles .page-header h2{
	color: #bbb;
}

#related-articles .caption h3{
	font-weight: 700;
}

#related-articles .caption time {
    color: #bbb;
    font-size: 9px;
}

/*---------------------------------------
   TAGS
-----------------------------------------*/
#tags {
	margin-top: 30px;
	margin-bottom: 30px;
}

#tags .page-header h2{
	color: #bbb;
}

#tags .tag-list a{
	
}

/*---------------------------------------
   SIDEBAR
-----------------------------------------*/

#sidebar .tab-pane .media-body time {
    color: #bbb;
    font-size: 11px;
}

#sidebar .nav-tabs > li.active > a, 
#sidebar .nav-tabs > li.active > a:focus, 
#sidebar .nav-tabs > li.active > a:hover {
    color: #FFF;
    cursor: default;
	background-color: #10547b;
    border-color: #10547b;
    border-bottom-color: transparent;
}

#sidebar .nav-tabs > li > a {
    color: #FFF;
    cursor: default;
	background-color: #00a195;
    border-color: #00a195;
    border-bottom-color: transparent;
	cursor: pointer;
}

#sidebar .nav-tabs > li > a:focus, 
#sidebar .nav-tabs > li > a:hover {
	background-color: #10547b;
    border-color: #10547b;
}

#sidebar .nav-tabs > li {
	width: 50%;
}

#sidebar .tab-pane .media {
    margin-bottom: 20px;
}


/*---------------------------------------
   FOOTER  
-----------------------------------------*/

#footer {
    background-color: #0b3649;
    color: #fff;
    margin-top: 12px;
}

#footer .content {
    padding: 25px 0 70px;
}

#footer .content > article {
	margin-bottom: 30px;
}

#footer .content > article h4 {
    font-weight: 300;
    margin-bottom: 8px;
}

#footer .content > article nav ul {
	/**max-width: 250px;*/
}

#footer .content > article nav li {
    border-top: 1px solid #919191;
}

#footer .content > article nav li a span{
	float:right;
}

#footer .content > article nav li i{
	font-size: 9px;
}

#footer .content > article nav li a {
	font-size: 13px;
    color: #919191;
    font-weight: 300;
}

#footer .input-group-btn .btn {
    background-color: #00b3e6;
    border-color: #00b3e6;
	color: #fff;
}

#footer .form-control{
	color:#fff;
	font-size: 9px;
}

#footer .form-control::-webkit-input-placeholder { color: #00a195 }
#footer .form-control:-moz-placeholder { color: #00a195 }
#footer .form-control::-moz-placeholder { color: #00a195 }
#footer .form-control:-ms-input-placeholder { color: #00a195 }

#footer .copyright {
    left: 0;
    bottom: 0;
    background-color: #0c2c35;
    width: 100%;
}

#footer .copyright p {
    margin-bottom: 0;
    padding: 6px 0;
}


/*---------------------------------------
   CAROUSEL
-----------------------------------------*/

#carousel-multimedia .item img{
    display: block;
    width: 100%;
    height: auto;
}

.owl-carousel{
	position: relative;
}

.owl-carousel .owl-controls {
    display: block;
}

.owl-carousel.carousel-transition .owl-controls .owl-next, 
.owl-carousel.carousel-transition .owl-controls .owl-prev {
    position: absolute;
    display: block;
    top: 50%;
    margin-top: -16px;
    cursor: pointer;
    width: 20px;
    height: 20px;
    font-size: 0;
    opacity: 0;
    -webkit-transition: -webkit-transform 0.2s ease-in,opacity 0.35s ease-in;
    -moz-transition: -moz-transform 0.2s ease-in,opacity 0.35s ease-in;
    -ms-transition: transform 0.2s ease-in,opacity 0.35s ease-in;
    transition: transform 0.2s ease-in,opacity 0.35s ease-in;
}

.owl-carousel.carousel-transition .owl-controls .owl-prev {
	left: 20px;

	-webkit-transform: translateX(-15px);
	transform: translateX(-15px);
}

.owl-carousel.carousel-transition .owl-controls .owl-next {
	right: 20px;

	-webkit-transform: translateX(15px);
	transform: translateX(15px);
}

.owl-carousel.carousel-transition .owl-controls .owl-next:after, 
.owl-carousel.carousel-transition .owl-controls .owl-prev:after {
	position: absolute;
    top: -1.25rem;
    color: #fff;
    content: '';
    font-family: "fontello";
    font-size: 3.5rem;
}

.owl-carousel.carousel-transition.cursor-black .owl-controls .owl-next:after, 
.owl-carousel.carousel-transition.cursor-black .owl-controls .owl-prev:after {
	color: #000;
}

#side-carousel-multimedia.owl-carousel.carousel-transition .owl-controls .owl-next:after, 
#side-carousel-multimedia.owl-carousel.carousel-transition .owl-controls .owl-prev:after {
	font-size: 2.5rem;
}

.owl-carousel.carousel-transition .owl-controls .owl-next:after{
	content: '\e800';
} 

.owl-carousel.carousel-transition .owl-controls .owl-prev:after {
	content: '\e801';
}

.owl-carousel.carousel-transition:hover .owl-prev,
.owl-carousel.carousel-transition:hover .owl-next {
    opacity: .6;
    -webkit-transform: translateX(0);
            transform: translateX(0);
}

.owl-carousel.carousel-transition:hover .owl-prev:hover,
.owl-carousel.carousel-transition:hover .owl-next:hover {
	opacity: 1; 
}

.owl-carousel.carousel .owl-buttons {
	padding-left: 15px;
	padding-right: 15px;
	text-align: right;
}

.owl-carousel.carousel .owl-controls .owl-next, 
.owl-carousel.carousel .owl-controls .owl-prev {
    cursor: pointer;
    font-size: 0;
	display: inline-block;
}


.owl-carousel.carousel .owl-controls .owl-next:after, 
.owl-carousel.carousel .owl-controls .owl-prev:after {
    color: #000;
    content: '';
    font-family: "fontello";
    font-size: 1.5rem;
}

.owl-carousel.carousel .owl-controls .owl-next:after{
	margin-left: 10px;
	content: '\e800';
} 

.owl-carousel.carousel .owl-controls .owl-prev:after{
	content: '\e801';
}

.owl-carousel.carousel .owl-controls .owl-prev:hover,
.owl-carousel.carousel .owl-controls .owl-next:hover {
	color: #10547b;
}

/*---------------------------------------
   Social Networks
-----------------------------------------*/

#social-bar{
	margin-top: 30px;
	margin-bottom: 30px;
}

#social-bar .social-share-list {
	/*margin: 5px; 
	
	border-radius: 0px; */
}

#social-bar .social-share-title{
	color: #0b3649;
	background-color: #fff;
    border-color: #0b3649;
	width: 100%;
	cursor: inherit;
}
/*
#social-bar .social-share-list li{
	display: inline;
	margin-right: 5px;
}*/

#social-bar .social-share-list [class*='col-']{
	text-align: right;
}

#social-bar .social-share-list [class*='col-']:first-child{
	text-align: left;
}

#social-bar .social-share-list i{
	margin-right: 3px;
}

#social-bar .social-share-list [class*='btn-']{
	transition: background-color .25s ease; 
	background-color: #fff;
	width: 95%;
}

@media(max-width: 768px){
	#social-bar .social-share-list [class*='btn-']{
		margin-top:5px;
	}
	
	#social-bar .social-share-list [class*='col-']{
		text-align: center;
	}
}

@media(max-width: 556px){
	#social-bar .social-share-list [class*='btn-']{
		margin-top:5px;
		width: 100%;
	}
}

#social-bar .btn-twitter {
	color: #00acee;
	border-color: #00acee;
}

#social-bar .btn-twitter:hover {
	color: #fff;
    background-color: #00acee;
    border-color: #00acee;
}

#social-bar .btn-facebook {
	color: #3b5998;
	border-color: #3b5998;
}

#social-bar .btn-facebook:hover {
	color: #fff;
    background-color: #3b5998;
    border-color: #3b5998;
}

#social-bar .btn-googleplus {
	color: #e93f2e;
	border-color: #e93f2e;
}

#social-bar .btn-googleplus:hover {
	color: #fff;
    background-color: #e93f2e;
    border-color: #e93f2e;
}

#social-bar .btn-stumbleupon {
	color: #f74425;
	border-color: #f74425;
}

#social-bar .btn-stumbleupon:hover {
	color: #fff;
    background-color: #f74425;
    border-color: #f74425;
}

#social-bar .btn-linkedin {
	color: #0e76a8;
	border-color: #0e76a8;
}

#social-bar .btn-linkedin:hover {
	color: #fff;
    background-color: #0e76a8;
    border-color: #0e76a8;
}

/*---------------------------------------
   Fontello
-----------------------------------------*/

@font-face {
  font-family: 'fontello';
  src: url('../font/fontello.eot?91848379');
  src: url('../font/fontello.eot?91848379#iefix') format('embedded-opentype'),
       url('../font/fontello.woff?91848379') format('woff'),
       url('../font/fontello.ttf?91848379') format('truetype'),
       url('../font/fontello.svg?91848379#fontello') format('svg');
  font-weight: normal;
  font-style: normal;
}

[class^="icon-"]:before, [class*=" icon-"]:before {
  font-family: "fontello";
  font-style: normal;
  font-weight: normal;
  speak: none;

  display: inline-block;
  text-decoration: inherit;
  text-align: center;
  /* opacity: .8; */

  /* For safety - reset parent styles, that can break glyph codes*/
  font-variant: normal;
  text-transform: none;

  /* fix buttons height, for twitter bootstrap */

  /* Animation center compensation - margins should be symmetric */
  /* remove if not needed */
  margin-left: .2em;

  /* you can be more comfortable with increased icons size */
  /* font-size: 120%; */

  /* Uncomment for 3D effect */
  /* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */
}

.icon-footer-arrow:before { content: '\e800'; }

.fancybox-overlay{background: rgba(0,0,0,0.9);}

.fancybox-close:after, .fancybox-prev span:before,.fancybox-next span:before {
	position: absolute; top: -1.25rem; color: #fff; font-family: "fontello"; font-size: 3.5rem; content: '';
}

.fancybox-next span:before{content: '\e800';}
.fancybox-prev span:before{content: '\e801';}
.fancybox-prev{left: 20px;}
.fancybox-prev span{left: 0;}
.fancybox-next{right: 40px;}
.fancybox-next span{right: 0;}
.fancybox-close, .fancybox-prev span, .fancybox-next span{background: transparent !important;}
.fancybox-close {position: absolute; top: 30px; right: 20px; width: 36px; height: 36px; cursor: pointer; z-index: 8040;}
.fancybox-close:after{content: '\E802'; font-size: 15px;}
.fancybox-nav{position: fixed; padding: 0 20px; width: auto;}
.fancybox-nav span{visibility: visible; position: relative;}


.article-nav{overflow: hidden; display: table; width: 100%; margin-top: 18px;}
.article-nav > article{overflow: hidden; display: table-row;}
.article-nav > article > div{display: table-cell; vertical-align: middle; width: 45%; position: relative;}
.article-nav > article > div a em{position: absolute; top: 50%; margin-top: -8px;}
.article-nav > article > div span{display: block; color: #bbb; font-size: 13px;}
.article-nav > article > div:first-child{padding-left: 22px;}
.article-nav > article > div:first-child a em{left: 0;}
.article-nav > article > div:last-child{padding-right: 22px;}
.article-nav > article > div:last-child a em{right: 0;}
.article-nav > article > div.sep{width: 10%;}

#main article li{list-style: disc; list-style-position: inside;}

#holder-frm-contacts > h2{margin: 0 0 22px;}
#frm-contacts > .form-group{margin-bottom: 28px;}
#frm-contacts > .form-group textarea{height: 200px;}
#frm-contacts > .form-actions .btn-submit{background-color: #ccc; color: #fff;}
form .alert{display: none;}
#frm-contacts .holder-address{}
#holder-frm-contacts .holder-address address{display: table;}
#holder-frm-contacts .holder-address address > div{display: table-row;}
#holder-frm-contacts .holder-address address > div > article {display: table-cell; vertical-align: top; padding-bottom: 16px;}
#holder-frm-contacts .holder-address address > div > article:first-child{width: 32px;}
#holder-frm-contacts .holder-address address em{color: #309F91; font-size: 18px;}

#footer .alert{padding: 4px 8px; -webkit-border-radius: 0; -moz-border-radius: 0; border-radius: 0; margin-bottom: 0}