/* 
  style.css contains a reset, font normalization and some base styles.
  
  credit is left where credit is due.
  additionally, much inspiration was taken from these projects:
    yui.yahooapis.com/2.8.1/build/base/base.css
    camendesign.com/design/
    praegnanz.de/weblog/htmlcssjs-kickstart
*/

/* 
  html5doctor.com Reset Stylesheet (Eric Meyer's Reset Reloaded + HTML5 baseline)
  v1.4 2009-07-27 | Authors: Eric Meyer & Richard Clark
  html5doctor.com/html-5-reset-stylesheet/
*/

html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, figure, footer, header, hgroup, menu, nav, section, menu, time, mark, audio, video {
	margin:0;
	padding:0;
	border:0;
	outline:0;
	font-size:100%;
	vertical-align:baseline;
	background:transparent;
}
article, aside, figure, footer, header, hgroup, nav, section {
	display:block;
}
nav ul {
	list-style:none;
}
/* Remove possible quote marks (") from <q>, <blockquote>. */
blockquote, q {
	quotes:none;
}
blockquote:before, blockquote:after, q:before, q:after {
	content:'';
	content:none;
}
a {
	margin:0;
	padding:0;
	font-size:100%;
	vertical-align:baseline;
	background:transparent;
}
ins {
	background-color:#ff9;
	color:#000;
	text-decoration:none;
}
mark {
	background-color:#ff9;
	color:#000;
	font-style:italic;
	font-weight:bold;
}
del {
	text-decoration: line-through;
}
abbr[title], dfn[title] {
	border-bottom:1px dotted #000;
	cursor:help;
}
/* tables still need cellspacing="0" in the markup */
table {
	border-collapse: separate;
	border-spacing: 0;
}
caption, th, td {
	text-align: left;
	font-weight: normal;
}
table, td, th {
	vertical-align: middle;
}
/* 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.4em;
	border: none;
}
hr.space {
	background: #fff;
	color: #fff;
}
input, select {
	vertical-align:middle;
}
/* END RESET CSS */


/*
fonts.css from the YUI Library: developer.yahoo.com/yui/
          Please refer to developer.yahoo.com/yui/fonts/ for font sizing percentages

There are three custom edits:
 * remove arial, helvetica from explicit font stack
 * make the line-height relative and unit-less
 * remove the pre, code styles
*/
body {
	font:13px sans-serif;
	*font-size:small;
	*font:x-small;
	line-height:1.5;
}
table {
	font-size:inherit;
	font:100%;
}
select, input, textarea {
	font:99% sans-serif;
}
/* normalize monospace sizing 
 * en.wikipedia.org/wiki/MediaWiki_talk:Common.css/Archive_11#Teletype_style_fix_for_Chrome
 */
pre, code, kbd, samp {
	font-family: monospace, sans-serif;
}
/* 
 * minimal base styles 
 */
/* Default font settings. 
   The font-size percentage is of 16px. (0.75 * 16px = 12px) */
html {
	font-size:100.01%;
}
body {
	font-size: 75%;
	color: #696969;
	background: #fff;
	font-family: "Helvetica Neue", Arial, Helvetica, sans-serif;
}
/* #444 looks better than black: twitter.com/H_FJ/statuses/11800719859 */ 
body, select, input, textarea {
	color:#696969;
}
/*HEADINGS
----------------------------------------------------------*/
/* www.aestheticallyloyal.com/public/optimize-legibility/ */ 
h1, h2, h3, h4, h5, h6 {
	text-rendering: optimizeLegibility;
}
H1, H2, H3, H4, H5, H6 {
	font-size: 1.5em;
	color: #103D67;
	text-transform: none;
	font-weight: 200;
	margin-bottom: 0px;
}
H1 {
	font-size: 1.6em;
	padding-bottom: 0px;
	margin-bottom: 0px;
}
H1 A, H1 A:visited, H1 A:active {
	text-decoration: none;
	color: #FFFFFF !important;
}
H2 {
	font-size: 1.5em;
	font-weight: 600;
}
H3 {
	font-size: 1.2em;
}
H4 {
	font-size: 1.1em;
}
H5, H6 {
	font-size: 1em;
}
h1 img, h2 img, h3 img, h4 img, h5 img, h6 img {
	margin: 0;
}
/*this rule styles <h1> and <h2> tags that are the
first child of the left and right table columns*/
.rightColumn>H1, .rightColumn>H2, .leftColumn>H1, .leftColumn>H2 {
	margin-top: 0px;
}
/* Text elements
-------------------------------------------------------------- */

