/* @override http://172.16.142.129/stylesheets/grid.css */

/* Reuseable grid, including re-useable classes and straight tag styles */

	/* Root elements with standard margin */
	.fullwidth {
		width: 960px;
		clear: both;
	}
	/* Two different column widths for two kinds of fun */
	.widecolumn {
		width: 530px;
	}
	.narrowcolumn {
		width: 230px;
	}
	/* And either type of column can be arranged either side, although typically it'll be small on the right. */
	.leftcolumn {
		width: 493px;
		float: left;
		clear: left;
	}
		/* Correct for any fullwidth bits we have containing columned segments */
		.fullwidth .leftcolumn {
			margin-left: 0;
		}
	.rightcolumn {
		width: 450px;
		float: right;
		clear: right;
	}
	/* We want to tweak the main page brands slightly so they have a larger margin. We'll do it with padding to keep things relative. */
	.brandgrid {		
	}
	

/* Markup-specific grid */
div#root {
	width: 960px;
	margin-left: auto;
	margin-right: auto;
}
	div#network {
	
	}
		div#network ul {
			list-style-type: none;
			padding-top: 3px;
		}
			div#network ul li {
				float: right;
				margin-left: 10px;
			}
	div#header {
		height: 85px;
		padding-top: 30px;
	}
		div#header #freetrialpromo {
			margin-top: 50px;
		}

	div#main {
			
	}
