/* start of global definitions */
* {
    font-family: Arial, Helvetica, sans-serif;
    overflow: none;
}


html, body {
    padding: 0;
    margin: 10px;
    border: 0;
    font-size: 95%;
    background-color: white;
    color: #050632;
    overflow: none;
}

#logo {
    padding:0;
    margin:0;
    margin-left: 5px;
    float:left;
    text-decoration: none;
}

#logo a img {
    margin: 0;
    padding: 0;
    height: 100px;
    border: none;
    text-decoration: none;
}

.bordered {
    border: 1px dotted silver;
}

.reverse {
    text-align: left;
    direction:rtl;
    unicode-bidi: bidi-override;
}
/* end of global definitions */


/* start of header definition */
#head {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: 0;
    padding: 10px;
    border: 0;
    z-index: 100;
    height: 125px;
    background-image: url(../img/head_background.png);
    background-repeat: repeat-y;
    background-position: left;
    background-color: #382bfa;
    min-width: 815px;
}

#head p {
    text-align: right;
    vertical-align: middle;
    color: lightgray;
    font-size: 2.25em;
    font-style: italic;
    font-weight: bold;
    color: white;
    /* for IE */
    filter:alpha(opacity=50);
    /* CSS3 standard */
    opacity:0.5;
    margin: 5px;
}
/* end of header definition */


/* start of footer definition */
#footer {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 10px;
    padding: 5px;
    height: 10px;
    border-top: 1px dotted silver;
    text-align: center;
    font-size: 60%;
}

#footer a, #footer a:visited {
    color: black;
    text-decoration: none;
}

#footer a:hover{
    text-decoration: underline;
}
/* end of footer definition */


/* start of menu definition */
#menu {
    position: absolute;
    top: 99px;
    left: 0;
    right: 0;
    height: 50px;
    margin: 0;
    padding: 10px;
    z-index: 100;
}

#menu #mainmenu li {
    list-style: none;
    margin: 5px;
    padding: 0;
    border: 0;
    min-width: auto;
    width: 145px;
    float: left;
    margin-top: -2px;
}

#menu #mainmenu a {
    font-weight: bold;
    margin: 0;
    padding: 0;
    padding-left: 10px;
    display: block;
    height: 1.5em;
    line-height: 1.5em;
    text-decoration: none;
    color: #8880FC;
    border: 1px solid #261CA4;
    border-top-left-radius: 9px;
    border-top-right-radius: 9px;
    /*
    -moz-border-radius-topleft: 9px;
    -moz-border-radius-topright: 9px;
    -webkit-border-top-right-radius: 9px;
    -webkit-border-top-left-radius: 9px;
    */
}

#menu #mainmenu a:active,
#menu #mainmenu a:hover {
    background-color: #8880FC;
    color: #0000A0;
}

#menu #mainmenu .current a {
    background-color: red;
}


#menu ul ul {
    margin: 0;
    margin-left: -1px;
    margin-right: 1px;
    padding: 0;
    position: relative;
    visibility: hidden;

}

#menu ul .current ul {
    visibility: visible;
}

#menu ul li:hover ul,
#menu ul ul.visible {
    visibility: visible;
}

#menu #mainmenu .submenu li {
    margin: 0 .5%;
    padding: 0;
    border: 0;
    width: 100%;
}

#menu #mainmenu .submenu a {
    font-weight: normal;
    display: block;
    margin: 0;
    padding: 0 0 0 .5em;
    background-color: #DEDEDE;
    z-index: 100;
    color: #4F4F4F;
    border-top: none;
    border-bottom: none;
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
    /*
    -moz-border-radius-topleft: 0px;
    -moz-border-radius-topright: 0px;
    -webkit-border-top-right-radius: 0px;
    -webkit-border-top-left-radius: 0px;
    */
}
#menu #mainmenu .submenu a.lastItem {
    border-bottom: 1px solid black;
    border-bottom-left-radius: 9px;
    border-bottom-right-radius: 9px;
    /*
    -moz-border-radius-bottomleft: 9px;
    -moz-border-radius-bottomright: 9px;
    -webkit-border-bottom-right-radius: 9px;
    -webkit-border-bottom-left-radius: 9px;
    */
}

#menu #mainmenu .submenu a:active,
#menu #mainmenu .submenu a:hover {
    background-color: #8278FC;
    color: white;
    z-index:: 500;
}
/* end of menu definition */


/* start of title definition */
#title {
    position: absolute;
    top: 150px;
    height: 50px;
    left: 0;
    right: 0;
    margin: 10px;
    padding: 10px;
    text-align: center;
    z-index: 50;
}

