
/***------ @JAVASCRIPT MEDIA QUERY SUPPORT ------***/

html {
        font-family: 'mobile';
    }

    * html { /* IE6 */
        font-family: 'desktop'
    }

    *+html { /* IE7 */
        font-family: 'desktop'
    }

    @media \0screen {
        html {  /* IE8 */
            font-family: 'desktop'
        }
    }

    /* Reset your font families here!       
     ----------------------------------- */
    body {
        font-family: "Lato", arial, sans-serif;
    }

    /* Queries for supported browsers.       
     ----------------------------------- */

    @media only screen and (min-width: 768px) and (max-width: 1024px){
        html {
            font-family: "tablet";
        }
    }

    @media only screen and (min-width: 768px) and (max-width: 1024px) and (orientation: portrait){
    	html {
            font-family: "tabletPortrait";
        }
    }

    @media screen and (min-width: 1025px) {
        html {
            font-family: "desktop";
        }
    }


/***------ @BASE STYLES ------***/

html {
  background: #ccc;
}
  body {
    font-family: "Lato", arial, sans-serif;
    font-size: 14px;
    background: #888;
    color: #333333;
    overflow: hidden;
    line-height: 18px;
  }
p{
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-size: 13px;
	line-height: 18px;
}
h1{font-size: 30px;}
h2{font-size: 24px;}
h3{font-size: 18px;line-height: 27px;}
h4{font-size: 14px;}
h5{font-size: 12px;}
h6{color: #666;}
h1,h2{line-height: 36px;}
h1,h2,h3,h4,h5,h6{margin: 0;}
h4, h5, h6{line-height: 18px;}

::-moz-selection { background: #0075cf; color: #fff; text-shadow: none; }
::selection { background: #0081c7; color: #fff; text-shadow: none; }

 

/***------ @TOPBAR ------***/

.login{
	position: fixed;
	height: 30px;
	top: 0px;
	right: 0px;
	display: inline;
	z-index: 3;
	-webkit-box-shadow: inset 1px 0px 0px #ccc, inset -1px 0px 0px #ccc, -1px 0px 0px #ccc, 1px 0px 0px #ccc;
	-moz-box-shadow: inset 1px 0px 0px #ccc, inset -1px 0px 0px #ccc, -1px 0px 0px #ccc, 1px 0px 0px #ccc;
	box-shadow: inset 1px 0px 0px #ccc, inset -1px 0px 0px #ccc, -1px 0px 0px #ccc, 1px 0px 0px #ccc;
	border: 1px solid #888;
	border-bottom: none;
	border-top: none;
	text-align: center;
	padding: 12px 12px 0px 0;
	margin: 0;
}
.login:hover{
	background: #cacaca;
	background: -moz-linear-gradient(top, #e3e3e3, #c2c2c2);
	background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#e3e3e3), to(#c2c2c2));
	cursor: pointer;
}
.login .dropdown-toggle{
	color: #444;
	font-size: 12px;
	height: 50px;
	text-decoration: none;
}
.login .dropdown-menu{
	background: #eee;
	top: 28px;
	left: -46px;
	position: absolute;
	text-align: left;
	border-radius: 0 0 5px 5px;
}

/***------ @BUTTONS------***/

.btn{
    border: 1px solid #008fd3;
    border-left: 1px solid #00a9f3;
    border-right: 1px solid #4cd4ff;
    border-top: 1px solid #2ec4ff;
    background-color: #0080c7;
    background: -moz-linear-gradient(top, #0092d9, #006ab0);
    background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#0092d9), to(#006ab0));
    -webkit-box-shadow: 0px 0px 0px 1px #004372, 0 1px 1px 1px #777;
    -moz-box-shadow: 0px 0px 0px 1px #004372, 0 1px 1px 1px #777;
    box-shadow: 0px 0px 0px 1px #004372, 0 1px 1px 1px #777;
    font-size: 13px;
    padding: 5px 15px;
    margin: 5px 8px;
    color: #e5f4ff;
    text-shadow: 0 -1px 0 #005a94;
    cursor: pointer;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    transition: none;
    -o-transition: none;
    -moz-transition: none;
    -webkit-transition: none;
    font-weight: 600;
    vertical-align: baseline;
}
.btn:hover{
    background-color: #007acb;
    background: -moz-linear-gradient(top, #00acff, #007acb);
    background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#00acff), to(#007acb));
    border: 1px solid #1f99d3;
    border-left: 1px solid #1db2f3;
    border-right: 1px solid #70ddff;
    border-top: 1px solid #59d0ff;
    color: #fff;
}
.btn:active{
    background-color: #006ab0;
    background: -moz-linear-gradient(top, #006ab0, #006ab0);
    background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#006ab0), to(#006ab0));
    -webkit-box-shadow: 0px 0px 0px 1px #ccc, inset 0 1px 1px 1px #003b61;
    -moz-box-shadow: 0px 0px 0px 1px #ccc, inset 0 1px 1px 1px #003b61;
    box-shadow: 0px 0px 0px 1px #ccc, inset 0 1px 1px 1px #003b61;
    border: 1px solid #0068a3;
    text-shadow: 0 1px 0 #005a94;
}


/***------ @LOGIN PAGE ------***/

.signinBox{
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background-color: #333;
    -webkit-box-shadow: inset 0px -1px 57px #000;
    -moz-box-shadow: inset 0px -1px 57px #000;
    box-shadow: inset 0px -1px 57px #000;
    background: -moz-radial-gradient(center center, circle closest-side, #666 0%, #333 100%);
    background: -webkit-gradient(radial, center center, 400, center center, 0, from(#333), to(#666));
    overflow: auto;
}
.signinBox h1{
	font-size: 80px;
	text-align: center;
	text-shadow: 0 -1px 0 #fff;
}
#signinHold{
    top: 30%;
    left: 50%;
    margin-top:;
    position: absolute;
    margin-top: 70px;
    margin-left: -335px;
}
.signin{
    margin-top: 40px;
    height: 111px;
    padding: 10px 62px 10px 61px;
    -webkit-border-radius: 11px;
     -moz-border-radius: 11px;
    border-radius: 11px;
    	-webkit-box-shadow: 0 1px 0 #ddd;
    -moz-box-shadow: 0 1px 0 #ddd;
    box-shadow: 0 1px 3px #444;
    background: rgba(0,0,0,0.05);
    transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -webkit-transition: all 0.3s linear;
}
.signin h2{
	font-size: 22px;
	font-weight: bold;
	line-height: 50px;
	color: #bbb;
	text-shadow: 0 1px 0 #333;
}
.signin a{
	color: #000;
	text-shadow: 0 1px 0 #ccc;
	text-decoration: none;
	line-height: 25px;
}
.signin input{
	margin-right: 15px;
	border: 1px solid #aaa;
	height: 21px;
	/*-webkit-box-shadow: 0 1px 0 #ddd;
    -moz-box-shadow: 0 1px 0 #ddd;
    box-shadow: 0 1px 0 #ddd;*/
}
.signin input:focus{
	margin-right: 15px;
	border: 1px solid #aaa !important;
	-webkit-box-shadow: 0 0 23px #222 !important;
    -moz-box-shadow: 0 0 23px #222 !important;
    box-shadow: 0 0 23px #222 !important;
}
.imgContain img{
    height: auto;
    display: block;
    overflow: hidden;
    position: relative;
    top: 46px;
    left: -22px;
    z-index: 2;
    width: 50px;
}

.eChar
{
    background: url('../../Images/eChar.png') no-repeat top left;
   padding-left: 25px;
padding-bottom: 5px;
background-position: 0px 10px;
line-height: 33px;
}
    
.imgContain h3{
        font-size: 50px;
        color: rgb(247, 246, 246);
        text-align: center;
        text-shadow: 3px 3px 3px #333;
    }
#signin-btn{
	display: inline;
	margin: -9px 0 0 0;
	line-height: 22px;
	font-size: 14px;
	padding: 5px 24px;
	position: relative;
	top: -4px;
}
#signin-btn:active{
	-webkit-box-shadow: 0 0 1px #222, inset 0 0 5px #222;
    -moz-box-shadow: 0 0 1px #222, inset 0 0 5px #222;
    box-shadow: 0 0 1px #222, inset 0 0 5px #222;
}
.signin label{
	display: inline;
}
.signin p{
	width: 565px;
	padding: 20px 0;
}
.goBack{
	color:#999;
	text-align:center;
	font-size:16px;
	line-height:40px;
	background: rgba(0,0,0,0.1);
	max-width: 300px;
	margin: 20px auto;
	-webkit-border-radius: 15px;
	-moz-border-radius: 15px;
	border-radius: 15px;
	-webkit-box-shadow: inset 0 0 5px rgba(0,0,0,0.1);
    -moz-box-shadow: inset 0 0 5px rgba(0,0,0,0.1);
    box-shadow: inset 0 0 5px rgba(0,0,0,0.1);
    font-weight: bold;
    text-shadow: 0 1px 0px #222;
}
.goBack a:hover{
	color: #fff;
	text-decoration: none;
}
#ui-datepicker-div {
    /* Minimum of '5' is required */
    z-index: 50;
}

/***------ @RESPONSIVE LOGIN STRUCTURE ------***/

@media only screen and (max-width: 820px){
    #signinHold{
        top: 42%;
        left: 50%;
        margin-top: -70px;
        margin-left: -265px;
    }
    .imgContain img{
        max-width: 570px;
        top: -74px;
        left: -8px;
    }
    
    
    
    .imgContain h3{
        font-size: 50px;
    }
    .signin{
        height: 200px;
        display: block;
        margin: 40px auto;
        transition: none;
        -o-transition: none;
        -moz-transition: none;
        -webkit-transition: none;
    }
    .signin form{
        width: 228px;
        margin: 0 auto;
    }
    .signin form .btn{
        margin: 0 auto;
        width: 228px;
    }
    .signin h2{
        width: 402px;
        line-height: 26px;
        margin: 0 0 12px 0;
        padding: 0;
        text-align: center;
    }
    .signin form .btn{
        margin: 10px auto 0;
    }
    .signin input{
    	width: 218px;
    }
    #signin-btn{
		display: inline;
		margin: 5px 0 0 0;
	}
	.signin p{
		width: 415px;
		padding: 20px 0;
	}
}
@media only screen and (max-width: 665px){
    #signinHold{
        top: 290px;
        left: 50%;
        margin-top: -70px;
        margin-left: -164px;
    }
    .imgContain img{
        max-width: 480px;
        top: -62px;
        left: -62px;
    }
    .imgContain h3{
        font-size: 40px;
    }
    .signin{
        height: 200px;
        width: 200px;
        display: block;
        margin: 40px auto;
        transition: none;
        -o-transition: none;
        -moz-transition: none;
        -webkit-transition: none;
    }
    .signin form{
        width: 228px;
        margin: 0 auto;
        left: -15px;
        position: relative;
    }
    .signin form .btn{
        margin: 0 auto;
        width: 228px;
    }
    .signin h2{
        width: 352px;
        line-height: 26px;
        margin: 0 0 12px 0;
        padding: 0;
        font-size: 22px;
        text-align: center;
        left: -75px;
        position: relative;
    }
    .signin form .btn{
        margin: 10px auto 0;
    }
    .signin input{
    	width: 218px;
    }
    #signin-btn{
		display: inline;
		margin: 5px 0 0 0;
	}
	.signin p{
		width: 205px;
		line-height: 20px;
		padding: 20px 0;
	}
	.eChar
	{
	    padding-left: 32px;
background-position: 0px 0px;
	    }
}
@media only screen and (max-width: 480px){
    #signinHold{
        top: 120px;
        left: 50%;
        margin-top: -70px;
        margin-left: -137px;
    }
    .imgContain img{
        max-width:320px;
        top:-42px;
        left: -20px;
    }
    .imgContain h3{
        font-size: 30px;
    }
    .signin{
        height: 200px;
        width: 150px;
        display: block;
        margin: 40px auto 0;
        transition: none;
        -o-transition: none;
        -moz-transition: none;
        -webkit-transition: none;
    }
    .signin form{
        width: 228px;
        margin: 0 auto;
        left: -38px;
        position: relative;
    }
    .signin form .btn{
        margin: 0 auto;
        width: 228px;
    }
    .signin h2{
        width: 272px;
        line-height: 26px;
        margin: 0 0 12px 0;
        padding: 0;
        text-align: center;
        left: -60px;
        position: relative;
        font-size: 16px;
    }
    .signin form .btn{
        margin: 10px auto 0;
    }
    .signin input{
    	width: 218px;
    }
    #signin-btn{
		display: inline;
		margin: 5px 0 0 0;
	}
	.signin p{
		width: 155px;
		line-height: 20px;
		padding: 20px 0;
	}
	.eChar
	{
	    padding-left: 38px;
padding-bottom: 15px;
	    }
}


