body {
	background-color: #000000; /* Fallback for older browsers */
	background-color: rgba(0, 0, 0, 0.75); /* Modern browsers with transparency */
}
.col-sm-10 {
	background-color: #ffffff;
}

#Side_Menu a{
	color: #9fb1c2;
	padding: 10px;
	font-weight: bold;
}
#Side_Menu a:hover {
	color: #000;
}

.FieldInfo{
	    color: #666;
		font-family:  Arial;
		font-size: 15px;
}
.navbar-nav li{
	font-weight: bold;
	font-family: Bitter,Georgia,"Times New Roman",Times,serif;
	font-size: 1.2em;
}
.Line {	
	margin-top: -20px;
}
body {
	background-color: #ffffff;
	
	
}

#Side_Menu a{
	color: #9fblc2;
	padding: 5px;
}
#Side_Menu .active a{
	color: #ffffff;
	background-color: #27AAE1;
	font-weight: bold;
}
#Side_Menu a:hover {
	color: #000;
    background-color: #ffffff;
    border-radius: 10px;
    font-weight: bold;
    display: block;
}
#Footer {
	padding: 10px;
	
	color: #000;
	
	text-align: center;
}
.help-tip{
    position: absolute;
    top: 18px;
    right: 18px;
    text-align: center;
    background-color: #000;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    font-size: 14px;
    line-height: 26px;
    cursor: default;
	z-index: 1;
    margin-left: -300px;
    display: inline-block;	
}

.help-tip:before{
    content:'?';
    font-weight: bold;
    color:#fff;
}

.help-tip:hover p{
    display:block;
    transform-origin: 100% 0%;

    -webkit-animation: fadeIn 0.3s ease-in-out;
    animation: fadeIn 0.3s ease-in-out;

}

.help-tip p{    /* The tooltip */
    display: none;
    text-align: left;
    background-color: #1E2021;
    padding: 20px;
    width: 300px;
    position: absolute;
    border-radius: 3px;
    box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
    right: -4px;
    color: #FFF;
    font-size: 13px;
    line-height: 1.4;
}

.help-tip p:before{ /* The pointer of the tooltip */
    position: absolute;
    content: '';
    width:0;
    height: 0;
    border:6px solid transparent;
    border-bottom-color:#1E2021;
    right:10px;
    top:-12px;
}

.help-tip p:after{ /* Prevents the tooltip from being hidden */
    width:100%;
    height:40px;
    content:'';
    position: absolute;
    top:-40px;
    left:0;
}

/* CSS animation */

@-webkit-keyframes fadeIn {
    0% { 
        opacity:0; 
        transform: scale(0.6);
    }

    100% {
        opacity:100%;
        transform: scale(1);
    }
}

@keyframes fadeIn {
    0% { opacity:0; }
    100% { opacity:100%; }
}