/* 
    Document   : main
    Created on : Oct 16, 2010, 12:57:39 PM
    Author     : dhaval
    Description:
        Purpose of the stylesheet follows.
*/

/* 
   TODO customize this sample style
   Syntax recommendation http://www.w3.org/TR/REC-CSS2/
*/

html, body{
    margin:0;
    padding: 0;
}

body {
    font-family: Arial, Helvetica, Verdana, Sans-serif;
    font-size: 12px;
    color: #666666;
    background: #ffffff;
}

#page-container {
    margin: 10px;
}

#main-nav{
    background-color: white;
    height: 50px;
}

#header {
    background: blue;
    height: 0px;
}

#sidebar-a {
    background: darkgreen;
    float: right;
    width: 280px;
}

#content {
    background: green;
}

#content h2{
    margin: 0;
    padding: 0;
}

#content p{
    margin: 0;
    padding: 0;
}

#footer {
    clear: both;
    /*background: orange;*/
    height: 66px;
}

h1{
    margin: 0;
    padding: 0;
}
.hidden{
    display: none;
}

#map_canvas { height: 100% }

.appinfo {
    /* must be initially hidden */
    display:none;

    /* place overlay on top of other elements */
    z-index:10000;

    /* styling */
    background-color:white;

    border:1px solid #666;
    

    /* CSS3 styling for latest browsers */
    -moz-box-shadow:0 0 90px 5px #000;
    -webkit-box-shadow: 0 0 90px #000;
}

.appinfo.applist{
}

.appinfo .close {
    background-image:url(../img/overlay/close.png);
    position:absolute;
    right:-15px;
    top:-15px;
    cursor:pointer;
    height:35px;
    width:35px;
}

.appentry {
    float: left;
    min-height: 30px;
    min-width: 90px;
    border: 1px solid lightgray;
}

.details-header{
    font-size: 1.2em;
    text-align: center;
    padding-top: 10px;
    font-weight: bold;
    color: orange;
    font-style: italic;
}

.details {
    margin: 10px;
    max-width: 400px;
    max-height: 200px;
    overflow: auto;
}