/** RESET **/
html,body,div,span,object,iframe,
h1,h2,h3,h4,h5,h6,p,a,em,img,strong,
dl,dt,dd,ol,ul,li,
fieldset,form,label,legend,
table,caption,tbody,tfoot,thead,tr,th,td{
    border:0;
    outline:0;
    font-size:100%;
    vertical-align:baseline;
    background:transparent;
    margin:0;
    padding:0
}
body{
    line-height:1
}
strong,th,thead td,h1,h2,h3,h4,h5,h6,dt{
    font-weight:bold
}
:active,:focus{
    outline: none
}
ul,ol{
    list-style:square
}
a{
    color:inherit;
    text-decoration:underline;
    outline:none;
}
img{
    border:none;
    margin:0
}
img a{
    border:0
}
table{
    border-collapse:collapse;
    border-spacing:0
}
tr,th,td{
    border:none
}
hr,.hid{
    display:none
}
a,input,select{
    cursor:pointer
}
input[type='text'],input[type='password']{
    cursor:text
}
.clr:after {
    content: ".";
    display: block;
    clear: both;
    visibility: hidden;
    line-height: 0;
    height: 0
}
.clr {
    display: inline-block
}
html[xmlns] .clr {
    display: block
}
* html .clr {
    height: 1%
}


/** BASIC FONTS AND COLORS DEFINITION **/
body{
    background: #FFF
}
body, input{
    color: #2d2d2d;
    font: 15px/21px Gerogia, serif /** FONT SIZE DEFINED IN PX, MODERN BROWSERS USE PAGE ZOOMIMG **/
}
h1, h2, h3, h4, h5{
    color: #000;
    font-weight: normal;
}
h1{
    font-size: 32px;
}
h2{
    font-size: 26px;
    margin: 35px 0 10px;    
}
h3{
    font-size: 17px;
    margin: 0 0 10px;
    padding: 0 0 5px;
    color: #fff;
    border-bottom: 1px solid #fff
}
p{
    margin: 5px 0 10px
}
ul{
    margin-left: 13px;
    font-size: 14px;
}
a{
    color: #000
}
a:hover{
    color: #000;
    text-decoration: none
}


@media screen {

/** LAYOUT **/
#container{
    width: 800px;
    margin: 0 auto;
    padding-bottom: 50px;
}
#header{
    height: 155px;
    border-bottom: 1px solid #000;
    margin-top: 30px;
}

h1{
    float: left
}
#header p{
    float: right;
    text-align: right
}

.box{
    background: red;
    width: 185px;
    float: left;
    margin: 15px 20px 20px 0;
    color: #fff;
    height: 185px;
}
.box .content{
    padding: 10px 13px;
}
.civil{
    background: #009ce7
}
.commercial{
    background: #00af00
}
.european{
    background: #6c1a91
}
.administration{
    background: #db2f05;
    margin-right: 0;
}



}
@media print {

/** HIDDING ELEMENTS WE DONT WANNA PRINT **/
.hid{display: none}


}