/* $Id: layout1.css,v 1.1.2.1 2009/03/25 23:36:46 rhache Exp $ */

/**
* Three Column Layout #1
* Column Order: secondary --> primary --> tertiary
*
* DO NOT ADD ANY ADDITIONAL PROPERTIES TO FOLLOWING CODES.
* ONLY CHANGE EXISTING VALUES!
* 
* Formally Layout Gala #7 
*
*/

#container {
	width: 955px; /* total layout width */
}

#wrapper {
	float: left; 
	width: 100%;
}

#primary {
	margin-left: 224px; /* equal to secondary width */
	margin-right: 224px; /* equal to tertiary width */
}

#secondary {
	float: left; 
	width: 224px; 
	margin-left: -955px; /* negative value of container width */
}

#tertiary {
	float: left; 
	width: 224px; 
	margin-left: -224px; /* negative value of tertiary width */
}

/* no tertiary*/
.no-tertiary #primary,
.no-secondary-tertiary #primary {
	margin-right: 0;
}