/*
	Theme Name: World.edu Parent 
	Author: Nick Ryall
	Version: 1.0

	License: GNU General Public License v2.0
	License URI: http://www.gnu.org/licenses/gpl-2.0.html
	
*/
/*
	HTML5 ✰ Boilerplate 

	style.css contains a reset, font normalization and some base styles.

	credit is left where credit is due.
	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, canvas, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin:0;
  padding:0;
  border:0;
  outline:0;
  font-size:100%;
  vertical-align:baseline;
  background:transparent;
}                  

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section { 
    display:block;
}

nav ul { list-style:none; }

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; cursor:help; }

/* tables still need cellspacing="0" in the markup */
table { border-collapse:collapse; border-spacing:0; }

hr { display:block; height:1px; border:0; border-top:1px solid #ccc; margin:1em 0; padding:0; }

/*input, select { vertical-align:middle; }*/

/* END RESET CSS */


/* fonts.css from the YUI Library: developer.yahoo.com/yui/
   Refer to developer.yahoo.com/yui/3/cssfonts/ for font sizing percentages

  There are three custom edits:
   * remove arial, helvetica from explicit font stack
   * we normalize monospace styles ourselves
   * table font-size is reset in the HTML5 reset above so there is no need to repeat
*/
body { font:13px/1.231 sans-serif; *font-size:small; } /* hack retained to preserve specificity */

select, input, textarea, button { 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 
 */


body, select, input, textarea { 
  /* #666 looks better than black: twitter.com/H_FJ/statuses/11800719859 */ 
  color: #666; 
  /* set your base font here, to apply evenly */
  font-family: Arial, "Helvetica Neue", Helvetica, sans-serif; 
  line-height: 18.75px;
}

/* Headers (h1,h2,etc) have no default font-size or margin,
   you'll want to define those yourself. */ 
h1,h2,h3,h4,h5,h6 { font-weight: bold; }

/* always force a scrollbar in non-IE */ 
html { overflow-y: scroll; }

 
/* Accessible focus treatment: people.opera.com/patrickl/experiments/keyboard/test */
a:hover, a:active { outline: none; }

a, a:active, a:visited { color: #0079BF; text-decoration: none; }
a:hover { color: #F1831E; }


ul, ol { margin-left: 1.8em; }
ol { list-style-type: decimal; }

/* Remove margins for navigation lists */
nav ul, nav li { margin: 0; } 

small { font-size: 85%; }
strong, th { font-weight: bold; }

td, td img { vertical-align: top; } 

sub { vertical-align: sub; font-size: smaller; }
sup { vertical-align: super; font-size: smaller; }

pre { 
  padding: 15px; 
  
  /* 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 */
}
 
textarea { overflow: auto; } /* thnx ivannikolic! www.sitepoint.com/blogs/2010/08/20/ie-remove-textarea-scrollbars/ */

.ie6 legend, .ie7 legend { margin-left: -7px; } /* thnx ivannikolic! */

/* 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; }*/

.ie7 input[type="checkbox"] { 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; }
 
/* webkit browsers add a 2px margin outside the chrome of form elements */  
button, input, select, textarea { margin: 0; }

/* colors for form validity */
input:valid, textarea:valid   {  }
input:invalid, textarea:invalid { 
      border-radius: 1px;
    -moz-box-shadow: 0px 0px 5px red; 
 -webkit-box-shadow: 0px 0px 5px red; 
         box-shadow: 0px 0px 5px red;
}
.no-boxshadow input:invalid, 
.no-boxshadow textarea:invalid { background-color: #f0dddd; }


/* 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; } 

/*  j.mp/webkit-tap-highlight-color */
a:link { -webkit-tap-highlight-color: #FF5E99; } 

/* 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; text-align: left; direction: ltr; }

/* Hide for both screenreaders and browsers
   css-discuss.incutio.com/wiki/Screenreader_Visibility */
.hidden { display: none; } 

/* Hide only visually, but have it available for screenreaders 
   www.webaim.org/techniques/css/invisiblecontent/  &  j.mp/visuallyhidden  */
.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: Updated to prevent margin-collapsing on child elements << j.mp/bestclearfix */
.clearfix:before, .clearfix:after {
  content: "\0020"; display: block; height: 0; visibility: hidden;	
} 

.clearfix:after { clear: both; }
/* Fix clearfix: blueprintcss.lighthouseapp.com/projects/15318/tickets/5-extra-margin-padding-bottom-of-page */
.clearfix { zoom: 1; }

/* Warning message for IE6 users */
.ie-message {
	background-color: #FEEEDA;
	position: absolute;
	top:0;
	left: 0;
	border-bottom: 1px solid #CE7104;
	border-top: 1px solid #CE7104;
	margin: 0 0 22px 0 !important;
	overflow: hidden;
	padding: 18px 18px 18px 32px !important;
	color: #CE7104;
	text-align: center;
	z-index: 99999;
	width:100%;
}

 /* Primary Styles
    Author: 
 */


/* =Fonts
-------------------------------------------------------------- */


@font-face {
    font-family: 'CenturyGothicRegular';
    src: url('fonts/gothic-webfont.eot');
    src: url('fonts/gothic-webfont.eot?#iefix') format('embedded-opentype'),
         url('fonts/gothic-webfont.woff') format('woff'),
         url('fonts/gothic-webfont.ttf') format('truetype'),
         url('fonts/gothic-webfont.svg#CenturyGothicRegular') format('svg');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'FranklinGothicMediumCondRg';
    src: url('fonts/framdcn-webfont.eot');
    src: url('fonts/framdcn-webfont.eot?#iefix') format('embedded-opentype'),
         url('fonts/framdcn-webfont.woff') format('woff'),
         url('fonts/framdcn-webfont.ttf') format('truetype'),
         url('fonts/framdcn-webfont.svg#FranklinGothicMediumCondRg') format('svg');
    font-weight: normal;
    font-style: normal;
}


/* =Globals
-------------------------------------------------------------- */

	.no {
		color: #CC3333 !important;
	}
	.yes {
		color: #1B9045 !important;
	}
	.pending {
		color:#CE7104 !important;
	}
	.entry-meta {
		color: #888;
	}
	.note {
		color: #444;
		font-size: 12px !important;
	}
	
/* =Portals Nav Bar
-------------------------------------------------------------- */

	#portals {
		background: #2c2c2c; /* Old browsers */
		background: -moz-linear-gradient(top, #2c2c2c 0%, #474747 100%); /* FF3.6+ */
		background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#2c2c2c), color-stop(100%,#474747)); /* Chrome,Safari4+ */
		background: -webkit-linear-gradient(top, #2c2c2c 0%,#474747 100%); /* Chrome10+,Safari5.1+ */
		background: -o-linear-gradient(top, #2c2c2c 0%,#474747 100%); /* Opera11.10+ */
		background: -ms-linear-gradient(top, #2c2c2c 0%,#474747 100%); /* IE10+ */
		filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#2c2c2c', endColorstr='#474747',GradientType=0 ); /* IE6-9 */
		background: linear-gradient(top, #2c2c2c 0%,#474747 100%); /* W3C */
		height: 2.5em;
		position: static;
	}
	#portals ul {
		margin: 0 auto;
		width: 1050px;
	}
	#portals li {
		float: left;
	}
	#portals li.logout {
		float: right;
	}
	#portals a{
		color: #ccc;
		display: block;
		font-size: 13px;
		padding: 7px 20px 5px 20px;
	}
	#portals a:hover {
		background: #4c4c4c;
	}
	#portals a.active {
		border-top: 2px solid #fff;
		color: #fff;
		font-weight: bold;
		padding-top: 5px;
	}

/* =Assets
-------------------------------------------------------------- */

	button,
	.button,
	.submitBtn {
		background: #3399CE; /* Old browsers */
		background: -moz-linear-gradient(top, #3399CE 0%, #0079BF 98%); /* FF3.6+ */
		background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#3399CE), color-stop(98%,#0079BF)); /* Chrome,Safari4+ */
		background: -webkit-linear-gradient(top, #3399CE 0%,#0079BF 98%); /* Chrome10+,Safari5.1+ */
		background: -o-linear-gradient(top, #3399CE 0%,#0079BF 98%); /* Opera11.10+ */
		background: -ms-linear-gradient(top, #3399CE 0%,#0079BF 98%); /* IE10+ */
		border: none;
		font-size: 17px;
		background: linear-gradient(top, #3399CE 0%,#0079BF 98%); /* W3C */
		color: #fff !important;
		display:inline-block;
		margin: 0;
		padding: 8px 20px;
		text-align: center;
		text-decoration: none;
		
		border-radius: 5px;
		-webkit-border-radius: 5px;
		-moz-border-radius: 5px;
		width: auto;
		
		text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.3);
	}
	button:hover,
	.button:hover,
	.submitBtn:hover {
		background: #3399CE; /* Old browsers */
		text-decoration: none;
	}	
	button:active,
	.button:active,
	.submitBtn:active {
		color: #bfddf3;
	}
	.ie9 button:hover,
	.ie9 .button:hover,
	.ie9 .submitBtn:hover {
		filter: 0 !important;
	}
	.action {
		text-decoration: none;
	}
	.action::after {
		content: ' \00BB';
	}
	.social {
		margin:0;
		padding:0;
	}
	.social li {
		list-style: none;
		margin-bottom: 18px;
		padding-left: 8px;
	}
	.social li:last-child {
		margin-bottom: 0;
	}
	.social a {
		background: url(../world.edu/images/social.png) no-repeat;
		color: #444;
		display: block;
		font-size: 15px;
		font-weight: bold;
		height: 38px;
		padding:2px 0 2px 45px;
		text-deoration: none;
	}
	.social a:hover{
		text-decoration: none;
	}
	.social a span{
		color: #666;
		display: block;
		font-size: 12px;
		font-weight: normal;
	}
	.social .twitter {
		background-position: 0  -102px ;
	}



/* =Forms
-------------------------------------------------------------- */
	
	/* Error message blocks */
	.errors {
		background-color: #FEEEDA;
		border: 1px solid #CE7104;
		margin: 0 0 22px 0 !important;
		padding: 18px 18px 18px 32px !important;
	}
	.errors li {
	 	color: #CE7104;
	}
	.success {
		background-image: url(../world.edu/images/messages.png);
		background-color: #F1FAF3;
		background-repeat: no-repeat;
		background-position: 10px 22px;
		border: 1px solid #C5F1D3;
		color: #1C9045;
		margin: 0 0 22px 0 !important;
		padding: 18px 18px 18px 32px !important;
	}
	
	/* Password strength */
		
		#pass-strength-result {
			display: none;
			padding: 1px 16px;
			-webkit-border-radius: 1px;
			-moz-border-radius: 1px;
			border-radius: 1px;
		}
		#pass-strength-result.bad,
		#pass-strength-result.short {
			color: #CE7104 !important;
			display: inline-block;
			background: #FEEEDA !important;
		}
		#pass-strength-result.mismatch {
			color: #cc0000;
			display: inline-block;
			background: #FEEBEB;
		}
		#pass-strength-result.strong,
		#pass-strength-result.good {
			background: #F1FAF3 !important;
			color: #1B9045 !important;
			display: inline-block;
		}
	
	/* Fields */
	fieldset {
		padding-bottom: 22px;
		position: relative;
	}
	fieldset fieldset {
		padding-bottom: 8px;
	}
	fieldset:last-child {
		padding-bottom: 0;
	}
	legend {
		display: none !important;
	}
	p.hint {
		color: #888;
		font-size: 13px !important;
		left: 400px;
		position: absolute;
		width: 260px;
		padding-top: 22px;
	}
	.field,
	.fileinputs {
		font-size: 14px;
		line-height: 18px;
		margin-bottom: 22px;
		position: relative;
	}
	.field {
		clear: both;
		zoom:1;
	}
	.fileinputs {
		min-height: 48px;
		overflow: hidden;
	}
	.wide .field,
	.wide .fileinputs {
		margin-bottom: 8px;
	}
	.placeholder {
		color: #888;
	}
	label {
		color: #666;
		display: inline-block;
		position: relative;
		width: 100%;
	}
	label em,
	em.required {
		color: #CE7104;
		padding-left: 1px;
	}
	.wide label {
	    float: right;
	    padding: 18px 5px 0 0;
	    width: 40%;
	}
	.wide label.error {
		padding-top: 40px;
	}	
	.fileinputs input,
	.text,
	input[type='text'],
	input[type='password'],
	textarea {
		border: 1px solid #dcdcdc;
		box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1) inset;
	    color: #888;
	    font-size: 14px;
	    margin: 8px 0 0 0 ;
	    outline: 0 none;
	    padding: 10px 10px 9px 5px;
		width: 360px;
	}
	textarea {
		width:95%;
	}
	.text:focus,
	input[type='text']:focus,
	input[type='password']:focus,
	textarea:focus {
		color: #666;
		background: #f9f9f9;
	}
	select {
	    font-size: 14px;
		width: 377px;
	}
	.checkbox label {
		width:90%;
	}
	.checkbox input {
		margin-right: 5px;
	}
	.radio label {
		display: inline !important;
		padding-right: 8px;
		zoom:1;
	}
	.ie.lte7 .radio label {
		width:150px;
	}
	.field ul {
		list-style-type: none;
		margin:0;
		overflow: hidden;
		padding:0;
	}
	.field li {
		margin: 0;
	}
	.field li label {
		float: left !important;
	}
	
	/* Checkbox list */
	
	.checkboxes ul {
		margin:0 !important;
		padding: 0 !important;
	}
		
	.checkboxes  li {
		clear: left;
		display: block;
	}
	.checkboxes label {
		color: #666;
		padding-top: 6px;
	}
	.checkboxes input {
		margin:0 3px -2px 0;
		padding: 5px;
	}
	/* File uploads style hack */
	
	.fileinputs input {
		cursor: pointer;
		width:150px;
		margin-right: 5px;
	}
	.fakefile {
		position: absolute;
		top: 0px;
		left: 0px;
		z-index: 1;
	}
	.fakefile img {
		cursor: pointer;
		margin-bottom:-14px;
	}
	.lte8 .fakefile img {
		margin-bottom:-6px;
	}
	.file {
		position: relative;
		left: 0;
		-moz-opacity:0 ;
		opacity: 0;
		z-index: 10;
		display: block;
		padding: 100px;
		top:10px;
		width:300px !important;
		
	}
	.ie .file {
		filter:alpha(opacity: 0);
		width: 255px !important;
		top: 2px;
	}
	div.actions {
		clear: both;
		min-height: 0;
	
	}
	/* Inline validation */
	strong.error {
		border: 1px solid #FEEEDA;
		background: #FEEEDA;
		color:  #CE7104;
		font-size: 11px;
		font-weight: normal;
		padding: 1px 16px;
		-webkit-border-radius: 3px;
		-moz-border-radius: 3px;
		border-radius: 3px;
	}
	.ie.lte7 strong.error {
		margin-top: -18px;
	}
	label strong.error {
		float: right;
		margin-bottom: -3px;
	}
	.fileinputs strong.error {
		margin-right: 105px;
	}
	.wide strong.error {
		float: right;
		margin:0 20px 0 0 !important;
	}
	
/* =Tables
-------------------------------------------------------------- */

	table {
		border-collapse: collapse;
		width:100%;
		font-size: 14px !important;
		margin: 0 0 22px 0;
	}
	table tbody tr:nth-child(odd) td {
		background: #F9F9F9;
	}
	table th,
	table td {
		font-weight: normal;
		text-align: left;
		padding: 12px;	
	}
	thead th,
	tfoot td,
	tfoot th {
		border-bottom: 1px solid #dcdcdc;
		border-top: 1px solid #dcdcdc;
	}
	table .right {
		text-align: right;
	}
	table .center {
		text-align: center;
	}
	table .actions a {
		color: #49AC4E;
	}
	table td.pending {
		color: #CC6600;
	}
	table td.active {
		color: #188E45;
	}
	table td.active.no_0 {
		color: #666;
	}

/* =Layout
-------------------------------------------------------------- */

	#main,
	#branding,
	#access,
	#footer .inner {
		margin:0 auto;
		padding 15px;
		width: 1050px;
	}
	#body {
		background: url(images/bg-main.png) repeat-x top left;
		padding-bottom: 38px;
	}
	#footer {
		background: url(images/bg-main.png) repeat-x top left;
		clear: both;
	}
	.content {
		clear: both;
		float:left;
		padding-bottom: 12px;
		width:710px;
	}
	.content.full-width {
		width:100%;
	}
	#sidebar + .content {
		clear: both;
		margin-top: -12px;
		padding-bottom: 0;
	}
	.ie.lte7 #sidebar + .content {
		position: relative;
		margin: 50px 0 40px 0;
		zoom: 1;
		float: left;
	}
	#sidebar {
		float:right;
		margin-bottom: 22px;
		padding:20px 10px 12px 10px;
		width:300px;
	}
	#footer {
		clear:both;
	}

