/*
	Variable Grid System.
	Learn more ~ http://www.spry-soft.com/grids/
	Based on 960 Grid System - http://960.gs/

	Licensed under GPL and MIT.
*/

/*
  Forces backgrounds to span full width,
  even if there is horizontal scrolling.
  Increase this if your layout is wider.

  Note: IE6 works fine without this fix.
*/

/* Containers
----------------------------------------------------------------------------------------------------*/
.container_3 {
	margin-left: auto;
	margin-right: auto;
	width: 930px;
}

/* Grid >> Global
----------------------------------------------------------------------------------------------------*/


.grid_1,
.grid_2,
.grid_3 {
	display:inline;
	float: left;
	position: relative;
	margin-left: 0px;
}




/* Grid >> 3 Columns
----------------------------------------------------------------------------------------------------*/


.container_3 .grid_1 {
	width:330px;
	margin-right: 50px;
}

.container_3 .grid_2 {
	width:540px;
		margin-right: 0px;
}

.container_3 .grid_3 {
	width:910px;
}

/* Industry segments
----------------------------------------------------------------------------------------------------*/

#content .segment { padding:0; float:left; margin:0; margin-bottom: 20px; width: 100%;  padding-left:20px; text-align:justify; border-left: #fff solid 10px;}

#content .segment:hover { border-left: #CCC solid 10px; padding-left:20px; }

#content .segment H3 { margin-top:0px; }

#content .segment H3 a, #content .segment H3 a:active, #content .segment H3 a:visited  { color: #333; text-decoration:none;  }

#content .segment H3 a:hover{ color:#84155C; }

#content .selected { border-left: #84155C solid 10px;}

#content .selected H3 a, #content .selected H3 a:active, #content .selected H3 a:visited { color:#84155C; }

#content .segment .selected H3 a{ color:#84155C; }


/* `Clear Floated Elements
----------------------------------------------------------------------------------------------------*/

/* http://sonspring.com/journal/clearing-floats */

.clear {
  clear: both;
  display: block;
  overflow: hidden;
  visibility: hidden;
  width: 0;
  height: 0;
}

/* http://www.yuiblog.com/blog/2010/09/27/clearfix-reloaded-overflowhidden-demystified */

.clearfix:before,
.clearfix:after {
  content: '\0020';
  display: block;
  overflow: hidden;
  visibility: hidden;
  width: 0;
  height: 0;
}

.clearfix:after {
  clear: both;
}

/*
  The following zoom:1 rule is specifically for IE6 + IE7.
  Move to separate stylesheet if invalid CSS is a problem.
*/

.clearfix {
  zoom: 1;
}