/* -------------------------------------------------------------- 
   
   BLUEPRINT CSS
    * Filename:        grid.css
    * Version:         0.7.1 (2008-02-25) YYYY-MM-DD
    * Website:         http://code.google.com/p/blueprintcss/

   Generated by:
    * Blueprint CSS Grid Generator (2008-12-26) [http://kematzy.com/blueprint-generator/]

   Based on work by:
    * Olav Bjorkoy      [bjorkoy.com]
    * Nathan Borror     [playgroundblues.com]
    * Jeff Croft        [jeffcroft.com]
    * Christian Metts   [mintchaos.com]
    * Khoi Vinh         [subtraction.com]

   == STRUCTURE: ========================
    * Page width:            760 px
    * Number of columns:     4
    * Column width:          175 px
    * Margin width:          20 px
   ======================================

   By default, the grid is 760px wide, with 4 columns 
   spanning 175px, and a 20px margin between columns.

   If you need fewer or more columns, use this formula to calculate
   the new total width: 

   Total width = (number_of_columns * column_width) - margin_width

   Read more about using a grid here:
   * subtraction.com/archives/2007/0318_oh_yeeaahh.php
   
-------------------------------------------------------------- */

/* A container should group all your columns. */
.container {
  /*width: 760px;*/
  	width: 767px;
  margin: 0 auto;
	background: #fff url(../../img/back-container.jpg) repeat-y;
	/*background-color:#FFFFFF;*/
}

/* Use this class on any div.span / container to see the grid. */
.showgrid { 
  background: url(grid.png); 
}

/* Body margin for a sensile default look. */
body {
  margin:1.5em 0;	
}


/* Columns
-------------------------------------------------------------- */

/* Sets up basic grid floating and margin. */
div.span-1, div.span-2, div.span-3, div.span-4 {float:left;margin-right: 20px;}

/* The last column in a row needs this class. */
div.last { margin-right: 0; }

/* Use these classes to set the width of a column. */
.span-1  { width: 175px;}
.span-2  { width: 370px;}
.span-3  { width: 565px;}
.span-4, div.span-4 { width: 760px; margin: 0; }


/* Add these to a column to append empty cols. */
.append-1  { padding-right: 195px;}
.append-2  { padding-right: 390px;}
.append-3  { padding-right: 585px;}


/* Add these to a column to prepend empty cols. */
.prepend-1  { padding-left: 195px;}
.prepend-2  { padding-left: 390px;}
.prepend-3  { padding-left: 585px;}



/* Border on right hand side of a column. */
div.border {
  padding-right:9px;
  margin-right:10px;
  border-right: 1px solid #eee;
}

/* Border with more whitespace, spans one column. */
div.colborder {
  padding-right:168px;
  margin-right:165px;
  border-right: 1px solid #eee;
}

/* Use these classes on an element to push it into the 
   next column, or to pull it into the previous column.  */

.pull-1 { margin-left: -195px;}
.pull-2 { margin-left: -390px;}
.pull-3 { margin-left: -585px;}
.pull-4 { margin-left: -780px;}

.pull-1, .pull-2, .pull-3, .pull-4 {float:left;position:relative;}


.push-1 { margin: 0 -195px 1.5em 195px;}
.push-2 { margin: 0 -390px 1.5em 390px;}
.push-3 { margin: 0 -585px 1.5em 585px;}
.push-4 { margin: 0 -780px 1.5em 780px;}

.push-1, .push-2, .push-3, .push-4 {float:right;position:relative;}



/* Misc classes and elements
-------------------------------------------------------------- */

/* Use a .box to create a padded box inside a column.  */ 
.box { 
  padding: 1.5em; 
  margin-bottom: 1.5em; 
  background: #E5ECF9; 
}

.boxtext { 
  margin-bottom: 1.5em;
	padding: 20px 0 0;
}

.boxmenu { 
  padding: 0; 
  margin-bottom: 1.5em; 
  background: #ffffff;
}

.boxfooter { 
  /*padding: 0; 
  margin: 0;*/ 
  margin: 0 auto;
  background: url(../../img/back-footer.jpg) no-repeat;
	width: 767px;
	height: 20px;

	
}

.boxheader { 
  padding: 0; 
  margin: 0; 
  background: 0 none;
	width: 767px;
	height: 140px;
}


.empty {
	background: none;
	width: 767px;
}




/* Use a .menu to create the menu.  */ 


#menu {
	width: 175px;
	padding:0;
	margin:0;
	list-style:none;
	float:left;
}

#menu li {
	width: 175px;
	height: 27px;
	margin:0;
	padding-left: 35px;
	float:left;
	background:url(../../img/back-menuleft.gif) no-repeat 0 0;
}

#menu li:hover {
	background-position: 0 -27px;
	_background-position: 0 -27px !important;
 }
 
 #menu li:hover div {
 	background-position: 100% -27px;
 	_background-position: 100% -27px !important;
 }

#menu li#diff-1 {
margin-right:0;
}

#menu li#head {
	background:url(../../img/back-menuleft-head.gif) no-repeat 0 0;
}



#menur {
	width: 151px;
	padding-left:21px;
	margin:0;
	list-style:none;
	float:left;
}

#menur li {
	width: 151px;
	height: 27px;
	margin:0;
	padding-left: 7px;
	float:right;
	background:url(../../img/back-menuright.gif) no-repeat 0 0;
}

#menur li:hover {
	background-position: 0 -27px;
 }
 
 #menur li:hover div {
 	background-position: 100% -27px;
 }

#menur li#diff-1 {
margin-right:0;
}

.darkgreen {
	background-color: ;
}






/* Use this to create a horizontal ruler across a column. */
hr {
  background: #ddd; 
  color: #ddd;
  clear: both; 
  float: none; 
  width: 100%; 
  height: .1em;
  margin: 0 0 1.45em;
  border: none; 
}
hr.space {
  background: #fff;
  color: #fff;
}


/* Clearing floats without extra markup
   Based on How To Clear Floats Without Structural Markup by PiE
   [http://www.positioniseverything.net/easyclearing.html] */

.clearfix:after, .container:after {
    content: "."; 
    display: block; 
    height: 0; 
    clear: both; 
    visibility: hidden;
}
.clearfix, .container {display: inline-block;}
* html .clearfix,
* html .container {height: 1%;}
.clearfix, .container {display: block;}

/* Regular clearing
   apply to column that should drop below previous ones. */

.clear { clear:both; }
