@CHARSET "ISO-8859-1";

::selection {
    color: #fff;
    background: #f676b2; /* Safari */
}
::-moz-selection {
    color: #fff;
    background: #f676b2; /* Firefox */
}

/*******************
BODY STYLING
*******************/

* {
    padding: 0;
    margin: 0;
    border: none;
    outline: none;
    list-style: none;
    font-family: "arial", tahoma, verdana, arial, sans-serif;
}

a{
    text-decoration: none;
}

body {    
    background: #f3f3f3;
    font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
    font-weight:300;
    text-align: left;
    text-decoration: none;
    height: 500px;
}

#clear {
    clear: both;
}



#wrapper {
    /* Center wrapper perfectly */
    width: 300px;
    height: 400px;
    margin: 70px auto;
}

/* Download Button (Demo Only) */
.download {
    display: block;
    position: absolute;
    float: right;
    right: 25px;
    bottom: 25px;
    padding: 5px;

    font-weight: bold;
    font-size: 11px;
    text-align: right;
    text-decoration: none;
    color: rgba(0,0,0,0.5);
    text-shadow: 1px 1px 0 rgba(256,256,256,0.5);
}

.download:hover {
    color: rgba(0,0,0,0.75);
    text-shadow: 1px 1px 0 rgba(256,256,256,0.5);
}

.download:focus {
    bottom: 24px;
}


.gradient {
    /* Center Positioning */
    width: 600px;
    height: 600px;
    position: fixed;
    left: 50%;
    top: 50%;
    margin-left: -300px;
    margin-top: -300px;
    z-index: -2;    /* Fallback */ 
    background-image: url(http://www.demo.amitjakhu.com/login-form/images/gradient.png); 
    background-repeat: no-repeat; 

    /* CSS3 Gradient */
    background-image: -webkit-gradient(radial, 0% 0%, 0% 100%, from(rgba(213,246,255,1)), to(rgba(213,246,255,0)));
    background-image: -webkit-radial-gradient(50% 50%, 40% 40%, rgba(213,246,255,1), rgba(213,246,255,0));
    background-image: -moz-radial-gradient(50% 50%, 50% 50%, rgba(213,246,255,1), rgba(213,246,255,0));
    background-image: -ms-radial-gradient(50% 50%, 50% 50%, rgba(213,246,255,1), rgba(213,246,255,0));
    background-image: -o-radial-gradient(50% 50%, 50% 50%, rgba(213,246,255,1), rgba(213,246,255,0));
}

/*******************
LOGIN FORM
*******************/

.login-form {
    width: 300px;
    margin: 0 auto;
    margin-top:100px;
    position: relative;

    background: #000d00;
    border: 1px solid #ccc;
    border-radius: 5px;

    box-shadow: 0 1px 3px rgba(0,0,0,0.5);
    -moz-box-shadow: 0 1px 3px rgba(0,0,0,0.5);
    -webkit-box-shadow: 0 1px 3px rgba(0,0,0,0.5);
}

/*******************
HEADER
*******************/

.login-form .header {
    padding: 20px 30px 10px 30px;
}

.login-form .header h1 {
    font-family: 'Bree Serif', serif;
    font-weight: 300;
    font-size: 28px;
    line-height:34px;
    color: #414848;
    text-shadow: 1px 1px 0 rgba(256,256,256,1.0);
    margin-bottom: 10px;
}

.login-form .header span {
    font-size: 11px;
    line-height: 16px;
    color: #678889;
    text-shadow: 1px 1px 0 rgba(256,256,256,1.0);
}

.login-form .header div#logo {
    text-align: center;
    min-height: 80px;
}

.login-form .header div#logo:hover {
    opacity: 0.7; 
    transition: 0.5s ease-in-out;
}

.login-form .header div#logo img {
    width:180px;
}

/*******************
CONTENT
*******************/

.login-form .content {
    padding: 0 30px 25px 30px;
}

/* Input field */
.login-form .content .input {
    width: 188px;
    padding: 15px 25px;

    font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
    font-weight: 400;
    font-size: 18px;
    color: #9d9e9e;
    text-shadow: 1px 1px 0 rgba(256,256,256,1.0);

    background: #fff;
    border: 1px solid #fff;
    border-radius: 5px;

    box-shadow: inset 0 1px 3px rgba(0,0,0,0.50);
    -moz-box-shadow: inset 0 1px 3px rgba(0,0,0,0.50);
    -webkit-box-shadow: inset 0 1px 3px rgba(0,0,0,0.50);
}