/***------ @MODIFIED BOOTSTRAP ------***/

h1 small{
	font-size: 18px;
}
pre, li{
	line-height: 18px;
}

input, textarea{
	-webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.13);
    -moz-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.13);
	box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.13);
}
input:focus, textarea:focus {
  border-color: rgba(100, 100, 100, 0.7) !important;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px rgba(100, 100, 100, 0.6) !important;
  -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px rgba(100, 100, 100, 0.6) !important;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px rgba(100, 100, 100, 0.6) !important;
  outline: 0 !important;
  outline: thin dotted \9 !important;
  /* IE6-8 */

}


/***------ @ALERTS ------***/

.close{
	opacity: 0.4;
}
.alert{
	-webkit-box-shadow: inset 0 0 0 1px rgba(255,255,255,0.3), 0 1px 2px rgba(0,0,0,0.2);
    -moz-box-shadow: inset 0 0 0 1px rgba(255,255,255,0.3), 0 1px 2px rgba(0,0,0,0.2);
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.3), 0 1px 2px rgba(0,0,0,0.2);
}
.alert-error{
	background: #f2ab97;
	background: -moz-linear-gradient(top, #f2ab97, #f28465);
    background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#f2ab97), to(#f28465));
	border: 1px solid #be5336;
	color: #761900;
}
.alert-info{
	background: #c3e2f7;
	background: -moz-linear-gradient(top, #c3e2f7, #7fc7f7);
    background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#c3e2f7), to(#7fc7f7));
	border: 1px solid #54b6f7;
	color: #00558f;
}
.alert-success{
	background: #b5f0c6;
	background: -moz-linear-gradient(top, #b5f0c6, #7ef09f);
    background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#b5f0c6), to(#7ef09f));
	border: 1px solid #53bb70;
	color: #327144;
}

/***------ @PROGRESS BARS ------***/
.progress{
	height: 18px;
}
.progress-danger .bar{
	background-color: #dd188a !important;
	background: -moz-linear-gradient(top, #dd188a, #b1136e);
    background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#dd188a), to(#b1136e));
}
.progress-info .bar{
	background-color: #ff771c !important;
	background: -moz-linear-gradient(top, #ff771c, #ca5e16);
    background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#ff771c), to(#ca5e16));
}
.progress-small{
	height: 6px;
	margin: 0;
}
.progress-small .bar{
	height: 6px;
	margin: 0;
}
.progress-info .bar{
	background-color: #dd188a !important;
}

#gritter-notice-wrapper{
	top: 50px !important;
}

/***------ @MODIFIED RESPONSIVE STRUCTURE ------***/

.hidden {
  display: none;
  visibility: hidden;
}


/***------ @IPHONE AND SMARTPHONES ------***/

@media (max-width: 480px) {
  
  .login{
  	display: none;
  }
  
}

/***------ @TABLET PORTRAIT ------***/

@media (max-width: 778px) {
  body{
  	padding: 0;
  }
}
/***------ @TABLET ADDITIONAL ------***/


@media (max-width: 530px) {
	.login{
		display: none;
	}
}