/***************************************************************
    @Project: Refollow V3
    @Description: Stylesheet for Global
    @Author: Vera Shen
    @Date: 2013/05/07
****************************************************************/

html {
    background-color: #FFFFFF;
}
body {
    color: #434343;
    font-size:14px;
    font-weight: 400;
    /*The fixed navbar(menubar) will overlay your other content, unless you add padding to the top of the <body>*/
    padding-top: 65px;
    overscroll-behavior: contain;
}

html, body, input, select, textarea, pre {
    font-family: "Open Sans", "Trebuchet MS","Source Sans Pro",Arial,Helvetica,sans-serif,"Microsoft YaHei";
}
pre {
    white-space: pre-wrap; 
    white-space: -moz-pre-wrap; 
    white-space: -pre-wrap; 
    white-space: -o-pre-wrap;
    word-wrap: break-word;
    vertical-align:middle;
}
 h3 {
    color: #444444;
    font-size: 20px;
    font-weight: 600;
    line-height: 27px;
    margin-bottom: 20px;
}
img {
    vertical-align: middle;
}
a {
    text-decoration: none;
    color: #434343;
    cursor: pointer;
}
a:hover {
    text-decoration: none;
    /* color: inherit; */
}
.float-left {
    float:left;
}
.float-right {
    float:right;
}
.float-center {
    margin-right: auto;
    margin-left: auto;
}
.text-blue {
    color: #4A90E2;
}
.text-red {
    color: #d0031b;
}
.text-green {
    color: #6ABA0D;
}
.text-black {
    color: #636363;
}
.text-gray {
    color: #979797;
}

.text-white {
    color: #ffffff;
}
.text-inactive-gray {
    color: #eae8e8;
}
.text-bold {
    font-weight:bold;
}
.text-center {
    text-align: center;
}
.clickable {
    cursor:pointer;
}
.dropdown-toggle {
    position:relative;
}
.dropdown-menu {
    display:none;
    position:absolute;
    background: #fff;
    line-height: 23px;
    z-index: 1000;
}
a.dropdown-toggle:hover .dropdown-menu {
    display:block;
}
.dropdown-arrow {
    background: transparent url("/public/images/icon-arrow-gray.png") no-repeat scroll 0 0;
    height: 19px;
    position: absolute;
    width: 36px;
}
.dropdown-content {
    padding: 15px;
}
.dropdown-text {
    padding: 0 10px 0 5px;
}

/* footer */
.footer {
    padding: 30px 0;
    text-align:center;
    font-size: 12px;
    line-height: 17px;
    color: #000;
}
.footer a:hover {
    color:#4A90E2;
}
.footer-logo {
    font-family: Montserrat;
    font-size: 15px;
    color: #343434;
    letter-spacing: 1.25px;
}
.refollow-social {
    margin-bottom: 3px;
}


/* clearfix */
.clearfix:after{
    content: ".";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
}
.clearfix{
    display:inline-table;
}
*html .clearfix{
    height:1%;
}
.clearfix{
    display:block;
}

@media only screen and (max-width: 600px) {
	.footer {
	    padding: 25px 10px;
	    font-size: 16px;
	    line-height: 25px;
	}
	
	.footer-logo {
	    font-size: 20px;
	    margin-left: 4%;
	}
}