/*----------------------------------------------------------------------------------

Author: Rocky Thomas
Contact: thomas.rocky@gmail.com

----------------------------------------------------------------------------------*/

body {
background-image: url(images/bg-tile.jpg);
background-repeat: repeat;
background-color: #4E4E50;
margin: 0;
padding: 0;
border: 0;
/*Netscape Hack:
Min-Width keeps contents within the div from spilling off of the page
if the window is resized smaller than the Wrapper Div*/
min-width: 800px;
font-family: Helvetica, Arial, Tahoma, sans-serif;
font-size: 14px;
color: #FFFFFF;
/* Internet Explorer Hack:
Text-Align in the Body makes EVERYTHING, including my Wrapper Div, centered */
text-align: center;
}

/* Placeholder text styles for later reference
p {
text-align: left;
line-height: 130%;
}

a {
color: #808080;
text-decoration: none;
border-bottom: 1px dotted #808080;
}

a:visited {
color: #808080;
border-bottom: 1px dotted #808080;

}

a:hover {
color: #404040;
border-bottom: 1px solid #404040;
}

a:active {
color: #000000;
border-bottom: 1px solid #000000;
}
*/


/* Container Divs
----------------------------------------------------------------------------------*/

#wrapper {
display: block;
width: 800px;
margin: 0 auto 0 auto;
/* Internet Explorer Hack:
Text-Align is being used here to counter act what I did in the Body
now all my text will be left aligned within the Wrapper Div*/
text-align: left;
}



/* Divs containing content
----------------------------------------------------------------------------------*/

.coming-soon {
display: block;
width: 800px;
height: 400px;
margin: 0 auto 0 auto;
padding: 0px;
overflow: hidden;
}