@charset "utf-8";
/*
 =====================================================================================================
 
    @VERSION			: 1.0.0
    @CREATED			: 01 JUL 2014
    @MODIFIED			: 01 JUL 2014
    @DESIGNER			: Daniel C. K. Tan
    
    @FILE				: ~/global/css/login.css
	@TYPE				: Style Sheet
	@DESCRIPTION		: Website Style Sheets
	   
 =====================================================================================================
*/

/* TOC
====================================================================================================
	#1 Base Styles
	#2 Layout Styles
	#3 Helper Styles
	#4 Animation Styles
	#5 CSS3 Styles
*/

/* ----------------------------------------------------------------------------------------------------
   #1 BASE STYLES 
/* ----------------------------------------------------------------------------------------------------*/

/* Document Body
/* ----------------------------------------------------------------------------------------------------*/
body {
	background-color: #f5f5f5;
	font-family: 'Open Sans', sans-serif;
	padding-top: 100px;
	padding-bottom: 20px;
}


/* ----------------------------------------------------------------------------------------------------
   #2 LAYOUT STYLES 
/* ----------------------------------------------------------------------------------------------------*/

/* Navbar
/* ----------------------------------------------------------------------------------------------------*/
.navbar-inverse {
    background-color: #0071BB !important;
    border-color: #0071BB !important;
}

h1.navbar-brand { 
	margin-top: 15px;
	margin-bottom: 15px;
	margin-left: 20px;
	color:#fff !important;
	font-size: 1.6em;
}

h1.navbar-brand:hover,
h1.navbar-brand:focus {
  text-decoration: none;
}