p {
	margin: 0 0 1.5em;
}
p img.left {
	float: left;
	margin: 1.5em 1.5em 1.5em 0;
	padding: 0;
}
p img.right {
	float: right;
	margin: 1.5em 0 1.5em 1.5em;
}
blockquote {
	margin: 1.5em;
	color: #666;
	font-style: italic;
}
strong {
	font-weight: bold;
}
em, dfn {
	font-style: italic;
}
dfn {
	font-weight: bold;
}
sub {
	vertical-align: sub;
	font-size: smaller;
}
sup {
	vertical-align: super;
	font-size: smaller;
}
abbr, acronym {
	border-bottom: 1px dotted #666;
}
address {
	margin: 0 0 1.5em;
	font-style: italic;
}
del {
	color:#666;
}
pre {
	padding: 15px;
	margin: 1.5em 0;
	/* www.pathf.com/blogs/2008/05/formatting-quoted-code-in-blog-posts-css21-white-space-pre-wrap/ */
  	white-space: pre; /* CSS2 */
	white-space: pre-wrap; /* CSS 2.1 */
	white-space: pre-line; /* CSS 3 (and 2.1 as well, actually) */
	word-wrap: break-word; /* IE */
}
pre, code, tt {
	font: 1em 'andale mono', 'lucida console', monospace;
	line-height: 1.5;
}
small {
	font-size:85%;
}
strong, th {
	font-weight: bold;
}
/* Misc classes
-------------------------------------------------------------- */

.small {
	font-size: .8em;
	margin-bottom: 1.875em;
	line-height: 1.875em;
}
.large {
	font-size: 1.2em;
	line-height: 2.5em;
	margin-bottom: 1.25em;
}
.hide {
	display: none;
}
.quiet {
	color: #666;
}
.loud {
	color: #000;
}
.highlight {
	background:#ff0;
}
.added {
	background:#060;
	color: #fff;
}
.removed {
	background:#900;
	color: #fff;
}
.first {
	margin-left:0;
	padding-left:0;
}
.last {
	margin-right:0;
	padding-right:0;
}
.top {
	margin-top:0;
	padding-top:0;
}
.bottom {
	margin-bottom:0;
	padding-bottom:0;
}
.title {
	display: block;
	float: left;
	text-align: left;
	width: auto;
}
.loginDisplay {
	font-size: 1.1em;
	display: block;
	text-align: right;
	padding: 10px;
	color: #FFFFFF;
}
.loginDisplay A:link {
	color: #FFFFFF;
}
.loginDisplay A:visited {
	color: #FFFFFF;
}
.loginDisplay A:hover {
	color: #FFFFFF;
}
.failureNotification {
	font-size: 1.2em;
	color: #FF0000;
}
.bold {
	font-weight: bold;
}
.submitButton {
	text-align: right;
	padding-right: 10px;
}
/* Accessible focus treatment: people.opera.com/patrickl/experiments/keyboard/test 
-------------------------------------------------------------- */


a {
	color: #009;
	text-decoration: underline;
}
a:hover, a:active {
	color:#036;
	text-decoration: none;
	outline: none;
}
a:active {
	color: #034AF3;
}
a, a:active, a:visited {
	color:#607890;
}
/*  j.mp/webkit-tap-highlight-color */
a:link {
	-webkit-tap-highlight-color: #FF5E99;
}
a:link {
	color: #3f7199;
	border-bottom: 0px solid #000000;
}
a:visited {
	color: purple;
	border-bottom: 0px solid #000000;
}
/* Lists
-------------------------------------------------------------- */

li ul, li ol {
	margin:0 1.5em;
}
ul, ol {
	margin: 0 1.5em 1.5em 1.5em;
}
ul {
	margin-left:30px;
	list-style-type: disc;
}
ol {
	margin-left:30px;
	list-style-type: decimal;
}
dl {
	margin: 0 0 1.5em 0;
}
dl dt {
	font-weight: bold;
}
dd {
	margin-left: 1.5em;
}
/* Tables
-------------------------------------------------------------- */

