/* -------------------------------------------------------------- 
   
   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 (2009-04-03) [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:            1000 px
    * Number of columns:     23
    * Column width:          32 px
    * Margin width:          12 px
   ======================================

   By default, the grid is 1000px wide, with 23 columns 
   spanning 32px, and a 12px 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: 1000px;
  margin: 0 auto;
}

/* Use this class on any div.span / container to see the grid. */
.showgrid { 
  background: url(src/grid.png); 
}

/* Body margin for a sensile default look. */
body {
  margin: 0;	
}


/* Columns
-------------------------------------------------------------- */

/* Sets up basic grid floating and margin. */
div.span-1, div.span-2, div.span-3, div.span-4, div.span-5, div.span-6, div.span-7, div.span-8, div.span-9, div.span-10, div.span-11, div.span-12, div.span-13, div.span-14, div.span-15, div.span-16, div.span-17, div.span-18, div.span-19, div.span-20, div.span-21, div.span-22, div.span-23 {float:left;margin-right: 12px;}

/* 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: 32px;}
.span-2  { width: 76px;}
.span-3  { width: 120px;}
.span-4  { width: 164px;}
.span-5  { width: 208px;}
.span-6  { width: 252px;}
.span-7  { width: 296px;}
.span-8  { width: 340px;}
.span-9  { width: 384px;}
.span-10 { width: 428px;}
.span-11 { width: 472px;}
.span-12 { width: 516px;}
.span-13 { width: 560px;}
.span-14 { width: 604px;}
.span-15 { width: 648px;}
.span-16 { width: 692px;}
.span-17 { width: 736px;}
.span-18 { width: 780px;}
.span-19 { width: 824px;}
.span-20 { width: 868px;}
.span-21 { width: 912px;}
.span-22 { width: 956px;}
.span-23, div.span-23 { width: 1000px; margin: 0; }


/* Add these to a column to append empty cols. */
.append-1  { padding-right: 44px;}
.append-2  { padding-right: 88px;}
.append-3  { padding-right: 132px;}
.append-4  { padding-right: 176px;}
.append-5  { padding-right: 220px;}
.append-6  { padding-right: 264px;}
.append-7  { padding-right: 308px;}
.append-8  { padding-right: 352px;}
.append-9  { padding-right: 396px;}
.append-10 { padding-right: 440px;}
.append-11 { padding-right: 484px;}
.append-12 { padding-right: 528px;}
.append-13 { padding-right: 572px;}
.append-14 { padding-right: 616px;}
.append-15 { padding-right: 660px;}
.append-16 { padding-right: 704px;}
.append-17 { padding-right: 748px;}
.append-18 { padding-right: 792px;}
.append-19 { padding-right: 836px;}
.append-20 { padding-right: 880px;}
.append-21 { padding-right: 924px;}
.append-22 { padding-right: 968px;}


/* Add these to a column to prepend empty cols. */
.prepend-1  { padding-left: 44px;}
.prepend-2  { padding-left: 88px;}
.prepend-3  { padding-left: 132px;}
.prepend-4  { padding-left: 176px;}
.prepend-5  { padding-left: 220px;}
.prepend-6  { padding-left: 264px;}
.prepend-7  { padding-left: 308px;}
.prepend-8  { padding-left: 352px;}
.prepend-9  { padding-left: 396px;}
.prepend-10 { padding-left: 440px;}
.prepend-11 { padding-left: 484px;}
.prepend-12 { padding-left: 528px;}
.prepend-13 { padding-left: 572px;}
.prepend-14 { padding-left: 616px;}
.prepend-15 { padding-left: 660px;}
.prepend-16 { padding-left: 704px;}
.prepend-17 { padding-left: 748px;}
.prepend-18 { padding-left: 792px;}
.prepend-19 { padding-left: 836px;}
.prepend-20 { padding-left: 880px;}
.prepend-21 { padding-left: 924px;}
.prepend-22 { padding-left: 968px;}



