/*
 * CSS File - Intranet Padrão Template
 * Developed by: Elan Lopes (http://www.elanlopes.com.br)
 * Version: 1.0
 *
 *
 * ----------------------------------------------------------
 * Table of Contents
 * ----------------------------------------------------------
 *
 *  1.0 - Fonts Definitions
 *  2.0 - Main Overrides
 *  3.0 - Bootstrap Overrides
 *    3.1 - Panel
 *    3.2 - Buttons
 *    3.3 - Popover
 *  4.0 - Header Definitions
 *    4.1 - Brand
 *    4.2 - Shortcut Menu
 *  5.0 - Body Definitions
 *    5.1 - Main Features
 *    5.2 - Shortcut Articles
 *    5.3 - Featured New
 *    5.4 - Main Menu Module
 *    5.5 - Pool Module
 *    5.6 - Multimedia Central Module
 *    5.7 - Ramal Search Module
 *    5.8 - Calendar Module
 *    5.9 - Month's Birthdays Module
 *    5.10 - Tips and Curiosities Module
 *  6.0 - Footer Definitions
 *  7.0 - Media Queries
 */

/*======================================================================================================================
* 1.0 - Fonts Definitions
*=====================================================================================================================*/
@font-face {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 300;
    src: local('Open Sans Light'), local('OpenSans-Light'), url('../fonts/OpenSans-Light.ttf') format('truetype');
}
@font-face {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 400;
    src: local('Open Sans'), local('OpenSans'), url('../fonts/OpenSans-Regular.ttf') format('truetype');
}
@font-face {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 600;
    src: local('Open Sans Semibold'), local('OpenSans-Seminbold'), url('../fonts/OpenSans-Semibold.ttf') format('truetype');
}

/*======================================================================================================================
* 2.0 - Main Overrides
*=====================================================================================================================*/
*{
    box-sizing: border-box;
    margin: 0;
}
body {
    background-color: #f5f8fa;
    color: #1e3948;
    font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-size: 14px;
    line-height: 1.6;
}
a, a:active, a:visited {
    color: #64A9A3;
}
a:hover {
    color: #56908C;
    text-decoration: none;
}

/*======================================================================================================================
* 3.0 - Bootstrap Overrides
*=====================================================================================================================*/
/***********************************************************
* 3.1 - Panel
***********************************************************/
.panel {
    margin-bottom: 30px;
}
.panel-default {
    border-color: #D3E0E9;
}
.panel-default .panel-heading {
    font-weight: 600;
    background-color: #FFF;
    border-color: transparent;
}
.panel-default .panel-heading a,
.panel-default .panel-heading a:visited,
.panel-default .panel-heading a:active {
    color: #1E3948;
}
.panel-default .panel-heading a:hover {
    color: #64A9A3;
}
.panel-heading-image {
    border-radius: 4px 4px 0 0;
    height: 150px;
}

/***********************************************************
* 3.2 - Buttons
***********************************************************/
.btn-default {
    color: #64A9A3;
    background-color: #D8E9E8;
    border: none;
}
.btn-default:hover{
    color: #D8E9E8;
    background-color: #64A9A3;
}

/***********************************************************
* 3.3 - Popover
***********************************************************/
.popover {
    background-color: #D8E9E8;
}
.popover-title {
    background-color: #D8E9E8;
    border-bottom-color: #56908C;
    color: #64A9A3;
    font-size: 16px;
    font-weight: bold;
}
.popover.top>.arrow:after {
    border-top-color: #D8E9E8;
}
/*======================================================================================================================
* 4.0 - Header Definitions
*=====================================================================================================================*/
.navbar {
    background-color: #64A9A3;
    border-bottom: solid 1px #56908C;
    border-radius: 0;
    margin: 0 0 30px 0;
}

/***********************************************************
* 4.1 - Brand
***********************************************************/
.navbar-brand {
    color: #FFF;
    float: left;
    font-size: 18px;
    height: 50px;
    padding: 15px 15px;
    line-height: 20px;
}
.navbar-header a,
.navbar-header a:active,
.navbar-header a:visited {
    color: #FFF;
}
.navbar-brand:hover {
    color:#FFF;
}
.navbar-brand img.logo {
    display: inline;
    margin-top: -8px;
}
.navbar-right * {
    float: left;
}