/* =Header
-------------------------------------------------------------- */
	
	#logo {
		background: url(images/logo.png) no-repeat;
		height:65px;
		margin: 30px 0 15px 15px;
		position: relative;
		width:230px;
		zoom:1;
	}
	#logo > a {
		display: block;
		height:65px;
		width:220px;
	}
	#logo ul {
		background: #fff;
		max-height:0;
		-webkit-transition: max-height .5s ease-in-out;
		overflow: hidden;
		margin-left: 0;
		padding-top: 12px;
		position: absolute;
		z-index: 1099;
		width: 220px;

	}
	#logo:hover ul {
		max-height:300px;
	}
	#logo li {
		list-style-type: none;
	}
	#logo ul a {
		border-bottom: 1px solid #eaeaea;
		color: #888;
		display: block;
		font-family: 'CenturyGothicRegular';
		font-weight: normal;
		font-size: 13px;
		padding: 10px 12px;
	}
	#logo ul a:hover {
		color: #0079BF;
	}
	
	header #actions {
		float: right;
	}
	header #search-form {
		float: left;
		padding: 12px 30px 0 0;
	}
	header #search-form input {
		width: 250px;
	}
	header .fb-like {
		float: right;
		margin-top: 20px;
	}
	
	/* Main Navigation */
	
	#access {
		margin-top: 30px;
	}
	#access .menu > li {
		float:left;
		font-size: 15px;
		position: relative;
	}
	#access .menu > li > a {
		border-right: 1px solid #eaeaea;
		color: #888;
		display: block;
		font-family: 'CenturyGothicRegular';
		min-width: 65px;
		padding: 12px 37px 12px 37px;
		text-decoration: none;	
		text-align: center;
	}
	#access .menu > li:last-child > a {
		border-right: none;
	}
	/*#access .menu > li > a:after {
		content: ' ';
		height: 0;
		position: absolute;
		width: 0;
		right:36px;
		top: 18px;
		border: 4px solid transparent;
		border-top-color: #888;
	}
	#access .menu > li:hover > a:after {
		border-top-color: #0079BF;
	}*/
	#access .menu > li.current-menu-item,
	#access .menu > li.current-page-ancestor {
		background: #E2E2E2; /* old browsers */
		background: -moz-linear-gradient(top, #E2E2E2 0%, #F2F2F2 100%); /* firefox */
		background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#E2E2E2), color-stop(100%,#F2F2F2)); /* webkit */
		filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#E2E2E2', endColorstr='#F2F2F2',GradientType=0 ); /* ie */
		background: -o-linear-gradient(top, #E2E2E2 0%,#F2F2F2 100%); /* opera */
		border:none;
		color: #0079BF;
	}
	#access .menu > li.current-menu-item a,
	#access .menu > li.current-page-ancestor a {
		color: #0079BF;
	}
	#access .menu > li > a:hover {
		color: #0079BF;
	}
	/* Sub menu */
		#menu-global-portals > li > .sub-menu {
			-moz-box-shadow: 3px 3px 4px #ccc;
			-webkit-box-shadow: 3px 3px 4px #ccc;
			box-shadow: 3px 3px 4px #ccc;
			/* For IE 8 */
			-ms-filter: "progid:DXImageTransform.Microsoft.Shadow(Strength=4, Direction=135, Color='#ccc')";
			/* For IE 5.5 - 7 */
			filter: progid:DXImageTransform.Microsoft.Shadow(Strength=4, Direction=135, Color='#ccc');
			
			background: #F2F2F2; /* old browsers */
			background: -moz-linear-gradient(top, #F2F2F2 0%, #E2E2E2 100%); /* firefox */
			background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#F2F2F2), color-stop(100%,#E2E2E2)); /* webkit */
			filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#F2F2F2', endColorstr='#E2E2E2',GradientType=0 ); /* ie */
			background: -o-linear-gradient(top, #F2F2F2 0%,#E2E2E2 100%); /* opera */
			
			display:none;
			font-size: 12px;
		  	position:absolute;
			padding: 12px 8px 0px 8px;
			top:38px;
			width:180px;
			z-index: 10;
		}
		#access .menu > li:hover .sub-menu {
			display: block;
		}
		.sub-menu li {
			margin-bottom: 8px;
		}
		.sub-menu .ancillary >  a {
			display: none;
		}
		/*.sub-menu .ancillary .sub-menu {
			background: none;
			border-top: 1px solid #dcdcdc;
			font-size: 11px;
			margin: 8px 0 0 0;
			padding:8px 0 0 0;
		}
		.sub-menu .sub-menu a {
			color: #666;
		}
		.dashboard {
			float: left;
		}
		.logout {
			float: right;
		}*/
		
		#access .menu .search {
			float: right;
			margin-top: -12px;
			padding: 2px;
		}
		#access .menu .search input {
			width: 280px;
		}
		#access .menu >li a .label {
		background-color: #41A14E;
		-webkit-border-radius: 3px;
		-moz-border-radius: 3px;
		border-radius: 3px;
		color: #fff;
		margin-left: 5px;
		padding: 1px 4px 2px;
		line-height: 14px;
		font-size: 11px !important;
		font-family: Arial, "Helvetica Neue", Helvetica, sans-serif !important;
	}
	
