body{
	overflow-x:hidden;
	overflow-y:auto;
	font-size:14px;
}
table{
	font-size:14px;
}
table td{
	padding:3px;
}
table b{
	color:#5193a1;
	font-weight:bold;
}
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3); 
    -webkit-border-radius: 10px;
    border-radius: 10px;
}
::-webkit-scrollbar-thumb {
    -webkit-border-radius: 10px;
    border-radius: 10px;
    background: #5193a1; 
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.5); 
}
::-webkit-scrollbar-thumb:window-inactive {
	background: rgba(255,0,0,0.4); 
}

/* DIV STYLING */
.avatar img{
	width:40%;
}
.justify{
	text-align:justify;
}
.centered{
	text-align:center;
}
.bordered{
	border:1px solid #ccc;
	border-radius:3px;
	-moz-border-radius:3px;
	-webkit-border-radius:3px;
}
#content{
	padding:20px;
	background:#fff;
	box-shadow: 0px 0px 3px #ccc;
	-webkit-box-shadow: 0px 0px 3px #ccc;
	-moz-box-shadow: 0px 0px 3px #ccc;
}
#sidebar{
	padding:20px 14px;
	background:#fff;
	box-shadow: 0px 0px 3px #ccc;
	-webkit-box-shadow: 0px 0px 3px #ccc;
	-moz-box-shadow: 0px 0px 3px #ccc;
}
#footer{
	text-align:center;
	margin-top:10px;
	padding:5px;
	background: #fff;
	box-shadow: 0px 0px 3px #ccc;
	-webkit-box-shadow: 0px 0px 3px #ccc;
	-moz-box-shadow: 0px 0px 3px #ccc;
}
.header_img{
	width:100%;
}
.header_img img{
	width:100%;
	padding:8px;
	background:#fff;
	box-shadow: 0px 0px 3px #ccc;
}
.justified{
	text-align:justify;
}
.quotes{
	padding:10px;
	background:#eee;
}
.quotes b{
	color:#5193a1;
}
.md-black{
	color:black;
	font-size:16px;
}
.table-faq{
	font-size:14px;
}
.table-faq td{
	padding:5px;
}
.table-faq .bold{
	font-weight:bold;
}
.lg-red{
	color:#5193a1;
	font-size:20px;
}
.li-number{
	list-style-type:decimal;
}
.zero-padding{
	padding:0;
}
.display-inline{
	display:inline;
}
.align-right{
	text-align:right;
	display:inline-block;
}
.m-padding{
	padding-left:5px;
	padding-right:5px;
	padding-top:0;
	padding-bottom:0;
}
@media only screen and (max-width: 1170px){
	.m-padding{
		padding-left:0;
		padding-right:0;
		padding-top:0;
		padding-bottom:0;
	}
}

/* BACKGROUND */
.bg-ccc{
	background: #eee;
}
.bg-01{
	background:url('../images/bg-01.jpg');
	background-size:cover;
	background-attachment:fixed;
}
.bg-02{
	background:url('../images/bg-02.jpg');
	background-size:cover;
	background-attachment:fixed;
}
.bg-03{
	background:url('../images/bg-03.jpg');
	background-size:cover;
	background-attachment:fixed;
}
.bg-04{
	background:url('../images/bg-05.png');
	background-color:#eee;
	background-repeat:repeat-x;
	background-position:bottom;
	background-attachment:fixed;
}
@media (max-width: 1170px) {
	.bg-01{background-size:100% 1024px;}
	.bg-02{background-size:100% 1024px;}
	.bg-03{background-size:100% 1024px;}
	.bg-04{
		background:url('../images/bg-04.jpg');
		background-attachment:fixed;
	}
}

/* BOX */
.box-title{
	padding:5px 5px;
	font-weight:bold;
	color: #5193a1 /*rgba(0,166,255,1)*/;
	text-transform:uppercase;
	border-bottom:3px solid #5193a1;
}
.box-title-lg{
	font-size:16px;
}
.box-content{
	padding:10px;
}
.box-content-title{
	font-weight:bold;
}
.box-separator{
	margin:10px;
}

