@charset "UTF-8";

/* ----------------------------------------------------------
   Layout
Â Â Â ------------------------------------------------------- */

body {
    position: relative;
    height: 100%;
    padding-right: 40px;
    padding-left: 274px;
    min-height: 585px;
    min-width: 710px;
    overflow-x: hidden;
}

body.page-print {
    padding:10px;
}

#sidebar,
#toolbar {
    z-index: 99999;
    position: absolute;
    top: 0;
    bottom: 0;
    
}

#toolbar {
    right: 0;
    width: 40px;
	background:url(../images/bg-toolbar.png);
}

#sidebar {
    left: 0;
    width: 234px;
  /*  padding: 0 20px;*/
	/*background-color: #cae6df;*/
	background:url(../images/bg-aside.jpg) repeat-y center top  #cae6df;
}

#main {
    position: absolute;
    top: 0;
    right: 40px;
    bottom: 0;
    left: 237px;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

#footer {
    position: absolute;
    right: 20px;
    bottom: 15px;
    left: 20px;
}

.lt_ie8 #footer {
    right: 0;
    width: 236px;
}

/* Loader
Â Â Â ----------------------- */

.main-loader-filter {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 170px;
    height: 170px;
    margin-top: -80px;
    margin-left: 25px;
    border: 5px solid #1d5ea8;
    -webkit-border-radius: 999px;
    -moz-border-radius: 999px;
    border-radius: 999px;
    background: #fff no-repeat center center;
}

.main-loader {
    visibility: hidden;
    z-index: 9999999999;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    background-color: rgba(255,255,255,.05);
    filter: alpha(opacity=0);
}

.loading .main-loader {
    visibility: visible;
    -webkit-animation: anim-loader-delay 99s infinite;
    -moz-animation: anim-loader-delay 99s infinite;
    -o-animation: anim-loader-delay 99s infinite;
    animation: anim-loader-delay 99s infinite;
    filter: alpha(opacity=99);
}

.is_ie9.loading .main-loader,
.is_ie9 .loading .main-loader {
    opacity: 0.99;
}

@-webkit-keyframes anim-loader-delay {
    2%,100% {opacity:.99}
    0%,1% {opacity:0}
}
@-moz-keyframes anim-loader-delay {
    2%,100% {opacity:.99}
    0%,1% {opacity:0}
}
@-o-keyframes anim-loader-delay {
    2%,100% {opacity:.99}
    0%,1% {opacity:0}
}
@keyframes anim-loader-delay {
    2%,100% {opacity:.99}
    0%,1% {opacity:0}
}