/* =Footer
-------------------------------------------------------------- */

	#footer {
		overflow: hidden;
		padding-top: 6px;
	}
	
	/* =Widgets
	-------------------------------------------------------------- */
	
		#leaderboard {
			overflow: hidden;
			float: right;
			margin-top: -10px;
		}
		.ie.lte7 #leaderboard {
			bottom: -20px;
			position: relative;
		}
		#footer ul {
			margin:0;
			list-style-type: none;
			padding:0;
		}
		#footer .xoxo {
			padding:0 0 0 8px;
			margin: 22px 0;
			float: left;
			width:22%;
		}
		#footer .widget-container {
			border: none;
		}
		#footer .widget-title {
			font-family: 'CenturyGothicRegular';
			font-size:15px;
			font-weight: normal;
			margin-bottom: 18px;
		}
		
		#footer .menu-item {
			font-size:12px;
			margin-bottom: 5px;
		}
		#footer ul:nth-child(4n) {
			background: #F4F4F4;
			margin-top: 12px;
			overflow: hidden;
			padding: 12px;
			width:285px;
		}
		#footer ul:nth-child(4n) .widget-container {
			margin: 0;
			padding:0
		}
		
		/* Mailchimp*/
		
		#footer .widget_mailchimpsf_widget {
			margin: 0;
			padding: 0;
			width: 280px;
		}
		.widget_mailchimpsf_widget h2 {
			color: #444;
		}
		.widget_mailchimpsf_widget label {
			display: none;
		}
		.mc_merge_var {
			display: inline-block;
		}
		.ie.lte8  .mc_merge_var {
			display: inline;
			zoom:  1;
		}
		.widget_mailchimpsf_widget .text,
		#mc_signup_form .mc_input {
			font-size: 13px;
			margin: -2px 0 10px 0;
			padding: 5px;
			position: relative;
			width: 177px;
		}
		.ie .widget_mailchimpsf_widget .text,
		.ie #mc_signup_form .mc_input  {
			width: 165px;
		}
		.mc_signup_submit {
			display: inline-block;
		}
		.ie.lte8 .mc_signup_submit {
			display: inline;
			zoom:  1;
			position: relative;
			top: -10px;
		}
		.widget_mailchimpsf_widget .button,
		.mc_signup_submit .button {
			font-size: 14px;
			padding: 5px 8px;
		}
		.ie.lte7 .widget_mailchimpsf_widget .button,
		.ie.lte7 .mc_signup_submit .button {
			padding: 3px;
		}
		.widget_mailchimpsf_widget .error,
		.mc_success_msg {
			display: inline-block;
			margin:-5px 0 5px 0;
		}
		
		/* Social */
		
		#footer .social-icons{
			margin: 0;
			padding: 0;
		}
		#footer .social-icons li {
			float: left;
			margin-right: 5px;
		}
		#footer .social-icons a {
			background: url(images/social.png) no-repeat;
			display: block;
			height: 36px;
			text-indent: -1000em;
			width: 36px;
		}
		#footer .social-icons a.twitter {
			background-position: 0 -103px ;
		}
		#footer .social-icons a.facebook {
			background-position: 0 -51px ;
		}
		
		/* Copyright */
		
		#footer .copyright {
			border-top:1px solid #dcdcdc;
			clear: both;
			padding: 22px 0;
			text-align: center;
			zoom:1;
		}			
		
