/* Reset & Normalize Code */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
}
a,a:hover,a:visited{
    text-decoration: none;
}
a img,a:hover img,a:visited img{
    border: none;
}
html,body{
    height: 100%;
    width: 100%;
    direction: ltr;
}
input,select{
    background: none;
    border: none;
    outline: none;
}
.ltr{
    direction: ltr;
}
.rtl{
    direction: rtl;
}
.display-inline-block{
    display: -moz-inline-stack;
    display: inline-block;
    *display: inline;
    *zoom: 1;
    letter-spacing: normal;
    word-spacing: normal;
    font-size: inherit;
}
.display-block{
    display: block;
}
.display-table{
    display: table;
}
.display-table-row{
    display: table-row;
}
.display-table-cell{
    display: table-cell;
}
.fixed-table-layout{
    table-layout: fixed;
}
.list-style-none{
    list-style: none;
}
.hidden{
    display: none;
}
.white-space-fix{
    font-size: 0px;
}
.text-indent{
    text-indent: -3000px;
}
.vertical-align-top{
    vertical-align: top;
}
.vertical-align-middle{
    vertical-align: middle;
}
.vertical-align-bottom{
    vertical-align: bottom;
}
.clearfix{
    clear: both;
}
.float-left{
    float: left;
}
.float-right{
    float: right;
}
.text-align-right{
    text-align: right;
}
.text-align-left{
    text-align: left;
}
.text-align-center{
    text-align: center;
}
.text-align-justify{
    text-align: justify;
}
.background-repeat-x{
    background-repeat: repeat-x;
}
.background-repeat-y{
    background-repeat: repeat-y;
}
.background-repeat-xy{
    background-repeat: repeat;
}
.background-no-repeat{
    background-repeat: no-repeat;
}
.position-relative{
    position: relative;
}
.position-absolute{
    position: absolute;
}
.wrapper{
    width: 1110px;
    overflow-x: hidden;
    background-color: #FFFFFF;
    margin: 0 auto;
    padding: 0 0;
}
@media only all and (max-width: 1110px){
    .wrapper{
        width: 100%;
    }
}
/* Body */
body{
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    background-color: #F9F9F9;
    color: #33393E;
    font-family: Tahoma, sans-serif;
    font-weight: normal;
    font-size: 14px;
    line-height: 20px;
}
/* letter transform */
.text-transform-uppercase{
    text-transform: uppercase;
}
/* font weights */
.font-weight-normal{
    font-weight: normal;
}
.font-weight-bold{
    font-weight: bold;
}
/* font sizes */
.font-size-note{
    font-family: Tahoma, sans-serif;
    font-size: 12px;
    line-height: normal;
    font-weight: normal;
}
.font-size-body{
    font-family: Tahoma, sans-serif;
    font-size: 14px;
    line-height: 20px;
    font-weight: normal;
}
.font-size-overbody{
    font-family: Tahoma, sans-serif;
    font-size: 16px;
    line-height: 20px;
    font-weight: normal;
}
.font-size-heading{
    font-family: Georgia, sans-serif;
    font-size: 25px;
    line-height: 30px;
    font-weight: normal;
}
.font-size-subheading{
    font-family: Georgia, sans-serif;
    font-size: 20px;
    line-height: 28px;
    font-weight: normal;
}
.font-size-sectionheading{
    font-family: Georgia, sans-serif;
    font-size: 12px;
    line-height: 20px;
    text-transform: uppercase;
    border-bottom: 1px solid #DDDDDD;
    padding-bottom: 9px;
    font-weight: normal;
    letter-spacing: 2px;
}
/* colors */
.color-blue{
    color: #007EB8;
}
.color-gray{
    color: #33393E;
}
.color-lightgray{
    color: #78858D;
}
.color-lightergray{
    color: #EDEDED;
}
.color-lightestgray{
    color: #777777;
}
/* tints */
.tintcolor-blue{
    background-color: #007EB8;
}
.tintcolor-lightblue{
    background-color: #D9ECF4;
}
.tintcolor-lighterblue{
    background-color: #ECF3F6;
}
/* alt colors */
.alt-odd{
    background-color: #D9ECF4;
}
.alt-even{
    background-color: #ECF3F6;
}
/* highlight color */
.highlight-color{
    color: #007EB8;
}
/** UI ELements **/
/** container **/
.container{
    width: 100%;
}
/** header **/
.header{
    padding: 5px 0;
    background-color: #F9F9F9;
}
.header ul li{
    margin-right: 10px;
}
.header ul li span{
    margin-left: 10px;
}
/** Navigation **/
.navigation-container{
    width: 240px;
    background-color: #F0F0F0;
}
.logo{
    height: 135px;
    width: 240px;
    padding: 17px 30px;
    background-color: #FFFFFF;
}
.logo img{
    max-width: 180px;
    max-height: 100px;
}
.navigation-title{
    background-color: #DDDDDD;
    color: #484D51;
    font-size: 14px;
    font-weight: normal;
    text-transform: uppercase;
    padding: 10px 0;
    letter-spacing: 2px;
    font-family: Georgia, sans-serif;
}
.navigation{
    padding: 5px 22px;
}
.navigation li{
    padding-top: 5px;
}
.navigation li a:hover{
    color: #33393E;
}
/** content container **/
.content-container{
    position: relative;
}
@media only all and (max-width: 600px){
    .navigation-container{
        width: 100%;
        display: block;
    }
    .content-container{
        width: 100%;
        display: block;
    }
}
/** banner **/
.banner img{
    width: 100%;
    height: 230px;
}
@media only all and (max-width: 600px){
    .banner{
        display: none;
    }
}
/** main content **/
.main-content{
    padding: 10px;
    padding-bottom: 40px;
}
/** side content **/
.side-content{
    width: 180px;
    padding: 10px;
    padding-bottom: 20px;
}
.side-section{
    width: 160px;
    margin-bottom: 30px;
}
.side-section div{
    padding-top: 5px;
}
.side-section .share-info{
    background-color: #F0F0F0;
    padding: 10px 10px;
}
.side-section .share-code{
    margin-bottom: 5px;
}
.side-section .share-price{
    margin-bottom: 10px;
}
.side-section a{
    margin-bottom: 5px;
}
.side-section .event{
    margin-bottom: 15px;
}
@media only all and (max-width: 780px){
    .container{
        width: 100%;
        display: block;
    }
    .main-content{
        width: 100%;
        display: block;
    }
    .side-content{
        width: 100%;
        display: block;
    }
    .side-section{
        width: 100%;
        display: block;
        margin-bottom: 30px;
    }
}
/** footer **/
.footer{
    border-top: 1px solid #DDDDDD;
    padding: 5px;
    bottom: 0px;
    width: 100%;
}
/** news items **/
.news-item{
    width: 45%;
    padding: 10px;
    margin: 10px;
    margin-top: -10px;
}
.news-item-block{
    width: 100%;
    padding: 0px 10px;
    margin: 0px 0px 20px 0px;
}
.news-item-block a.display-inline-block{
    width: 45%;
    padding-right: 10px;
    margin-right: 10px;
}
.news-item h4{
    margin-bottom: 15px;
}
.news-item h3{
    margin-bottom: 10px;
}
/** selling points **/
.selling-points li{
    padding: 15px;
    width: 30%;
    margin: 5px;
}
.selling-points li h3{
    margin-bottom: 10px;
}
/** placeholders **/
.placeholders li{
    margin: 10px;
    width: 45%;
    padding: 10px;
}
.placeholders li h3{
    margin-bottom: 10px;
}
.view-details{
    background-color: #33393E;
    color: #FFFFFF;
    padding: 2px 30px 2px 5px;
    margin-top: 10px;
}
.view-details:hover{
    background-color: #007EB8;
}
@media only all and (max-width: 900px){
    .placeholders li{
        width: 90%;
    }
    .selling-points li{
        width: 90%;
    }
    .news-item{
        width: 90%;
    }
}
/** pages **/
.page-header{
    margin-top: 10px;
    margin-bottom: 10px;
}
.page-content{
    padding: 10px;
    margin-bottom: 10px;
}
/** tabs **/
.tabs{
    border-bottom: 1px solid #DDDDDD;   
    padding-bottom: 10px;
}
.tabs li{
    margin-right: 10px;
}
.tabs li a{
    padding-bottom: 12px;
    font-size: 14px;
    font-family: Georgia, sans-serif;
    text-transform: capitalize;
    letter-spacing: 1px;
    font-weight: bold;
}
.tabs li a:hover,.tabs li a.active{
    color: #33393E;
}
/** tabular **/
.tab{
    margin-top: 20px;
    border-collapse: collapse;
}
.tab{
    width: 100%;
}
.main-content table{
    display: table;
    width: 100%;
}
.tab tr td, .tab li{
    padding: 5px 10px;
}
/** annual reports **/
#annual-reports li{
    background-color: #F0F0F0;
    width: 200px;
    margin: 10px;
}
#annual-reports li img{
    width: 172px;
    margin: 10px 10px;
}
#annual-reports li span{
    margin: 3px 10px;
}
/** calendar **/
#calendar{
    font-family: Georgia, sans-serif;
}
#calendar .fc-header{
    background-color: #D9ECF4;
    margin-bottom: 20px;
}
#calendar .fc-widget-header{
    border-bottom: 1px solid #007EB8;
    padding-bottom: 10px;
}
#calendar .fc-widget-content{
    color: #78858D;
    border: 1px solid #DDDDDD;
}
#calendar .fc-event-title{
    color: #007EB8;
}
#calendar .fc-button-content{
    cursor: pointer;
    font-size: 20px;
    font-family: Arial, sans-serif;
}
#calendar .fc-event-skin{
    border-bottom: 4px solid #007EB8;
}
#calendar .fc-other-month{
    background-color: #EDEDED;
    color: #FFFFFF;
}
/** chart **/
#chart{
    margin-top: 10px;
    margin-bottom: 20px;
    direction: ltr;
}
/** people **/
.people li{
    padding: 0 20px;
    margin-bottom: 20px;
}
.people-photo{
    width: 100px;
}
.people-photo img{
    width: 80px;
    height: 80px;
    border: 1px solid #DDDDDD;
}
.dividend-padding{
    padding-left: 20px;
    padding-right: 20px;
}
/** custom text **/
.custom-text ul,.custom-text ol {
    margin-left: 40px;
}
.stock-chart{
    width: 100%;
    height: 520px;
}