/* Second input field */
.login-form .content .password, .login-form .content .pass-icon {
    margin-top: 25px;
}

.login-form .content .input:hover {
    background: #ddd;
    color: #414848;
}

.login-form .content .input:focus {
    background: #ddd;
    color: #414848;

    box-shadow: inset 0 1px 2px rgba(0,0,0,0.25);
    -moz-box-shadow: inset 0 1px 2px rgba(0,0,0,0.25);
    -webkit-box-shadow: inset 0 1px 2px rgba(0,0,0,0.25);
}

.user-icon, .pass-icon {
    width: 46px;
    height: 44px;
    display: block;
    position: absolute;
    left: 0px;
    padding-right: 2px;
    z-index: -1;

    -moz-border-radius-topleft: 5px;
    -moz-border-radius-bottomleft: 5px;
    -webkit-border-top-left-radius: 5px;
    -webkit-border-bottom-left-radius: 5px;
}

.user-icon {
    top:150px; /* Positioning fix for slide-in, got lazy to think up of simpler method. */
    background: rgba(65,72,72,0.75) url(../img/user-icon.png) no-repeat center;	
}

.pass-icon {
    top:202px;
    background: rgba(65,72,72,0.75) url(../img/pass-icon.png) no-repeat center;
}

.content input:focus + div{
    left: -46px;
}

/* Animation */
.input, .user-icon, .pass-icon, .button, .register {
    transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
}

/*******************
FOOTER
*******************/

.login-form .footer {
    padding: 10px 30px 10px 30px;
    overflow: auto;

    background: #7e566a;
    border-top: 1px solid #fff;

    box-shadow: inset 0 1px 0 rgba(0,0,0,0.15);
    -moz-box-shadow: inset 0 1px 0 rgba(0,0,0,0.15);
    -webkit-box-shadow: inset 0 1px 0 rgba(0,0,0,0.15);
}

/* Login button */
.login-form .footer .button {
    float:right;
    padding: 11px 25px;
    font-size: 20px;
    color: #3f3f41;
    text-shadow: 0px 1px 0 rgba(0,0,0,0.25);
    background: #fff;
    border: 1px solid #777;
    border-radius: 5px;
    cursor: pointer;

}

.login-form .footer .button:hover {
    background: #999;
    color:#fff;    
}

.login-form .footer .button:focus {
    position: relative;
    bottom: -1px;
    background: #999;
    box-shadow: inset 0 1px 6px rgba(256,256,256,0.75);
    -moz-box-shadow: inset 0 1px 6px rgba(256,256,256,0.75);
    -webkit-box-shadow: inset 0 1px 6px rgba(256,256,256,0.75);
}

/* Register button */
.login-form .footer .register {
    display: block;
    float: left;
    padding: 15px 0 0 0;	
    background: none;
    border: none;
    cursor: pointer;    
    font-size: 17px;
    color: #fff;    
    cursor: pointer;     
}

.login-form .footer .register:hover {
    color: #ccc;
}

.login-form .footer .register:focus {
    position: relative;
    bottom: -1px;
}	





/*==================== PRINCIPAL ====================*/

#top{
    width: 100%;
    height: 110px;
    display: block;
}

#topBarBg{
    width: 100%;
    height: 110px;
    position: fixed;
    border-bottom: 1px solid #d5d5d5;
    box-shadow: 2px 2px 2px #ccc;        
    background-color:#7e566a;    
    z-index: 1;
}

#topBarCenter{
    width: 170px;
    float: right;
    margin: 5px 3px 0 0;
    cursor: pointer;
}

#arrowDown{
    width: 13px;
    height: 13px;
    top:13px;
    right: 14px;
    cursor: pointer;
    position: absolute;
    background: url("../img/arrow-down.png");       
}

.menuHidden p{
    height: 5px;
    color: #eee;
    padding: 5px 0px 20px 0;
    font: normal 10pt Arial, sans-serif;


}

.menuHidden p:hover{
    color: #FFF;
}

.menuBody {
    width: 161px;
    display: none;         
    border-right: 1px solid #999;
    border-bottom: 1px solid #999;
    border-left: 3px solid #999;
}

.menuBody li{
    background: #777;
    font: normal 10pt Arial, sans-serif;

    border-left: 5px solid #362f2d;
}

.menuBody li:hover{
    background: #362f2d;
    font: normal 10pt Arial, sans-serif;
}

.menuBody li.alt{
    background: #888;
    font: normal 10pt Arial, sans-serif;
}