/* Border on right hand side of a column. */
div.border {
  padding-right:5px;
  margin-right:6px;
  border-right: 1px solid #eee;
}

/* Border with more whitespace, spans one column. */
div.colborder {
  padding-right:29px;
  margin-right:26px;
  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: -44px;}
.pull-2 { margin-left: -88px;}
.pull-3 { margin-left: -132px;}
.pull-4 { margin-left: -176px;}
.pull-5 { margin-left: -220px;}
.pull-6 { margin-left: -264px;}
.pull-7 { margin-left: -308px;}
.pull-8 { margin-left: -352px;}
.pull-9 { margin-left: -396px;}
.pull-10 { margin-left: -440px;}
.pull-11 { margin-left: -484px;}
.pull-12 { margin-left: -528px;}
.pull-13 { margin-left: -572px;}
.pull-14 { margin-left: -616px;}
.pull-15 { margin-left: -660px;}
.pull-16 { margin-left: -704px;}
.pull-17 { margin-left: -748px;}
.pull-18 { margin-left: -792px;}
.pull-19 { margin-left: -836px;}
.pull-20 { margin-left: -880px;}
.pull-21 { margin-left: -924px;}
.pull-22 { margin-left: -968px;}
.pull-23 { margin-left: -1012px;}

.pull-1, .pull-2, .pull-3, .pull-4, .pull-5, .pull-6, .pull-7, .pull-8, .pull-9, .pull-10, .pull-11, .pull-12, .pull-13, .pull-14, .pull-15, .pull-16, .pull-17, .pull-18, .pull-19, .pull-20, .pull-21, .pull-22, .pull-23 {float:left;position:relative;}


.push-1 { margin: 0 -44px 1.5em 44px;}
.push-2 { margin: 0 -88px 1.5em 88px;}
.push-3 { margin: 0 -132px 1.5em 132px;}
.push-4 { margin: 0 -176px 1.5em 176px;}
.push-5 { margin: 0 -220px 1.5em 220px;}
.push-6 { margin: 0 -264px 1.5em 264px;}
.push-7 { margin: 0 -308px 1.5em 308px;}
.push-8 { margin: 0 -352px 1.5em 352px;}
.push-9 { margin: 0 -396px 1.5em 396px;}
.push-10 { margin: 0 -440px 1.5em 440px;}
.push-11 { margin: 0 -484px 1.5em 484px;}
.push-12 { margin: 0 -528px 1.5em 528px;}
.push-13 { margin: 0 -572px 1.5em 572px;}
.push-14 { margin: 0 -616px 1.5em 616px;}
.push-15 { margin: 0 -660px 1.5em 660px;}
.push-16 { margin: 0 -704px 1.5em 704px;}
.push-17 { margin: 0 -748px 1.5em 748px;}
.push-18 { margin: 0 -792px 1.5em 792px;}
.push-19 { margin: 0 -836px 1.5em 836px;}
.push-20 { margin: 0 -880px 1.5em 880px;}
.push-21 { margin: 0 -924px 1.5em 924px;}
.push-22 { margin: 0 -968px 1.5em 968px;}
.push-23 { margin: 0 -1012px 1.5em 1012px;}

.push-1, .push-2, .push-3, .push-4, .push-5, .push-6, .push-7, .push-8, .push-9, .push-10, .push-11, .push-12, .push-13, .push-14, .push-15, .push-16, .push-17, .push-18, .push-19, .push-20, .push-21, .push-22, .push-23 {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; 
}

/* 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; }
/*** ESSENTIAL STYLES ***/
.sf-menu, .sf-menu * {
	margin:			0;
	padding:		0;
	list-style:		none;
}
.sf-menu {
	width: 900px;
}
.sf-menu li a{
	line-height:	2.0;
}

.sf-menu ul li a{
	line-height:	1.0;
}