table {
	margin-bottom: 1.4em;
	width:100%;
}
th {
	font-weight: bold;
}
thead th {
	background: #c3d9ff;
}
th, td, caption {
	padding: 4px 10px 4px 5px;
}
tr.even td {
	background: #e5ecf9;
}
tfoot {
	font-style: italic;
}
caption {
	background: #eee;
}
td, td img {
	vertical-align:top;
}
/* maxvoltar.com/archive/-webkit-font-smoothing */
html {
	-webkit-font-smoothing: antialiased;
}
/* Form fields and form elements
-------------------------------------------------------------- */

input[type=text], input[type=password], input.text, input.title, textarea, select {
	background-color:#fff;
	border:1px solid #bbb;
}
input[type=text]:focus, input[type=password]:focus, input.text:focus, input.title:focus, textarea:focus, select:focus {
	border-color:#666;
}
input[type=text], input[type=password], input.text, input.title, textarea, select {
	margin:0.5em 0;
}
input.text, input.title {
	width: 300px;
	padding:5px;
}
input.title {
	font-size:1.5em;
}
textarea {
	width: 390px;
	height: 250px;
	padding:5px;
}
input[type=checkbox], input[type=radio], input.checkbox, input.radio {
	position:relative;
	top:.25em;
}
form.inline {
	line-height:3;
}
form.inline p {
	margin-bottom:0;
}
/* align checkboxes, radios, text inputs with their label
   by: Thierry Koblentz tjkdesign.com/ez-css/css/base.css  */
input[type="radio"] {
	vertical-align: text-bottom;
}
input[type="checkbox"] {
	vertical-align: bottom;
*vertical-align: baseline;
}
.ie6 input {
	vertical-align: text-bottom;
}
/* hand cursor on clickable input elements */
label, input[type=button], input[type=submit], button {
	cursor: pointer;
}
label {
	font-weight: bold;
}
fieldset {
	padding:1.4em;
	margin: 0 0 1.5em 0;
	border: 1px solid #ccc;
}
legend {
	font-weight: bold;
	font-size:1.2em;
}
/* Success, notice and error boxes
-------------------------------------------------------------- */

.error, .notice, .success {
	padding: .8em;
	margin-bottom: 1em;
	border: 2px solid #ddd;
}
.error {
	background: #FBE3E4;
	color: #8a1f11;
	border-color: #FBC2C4;
}
.notice {
	background: #FFF6BF;
	color: #514721;
	border-color: #FFD324;
}
.success {
	background: #E6EFC2;
	color: #264409;
	border-color: #C6D880;
}
.error a {
	color: #8a1f11;
}
.notice a {
	color: #514721;
}
.success a {
	color: #264409;
}


/* These selection declarations have to be separate.
   No text-shadow: twitter.com/miketaylr/status/12228805301 
   Also: hot pink. */
::-moz-selection {
background: #FF5E99;
color:#fff;
text-shadow: none;
}
::selection {
background:#FF5E99;
color:#fff;
text-shadow: none;
}
/* always force a scrollbar in non-IE */
html {
	overflow-y: scroll;
}
/* make buttons play nice in IE:    
   www.viget.com/inspire/styling-the-button-element-in-internet-explorer/ */
button {
	width: auto;
	overflow: visible;
}
/* bicubic resizing for non-native sized IMG: 
   code.flickr.com/blog/2008/11/12/on-ui-quality-the-little-things-client-side-image-resizing/ */
.ie7 img {
	-ms-interpolation-mode: bicubic;
}
/* 
 * Non-semantic helper classes 
 */

/* for image replacement */
.ir {
	display:block;
	text-indent:-999em;
	overflow:hidden;
	background-repeat: no-repeat;
}
/* Hide for both screenreaders and browsers
   css-discuss.incutio.com/wiki/Screenreader_Visibility */
.hidden {
	display:none;
	visibility:hidden;
}
/* Hide only visually, but have it available for screenreaders 
   www.webaim.org/techniques/css/invisiblecontent/ 
   Solution from: j.mp/visuallyhidden - Thanks Jonathan Neal! */