/* =Content
-------------------------------------------------------------- */

	#main {
		padding-top: 22px;
	}
	.content .inner {
		background: #F4F4F4;
		overflow: hidden;
		padding: 5px 5px 10px 5px;
	}
	/* Tabs */
		#tabs ul {
			margin-bottom:0;
		}
		#tabs li{
			float:left;
			line-height: 16px;
			margin-bottom:0;
			padding-top: 1px;
		}
		#tabs a {
			color: #666;
			display: block;
			font-size:14px;
			text-align: center;
			text-decoration: none;
			padding: 12px 28px;
			text-align: center;
		}
		#tabs .active a,
		#tabs .current-cat a,
		#tabs .current-menu-item a,
		.home #tabs li:first-child a{
			background: #fff;
			border: none;
			color:#0079BF;
		}
		
		#tabs a:hover {
			color:#0079BF;
		}

/* =Sidebar
-------------------------------------------------------------- */

	#sidebar {
		background: #fff;
	}
	#sidebar h2,
	.widget-title {
		color: #666;
		font-size:18px;
		font-weight: normal;
		margin-bottom: 12px;
	}
	#sidebar em {
		color: #0080C5;
		font-style: normal;
	}
	#sidebar button,
	#sidebar .button {
		font-size: 15px;
		padding: 6px 18px;
	}
	#sidebar p:last-child {
		margin-bottom: 0;
	}
	
	/* =Widgets
	-------------------------------------------------------------- */	
		
		#sidebar .xoxo {
			margin:0;
			list-style-type: none;
			padding:0;
			float: left;
			width: 100%;
		}
		.widget-container {
			border-bottom: 1px solid #dcdcdc;
			margin-bottom: 22px;
			list-style-type: none;
			padding-bottom: 22px;
			zoom:1;
		}
		.widget-container:last-child {
			border-bottom: none;
			margin: 0;
			padding: 0;
		}
		.widget-container p:last-child {
			margin-bottom: 0 !important;
		}
		.widget-container .action {
			font-size: 15px;
			padding-left: 5px;
			text-decoration: underline;
		}
		/* Contact info */
	
			.widget-contact-info p {
				margin-bottom: 14px;
			}
			.widget-contact-info p:last-child {
				margin-bottom: 0;
			}
		
		/* Text widget */
			#sidebar .textwidget p {
				color: #888;
				font-size: 14px;
				line-height: 1.35;
				margin-bottom: 1em;
			}
			#sidebar .textwidget ul {
				margin: 0;
				padding:0 0 18px 16px;
			}
			#sidebar .textwidget li {
				color: #444;
				font-size: 12px;
				list-style-type: disc;
				margin-bottom: .25em;
			}
			#sidebar .textwidget ul:last-child,
			#sidebar .textwidget li:last-child {
				margin-bottom: 0;
				padding-bottom:0;
			}
		#sidebar .more {
			font-size: 11px;
			width:300px !important;
		}