.sf-menu ul {
	position:		absolute;
	top:			-999em;
	width:			15em; /* left offset of submenus need to match (see below) */
}
.sf-menu ul li {
	width:			100%;
}
.sf-menu li:hover {
	visibility:		inherit; /* fixes IE7 'sticky bug' */
}
.sf-menu li {
	float:			left;
	position:		relative;
}
.sf-menu a {
	display:		block;
	position:		relative;
}
.sf-menu li:hover ul,
.sf-menu li.sfHover ul {
	left:			0;
	top:			3.5em; /* match top ul list item height */
	z-index:		99;
}
ul.sf-menu li:hover li ul,
ul.sf-menu li.sfHover li ul {
	top:			-999em;
}
ul.sf-menu li li:hover ul,
ul.sf-menu li li.sfHover ul {
	left:			15em; /* match ul width */
	top:			0;
}
ul.sf-menu li li:hover li ul,
ul.sf-menu li li.sfHover li ul {
	top:			-999em;
}
ul.sf-menu li li li:hover ul,
ul.sf-menu li li li.sfHover ul {
	left:			15em; /* match ul width */
	top:			0;
}

/*** DEMO SKIN ***/
.sf-menu {
	float:			left;
	margin-bottom:	1em;
}
.sf-menu a {
	border-left:	1px solid #fff;
	border-top:	1px solid #c09f51;
	margin: 	.6em 0.65em;
	text-decoration:none;
}
.sf-menu a, .sf-menu a:visited  { /* visited pseudo selector so IE6 applies text colour*/
	color: #333;
}
.sf-menu li {
	background:	#333;
}

/*** arrows **/
.sf-menu a.sf-with-ul {
	margin-right: 	2.25em;
	min-width:		1px; /* trigger IE7 hasLayout so spans position accurately */
}
.sf-sub-indicator {
	position:		absolute;
	display:		block;
	right:			-385px;
	top:			1.05em; /* IE6 only */
	width:			10px;
	height:			10px;
	text-indent: 	-999em;
	overflow:		hidden;
	background:		url('/images/arrows-ffffff.png') no-repeat -10px -100px; /* 8-bit indexed alpha png. IE6 gets solid image only */
}
a > .sf-sub-indicator {  /* give all except IE6 the correct values */
	top:			124px;
	background-position: 0 -100px; /* use translucent arrow for modern browsers*/
}
/* apply hovers to modern browsers */
a:focus > .sf-sub-indicator,
a:hover > .sf-sub-indicator,
a:active > .sf-sub-indicator,
li:hover > a > .sf-sub-indicator,
li.sfHover > a > .sf-sub-indicator {
	background-position: -10px -100px; /* arrow hovers for modern browsers*/
}

/* point right for anchors in subs */
.sf-menu ul .sf-sub-indicator { background-position:  -10px 0; }
.sf-menu ul a > .sf-sub-indicator { background-position:  0 0; }
/* apply hovers to modern browsers */
.sf-menu ul a:focus > .sf-sub-indicator,
.sf-menu ul a:hover > .sf-sub-indicator,
.sf-menu ul a:active > .sf-sub-indicator,
.sf-menu ul li:hover > a > .sf-sub-indicator,
.sf-menu ul li.sfHover > a > .sf-sub-indicator {
	background-position: -10px 0; /* arrow hovers for modern browsers*/
}

/*** shadows for all but IE6 ***/
.sf-shadow ul {
	background:	url('/images/shadow.png') no-repeat bottom right;
	margin: 0 8px 9px 0;
	-moz-border-radius-bottomleft: 17px;
	-moz-border-radius-topright: 17px;
	-webkit-border-top-right-radius: 17px;
	-webkit-border-bottom-left-radius: 17px;
}
.sf-shadow ul.sf-shadow-off {
	background: transparent;
}