.visuallyhidden {
	position:absolute !important;
	clip: rect(1px 1px 1px 1px); /* IE6, IE7 */
	clip: rect(1px, 1px, 1px, 1px);
}
/* Hide visually and from screenreaders, but maintain layout */
.invisible {
	visibility: hidden;
}
/* >> The Magnificent CLEARFIX << */
.clearfix:after {
	content: ".";
	display: block;
	height: 0;
	clear: both;
	visibility: hidden;
	overflow:hidden;
}
.clearfix {
	display: inline-block;
}
* html .clearfix {
	height: 1%;
} /* Hides from IE-mac \*/
.clearfix {
	display: block;
}
/* 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, .container940:after {
	content: "\0020";
	display: block;
	height: 0;
	clear: both;
	visibility: hidden;
	overflow:hidden;
}
.clearfix {
	display: block;
	margin-left: 5px;
}
/* Regular clearing
   apply to column that should drop below previous ones. */

.clear {
	clear:both;
}
/* Primary Styles
    Author: 
-------------------------------------------------------------- */




.container940:after, .container:after {
	content: ".";
	display: block;
	height: 0;
	clear: both;
	visibility: hidden;
	overflow:hidden;
}
.container, .container940 {
	display: block;
}
/* --------------------------------------------------------------
   grid.css - mirror version of src/grid.css
-------------------------------------------------------------- */

/* A container should group all your columns. */
.container {
	width: 922px;
	margin: 0 auto;
}
.container940 {
	width: 950px;
	margin: 0 auto;
}
/* Use this class on any div.span / container to see the grid. */
.showgrid {
	background: url(grid.png);
}
/* Columns
-------------------------------------------------------------- */

/* Sets up basic grid floating and margin. */
.column, 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-225, div.span-410, div.span-415, div.span-425 {
	float: left;
	margin-right: 15px;
}
/* The last column in a row needs this class. */
.last, div.last {
	margin-right: 0;
}
/* Use these classes to set the width of a column. */
.span-1 {
	width: 88px;
}
.span-2 {
	width: 191px;
}
.span-3 {
	width: 294px;
}
.span-4 {
	width: 397px;
}
.span-5 {
	width: 500px;
}
.span-6 {
	width: 603px;
}
.span-7 {
	width: 716px;
}
.span-8 {
	width: 809px;
}
.span-9 {
	width: 912px;
	margin-right: 0;
}
.span-10 {
    width: 345px;
}
.span-11 {
    margin-top: 10px;
    margin-left: 10px;
}
.span-12 {
    width: 600px;
}
.span-225 {
    width: 225px;
}
.span-415 {
    width: 415px;
}
.span-420 {
    width: 420px;
}
.span-425 {
    width: 425px;
}
    
/* Use these classes to set the width of an input. */
input.span-1, textarea.span-1, input.span-2, textarea.span-2, input.span-3, textarea.span-3, input.span-4, textarea.span-4, input.span-5, textarea.span-5, input.span-6, textarea.span-6, input.span-7, textarea.span-7, input.span-8, textarea.span-8, input.span-9, textarea.span-9 {
	border-left-width: 1px!important;
	border-right-width: 1px!important;
	padding-left: 5px!important;
	padding-right: 5px!important;
}
input.span-1, textarea.span-1 {
	width: 76px!important;
}
input.span-2, textarea.span-2 {
	width: 179px!important;
}
input.span-3, textarea.span-3 {
	width: 282px!important;
}
input.span-4, textarea.span-4 {
	width: 385px!important;
}
input.span-5, textarea.span-5 {
	width: 488px!important;
}
input.span-6, textarea.span-6 {
	width: 591px!important;
}
input.span-7, textarea.span-7 {
	width: 694px!important;
}
input.span-8, textarea.span-8 {
	width: 797px!important;
}
input.span-9, textarea.span-9 {
	width: 900px!important;
}
/* Add these to a column to append empty cols. */

.append-1 {
	padding-right: 103px;
}
.append-2 {
	padding-right: 206px;
}
.append-3 {
	padding-right: 309px;
}
.append-4 {
	padding-right: 412px;
}
.append-5 {
	padding-right: 515px;
}
.append-6 {
	padding-right: 618px;
}
.append-7 {
	padding-right: 721px;
}
.append-8 {
	padding-right: 824px;
}
/* Add these to a column to prepend empty cols. */