/* =Headers
-------------------------------------------------------------- */
	.entry-title {
		font-size: 18px;
		font-family: Georgia, Palatino, "Palatino Linotype", Times, "Times New Roman", serif;
		font-weight: normal;
		line-height: 1.2em;
	}
	.entry-title a {
		color: #666;
	}
	.entry-title a:hover {
		color: #0079BF;
	}

/* =Result Header
-------------------------------------------------------------- */

	.result-header {
		background: #fff;
		margin-bottom: 2px;
		overflow: hidden;
		padding:22px 12px;
	}
	.result-header h1 {
		margin-bottom:0;
	}
	.result-header p {
		font-size: 15px;
		line-height: 1.5;
	}
	.result-header form + p {
		padding-top:18px;
	}


/* =Result list
-------------------------------------------------------------- */
	.result-list {
		position:relative;
	}
	.result-list .hentry {
		background: #fff;
		margin-bottom: 2px;
		padding: 15px 9px;
		overflow: hidden;
		position: relative;
	}
	.result-list .hentry img {
		border: 1px solid #dcdcdc;
		float: left;
		margin-right:18px;
		padding: 5px;
	}
	.ie7 .result-list .wrap {
		float: left;
	}
	.ie7 .result-list .wrap p {
		margin-left: 0 !important;
	}
	.result-list .entry-title {
		width:70%;
		font-size: 20px;
		margin-bottom: 6px;
	}
	.result-list .hentry p {
		font-size: 13px;
		line-height: 22px;
	}
	.result-list .hentry.with-thumb p {
		margin-left: 100px;
	}
	.result-list .hentry.avatar_48 p {
		margin-left: 68px;
	}
	/* No results */
		
		.no-results {
			background:#fff;
			text-align: center;
			padding: 20px 0;
		}
	/* Paginaton */
		
		#pagination button.more,
		.pagination button.more  {
			background: #dcdcdc; /* Old browsers */
			background: -moz-linear-gradient(top, #dcdcdc 0%, #ffffff 100%); /* FF3.6+ */
			background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#dcdcdc), color-stop(100%,#ffffff)); /* Chrome,Safari4+ */
			background: -webkit-linear-gradient(top, #dcdcdc 0%,#ffffff 100%); /* Chrome10+,Safari5.1+ */
			background: -o-linear-gradient(top, #dcdcdc 0%,#ffffff 100%); /* Opera11.10+ */
			background: -ms-linear-gradient(top, #dcdcdc 0%,#ffffff 100%); /* IE10+ */
			filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#DCDCDC', endColorstr='#FFFFFF',GradientType=0 ); /* IE6-9 */
			background: linear-gradient(top, #dcdcdc 0%,#ffffff 100%); /* W3C */
			border: 1px solid #dcdcdc;
			color: #0079BF !important;
			display: block;
			font-size: 14px;
			text-align: center;
			margin: 0 auto;
			padding: 8px 0;
			width:300px !important;
			text-shadow: none !important;
		}
		/* Pagination */
		#pagination {
			background: #F4F4F4;
			overflow: hidden;
			padding: 12px 6px;
		}
		#pagination a,
		#pagination span {
			display: inline-block;
			margin-right: 5px;
			padding: 3px 12px;
		}
		#pagination span {
			background: #fff;
		}
		#pagination a {
			background: #3C99CE;
			color: #fff;
		}
		#pagination a:hover {
			background: #0079BF;
		}
		#pagination .wp-pagenavi {
			text-align: center;
		}
		#pagination .wp-pagenavi a,
		#pagination .wp-pagenavi span {
			border: 1px solid #dcdcdc;
		}
		.nav-previous {
			float:right;
		}
		.nav-next {
			float:left;
		}
		