/*** adding the class sf-navbar in addition to sf-menu creates an all-horizontal nav-bar menu ***/
.sf-navbar {
	background:		#FFF;
	position:		relative;
	font-family: 	Arial, Helvetica, sans-serif;
	font-size: 		14px;
	font-weight: bold;
}
.sf-navbar li {
	background:		#FFF;
	position:		static;
}
.sf-navbar li ul {
	width:			60em; /*IE6 soils itself without this*/
}

.sf-navbar ul li {
	width:	auto;
	float:	left;
	color: 	#8A8D8E;
}
.sf-navbar a, .sf-navbar a:visited {
	border:			none;
}

.current a {
	color: #FFF;
}
.sf-navbar li.current {
	background:		#FFF;
}
.sf-navbar li:hover,
.sf-navbar li.sfHover,
.sf-navbar a:hover{
	background:		#c09f51;
	color: #FFF;
}
.sf-navbar ul li:hover, .sf-navbar ul li.current:hover {
	background:		#FFF;
	border-bottom: 2px solid #17A345;
	color: #FFF;
}

.sf-navbar ul li.current {
	background:		#FFF;
	border-bottom: 2px solid #c09f51;
	color: #FFF;
}

.sf-navbar ul li a, .sf-navbar ul li a:visited{
	background: #FFF;
	font-size: 12px;
	color: #9c9e9f;
	padding: 5px 0 0 0 !important;
}

.sf-navbar ul li a:hover{
	background: #FFF;
	font-size: 12px;
	color: #707173;
}

ul.sf-navbar li li li:hover,
ul.sf-navbar li li li.sfHover,
.sf-navbar li li.current li.current,
.sf-navbar ul li li a:focus, .sf-navbar ul li li a:hover, .sf-navbar ul li li a:active {
	background:		#FFF;
}
ul.sf-navbar .current ul,
ul.sf-navbar ul li:hover ul,
ul.sf-navbar ul li.sfHover ul {
	left:			0;
	top:			2.5em; /* match top ul list item height */
}
ul.sf-navbar .current ul ul {
	top: 			-999em;
}

.sf-navbar li li.current > a {
	color: #707173;
	font-weight: bold;
}

/*** point all arrows down ***/
/* point right for anchors in subs */
.sf-navbar ul .sf-sub-indicator { background-position: -10px -100px; }
.sf-navbar ul a > .sf-sub-indicator { background-position: 0 -100px; }
/* apply hovers to modern browsers */
.sf-navbar ul a:focus > .sf-sub-indicator,
.sf-navbar ul a:hover > .sf-sub-indicator,
.sf-navbar ul a:active > .sf-sub-indicator,
.sf-navbar ul li:hover > a > .sf-sub-indicator,
.sf-navbar ul li.sfHover > a > .sf-sub-indicator {
	background-position: -10px -100px; /* arrow hovers for modern browsers*/
}