#title h1 {
    font-size: 150%;
    text-align: center;
    font-weight: bold;
    position: relative;
    margin-bottom: 50px;
}

#title h1 span {
    padding: 5px 10px;
    border-bottom: 2px ridge blue;
    border-right: 2px ridge blue;
    border-bottom-right-radius: 9px;
    /*
    -moz-border-radius-bottomright: 9px;
    -webkit-border-bottom-right-radius: 9px;
    */
    text-shadow: #555555 3px 3px 5px;
    /* For IE */
    filter:DropShadow(color=#555555, offx=3, offy=3);
}
/* end of title definition */


/* start of contentmenu definition */
#contentmenu {
    position: absolute;
    top: 220px;
    left:0px;
    width: 320px;
    bottom: 40px;
    overflow: auto;
    margin: 10px;
    padding:5px;
}

#contentmenu img {
    position: relative;
    top: 0;
    left: 10px;
    right: 10px;
    margin: 15px;
    padding: 15px;
    width: 240px;
    height: 160px;
    border: 2px ridge blue;
    border-radius: 9px;
    /*
    -moz-border-radius-topleft: 9px;
    -moz-border-radius-topright: 9px;
    -moz-border-radius-bottomleft: 9px;
    -moz-border-radius-bottomright: 9px;
    -webkit-border-top-left-radius: 9px;
    -webkit-border-top-right-radius: 9px;
    -webkit-border-bottom-left-radius: 9px;
    -webkit-border-bottom-right-radius: 9px;
    */
}

#contentmenu h1 {
    background-color: silver;
    position: relative;
    top: 0;
    left: 10px;
    right: 10px;
    margin: 15px;
    padding: 15px;
    width: 240px;
    height: 160px;
    border: 2px ridge blue;
    background-image: url('../img/referenzen.jpg');
    text-align: center;
    /* for IE */
    filter:alpha(opacity=20);
    /* CSS3 standard */
    opacity:0.2;
}

#contentmenu h1 span {
    color:black;
    /* for IE */
    filter:alpha(opacity=100);
    /* CSS3 standard */
    opacity:1.0;
}

#contentmenu .projectlist {
    padding-top: 15px;
    margin-left: 50px;
    margin-right: 50px;
    padding: 0 10px;
    border: 2px ridge blue;
    border-radius: 9px;
    /*
    -moz-border-radius-topleft: 9px;
    -moz-border-radius-topright: 9px;
    -webkit-border-top-right-radius: 9px;
    -webkit-border-top-left-radius: 9px;
    -moz-border-radius-bottomleft: 9px;
    -moz-border-radius-bottomright: 9px;
    -webkit-border-bottom-right-radius: 9px;
    -webkit-border-bottom-left-radius: 9px;
    */
}

#contentmenu .projectlist a {
    display:block;
    text-decoration: none;
}
/* end of contentmenu definition */


/* start of contenttext definition */
#contenttext {
    position: absolute;
    top: 215px;
    left: 330px;
    right: 0;
    bottom: 40px;
    overflow: auto;
    margin: 10px;
    padding-top: 10px;
}

#contenttext .odd, #contenttext .even {
    border: 2px ridge blue;
    border-radius: 9px;
    /*
    -moz-border-radius-topleft: 9px;
    -moz-border-radius-topright: 9px;
    -webkit-border-top-right-radius: 9px;
    -webkit-border-top-left-radius: 9px;
    -moz-border-radius-bottomleft: 9px;
    -moz-border-radius-bottomright: 9px;
    -webkit-border-bottom-right-radius: 9px;
    -webkit-border-bottom-left-radius: 9px;
    margin:10px;
    margin-left:0;
    */
    padding: 5px 10px;
    margin: 12px 10px;
}

#contenttext .odd a[name], #contenttext .even a[name] {
    margin:0;
    padding:0;
}

#contenttext .even {
    background-color: #ddddff;
}

#contenttext p {
    margin:20px 0;
}


#contenttext p.first {
    margin-top:20px;
}


#contenttext .slogan {
    font-size: 110%;
    font-weight: bold;
}

#contenttext dl {
    /*border: 1px dashed lightgray;*/
    margin-left:0;
    padding-left:0;
}

#contenttext dt {
    font-weight:bold;
    display:block;
    margin-left: 0px;
    margin-top: 15px;
}

#contenttext dd {
    font-style:italic;
    display:block;
    margin-left: 40px;
}
/* end of contenttext definition */

/* temporary styles for development */
.done {
    background-color: #004623;
    color: #66FF66;
}

.review {
    background-color: #B5B52D;
    color: #FFFF99;
}