.prepend-1 {
	padding-left: 103px;
}
.prepend-2 {
	padding-left: 206px;
}
.prepend-3 {
	padding-left: 309px;
}
.prepend-4 {
	padding-left: 412px;
}
.prepend-5 {
	padding-left: 515px;
}
.prepend-6 {
	padding-left: 618px;
}
.prepend-7 {
	padding-left: 721px;
}
.prepend-8 {
	padding-left: 824px;
}
/* Border on right hand side of a column. */
div.border {
	padding-right: 6px;
	margin-right: 8px;
	border-right: 1px solid #eee;
}
/* Border with more whitespace, spans one column. */
div.colborder {
	padding-right: 58px;
	margin-right: 59px;
	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: -103px;
}
.pull-2 {
	margin-left: -206px;
}
.pull-3 {
	margin-left: -309px;
}
.pull-4 {
	margin-left: -412px;
}
.pull-5 {
	margin-left: -515px;
}
.pull-6 {
	margin-left: -618px;
}
.pull-7 {
	margin-left: -721px;
}
.pull-8 {
	margin-left: -824px;
}
.pull-9 {
	margin-left: -927px;
}
.pull-1, .pull-2, .pull-3, .pull-4, .pull-5, .pull-6, .pull-7, .pull-8, .pull-9 {
	float: left;
	position:relative;
}
.push-1 {
	margin: 0 -103px 1.5em 103px;
}
.push-2 {
	margin: 0 -206px 1.5em 206px;
}
.push-3 {
	margin: 0 -309px 1.5em 309px;
}
.push-4 {
	margin: 0 -412px 1.5em 412px;
}
.push-5 {
	margin: 0 -515px 1.5em 515px;
}
.push-6 {
	margin: 0 -618px 1.5em 618px;
}
.push-7 {
	margin: 0 -721px 1.5em 721px;
}
.push-8 {
	margin: 0 -824px 1.5em 824px;
}
.push-9 {
	margin: 0 -927px 1.5em 927px;
}
.push-1, .push-2, .push-3, .push-4, .push-5, .push-6, .push-7, .push-8, .push-9 {
	float: right;
	position:relative;
}
/* In case you need to add a gutter above/below an element */
.prepend-top {
	margin-top:1.5em;
}
.append-bottom {
	margin-bottom:1.5em;
}
/* Use a .box to create a padded box inside a column.  */ 
.box {
	padding: 1.5em;
	margin-bottom: 1.5em;
	background: #E5ECF9;
}

/* 
 * print styles
 * inlined to avoid required HTTP connection www.phpied.com/delay-loading-your-print-css/ 
 */
@media print {
* {
	background: transparent !important;
	color: #444 !important;
	text-shadow: none;
}
a, a:visited {
	color: #444 !important;
	text-decoration: underline;
}
a:after {
	content: " (" attr(href) ")";
}
abbr:after {
	content: " (" attr(title) ")";
}
.ir a:after {
	content: "";
}  /* Don't show links for images */
pre, blockquote {
	border: 1px solid #999;
	page-break-inside: avoid;
}
img {
	page-break-inside: avoid;
}
    img.top {
        border: none;
    }

 @page {
margin: 0.5cm;
}
p, h2, h3 {
	orphans: 3;
	widows: 3;
}
h2, h3 {
	page-break-after: avoid;
}
}



/*
 * Media queries for responsive design
 */

@media all and (orientation:portrait) {
/* Style adjustments for portrait mode goes here */
  
}
 @media all and (orientation:landscape) {
/* Style adjustments for landscape mode goes here */
  
}

/* Grade-A Mobile Browsers (Opera Mobile, iPhone Safari, Android Chrome)  
   Consider this: www.cloudfour.com/css-media-query-for-mobile-is-fools-gold/ */
@media screen and (max-device-width: 480px) {
  
  
  /* Prevent iOS, WinMobile from adjusting font size */
  html {
-webkit-text-size-adjust:none;
-ms-text-size-adjust:none;
}
}