/***********************************************************
* 4.2 - Shortcut Menu
***********************************************************/
.shortcut-menu-icon{
    color: #e0e0e0;
    display: inline-block;
    font-size: 20px;
    margin: 12px 20px 0 20px;
}
.shortcut-menu-icon:hover,
.shortcut-menu-icon:visited {
    color: #FFF;
}
.shortcut-menu {
    background-color: #D3E0E9;
    border-radius: 4px;
    display: none;
    height: auto;
    left: 1033px;
    opacity: 1;
    position: fixed;
    top: 52px;
    transition: all 0.2s ease-out;
    width: 265px;
}
.shortcut-menu:before {
    border: 10px solid transparent;
    border-bottom-color: #56908C;
    content: "";
    display: inline-block;
    height: 0;
    left: 50%;
    margin-left: -10px;
    position: absolute;
    top: -20px;
    width: 0;
}
.shortcut-menu h3 {
    background-color: #56908C;
    color: #FFF;
    display: block;
    font-size: 18px;
    font-weight: bold;
    margin: 0;
    padding: 20px;
}
.shortcut-menu ul {
    list-style: none;
    margin: 0;
    padding: 0 20px;
}
.shortcut-menu ul li a {
    border-bottom: 1px solid #999;
    color: #64A9A3;
    display: block;
    padding: 10px 0 10px 5px;
}
.shortcut-menu ul li a:hover {
    color: #1E3948;
}
.shortcut-menu ul li:last-child a {
    border: none;
}
.search-form input{
    border: 1px solid #56908C;
    border-radius: 4px;
    height: 36px;
    margin: 5px 0 0 0;
    padding: 6px 12px;
    transition: all 0.2s ease-out;
    width: 180px;
}
.portal-link {
    margin: 10px 20px 0 0;
}

/*======================================================================================================================
* 5.0 - Body Definitions
*=====================================================================================================================*/
/***********************************************************
* 5.1 - Main Features Slider
*
* Note: Uses carousel bootstrap component
***********************************************************/
#main-feature {
    margin-bottom: 20px;
}
#main-feature .carousel-inner {
    margin-bottom: 15px;
}
#main-feature .carousel-caption {
    background-color: rgba(86, 144, 140, 0.5);
    bottom: 0;
    left: 0;
    padding: 10px;
    right: 0;
}
#main-feature .carousel-caption h3 {
    font-size: 14px;
    margin: 0;
    text-align: left;
}
#main-feature .carousel-indicators {
    bottom: -35px;
}
#main-feature .carousel-indicators li {
    background-color: #D3E0E9;
    border-color: #D3E0E9;
}
#main-feature .carousel-indicators li.active {
    background-color: #64A9A3;
    border-color: #64A9A3;
}

/***********************************************************
* 5.2 - Shorts Articles
*
* Note: Uses popover bootstrap component
***********************************************************/
.shorts-articles {
    display: block;
    margin-bottom: 20px;
}
.shorts-articles ul {
    list-style: none;
    padding: 0;
}
.shorts-articles ul li {
    display: inline;
}
.shorts-articles ul li a {
    background: #D8E9E8 url("../images/shorts-arrow.png") no-repeat 15px 100px;
    border-radius: 4px;
    display: block;
    float: left;
    line-height: 16px;
    margin-right: 17px;
    padding: 15px;
    width: 122px;
    height: 122px;
}
.shorts-articles ul li:last-child a {
    margin-right: 0;
}
.shorts-articles-viewer {
    position: relative;
    display: block;
}

/***********************************************************
* 5.3 - Featured New
***********************************************************/
.featured-new {
    border-bottom: 1px solid #D3E0E9;
    margin-bottom: 10px;
    padding-bottom: 20px;
}
.featured-new:last-child {
    border-bottom: none;
    padding-bottom: 0;
}
.featured-new h3 {
    color: #56908C;
    font-size: 18px;
    font-weight: bold;
    margin: 0 0 10px 0;
}
.featured-new time {
    color: #AAA;
    display: block;
    font-size: 12px;
    margin-bottom: 10px;
}
.featured-new img {
    margin-bottom: 10px;
}
.featured-new button {
    float: right;
}