/* =Blog Index
-------------------------------------------------------------- */
	
	.blog-index {
		position: relative;
	}
	.blog-index.full .page-title {
		margin-bottom: 0;
	}
	.blog-index .hentry {
		background: #fff;
		margin-bottom: 2px;
		padding: 15px 9px 15px 0;
		overflow: hidden;
		position: relative;
	}
	.blog-index .hentry img {
		border: 1px solid #dcdcdc;
		display: block;
		float: left;
		margin:5px 12px 0 0;
	}
	.ie7 .blog-index header {
		float: left;
	}
	.blog-index .entry-title {
		font-size: 28px;
		margin-bottom: 6px;
		width: 95%;
	}
	.blog-index .entry-meta {
		font-size: 14px;
		line-height: 22px;
		margin-bottom: 12px;
	}
	.blog-index .entry-content {
		border-bottom: 1px dotted #dcdcdc;
		padding-bottom: 22px;
	}
	.blog-index .hentry:last-of-type .entry-content {
		border: none;
		padding-bottom: 0;
	}
	.blog-index .hentry.with-thumb .entry-content p {
		margin-left: 174px;
	}


/* =Full hentry or page
-------------------------------------------------------------- */

	/* Block */

		.block {
			border-bottom-width: 22px;
			border-top-width: 10px;
			border-left-width: 5px;
			border-right-width: 5px;
			border-style: solid;
			border-color: #F4F4F4;
	
			position: relative;
			margin-left:-12px;
			margin-right:-12px;
			padding: 32px 20px 12px 12px;
		}
		
		.with-aside .block {
			padding:0;
		}
		
	.page-title,
	.full > header .entry-title {
		font-size: 32px;
		font-family: Georgia, Palatino, "Palatino Linotype", Times, "Times New Roman", serif;
		font-weight: normal;
	    line-height: 1.2em;
		margin-bottom: 16px;
	}
	.page-title strong {
		color: #0079BF;
		font-weight: normal;
	}
	.full {
		background: #fff;
		padding: 22px 12px 0 12px;
	}
	.full .inner {
		margin-left:-12px;
		margin-right:-12px;
		padding: 5px 5px 10px 5px;
	}

	.full .inner > section {
		background: #fff;
		padding: 32px 22px 12px 14px;
	}
	.full-width .full .inner > section {
		padding-right: 12px;
	}
	.full h2 {
		color: #0079BF;
		font-size: 18px;
		font-weight: normal;
		line-height: 1.2;
		margin-bottom: 12px;
	}
	.full h2 .description {
		color: #666;
		font-size: 14px;
	}
	.full h3 {
		font-size: 15px;
		line-height: 1.2;
		margin-bottom: 6px;
	}
	.full h4 {
		color: #444;
		font-size: 14px;
		font-weight: normal;
		padding:12px 0 8px 0;
	}
	.full p,
	.full ul,
	.full ol {
		font-size: 14px;
		line-height: 22px;
		margin-bottom: 16px;
	}
	.full ol {
		padding-left: 5px;
	}
	.full li {
		margin-bottom: 5px;
	}
	.tags a {
		background: #fcfeff; /* Old browsers */
		background: -moz-linear-gradient(top, #fcfeff 0%, #f0f0f0 100%); /* FF3.6+ */
		background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#fcfeff), color-stop(100%,#f0f0f0)); /* Chrome,Safari4+ */
		background: -webkit-linear-gradient(top, #fcfeff 0%,#f0f0f0 100%); /* Chrome10+,Safari5.1+ */
		background: -o-linear-gradient(top, #fcfeff 0%,#f0f0f0 100%); /* Opera11.10+ */
		background: -ms-linear-gradient(top, #fcfeff 0%,#f0f0f0 100%); /* IE10+ */
		filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fcfeff', endColorstr='#f0f0f0',GradientType=0 ); /* IE6-9 */
		background: linear-gradient(top, #fcfeff 0%,#f0f0f0 100%); /* W3C */
		
		-webkit-border-radius: 2px;
		-moz-border-radius: 2px;
		border-radius: 2px;
		
		border: 1px solid #dcdcdc;
		color: #0079BF;
		display: block;
		float: left;
		font-size: 10px;
		margin:0 5px 5px 0;
		padding: 1px 5px;
	}
	.tags a:before {
		background: url(images/tag.png) no-repeat 0 5px;
		content: '';
		display: block;
		float: left;
		margin-right: 5px;
		height: 16px;
		width: 12px;
	}
	
/* =Full hentry - Blog
-------------------------------------------------------------- */

	.hentry.blog {
		padding-right: 22px;
	}
	.hentry.blog h1 {
		padding-right: 50px;
	}
	.hentry.blog header dl {
		margin-bottom: 20px;
	}
	.hentry.blog .meta {
		color: #888;
		margin-bottom: 0;
	}
	.hentry.blog .alignleft,
	.hentry.blog .alignright {
		border: 1px solid #DCDCDC;
	}
	.alignleft {
	    float: left;
	    margin: 5px 20px 5px 0;
	}
	.alignright {
	    float: right;
	    margin: 5px 0 5px 20px;
	}
	
	.hentry.blog .wp-caption { 
		border:1px solid #dcdcdc;  
		text-align:center; 
		background:#FAFAFA; 
		padding:8px 3px 3px 3px; 
		margin: 10px; 
	}
	.hentry.blog .wp-caption.aligncenter {
		margin: 10px auto 16px auto;
	}
	img.aligncenter {
		border: 1px solid #dcdcdc;
		display: block;
		margin: 0 auto 16px auto;
		padding: 5px;
	}
	.hentry.blog .wp-caption-text {
		font-size: 13px; 
		margin-bottom: 0;
		line-height: 1.6;
		padding: 3px;
	}
	.hentry.blog .wp-caption img {
		display: block;
		margin: 0 auto;
	}
	.hentry.blog  pre {
	    background-color: #f9f9f9;
	    font-family: monospace;
	    font-size: 1.2em;
	    line-height: 1.3;
	    margin: 0 0 20px;
	    padding: 10px;
	}
	.hentry.blog blockquote {
		font-family: Georgia, Palatino, "Palatino Linotype", Times, "Times New Roman", serif;
		font-style: italic;
		margin: 12px 0;
	}
	.hentry.blog blockquote p {
		color: #888;
		font-size: 12px;
		line-height: 30px !important;
	}
	.hentry.blog .tags {
		padding-top: 12px;
	}
	.hentry.blog .tags a {
		display: inline-block;
		float: none;
	}
	.ie.lte7 .hentry.blog .tags a  {
		display: inline;
		zoom: 1;
	}
	/* Comments link */
	.comments-link a {
		background: #eee url(images/comment-bubble.png) no-repeat;
		color: #666;
		font-size: 13px;
		font-weight: normal;
		line-height: 35px;
		overflow: hidden;
		padding: 0 0 0;
		position: absolute;
		top: 1em;
		right: 6px;
		text-align: center;
		text-decoration: none;
		width: 43px;
		height: 36px;
	}
	/* Intense Debate */
	
		#idc-container-parent {
   		  border-top: 1px solid #dcdcdc;
		}
		
		#idc-container h3 {
		   color: #0079BF;
		   font-size: 18px !important;
		   font-weight: normal;
		   margin-bottom: 12px;
		}             
	
	/* =Navigation
	-------------------------------------------------------------- */

		#nav-above {
			font-size: 12px;
			line-height: 18px;
			margin: 0 0 12px 0;
			overflow: hidden;
		}
		#nav-above a:link,
		#nav-above a:visited {
			color: #0079BF;
			font-weight: bold;
			text-decoration: none;
		}
		#nav-above a:active,
		#nav-above a:hover {
			color: #F1831E;
		}
		#nav-above .nav-previous {
			float: left;
			width: 50%;
		}
		#nav-above .nav-next {
			float: right;
			text-align: right;
			width: 50%;
		}
	
	/* =Widgets
	-------------------------------------------------------------- */
		
		#author-bio img {
			border: 1px solid #dcdcdc;
			float: left;
			height: 70px;
			margin: 0 10px 0 0;
			width: 70px;
		}
	
