/**
 * @copyright 2006-2011 LanMediaService, Ltd.
 * @license    http://www.lanmediaservice.com/license/1_0.txt
 * @author Ilya Spesivtsev <macondos@gmail.com>
 * @version $Id: layout.css 700 2011-06-10 08:40:53Z macondos $
 */
 
html, body {
    margin:0;
    padding:0;
    height: 100%;
}

body {
    background: url("../img/bg.jpg") repeat scroll -70% -20% #CBCBCB;
}

.cssgradients body {
    /*background: url("../img/noise.png") repeat scroll left top, -moz-radial-gradient(50% 300px, ellipse farthest-corner, #DDDDDD 400px, #AAAAAA) no-repeat scroll 0 0 #AAAAAA;
    background: url("../img/noise.png") repeat scroll left top, -webkit-radial-gradient(50% 300px, ellipse farthest-corner, #DDDDDD 400px, #AAAAAA) no-repeat scroll 0 0 #AAAAAA;
    background: url("../img/noise.png") repeat scroll left top, radial-gradient(50% 300px, ellipse farthest-corner, #DDDDDD 400px, #AAAAAA) no-repeat scroll 0 0 #AAAAAA;
    */
}


*html div#container {
    height: 100%;
}


#container {
    position: relative;
    min-height: 100%;
    height: 100%;
    height: auto;
    width: 100%;
}

html>body #container {
    height: auto;
}

#main {
    width: 960px;
    background-color: white;
    border: 1px solid #D9D9D9;
    margin: 20px auto;
    min-height: 600px;
    overflow: hidden;
}

div#main {
    border: 1px solid; 
    border-color: #e5e5e5 #dbdbdb #d2d2d2;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -o-border-radius: 4px;
    -khtml-border-radius: 4px;
}
.boxshadow div#main {
    border: none;
    box-shadow: rgba(0,0,0,0.3) 0 1px 3px; 
    -webkit-box-shadow: rgba(0,0,0,0.3) 0 1px 3px; 
    -moz-box-shadow: rgba(0,0,0,0.3) 0 1px 3px;  
}

header {
    background-color: white;
    font-size: 8pt;
    margin: 0 auto 20px;
    width: 960px;
    box-shadow: rgba(0,0,0,0.3) 0 1px 3px; 
    -webkit-box-shadow: rgba(0,0,0,0.3) 0 1px 3px; 
    -moz-box-shadow: rgba(0,0,0,0.3) 0 1px 3px;
    border-radius: 0 0 5px 5px;
    -webkit-border-radius: 0 0 5px 5px;
    -moz-border-radius: 0 0 5px 5px;
    -o-border-radius: 0 0 5px 5px;

    background: #fbfbfb;
    background: -o-linear-gradient(top, #FFFFFF, #F8F8F8);
    background: -moz-linear-gradient(top, #FFFFFF, #F8F8F8);
    background: -webkit-gradient(linear,left top,left bottom,color-stop(0, #FFFFFF),color-stop(1, #F8F8F8));
    filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr='#FFFFFF',endColorstr='#F8F8F8');
    -ms-filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFF', endColorstr='#F8F8F8');
    
}

footer {
    color:#555;
    font-size: 10px;
    margin:18px auto;
    text-align:left !important;
    width: 960px;
    clear:both;
    text-shadow: 0 1px 1px #fff;
}

footer p {
    margin: 0;
}

.text {
    text-align: justify;
    line-height: 1.5em;
}

#user_message {
    left: 50%;
    margin-left: -250px;
    margin-right: 0;
    position: fixed;
    text-align: center;
    top: 0;
    width: 500px;
    z-index: 1010;
}
#user_message > div {
    background-color: #FFFF99;
    margin: 5px;
    padding: 5px;
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
}
#user_message > div.warn {
    background-color: #FFCCCC;
}
#user_message > div.info {
    background-color: #6690C9;
    color: white;
}