/***********************************************************
* 5.4 - Main Menu Module
***********************************************************/
.panel-menu ul{
    list-style: none;
    padding: 0;
    margin:  0;
}
.panel-menu ul li {
}
.panel-menu ul li a {
    border-bottom: 1px solid #D8E9E8;
    display: block;
    padding: 5px 10px;
}
.panel-menu ul li a:hover {
    background-color: #D3E0E9;
}
.panel-menu ul li a span:before {
    color: #333;
    font-size: 10px;
    padding-right: 5px;
}
.panel-menu ul li:last-child a {
    border: none;
}

/***********************************************************
* 5.6 - Pool Module
***********************************************************/

/***********************************************************
* 5.7 - Multimedia Central Module
***********************************************************/
.multimedia-central .panel-body {
    padding: 0;
}
.multimedia-central img {
    border-radius: 4px 4px 0 0;
}
#multcentral ol.carousel-indicators {
    left: 0;
    margin: 0;
    bottom: 0;
    padding: 0;
    position: inherit;
    width: 268px;
}
#multcentral ol.carousel-indicators li {
    border-radius: 0;
    border: none;
    border-right: 1px solid #D8E9E8;
    display: inline-block;
    float: left;
    font-size: 10px;
    height: auto;
    margin: 0;
    padding: 10px 0 10px 0;
    text-indent: 0;
    width: 25%;
}
#multcentral ol.carousel-indicators li:last-child {
    border-right: none;
}
#multcentral ol.carousel-indicators li.active {

}
#multcentral ol.carousel-indicators li span {
    color: #64A9A3;
    display: block;
    font-size: 21px;
    padding-bottom: 10px;
}

/***********************************************************
* 5.8 - Ramal Search Module
***********************************************************/
.ramal-search .panel-heading-image {
    background: url("../images/assets/ramal-header-image.jpg") no-repeat;
}

/***********************************************************
* 5.9 - Calendar Module
***********************************************************/
.calendar .panel-body {
    font-size: 12px;
    padding-top: 0;
}
.calendar a {
    color: #1E3948;
}
.calendar table td {
    text-align: center;
    padding-top: 3px;
    padding-bottom: 3px;
}

/***********************************************************
* 5.10 - Month's Birthdays Module
***********************************************************/
.months-birthdays .panel-heading-image {
    background: url("../images/assets/birthday-header-image.jpg") no-repeat 0 -47px;
}

/***********************************************************
* 5.9 - Tips and Curiosities Module
***********************************************************/
.tips-curiosities .panel-heading-image {
    background-repeat: no-repeat;
}
.tips-curiosities .panel-body {
    padding-top: 0;
}
.tips-curiosities .panel-body h3 {
    color: #64A9A3;
    font-size: 14px;
    margin: 0 0 10px 0;
    padding: 0;
}

/*======================================================================================================================
* 6.0 - Footer Definitions
*=====================================================================================================================*/
footer {
    background-color: #D3E0E9;
    color: #56908C;
    font-size: 12px;
    padding: 15px 15px;
    text-align: center;
}

/*======================================================================================================================
* 7.0 - Media Queries
*=====================================================================================================================*/
@media (min-width: 992px) {
    div.left-col {
        padding-left: 0;
    }
    div.right-col {
        padding-right: 0;
    }
}

a.flatcal_busylink {
	color: #51bdb4;
	font-weight: bold;
}

span.highlight {
	background: #9BCC56; color: #fff; padding:0 3px;
}

.ramal-search .panel-heading-image {
	background-size:contain;
	background-position:center;
}

p.readmore a {
	white-space:inherit;
}

.pull-left.item-image {
	margin-right: 15px;
}

.pull-left.item-image img {
	width: 100%;
}

.article-page figure.intro {
	text-align: center;
	margin: 20px 0;
}


/* +++++++++++++++++++++++ pagenav +++++++++++++++++++++++  */
.pagenav {
	text-align: right
}