/* =Info box
-------------------------------------------------------------- */
	.info-box {
		background: #f4f4f4;
		float: left;
		margin:0 10px 22px 0;
		overflow: hidden;
		padding: 8px;
	}
	.info-box:nth-child(2) {
		margin-right: 0;
	}
	.info-box > section {
		background: #fff;
		padding: 8px;
	}	
	.info-box .header  h1 {
		border-bottom: 1px solid #dcdcdc;
		font-size:18px;
		font-weight: normal;
		margin-bottom: 12px;
		padding-bottom: 12px;
	}
	.info-box em {
		color: #0080C5;
		font-style: normal;
	}
	

/* =CTAs
-------------------------------------------------------------- */

	.cta-strapline {
		border-bottom: 1px solid #dcdcdc;
		border-top: 1px solid #dcdcdc;
		clear: both;
		font-size: 18px;
		padding: 20px 0;
		text-align: center;
		zoom:1;
	}
	.cta-strapline em {
		color: #0079BF;
		font-style: normal;
	}

/* =404
-------------------------------------------------------------- */

	#four-o-four {
		overflow: hidden;
		height: 840px;
	}
	#four-o-four img {
		float: right;
		margin-top:10px;
	}
	#four-o-four p {
		font-size: 16px;
	}
	#four-o-four li {
		font-size: 16px;
	}

