


/*////////////////////////////////////////////////////////////////////////////////////////////////
// app.css - Beinhaltet Applikationen
////////////////////////////////////////////////////////////////////////////////////////////////*/



/* Ticker
////////////////////////////////////////////////////////////////////////////////////////////////*/

.tickercontainer { /* the outer div with the black border */
    position:absolute;
    top:-30px;
    right:10px;
    width:565px;
    height: 27px;
    margin: 0;
    padding: 0;
    overflow: hidden;
}
.tickercontainer .mask { /* that serves as a mask. so you get a sort of padding both left and right */
    position: relative;
    left: 10px;
    top: 8px;
    width:565px;
    overflow: hidden;
}
ul.newsticker { /* that's your list */
    position: relative;
    left:565px;
    list-style-type: none;
    margin: 0;
    padding: 0;
}
ul.newsticker li {
    float: left; /* important: display inline gives incorrect results when you check for elem's width */
    margin: 0;
    padding: 0;
}
ul.newsticker a {
    white-space: nowrap;
    padding: 0;
    font: bold 10px Verdana;
    margin: 0 50px 0 0;
}
ul.newsticker span {
    margin: 0 10px 0 0;
}


/* Map / Netzwerkkarte
////////////////////////////////////////////////////////////////////////////////////////////////*/


#mapapp {
    height:500px;
}

#mapapp .tabmenu .tab {
    float:left;
    border:1px solid #6699CC;
}

#mapapp .tabmenu .tab a {
    display:block;
    padding:2px 5px 2px 5px;
    text-decoration:none;
    background-color:#C5D1E9;
}

#mapapp .map {
    position:absolute;
    border:1px solid #6699CC;
}

#mapapp .mapobject {
    width:15px;
    height:15px;
}

#mapapp .mapobject a {
    display:block;
    width:100%;
    height:100%;
    background:transparent url('../images/icons/flag_orange.png') no-repeat;
    text-decoration:none;
}

#overDiv {
    padding:5px 8px 5px 8px;
    border:1px dotted #6699CC;
    background-color:#C5D1E9;
    text-align:left;
}

#overDiv h3 {
    margin:0 0 5px 0;
}


#map {
    width:450px;
    height:450px;
    overflow:hidden;
}