.pagenav ul {
	display: inline-block;
	*display: inline;
	/* IE7 inline-block hack */
	list-style-type: none;
	margin-left: 0;
	margin-bottom: 0;
}

.pagenav li {
	display: inline;
	margin: 0px;
	padding: 0
}

.pagenav a,span.pagenav {
	padding: 0 14px;
	margin: 0;
	line-height: 1.9em;
	text-decoration: none;
	border: 1px solid #ddd;
	border-left: 0px solid #ddd;
	display: inline-block;
	line-height: 1.9em;
}

.pagenav li:first-child a,.pagination-start span {
	-webkit-border-radius: 3px 0 0 3px;
	-moz-border-radius: 3px 0 0 3px;
	border-radius: 3px 0 0 3px;
	border-left: solid 1px #ddd
}

.pagenav li:last-child a,.pagination-end span {
	-webkit-border-radius: 0 3px 3px 0;
	-moz-border-radius: 0 3px 3px 0;
	border-radius: 0 3px 3px 0;
}

.pagination {
	width: 100%;
}

.pagination p.counter {
	margin-top: 10px;
}

.pagination ul {
	margin: 10px 10px 10px 0;
	padding: 0
}

.pagination li {
	display: inline;
}

.pagination a {
	padding: 0 14px;
	line-height: 2em;
	text-decoration: none;
	border: 1px solid #ddd;
	border-left: 0px solid #ddd;
	display: inline-block
}

.pagination .active a {
	cursor: default;
}

.pagination span,.pagination span  a:hover {
	cursor: default;
	padding: 0 14px;
	line-height: 2em;
}

.pagination li:first-child a {
	border-left-width: 1px;
	-webkit-border-radius: 3px 0 0 3px;
	-moz-border-radius: 3px 0 0 3px;
	border-radius: 3px 0 0 3px;
}

.pagination li:last-child a {
	-webkit-border-radius: 0 3px 3px 0;
	-moz-border-radius: 0 3px 3px 0;
	border-radius: 0 3px 3px 0;
}

#searchForm {
	margin: 40px 0;
}

#searchForm div.btn-toolbar .btn-group {
	width: 100%;
	position: relative;
}

#searchForm div.btn-toolbar .btn {
	float: right;
}

#searchForm .limit-detail {
	text-align: right;
}

#searchForm div.btn-toolbar .inputbox {
	height: 34px;
	padding: 0 90px 0 10px;
	width: 100%;
	position: absolute;
    border-radius: 5px;
    border: 1px solid #ccc;
}

#searchForm div.searchintro {
	text-align: right;
}

#searchForm .form-limit,
#searchForm .counter {
	float: left;
}
#searchForm .form-limit {
	margin-right: 20px;
}

#searchForm .counter {
	clear: right;
}

.article-page img { max-width: 100%; }

.clear { clear: both; }

.form-horizontal .control-label { text-align: left; } 

#myCarousel .carousel-inner .item img { height: 250px !important; margin: 0 auto; }


#galeria-feature h2 {
    margin-bottom: 1.2em;
    padding-bottom: 0;
    padding-left: 1.2em;
    padding-right: 1.2em;
    padding-top: 0;
    color: #929292;
    font-size: 1.15em;
    font-weight: normal;
    letter-spacing: -0.01em;
    line-height: 1.2em;
}

#galeria-feature .imagens-destaque {
    padding-bottom: 40px;
    padding-left: 48px;
    padding-right: 48px;
    padding-top: 24px;
}

#galeria-feature .imagem-wrapper {
    border: 1px solid #CCC;
    border-radius: 6px;
    box-shadow: 0 0 6px rgba(0,0,0,0.25);
    width: 240px;
    height: 288px;
    float: left;
    margin: 8px 12px 16px;
    overflow: hidden;
    position: relative;
    height: 180px;
    border-bottom: 4px solid #64A9A4;
}

.video-link{
    float: left;
    margin-right: 15px;
}

.item-image{
    width: 100%;
    max-height: 180px;
    overflow: hidden;
}
.item-image img{
    width: 100%;
}