/* Form Area
/* ----------------------------------------------------------------------------------------------------*/
.form-area { background-color: #fff; }

.instructions { font-size: 1.2em; }
.instructions .label { font-weight:700; color:inherit !important; font-size: 1em; }

select.form-control option:first-child {
    color: #999 !important;
}

.btn-group-yesno > .active:first-child {
	background-color: #5cb85c !important;
	color: #fff;
}

.btn-group-yesno > .active:last-child {
	background-color: #d9534f !important;
	color: #fff;
}

.checkbox-inline { font-weight:bold; }


/* ----------------------------------------------------------------------------------------------------
   #3 HELPER STYLES 
/* ----------------------------------------------------------------------------------------------------*/

/* Margins, Paddings, Borders and Alignments
/* ----------------------------------------------------------------------------------------------------*/
.no-border { border: 0 !important; }
.no-padding {padding: 0 !important}

.margin-btm-minus-5  { margin-bottom:-5px 	!important; }

.no-margin {margin: 0 !important;}

.margin-btm-5  { margin-bottom:5px 	!important; }
.margin-btm-10 { margin-bottom:10px !important; }
.margin-btm-15 { margin-bottom:15px !important; }
.margin-btm-20 { margin-bottom:20px !important; }
.margin-btm-30 { margin-bottom:30px !important; }
.margin-btm-40 { margin-bottom:40px !important; }
.margin-btm-50 { margin-bottom:50px !important; }
.margin-btm-60 { margin-bottom:60px !important; }

.margin-top-5  { margin-top:5px  !important; }
.margin-top-10 { margin-top:10px !important; }
.margin-top-15 { margin-top:15px !important; }
.margin-top-20 { margin-top:20px !important; }
.margin-top-30 { margin-top:30px !important; }
.margin-top-40 { margin-top:40px !important; }
.margin-top-50 { margin-top:50px !important; }
.margin-top-60 { margin-top:60px !important; }

.verticle-top 		{ vertical-align: top; }
.verticle-middle	{ vertical-align: middle; }
.verticle-bottom 	{ vertical-align: bottom; }


/* Text Formating and Typography
/* -------------------------------------------------------------------------------------------------*/
.text-bold					{ font-weight: bold !important; }
.text-italic				{ font-style: italic !important; }
.text-upper 				{ text-transform: uppercase; }

.text-highlighter-yellow 	{ color: #d7df20; }
.text-font-xs 				{ font-size: 0.85em; }
.text-font-sm 				{ font-size: 0.9em; }
.text-font-md 				{ font-size: 1.2em; }
.text-font-lg 				{ font-size: 1.6em; }

.text-century-gothic 		{ font-family: "Century Gothic",Futura,Helvetica,Arial,sans-serif; }
.text-handwritten 			{ font-family: LazyDogRegular,Arial,sans-serif; }
.text-sans-serif 			{ font-family: Arial, Helvetica, sans-serif; }

::-moz-selection {
    text-shadow: none;
    background: #fcfcfc;
    background: rgba(255,255,255,.2);
}

::selection {
    text-shadow: none;
    background: #fcfcfc;
    background: rgba(255,255,255,.2);
}

img::selection { background: 0 0; }
img::-moz-selection { background: 0 0; }


/* Responsive Embeds
/* http://www.smashingmagazine.com/2014/02/27/making-embedded-content-work-in-responsive-design/
/* http://embedresponsively.com/
/* -------------------------------------------------------------------------------------------------*/
/* Video Embeds */
.video-container {
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 35px;
    height: 0;
    overflow: hidden;
}

.video-container iframe,
.video-container object,
.video-container embed {
    position: absolute;
    top:0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Calendar Embeds */
.calendar-container {
    position: relative;
    padding-bottom: 75%;
    height: 0;
    overflow: hidden;
}

.calendar-container iframe {
    position: absolute;
    top:0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Map Embeds */
.google-maps {
    position: relative;
    padding-bottom: 90%; /*(450 ÷ 500 = 0.9 = 90%)*/
    height: 0;
    overflow: hidden;
}

.google-maps iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}




/* ----------------------------------------------------------------------------------------------------
   #4 ANIMATION STYLES 
/* ----------------------------------------------------------------------------------------------------*/

@-webkit-keyframes pulse {    
    0 {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    50% {
        -webkit-transform: scale(1.2);
        transform: scale(1.2);
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@-moz-keyframes pulse {    
    0 {
        -moz-transform: scale(1);
        transform: scale(1);
    }

    50% {
        -moz-transform: scale(1.2);
        transform: scale(1.2);
    }

    100% {
        -moz-transform: scale(1);
        transform: scale(1);
    }
}




/* -------------------------------------------------------------------------------------------------
   #5 CSS3 STYLES 
/* -------------------------------------------------------------------------------------------------*/
/* Box Shadow
/* -------------------------------------------------------------------------------------------------*/
.boxShadow {
    -webkit-box-shadow: 0px 0px 15px rgba(50, 50, 50, 0.75);
	   -moz-box-shadow: 0px 0px 15px rgba(50, 50, 50, 0.75);
		    box-shadow: 0px 0px 15px rgba(50, 50, 50, 0.75);
}

.boxShadowLarge {
    -webkit-box-shadow: 0px 0px 20px rgba(50, 50, 50, 0.5);
	   -moz-box-shadow: 0px 0px 20px rgba(50, 50, 50, 0.5);
		    box-shadow: 0px 0px 20px rgba(50, 50, 50, 0.5);
}

.boxShadow-inner {
    -webkit-box-shadow: inset 0px 0px 15px rgba(50, 50, 50, 0.75);
	   -moz-box-shadow: inset 0px 0px 15px rgba(50, 50, 50, 0.75);
		    box-shadow: inset 0px 0px 15px rgba(50, 50, 50, 0.75);
}


/* Text Shadow
/* -------------------------------------------------------------------------------------------------*/
.textShadow {
	text-shadow: 0px 0px 5px rgba(0, 0, 0, 0.5);
    filter: dropshadow(color=#000000, offx=0, offy=0);
}


/* Box Fade
/* -------------------------------------------------------------------------------------------------*/
.boxFade {	
	-webkit-box-shadow: 0px 1px 0px rgba(255, 255, 255, 0.8) inset, 0px -25px 25px rgba(255, 255, 255, 0.8);
	   -moz-box-shadow: 0px 1px 0px rgba(255, 255, 255, 0.8) inset, 0px -25px 25px rgba(255, 255, 255, 0.8);
		    box-shadow: 0px 1px 0px rgba(255, 255, 255, 0.8) inset, 0px -25px 25px rgba(255, 255, 255, 0.8);		
}


/* Rounded Corners
/* -------------------------------------------------------------------------------------------------*/
.roundedCorner-mini {
	-webkit-border-radius: 3px !important;
       -moz-border-radius: 3px !important;
            border-radius: 3px !important;
}

.roundedCorner-small {
	-webkit-border-radius: 5px !important;
       -moz-border-radius: 5px !important;
            border-radius: 5px !important;
}

.roundedCorner-medium {
	-webkit-border-radius: 8px !important;
       -moz-border-radius: 8px !important;
            border-radius: 8px !important;
}

.roundedCorner-large {
	-webkit-border-radius: 12px !important;
       -moz-border-radius: 12px !important;
            border-radius: 12px !important;
}


/* Media Query Transition
/* -------------------------------------------------------------------------------------------------*/
.transitions {
	-webkit-transition: all .3s ease-out;
  	   -moz-transition: all .3s ease-out;
	     -o-transition: all .3s ease-out;
		    transition: all .3s ease-out;
}


/* Opacity and Transparency
/* -------------------------------------------------------------------------------------------------*/
.opacity70 {
	opacity:0.7;
    -ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=70)";
	    filter: alpha(opacity=70);
}

