/* 
Document   : style_ips
Created on : 4/Fev/2011, 14:57:07
Author     : duarte
Description:
Purpose of the stylesheet follows.
*/

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

/*import useful settings*/
@import "style.css";

/*Body General Settings*/
body {
    text-align: center;
    font-family:Verdana;
}

h1{
    font-weight:bolder;
    font-size:1.1em;
    color:#44762D;
    margin:1.5em 0 0;
}

h2{
    color:#44762D;
    font-weight:bolder;
    font-size:0.8em;
    margin:1.5em 0 0;
}

h3{
    color:#44762D;
    font-size:0.8em;
    margin:1.5em 0 1.5em;
    font-weight:lighter;
}

#userMenu{
    text-align:right;
    margin:2em 0;
}

#userMenu a{
    font-size:0.65em;
    color: #44762D;
    font-weight:bolder;
    text-decoration:underline;
    cursor:pointer;
}

/*
#userMenu a:hover{
    color:black;
}
*/

table{
    width:100%
}

.smallFont{
    font-size:0.6em;
}

.bolder{
    font-weight:bolder;
}

/*Image Header Settings*/
#imageHeader{
    width:100%;
    border:0;
}

/*Aplication Container Settings*/
#container {
    margin: 0 auto;
    width:80%;
    text-align: left;
}

/*
Used on all Kind of Errors.
*/
.generalErrorMsg{
    margin: 1em 0 0;
    border: thin solid;
    color: #D63301;
    background-color: #FFCCBA;
}

/*
Used on success messages
*/
.generalSuccessMsg{
    margin: 1em 0 0;
    font-size:0.8em;
    border: thin solid;
    color: green;
    background-color: #99ff60;
    padding: 0.5em 0;
}

.infoLabel{
    font-size:0.8em;
    color:#6CBF0D;
    position:relative;
    float:left;
    left:15%;
}

.break{
    clear:both;
}