/*** remove shadow on first submenu ***/
.sf-navbar > li > ul {
	background: transparent;
	padding: 0;
	-moz-border-radius-bottomleft: 0;
	-moz-border-radius-topright: 0;
	-webkit-border-top-right-radius: 0;
	-webkit-border-bottom-left-radius: 0;
}/* Default style sheet for jQuery date picker v3.5.2. */
#datepick-div, .datepick-inline {
	font-family: Arial,Helvetica,sans-serif;
	font-size: 14px;
	padding: 0;
	margin: 0;
	background: #ddd;
	color: #000;
	width: 185px;
}
#datepick-div {
	display: none;
	border: 1px solid #777;
	z-index: 100; /*must have*/
}
.datepick-inline {
	float: left;
	display: block;
	border: 0;
}
.datepick-rtl {
	direction: rtl;
}
.datepick-dialog {
	padding: 5px !important;
	border: 4px ridge #ddd !important;
}
.datepick-disabled {
	position: absolute;
	z-index: 100;
	background-color: white;
	opacity: 0.5;
	filter: alpha(opacity=50);
}
button.datepick-trigger {
	width: 25px;
	padding: 0px;
}
img.datepick-trigger {
	margin: 2px;
	vertical-align: middle;
}
.datepick-prompt {
	float: left;
	padding: 2px;
}
* html .datepick-prompt {
	width: 185px;
}
.datepick-control, .datepick-links, .datepick-header, .datepick {
	clear: both;
	float: left;
	width: 100%;
	color: #fff;
}
.datepick-control {
	background: #C09F51;
	padding: 2px 0px;
}
.datepick-links {
	background: #000;
	padding: 2px 0px;
}
.datepick-control, .datepick-links {
	font-weight: bold;
	font-size: 80%;
}
.datepick-links label {
	padding: 2px 5px;
	color: #888;
}
.datepick-clear, .datepick-prev {
	float: left;
	width: 34%;
}
.datepick-rtl .datepick-clear, .datepick-rtl .datepick-prev {
	float: right;
	text-align: right;
}
.datepick-current {
	float: left;
	width: 30%;
	text-align: center;
}
.datepick-close, .datepick-next {
	float: right;
	width: 34%;
	text-align: right;
}
.datepick-rtl .datepick-close, .datepick-rtl .datepick-next {
	float: left;
	text-align: left;
}
.datepick-header {
	background: #333;
	text-align: center;
	font-weight: bold;
	height: 1.6em;
}
.datepick-header select {
	background: #333;
	color: #fff;
	border: 0px;
	font-weight: bold;
}
.datepick-header span {
	position: relative;
	top: 3px;
}
.datepick {
	background: #ccc;
	text-align: center;
	font-size: 100%;
}
.datepick a {
	display: block;
	width: 100%;
}
.datepick-title-row {
	background: #777;
}
.datepick-title-row th {
	text-align: center;
	font-weight: normal;
}
.datepick-days-row {
	background: #eee;
	color: #666;
}
.datepick-week-col {
	background: #777;
	color: #fff;
}
.datepick-days-cell {
	color: #000;
	border: 1px solid #ddd;
}
.datepick-other-month {
	background: #fff;
}
.datepick-week-end-cell {
	background: #ddd;
}
.datepick-title-row .datepick-week-end-cell {
	background: #777;
}
.datepick-week-over {
	background: #ddd;
}
.datepick-unselectable {
	color: #888;
}
.datepick-today {
	background: #fcc;
}
.datepick-current-day {
	background: #777;
	color: #fff;
}
.datepick-days-cell-over {
	background: #fff;
	color: #000;
	border: 1px solid #777;
}
.datepick-status {
	background: #ddd;
	width: 100%;
	font-size: 80%;
	text-align: center;
}
#datepick-div a, .datepick-inline a {
	cursor: pointer;
	margin: 0;
	padding: 0;
	text-decoration: none;
}
.datepick-inline .datepick-links a {
	padding: 0 5px !important;
}
.datepick-control a, .datepick-links a {
	padding: 2px 5px !important;
	color: #eee;
}
.datepick-title-row a {
	color: #eee;
}
.datepick-control a:hover {
	background: #fdd;
	color: #333;
}
.datepick-links a:hover, .datepick-title-row a:hover {
	background: #ddd;
	color: #333;
}
.datepick-multi .datepick {
	border: 1px solid #777;
}
.datepick-one-month {
	float: left;
	width: 185px;
}
.datepick-new-row {
	clear: left;
}
/* ___________ IE6 IFRAME FIX ________ */
.datepick-cover {
    display: none; /*sorry for IE5*/
    display/**/: block; /*sorry for IE5*/
    position: absolute; /*must have*/
    z-index: -1; /*must have*/
    filter: mask(); /*must have*/
    top: -1px; /*must have*/
    left: -1px; /*must have*/
    width: 187px; /*must have*/
    height: 187px; /*must have*/
}
