/* 
    Document   : style
    Created on : May 24, 2013, 6:54:32 PM
    Author     : srijan
    Description:
        Purpose of the stylesheet follows.
*/
@-moz-viewport{ width:device-width }
@-ms-viewport{ width:device-width }
@-o-viewport{ width:device-width }
@-webkit-viewport{ width:device-width }
@viewport{ width:device-width }
root { 
    display: block;
}
body{
/*    font-family: helvetica,arial,sans-serif;*/
    font:76% Verdana, Arial, Helvetica, sans-serif;
    width: 100%;
    color: #111;
    margin: 0px;
    overflow-x: auto;
    zoom: 1;
}
::selection {
	background: #F7D358; /* Safari */
	}
::-moz-selection {
	background: #F7D358; /* Firefox */
}
:focus {outline:none;}
::-moz-focus-inner {border:0;}

/*******Basic HTML element style**********/
p, .post-content{
    text-align: justify;
    line-height: 180%;
    word-wrap:break-word;
}
div{
    font-size: 100%;
    line-height: 150%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
img{
    vertical-align: middle;
    border: none;
}
a{
    text-decoration: none;
    line-height: 150%;
    font-size: 100%;
    color: #333;
    cursor: pointer;
}
a:hover{
    text-decoration: underline;
    color: #B40404;
}
H1{
    font-size: 250%;
}
H2{
    font-size: 201%;
}
H3{
    font-size: 174%;
}
H4{
    font-size: 150%;
}
H5{
    font-size: 125%;
}
H1, H2, H3, H4, H5{
    line-height: 180%;
    margin: 1px 0;
}
H2, h3, h4, h5{
    font-weight: normal;
}

textarea{
    outline: none;
    resize:none;
    overflow:auto;
    box-shadow: inset  3px 3px 10px 0.8px #CCC;
    -webkit-box-shadow:inset  3px 3px 10px 0.8px #CCC;
    -moz-box-shadow:inset 3px 3px 10px 0.8px #CCC;
    border-radius:5px;
    border: 1px solid #888;
    padding:5px;
    font-family: inherit;
    color: #444;
    width: 100%;
    margin: 5px 0px;
}
form{
    margin: 0px;
}
input[type="text"], input[type="password"], input[type="email"]{
    border-radius:4px;
    border: 1px solid #ddd;
    padding: 5px;
    background: #f8f8f8;
    background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#fff), to(#f1f1f1));
    background: -webkit-linear-gradient(top, #fff, #f1f1f1);
    background: -moz-linear-gradient(top, #fff, #f8f8f8);
    background: -ms-linear-gradient(top, #fff, #f8f8f8);
    background: -o-linear-gradient(top, #fff, #f8f8f8);
}
input[type="text"]:focus, input[type="password"]:focus, input[type="email"]:focus{
    background: #fcfcfc;
    border: 1px solid #FACC2E;
}
input[type="submit"], button{
    box-shadow: 1px 1px 3px #ccc;
    background: #DF0101;
    background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#DF0101), to(#8A0808));
    background: -webkit-linear-gradient(top, #DF0101, #8A0808);
    background: -moz-linear-gradient(top, #DF0101, #8A0808);
    background: -ms-linear-gradient(top, #DF0101, #8A0808);
    background: -o-linear-gradient(top, #DF0101, #8A0808);
    border: 1px solid #8A0808;
    border-radius: 5px;
    padding: 5px 15px;
    color: #eee;
    cursor: pointer;
    opacity: 0.9;
}
input[type="submit"]:hover, button:hover{
    box-shadow: 1px 1px 6px #444;
    background: #DF0101;
    background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#FE2E2E), to(#8A0808));
    background: -webkit-linear-gradient(top, #FE2E2E, #8A0808);
    background: -moz-linear-gradient(top, #FE2E2E, #8A0808);
    background: -ms-linear-gradient(top, #FE2E2E, #8A0808);
    background: -o-linear-gradient(top, #FE2E2E, #8A0808);
    border: 1px solid #8A0808;
    border-radius: 5px;
    padding: 5px 15px;
    color: #fff;
}
select{
    padding: 5px 2px;
    border-radius: 3px;
    border: 1px solid #ccc;
}

/*********Utility************/
.size-80{font-size: 80%}
.size-100{font-size: 100%}
.size-120{font-size: 120%}
.size-150{font-size: 150%}
.size-180{font-size: 180%}
.size-200{font-size: 200%}
.size-250{font-size: 250%}
.size-300{font-size: 300%}
.w-10{
    width: 10%;
}
.w-20{
    width: 20%;
}
.w-30{
    width: 30%;
}
.w-40{
    width: 40%;
}
.w-50{
    width: 50%;
}
.w-60{
    width: 60%;
}
.w-70{
    width: 70%;
}
.w-80{
    width: 80%;
}
.w-90{
    width: 90%;
}
.w-100{
    width: 100%;
    max-width: 1080px;
    margin-left: auto;
    margin-right: auto;
}


.c-red{
    color: #B40404;
}
.c-grey{
    color: #666;
}
.c-marron{
    color: #B40404;
}
.c-yellow{
    color: #DBA901;
}
.ptb5{
    padding-top: 5px;
    padding-bottom: 5px;
}
.p10{
    padding: 10px;
}
.pt10{
    padding-top: 10px;
}
.ptb10{
    padding-top: 10px;
    padding-bottom: 10px;
}
.p5{
    padding: 5px;
}
.p5p{
    padding: 5px 2%;
}
.p1{
    padding: 1%;
}
.plr10{
    padding-left: 10px;
    padding-right: 10px;
}
.m20{
    margin: 20px;
}
.p20{
    padding: 20px;
}
.tiny-text{
    font-size: 80%;
}
.txt-align-c{
    text-align: center;
}
.text-align-c{
    text-align: center;
}
.text-align-r{
    text-align: right;
}

.border-b-grey{
    border-bottom: 1px solid #ccc;
}

.border-b-black{
    border-bottom: 1px solid #000;
}
.border-grey{
    border: 1px solid #ccc;
}
.heading{
    color: #b40404;
}

.content{
    box-sizing: border-box;
    width: 100%;
    padding: 10px;
    max-width: 1080px;
    margin: auto;
}
.column{
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding: 10px;
    -moz-background-clip: padding-box;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
}
.nav-col, .small-col, .big-col{
    width: 100%;
    float: none;
}
.stack{
    float: left;
    display: inline;
}
.clear{
    clear: both;
}

.f-sp{
    font-family: "Pro","Garamond,Palatino","Palatino Linotype","Times","Times New Roman","Georgia","serif","Linotype","Times","Times New Roman","Georgia","serif";
}
.f-georgia{
    
}
.f-courier{
    font-family: courier;
}
.header-cont{
    width: 100%;
    border-bottom: 1px solid #000;
    color: #fff;
    box-shadow: 2px 2px 20px #999;
    -moz-box-shadow: 2px 2px 20px #999;
    -webkit-box-shadow: 2px 2px 20px #999;
    z-index: 100;
}
.fixer{
    position: fixed;
}
.header-cont a{
    color: #fff; 
}
.header-links{
    float: left;
    width: 25%;
    padding-top: 5px;
    padding-bottom: 5px;
}
.profile-link{
    float: left;
    padding: 5px 5px 5px 0px;
}
.nav-link{
    float: right;
    width: 5%;
    max-width: 40px;
    padding: 5px 0px;
    cursor: pointer;
}
.right{
    float: right;
}
.right_rsp{
    float: left;
}
.left{
    float: left;
}
.bold{
    font-weight: bold;
}
.pointer{
    cursor: pointer;
}
.bg-black{
    background: #000;
}
.bg-smoke{
    background: #f6f6f6;
}
.hidden{
    display: none;
}
.shadow-line{
    border-bottom: 1px solid #985858;
}
.button-span{
    padding: 5px 10px;
    margin: 3px 3px 3px 0px;
    background: #F7D358;
    border-radius: 5px;
    border: 1px solid #BFA411;
    color: #000;
    font-weight: bold;
    box-shadow: 1px 1px 3px #aaa;
    cursor: pointer;
    max-width: 150px;
}
.button-span:hover{
    box-shadow: 1px 1px 3px #000;
}
.button-span:active{
    box-shadow: 0px 0px 10px #999;
}
.button-span-clicked{
    box-shadow: 0px 0px 10px #999 !important;
    cursor: auto !important;
}
.button-span-black{
    padding: 5px 10px;
    margin: 3px 3px 3px 0px;
    border-radius: 5px;
    border: 1px solid #222;
    color: #eee;
    font-weight: bold;
    box-shadow: 1px 1px 10px #aaa;
    background: #444;
    background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#666), to(#222));
    background: -webkit-linear-gradient(top, #666, #222);
    background: -moz-linear-gradient(top, #666, #222);
    background: -ms-linear-gradient(top, #666, #222);
    background: -o-linear-gradient(top, #666, #222);
}
.button-span-black:hover{
    box-shadow: 1px 1px 3px #000;
    color:#fff;
}
.button-span-black:active{
    box-shadow: 0px 0px 10px #ccc;
    color: #AAA;
}
.button-span-green{
    padding: 5px 10px;
    margin: 3px 3px 3px 0px;
    border-radius: 5px;
    border: 1px solid #B18904;
    color: #111;
    font-weight: bold;
    box-shadow: 1px 1px 10px #aaa;
    background: #F7D358;
    background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#F7D358), to(#B18904));
    background: -webkit-linear-gradient(top, #F7D358, #B18904);
    background: -moz-linear-gradient(top, #F7D358, #B18904);
    background: -ms-linear-gradient(top, #F7D358, #B18904);
    background: -o-linear-gradient(top, #F7D358, #B18904);
    cursor: pointer;
    max-width: 150px;
}
.button-span-green:hover{
    box-shadow: 1px 1px 3px #000;
    background: #FE2E2E;
    background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#FE2E2E), to(#8A0808));
    background: -webkit-linear-gradient(top, #FE2E2E, #8A0808);
    background: -moz-linear-gradient(top, #FE2E2E, #8A0808);
    background: -ms-linear-gradient(top, #FE2E2E, #8A0808);
    background: -o-linear-gradient(top, #FE2E2E, #8A0808);
    border: 1px solid #8A0808;
    color: #eee;
}
.button-span-green:active{
    box-shadow: 0px 0px 10px #ccc;
}
.poll-form{
    padding: 10px 5px;
    background-color:#fbfbf7;
    border:1px solid #aaa;
    border-radius: 4px;
    box-shadow: 5px 5px 13px 0.9px #ccc;
}
.comment-div{
    background-color: whiteSmoke;
    padding: 5px 10px;
    margin: 10px 0px;
    border-top-left-radius:5px;
    border-top-right-radius:5px;
    border-bottom-left-radius:5px;
    border-bottom-right-radius:5px;
    text-align: justify;
    box-shadow: -2px 1px 5px 0.2px #999;
    -webkit-box-shadow:  -2px 1px 5px 0.2px #999999;
    -moz-box-shadow:  -2px 1px 5px 0.2px #999999;
}
.notification-box{
    width: 100%;
    max-width:475px;
    position: absolute;
    background:#fff;
    z-index:100;
    margin-top: 10px;
    border:1px solid #ddd;
    color: #000;
    font-size:0.9em;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    box-shadow: 1px 1px 5px #ddd;
}
#notification-content, #msg-notification-content{
    max-height: 500px;
    overflow: auto;
}
.n_div{
    border-bottom: 1px solid #eee;
    text-align: left;
    padding: 10px;
}
.n_div:hover{
    background: #FAFAFA;
}
.css-time{
    text-align: right;
    font-size: 0.9em;
    color: #888;
}
.notification-box a{
    font-size:1.1em;
    color:#333;
    font-weight: bold;
}
#header-notification-link:hover{
    text-decoration: none;
    color: #fff;
}
.unseen{background:#eee;}
#notificatio-count-span{
    color: #FF0000;
}
.stumble{
    background: none repeat scroll 0 0 #B40404;
    background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#8A0808), to(#B40404));
    background: -webkit-linear-gradient(top, #8A0808, #B40404);
    background: -moz-linear-gradient(top, #8A0808, #B40404);
    background: -ms-linear-gradient(top, #8A0808, #B40404);
    background: -o-linear-gradient(top, #8A0808, #B40404);
    border-radius: 5px;
    bottom: 0;
    color: #FFFFFF;
    font-weight: bold;
    padding: 5px 10px;
    margin: 2px;
}
.stumble:hover{
    color: #fff;
    text-decoration: none;
}
.stumble:hover{
    background: none repeat scroll 0 0 #B40404;
    background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#B40404), to(#8A0808));
    background: -webkit-linear-gradient(top, #B40404, #8A0808);
    background: -moz-linear-gradient(top, #B40404, #8A0808);
    background: -ms-linear-gradient(top, #B40404, #8A0808);
    background: -o-linear-gradient(top, #B40404, #8A0808);
}
#dialog-bg{
    position:fixed;
    width:100%;
    height:100%;
    top:0px;
    left:0px;
    background: #000;
    opacity:0.7;
}
#dialog-container{
    background:#fff;
    min-height:200px;
    min-width: 200px;
    position:absolute;
    top: 300px;
    left: 400px;
    color: #111;
    padding: 10px;
    border:1px solid #000;
    border-radius: 5px;
}
#dialog-title{
    background: #333;
    color: #fff;
    padding: 5px;
    margin: 5px;
    border: 1px solid #666;
    border-radius: 3px;
}
#dialog-body{
    padding: 5px;
    margin:5px;
}
#photoimg{
    padding: 4px;
    background: #fbfbf7;
    border: 1px solid #000;
}
.dialog-submit-button{
    cursor: pointer;
    background: #444;
    color: #fff;
    padding: 4px 15px 4px 15px;
    margin: 5px;
    border-radius: 3px;
    border: 1px solid #222;
}
.dialog-submit-button:hover{
    color: #eee;
    background: #000;
}
.dialog-close-button{
    color:#fff;
    width: 20px;
    padding: 5px;
    cursor:pointer;
}
.action-button{
    padding: 5px 15px 5px 15px ;
    background: #414141;
    margin: 5px 0px 5px 0px;
    border-radius: 5px;
    border: 1px solid #414141;
    color: #fff;
    cursor: pointer;
    min-width: 120px;
}
.action-button:hover{
    box-shadow: 1px 1px 3px #999;
    border: 1px solid #000;
    background: #333;
}
.action-button:active{
    box-shadow: 1px 1px 3px #000;
}
.videoWrap {
	position: relative;
	padding-bottom: 56.25%; /* 16:9 */
	padding-top: 25px;
	height: 0;
    width: 100%;
    line-height: 180%;
}
.videoWrap iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.label-span{
    background: #ECC74A;
    border: #BA920E;
    padding: 3px 10px 3px 10px;
    margin: 0 5px 0 5px;
    border-radius: 5px;
}
/* Smartphones (portrait and landscape) ----------- */
@media only screen 
and (min-device-width : 320px) 
and (max-device-width : 480px) {
/* Styles */
    .column{
        float: none;
        padding: 2px 5px;
    }
    .one, .two, .three, .four{
        width: 100%;
    }
    .five, .six, .seven, .eight{
        width: 100%;
    }
}

/* Smartphones (landscape) ----------- */
@media only screen 
and (min-width : 321px) {
/* Styles */
    .column{
        float: none;
        padding: 2px 5px;
    }
    .notification-box{
        left: 5px;
        width: 98%;
        margin-left: 0px;
    }
    .one, .two, .three, .four{
        width: 100%;
    }
    .five, .six, .seven, .eight{
        width: 100%;
    }
}

/* Smartphones (portrait) ----------- */
@media only screen 
and (max-width : 320px) {
/* Styles */
    .column{
        float: none;
        padding: 5px;
    }
    .one, .two, .three, .four{
        width: 100%;
    }
    .five, .six, .seven, .eight{
        width: 100%;
    }
}

/* iPads (portrait and landscape) ----------- */
@media only screen 
and (min-device-width : 768px) 
and (max-device-width : 1024px) {
/* Styles */
    .column{
        float: left;
        padding: 10px;
    }
    .small-col{
        width: 27%;
    }
    .big-col{
        width: 73%;
    }
    .header-links{
        float: left;
        width: 20%;
    }
    .one, .two, .three, .four{
        width: 50%;
    }
    .five, .six, .seven, .eight{
        width: 100%;
    }
    .notification-box{
        width: 98%;
        margin-left: -100px;
    }
}

/* iPads (landscape) ----------- */
@media only screen 
and (min-device-width : 768px) 
and (max-device-width : 1024px) 
and (orientation : landscape) {
/* Styles */
    .header-links{
        float: left;
        width: 20%;
    }
    .profile-link{
        float: right;
        width: 20%;
    }
    .profile-link a{
        
    }
    .right_rsp{
        float: right;
    }
}

/* iPads (portrait) ----------- */
@media only screen 
and (min-device-width : 768px) 
and (max-device-width : 1024px) 
and (orientation : portrait) {
/* Styles */
    .header-links{
        float: left;
        width: 20%;
    }
    .profile-link{
        float: right;
        
    }
    .profile-link a{
        
    }
    .row{
        margin-left: -10px;
    }
    .right_rsp{
        float: right;
    }
}

/* Desktops and laptops ----------- */
@media only screen 
and (min-width : 768px) {
/* Styles */
    .column{
        float: left;
        padding: 10px;
    }
    .small-col{
        width: 27%;
    }
    .big-col{
        width: 73%;
    }
    .header-links{
        float: left;
        width: 20%;
    }
    .profile-link{
        float: right;
        
    }
    .profile-link a{
        
    }
    .one{
        width: 12.5%;
    }
    .two{
        width: 25%;
    }
    .three{
        width: 37.5%
    }
    .four{
        width: 50%;
    }
    .five{
        width: 62.5%;
    }
    .six{
        width: 75%;
    }
    .seven{
        width: 87.5%;
    }
    .eight{
        width: 100%;
    }
    .notification-box{
        left: auto;
        margin-left: -200px;
    }
    .stumble{
        position: fixed;
        right: 0px;
        bottom: 0px;
    }
    .row{
        margin-left: -10px;
    }
    .right_rsp{
        float: right;
    }
}
@media only screen 
and (min-width : 960px) {
/* Styles */
    .column{
        float: left;
    }
    .small-col{
        width: 27%;
    }
    .big-col{
        width: 73%;
    }
    .stack{
        width: 100%;
        float: none;
    }
    .header-links{
        float: left;
        width: 10%;
    }
    .row{
        margin-left: -10px;
    }
    .right_rsp{
        float: right;
    }
    
}

/* Large screens ----------- */
@media only screen 
and (min-width : 1824px) {
/* Styles */
    .column{
        float: left;
    }
    .small-col{
        width: 25%;
    }
    .big-col{
        width: 75%;
    }
    .header-links{
        float: left;
        width: 10%;
    }
    .profile-link{
        float: right;
        
    }
    .profile-link a{
        float: right;
    }
    .row{
        margin-left: -10px;
    }
    .right_rsp{
        float: right;
    }
}

/* iPhone 4 ----------- */
@media
only screen and (-webkit-min-device-pixel-ratio : 1.5),
only screen and (min-device-pixel-ratio : 1.5) {
/* Styles */
    body{
        font-size: 125%;
    }
}
@media 
(-webkit-min-device-pixel-ratio: 2), 
(min-resolution: 192dpi) { 
    /* Retina-specific stuff here */
    body{
        font-size: 125%;
    }
}
.plr5{
    padding-left: 5px;
    padding-right: 5px;
}
.m5{
    margin: 5px;
}
.col{
    float: left;
}
.f-georgia{
    font-family: georgia;
}
.br-6{
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;
}
.fun-facts{
    text-align: center;
    box-shadow: 0px 0px 4px #ddd;
}
.fun-facts h1{
    font-size: 400%;
/*    color: #F1B26B;*/
    color: #d39043;
    
}
.fun-facts h4{
    color: #58704E;
}
.stats-boxes{
    margin: 10px;
    border-bottom: 1px solid #ccc;
    width: 100px;
}
.p-book-cont{
    height: 220px;
    width: 1000px;
    overflow-y: hidden;
    background: #fff;
    padding: 0px 5px 0 0;
}
.p-book-cont-cont{
    overflow-x: hidden;
    position: relative;
}
.p-book-cont-cont h5{
    font-weight: bold;
}
.right-arrow, .left-arrow{
    position: absolute;
    top: 110px;
    opacity: 0.8;
}
.right-arrow:hover, .left-arrow:hover{
    opacity: 1;
}
.left-arrow{
    left: -8px;
}
.right-arrow{
    right: -7px;
}
.main-panel{
    
}
.post-feed{
    box-shadow: 1px 1px 3px #aaa;
    margin: 10px 0px;
    padding: 0 5%;
}
.post-feed img{
    display: block;
    padding: 5px 10px 5px 0px;
}
.fix-w-200{
    width: 200px;
}
.fix-w-150{
    width: 150px;
}
.fix-w-120{
    width: 120px;
}
.announcement-bar{
    background: #F5DA81;
    padding: 5px 20px;
    color: #000;
}
.hide-announcement a, .announcement-bar a{
    color: #B40404;
    font-weight: bold;
}