/* @override 
	http://localhost:8888/css/main.css
	http://www.seqoy.com/css/main.css
*/

/* //////////////////////////////////

 main.css 
 
 SEQOY Web Site 2.0 (seqoy.com)
 
 Creation Date: May, 12. 2009
 Created by: SEQOY Development Team
 
 This file it's a open source CSS file, 
 you can use this code as free as you want.


////////////////////////////////// */

/* /// /////////// //////////////////////////// // /////////// // /////////// /////////*/

/* Background */

body {	

	margin: 0;

/* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	text-align: center;
	font-family: "Lucida Grande", "Lucida Sans Unicode", "Helvetica Neue", Helvetica, Arial, Geneva, sans-serif;
}


/* /// /////////// //////////////////////////// // /////////// // /////////// /////////*/

/* First Container - 100% Width */

.seqoyContainer #firstContainer {
	width: 100%;
	margin: 0 auto 11px;


/* the auto margins (in conjunction with a width) center the page */
	text-align: left;
}

/* /// /////////// //////////////////////////// // /////////// // /////////// /////////*/

/* Container centereded. */

.seqoyContainer #secondContainer {
	display: table;
	width: 1024px;


/* the auto margins (in conjunction with a width) center the page */
	text-align: left;
	margin-top: 0;
	margin-left: auto;
	margin-right: auto;
	padding-bottom: 18px;
}