/* =Steps
-------------------------------------------------------------- */

	.steps {
		background: #f4f4f4;
		margin:0 -12px -10px -12px !important;
		overflow:hidden;
		list-style-position: inside !important;
		padding:8px 5px 0 5px;
		position: relative;
		z-index:2;
	}
	.steps li {
		color: #444;
		float: left;
		font-size: 15px;
		line-height: 16px;
		margin: 0;
		padding: 12px 25px 16px 25px;
		min-width:60px;
	}
	.ie8 .steps li {
		padding-left: 20px;
	}
	.steps li.current  {
		color: #067DBF;
	    background: #fff;
	}
	.steps li.done  {
	    text-decoration: line-through;
	}


-------------------------------------------------------------- */

#fancybox-content iframe {
	position:relative;
	z-index: 99999;
}
		

/*
 * Media queries for responsive design
 * These follow after primary styles so they will successfully override. 
 */

@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) {
  
  
  /* Uncomment if you don't want iOS and WinMobile to mobile-optimize the text for you
     j.mp/textsizeadjust 
  html { -webkit-text-size-adjust:none; -ms-text-size-adjust:none; } */
}

/* 
 * 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 !important; }
  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; }
  thead { display: table-header-group; } /* css-discuss.incutio.com/wiki/Printing_Tables */ 
  tr, img { page-break-inside: avoid; }
  @page { margin: 0.5cm; }
  p, h2, h3 { orphans: 3; widows: 3; }
  h2, h3{ page-break-after: avoid; }
}

/** END HTML5 Boilerplate CSS **/


/** START Starkers CSS **/

/* LAYOUT */
/* ----------------------------------------- */


/* You might find the following useful */
/* div, ul, li { position:relative } This will save you having to declare each div / ul / li's position as 'relative' and allows you to absolutely position elements inside them */
br.clear { clear:both; display:block; height:1px; margin:-1px 0 0 0 } /* Use this br class to clear your floated columns */
li#theme-switcher { background:#fff; border:10px solid red; padding:20px; position:fixed; top:0; right:0 } /* Use this if you have the Theme Switcher Reloaded plugin (http://themebot.com/webmaster-tools/1-wordpress-theme-switcher-reloaded) installed and want to make it nice and obvious */

/* TYPOGRAPHY */
/* ----------------------------------------- */

h1, h2, h3, h4, h5, h6 { font-weight:bold } /* This helps to identify headings at the initial build stage, so I thought it'd be useful to have it */
.alert { background:red; color:white } /* 'alert' has a basic style, since it's useful to have it standing out for testing purposes.



/* Font stack options

	The following represents a list of font stacks, as recommended by Nathan Ford in
	http://unitinteractive.com/blog/2008/06/26/better-css-font-stacks/

	I've added inverted commas around the relevant family names to ensure compatibility.
	p = balanced for paragraphs or body copy
	t = balanced for headlines or titles

	- - - -

Arial, "Helvetica Neue", Helvetica, sans-serif - p, t

Baskerville, "Times New Roman", Times, serif - p
Baskerville, "Times, Times New Roman", serif - t

Cambria, Georgia, Times, "Times New Roman", serif - p, t
"Century Gothic", "Apple Gothic", sans-serif - p, t

Consolas, "Lucida Console", Monaco, monospace - p, t

"Copperplate Light", "Copperplate Gothic Light", serif - p, t

"Courier New", Courier, monospace - p, t

"Franklin Gothic Medium", "Arial Narrow Bold", Arial, sans-serif - p, t

Futura, "Century Gothic", "Apple Gothic", sans-serif - p, t

Garamond, "Hoefler Text", "Times New Roman", Times, serif - p
Garamond, "Hoefler Text", Palatino, "Palatino Linotype", serif - t

Geneva, "Lucida Sans", "Lucida Grande", "Lucida Sans Unicode", Verdana, sans-serif - p
Geneva, Verdana, "Lucida Sans", "Lucida Grande", "Lucida Sans Unicode", sans-serif - t

Georgia, Palatino, "Palatino Linotype", Times, "Times New Roman", serif - p
Georgia, Times, "Times New Roman", serif - t

GillSans, Calibri, Trebuchet, sans-serif - p
GillSans, Trebuchet, Calibri, sans-serif - t

"Helvetica Neue", Arial, Helvetica, sans-serif - p
Helvetica, "Helvetica Neue", Arial, sans-serif - t

Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif - p, t

"Lucida Sans", "Lucida Grande", "Lucida Sans Unicode", sans-serif - p, t

Palatino, "Palatino Linotype", Georgia, Times, "Times New Roman", serif - p
Palatino, "Palatino Linotype", "Hoefler Text", Times, "Times New Roman", serif - t

Tahoma, Geneva, Verdana - p
Tahoma, Verdana, Geneva - t

Times, "Times New Roman", Georgia, serif - p, t

Trebuchet, "Lucida Sans Unicode", "Lucida Grande", "Lucida Sans", Arial, sans-serif - p
Trebuchet, Tahoma, Arial, sans-serif - t

Verdana, Geneva, Tahoma, sans-serif - p
Verdana, Tahoma, Geneva, sans-serif - t

*/

/** END Starkers CSS **/

/** START WordPress-Defined CSS Classes **/
.wp-caption-text{}
.gallery-caption{}
.bypostauthor{}
.sticky{}
/** END WordPress-Defined CSS Classes **/