.menuBody li.alt:hover{
    background: #362f2d;
    font: normal 10pt Arial, sans-serif;
}

.menuBody li a{
    padding: 10px;
    display: block;
    color:#FFF; 
}

.menuBody li a:hover{
    color:#CCC;
}

#leftBar {
    width: 160px;
    float: left;    
}

.glossymenu {
    width: 190px;
    min-height: 1850px;
    background: #f3f3f3;
    border-right: 1px solid #ccc;
    border-bottom: 1px solid #ccc; 
    position: fixed;
}

#menushadow {
    width: 6px;
    min-height: 1850px;
    margin-left: 185px;
    position: absolute;
    background: url(../img/menu-shadow.png) repeat-y;
    z-index: 9999;     
}

.glossymenu a.menuitem {
    width: auto;        
    color: #6c6c6c;
    padding: 8px 0;
    display: block;
    position: relative;
    padding-left: 10px;
    background: #f3f3f3;
    text-shadow: 0 1px 0 #fff;
    border-top: 1px solid #f9f9f9;
    border-bottom: 1px solid #cfcfcf;
    font: bold 12pt Arial, sans-serif;
    border-left:solid 5px #6c6c6c;
}

.glossymenu a.menuitem:active {
    color: #000;
}

.glossymenu a.menuitem .statusicon {
    top: 8px;
    right: 5px;
    border: none;
    position: absolute;
    display:block;
}

.glossymenu a.menuitem:hover {
    color: #999;  
    border-left:solid 5px #999;
}

.glossymenu div.submenu {
    background: #fff;
}

.glossymenu div.submenu ul {
    list-style-type: none;
    border-bottom: 1px solid #e7e7e7;
}

.glossymenu div.submenu ul li {
    list-style-type: none;
}

.glossymenu div.submenu ul li a {
    color: #21759B;
    display: block;
    padding: 7px 0 7px 10px;
    font: bold 13px Arial, sans-serif;
    border-left:solid 5px #21759B;
    border-top: 1px solid #eaf2fa;
}

.glossymenu div.submenu ul li a:hover {
    color: #21759B;
    background: #eaf2fa;
}

#rightBar {
    width: 80%;
    float: left;    
}

.sisBody {
    width: 100%;
    float: left;
    margin: 0 0 0 210px;    
}

.siteHead{
    width: 98%;
    float: left;
    margin: 0 0 5px 0;
    border-bottom: 1px solid #dfdfdf;
}

.siteHead h1 a{
    float: left;
    color: #464646;
    padding: 8px 0 5px 10px;
    font: normal 13pt Georgia, sans-serif;
}

.siteHead h1 a:hover{
    color: #dc4e21;
    transition: 1s linear;
    -o-transition: 1s linear;
    -moz-transition: 1s linear;
    -webkit-transition: 1s linear;
    text-decoration: underline;
}

.sessionEdit{
    width: 1040px;
    float: left;
    margin: 15px 0 0 0;
    border-bottom: 1px solid #dfdfdf;
}

.iconIndex{
    width: 32px;
    height: 32px;
    float: left;
    margin: 0 0 0 10px;
    background: transparent url(../img/icons32.png) no-repeat -137px -5px;
}

.sessionEdit h2{
    float: left;
    color: #464646;
    padding: 7px 0 6px 10px;
    text-shadow: 0 1px 1px #ccc;
    font: bold 15pt Arial, sans-serif;
}

#boxEditor{
   background-color: #fff;
    width: 1040px;
    height: 100%;
    margin: 10px 0 30px 0px;
    border: 1px solid #ccc;
    border-radius: 4px; 
    border-top:solid 4px #777;
    border-bottom:solid 4px #777;
    display: block;
}

.logo_interna{
    margin:15px 0 10px 30px; 
    float: left;
}

.logo_interna img{
    width:180px;
}

.logo_interna:hover{
   opacity: 0.7; 
   transition: 0.5s ease-in-out; 
}


.slogan{
    float: left; 
    margin:20px 0 0 150px; 
    font-size:40px; 
    font-weight:bold; 
    color:#fff;
}

.slogan:hover{
   opacity: 0.7; 
   transition: 0.5s ease-in-out;
}

.rodape {
    position: absolute;
    bottom: 0;
    width:100%;
    height:60px;
    background-color:#000;     
}

.rodape p{
    color:#fff;
    font-size:15px;
    text-align:center;
    padding-top:10px;   
}

.cliente{
    margin-top:30px;
    font-size: 15px;
    color:#555;    
}