* /*Set's border, padding and margin to 0 for all values*/
{
padding: 0;
margin: 0;
border: 0;
}
body, html {
color: #000000; 
font-family: Arial, Verdana;
background-color: #eee; 
text-align: center; /*** Centers the design in old IE versions ***/
height: 100%;
}
body {
font-size: 70%;
}
p {padding: 7px 0 7px 0;}


#mainContainer {
    width: 778px;
    margin: 0 auto;
    min-height: 100%;
    background: #FFFFFF;
    text-align: left;
    border-left: solid 1px #27146A;
    border-right: solid 1px #27146A;
}
* html #mainContainer {
    height: 100%; 
}
/**************************
HEADER
**************************/
#header {
    background: #000099;
    padding: 0px
}
#menu 
{
    background-image: url(Imagens/menuFundo.jpg);
    color: White;
    height: 23px;
    text-align: center;
    padding-top: 7px;
}

a.lkMenu
{
    color: White;
    font-family: Arial;
    font-size: 12px;
    font-weight: bold;
    text-decoration: none;
}
a.lkMenu:hover
{
    text-decoration: underline;
}
/**************************
CONTENT AND COLUMNS
**************************/
.outer {
padding-left: 0px;  
}
* html .outer {
padding-right: 0px; /* Normally this shouldn't be in this hack, it should be in .outer, but because of IE7 I had to */
}
.inner {
width: 778px; /*** This width is for non-IE browsers. Mozilla makes this necessary. Be sure to check your layout in different browsers if you changes this value. Especially IE7 seems to create a horisontal scroll if this value is set too large ***/
padding-bottom: 30px;
}
* html .inner {
width: 100%;
}
/*** div.inner is wider than its container, div.outer, and so overlaps to the right, pushing
div.right into the proper position. IE expands div.outer instead, requiring a Tan hack to avoid 
blowing the layout apart. IE gets the original 100% width as in the Livingstone layout.
***/
.float-wrap {
width: 778px;
margin-left: 0px; /*** Same length as .outer padding-left but with negative value ***/
}
* html .float-wrap {
/*** No need for hacking IE on this layout ***/
}
#content {
width: 778px;
background: #FFFFFF;
}
* html #content {
position: relative;  /*** IE needs this  ***/
}
.contentWrap{
padding: 0px;
}

/**************************
FOOTER
**************************/
#footer {
width: 778px;
height: 30px; /*** The drawback with this solution is that the height of the footer can't be flexible. If you add so much content to the footer that it extends 30px, you will get a vertical scrollbar and the content will overflow the footer if you don't set overflow to hidden ***/
margin: 0 auto;
margin-top: -30px; /*** By using a negative margin-top we now moves the footer up the same amount as the footer height to avoid vertical scrolling. Remember, if you use borders and padding on your footer you will have to calculate this in your negative margin-top value also. ***/
text-align: center;
vertical-align: middle;
background-color: silver;
}

div.texto
{
    padding: 0px 40px 15px 40px;
    text-align: justify;
    font-size: 12px;
}