/* LIST STYLE */
ol {
    counter-reset: li; /* Initiate a counter */
    list-style: none; /* Remove default numbering */
    *list-style: decimal; /* Keep using default numbering for IE6/7 */
    font: 15px 'trebuchet MS', 'lucida sans';
    padding: 0;
    margin-bottom: 4em;
    text-shadow: 0 1px 0 rgba(255,255,255,.5);
}
ol ol {
    margin: 0 0 0 2em; /* Add some left margin for inner lists */
}
.rectangle-list a{
    position: relative;
    display: block;
    padding: .4em .4em .4em .8em;
    *padding: .4em;
    margin: .5em 0 .5em 2.5em;
    background: #ddd;
    color: #444;
    text-decoration: none;
    transition: all .3s ease-out;   
}
.rectangle-list a:hover{
    background: #eee;
}   
.rectangle-list a:before{
    content: counter(li);
    counter-increment: li;
    position: absolute; 
    left: -2.5em;
    top: 50%;
    margin-top: -1em;
    background: #fa8072;
    height: 2em;
    width: 2em;
    line-height: 2em;
    text-align: center;
    font-weight: bold;
}
.rectangle-list a:after{
    position: absolute; 
    content: '';
    border: .5em solid transparent;
    left: -1em;
    top: 50%;
    margin-top: -.5em;
    transition: all .3s ease-out;               
}
.rectangle-list a:hover:after{
    left: -.5em;
    border-left-color: #fa8072;             
}
.rounded-list a{
    position: relative;
    display: block;
    padding: .4em .4em .4em 2em;
    *padding: .4em;
    margin: .5em 0;
    background: #ddd;
    color: #444;
    text-decoration: none;
    border-radius: .3em;
    transition: all .3s ease-out;   
}
.rounded-list a:hover{
    background: #eee;
}
.rounded-list a:hover:before{
    transform: rotate(360deg);  
}
.rounded-list a:before{
    content: counter(li);
    counter-increment: li;
    position: absolute; 
    left: -1.3em;
    top: 50%;
    margin-top: -1.3em;
    background: #87ceeb;
    height: 2em;
    width: 2em;
    line-height: 2em;
    border: .3em solid #fff;
    text-align: center;
    font-weight: bold;
    border-radius: 2em;
    transition: all .3s ease-out;
}

/* HR STYLING */
hr.one {
    border: 0;
    height: 1px;
    background: #333;
    background-image: -webkit-linear-gradient(left, #ccc, #333, #ccc); 
    background-image:    -moz-linear-gradient(left, #ccc, #333, #ccc); 
    background-image:     -ms-linear-gradient(left, #ccc, #333, #ccc); 
    background-image:      -o-linear-gradient(left, #ccc, #333, #ccc); 
}
hr.two {
    border: 0;
    height: 1px;
    background-image: -webkit-linear-gradient(left, rgba(0,0,0,0), rgba(0,0,0,0.75), rgba(0,0,0,0)); 
    background-image:    -moz-linear-gradient(left, rgba(0,0,0,0), rgba(0,0,0,0.75), rgba(0,0,0,0)); 
    background-image:     -ms-linear-gradient(left, rgba(0,0,0,0), rgba(0,0,0,0.75), rgba(0,0,0,0)); 
    background-image:      -o-linear-gradient(left, rgba(0,0,0,0), rgba(0,0,0,0.75), rgba(0,0,0,0)); 
}
hr.three {
    border: 0;
    border-bottom: 1px dashed #ccc;
    background: #999;
}
hr.four {
    height: 12px;
    border: 0;
    box-shadow: inset 0 12px 12px -12px rgba(0,0,0,0.5);
}
hr.five {
    border: 0;
    height: 0; /* Firefox... */
    box-shadow: 0 0 10px 1px black;
}
hr.five:after {  /* Not really supposed to work, but does */
    content: "\00a0";  /* Prevent margin collapse */
}
hr.six {
    border: 0;
    height: 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}
hr.seven {
    height: 30px;
    border-style: solid;
    border-color: black;
    border-width: 1px 0 0 0;
    border-radius: 20px;
}
hr.seven:before { /* Not really supposed to work, but does */
    display: block;
    content: "";
    height: 30px;
    margin-top: -31px;    
    border-style: solid;
    border-color: black;
    border-width: 0 0 1px 0;
    border-radius: 20px;
}
hr.eight {
    padding: 0;
    border: none;
    border-top: medium double #333;
    color: #333;
    text-align: center;
}
hr.eight:after {
    content: "§";
    display: inline-block;
    position: relative; 
    top: -0.7em;  
    font-size: 1.5em;
    padding: 0 0.25em;
    background: white;
}