/* ###############################*/
/*   General purpose definitions  */

.center { margin-left: auto; margin-right: auto; }
.textcenter { text-align: center; }
.indent { margin-left: 40px; }
.right { float: right; }
.half { width: 50%; }
.underline { text-decoration: underline; }


/* ###############################*/
/*        Basic layout css        */

body {
    font-family: Lucida Grande,Lucida Sans,Arial,sans-serif;
    font-size: 10pt;
    margin: 0px;
    background: url(foo) fixed;
}

a, a:visited {
    text-decoration: none;
    color: #0000cc;
}

a:hover {
    border-bottom: 1px dotted #0000cc;
}

div.header {
    background-image: url('../img/header.png');
    /*width: 800px;*/
    width: 97%;
    height: 115px;
    background-repeat: no-repeat;
}

div.header div.logo {
    margin-top: 20px;
    float: right;
}

div.content {
    margin-left: 20px;
    margin-right: 20px;
    padding-top: 20px;
}

div.main {
    margin-left: -7px;
    margin-right: -10px;
}

div.main div.leftborder {
    background-repeat: repeat-y;
    background-position: left;
    padding-left: 50px;
    padding-right: 40px;
    padding-top: 30px;
    /*overflow: hidden;*/
}

div.main div.rightborder {
    background-repeat: repeat-y;
    background-position: right;
    margin-top: 6px;
}

div.mainbottom {
    background-repeat: repeat-x;
    background-position: bottom;
    height: 30px;
    margin-top: 12px;
    
}

div.mainbottom b.bl {
    float: left;
    margin-top: -12px;
}

div.mainbottom b.br {
    float: right;
    margin-top: -12px;
}

div.copyright {
    width: 100%;
    text-align: center;	
}

div.copyright p {
    font-size: 12px;
    color: #999;
    /*font-style: italic;*/
}

div.paragraph {
    margin-left: 10px;
    margin-right: 10px;
}

div.paragraph div.innerContainer {
    
}

div.paragraph p {
    margin-top: 10px;
    margin-bottom: 10px;
}

div.paragraph h1 { font-size: 15pt; }
div.paragraph h2 { font-size: 13pt; }

div.requestnotification {
    margin-top: 10px;
}

div.error {
    border: thin solid #FF0000;
    color: #FF0000;
    margin-top: 20px;
    padding: 5px;
    text-align: center;
}

div.errorthin {
    border: thin solid #FF0000;
    color: #FF0000;
    margin-top: 20px;
    padding: 5px 3px 5px 20px;
    width: 485px;
}

div.errordiv {
    border: thin solid #FF0000;
    color: #FF0000;
    margin-top: 20px;
    padding: 5px;
    text-align: center;
}

div.autologout {
    border: thin solid #999999;
    margin: 20px;
    padding: 5px;
    text-align: center;
}

p.info {
    font-size: 12px;
    margin-top: 15px;
    margin-bottom: 0;
}

div#waitdialog {
    position: fixed;
    left: 50%;
    margin-top: -75px;
    _margin-top: 20%;
    margin-left: -150px;
    bottom: 50%;
    padding: 12px;
    border: solid 2px;
    border-color: #AAA #888 #888 #AAA;
    text-align: center;
    width: 300px;
    height: 150px;
    display: none;
    z-index: 1100;
    background-color: white;
}

div#dialogShadow {
    background-color: #000000;
    opacity: 0.5;
    display: none;
    width: 100%;
    height: 100%;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 1000;
}

div#waitdialog, div#dialogShadow {
    _position: absolute;                              /* Hack to get position: fixed */
    _top: expression(eval(document.body.scrollTop));  /* to work on IE */
}
