@import url(../inc/mediaelement/mediaelementplayer.css);

.display-ie8 { display:none; }

span.wpcf7-list-item { margin-left:0px; }

txtarea.textboxed-sized {
	min-height:150px;
}

meta.foundation-data-attribute-namespace {
	font-family: false; }

/******************************************************************
Site Name:
Author:

Stylesheet: Mixins & Constants Stylesheet

This is where you can take advantage of Sass' great features:
Mixins & Constants. I won't go in-depth on how they work exactly,
there are a few articles below that will help do that. What I will
tell you is that this will help speed up simple changes like
changing a color or adding CSS3 techniques gradients.

A WORD OF WARNING: It's very easy to overdo it here. Be careful and
remember less is more.

******************************************************************/
/*********************
CLEARFIXIN'
*********************/
/* line 23, ../sass/_mixins.scss */
.clearfix { zoom: 1; }
/* line 25, ../sass/_mixins.scss */
.clearfix:before, .clearfix:after { content: ""; display: table; }
/* line 26, ../sass/_mixins.scss */
.clearfix:after { clear: both; }

/*********************
TOOLS
*********************/
/* line 34, ../sass/_mixins.scss */
* { -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; }

/* line 41, ../sass/_mixins.scss */
.image-replacement { text-indent: 100%; white-space: nowrap; overflow: hidden; }

/*********************
COLORS
Need help w/ choosing your colors? Try this site out:
http://0to255.com/
*********************/
/*
Here's a great tutorial on how to
use color variables properly:
http://sachagreif.com/sass-color-variables/
*/
/*********************
TYPOGRAPHY
*********************/
/* 	To embed your own fonts, use this syntax
	and place your fonts inside the
	library/fonts folder. For more information
	on embedding fonts, go to:
	http://www.fontsquirrel.com/
	Be sure to remove the comment brackets.
*/
/*	@font-face { 	font-family: 'Font Name'; 	src: url('library/fonts/font-name.eot'); 	src: url('library/fonts/font-name.eot?#iefix') format('embedded-opentype'), url('library/fonts/font-name.woff') format('woff'), url('library/fonts/font-name.ttf') format('truetype'), url('library/fonts/font-name.svg#font-name') format('svg'); 	font-weight: normal; 	font-style: normal; }
*/
/*
use the best ampersand
http://simplebits.com/notebook/2008/08/14/ampersands-2/
*/
/* line 107, ../sass/_mixins.scss */
span.amp { font-family: Baskerville,'Goudy Old Style',Palatino,'Book Antiqua',serif !important; font-style: italic; }

/* line 113, ../sass/_mixins.scss */
.text-left { text-align: left; }

/* line 114, ../sass/_mixins.scss */
.text-center { text-align: center; }

/* line 115, ../sass/_mixins.scss */
.text-right { text-align: right; }

/* line 119, ../sass/_mixins.scss */
.alert-help, .alert-info, .alert-error, .alert-success { margin: 10px; padding: 5px 18px; border: 1px solid; }

/* line 125, ../sass/_mixins.scss */
.alert-help { border-color: #e8dc59; background: #ebe16f; }

/* line 131, ../sass/_mixins.scss */
.alert-info { border-color: #bfe4f4; background: #d5edf8; }

/* line 137, ../sass/_mixins.scss */
.alert-error { border-color: #f8cdce; background: #fbe3e4; }

/* line 143, ../sass/_mixins.scss */
.alert-success { border-color: #deeaae; background: #e6efc2; }

/*********************
TRANSITION
*********************/
/*
I totally rewrote this to be cleaner and easier to use.
You'll need to be using Sass 3.2+ for these to work.
Thanks to @anthonyshort for the inspiration on these.
USAGE: @include transition(all 0.2s ease-in-out);
*/
/*********************
CSS3 GRADIENTS
Be careful with these since they can
really slow down your CSS. Don't overdo it.
*********************/
/* @include css-gradient(#dfdfdf,#f8f8f8); */
/*********************
BOX SIZING
*********************/
/* @include box-sizing(border-box); */
/* NOTE: value of "padding-box" is only supported in Gecko. So
probably best not to use it. I mean, were you going to anyway? */
/*********************
BUTTONS
*********************/
/* line 205, ../sass/_mixins.scss */
.button, .button:visited { font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; border: 1px solid #be0d37; border-top-color: #db0f3f; border-left-color: #db0f3f; padding: 4px 12px; color: white; display: inline-block; font-size: 11px; font-weight: bold; text-decoration: none; text-shadow: 0 1px rgba(0, 0, 0, 0.75); cursor: pointer; margin-bottom: 20px; line-height: 21px; border-radius: 4px; background-color: #e40f42; background-image: -webkit-gradient(linear, left top, left bottom, from(#f01d4f), to(#e40f42)); background-image: -webkit-linear-gradient(top, #f01d4f, #e40f42); background-image: -moz-linear-gradient(top, #f01d4f, #e40f42); background-image: -o-linear-gradient(top, #f01d4f, #e40f42); background-image: linear-gradient(to bottom, #f01d4f, #e40f42); }
/* line 224, ../sass/_mixins.scss */
.button:hover, .button:focus, .button:visited:hover, .button:visited:focus { color: white; border: 1px solid #be0d37; border-top-color: #9d0a2d; border-left-color: #9d0a2d; background-color: #cc0e3b; background-image: -webkit-gradient(linear, left top, left bottom, from(#e40f42), to(#cc0e3b)); background-image: -webkit-linear-gradient(top, #e40f42, #cc0e3b); background-image: -moz-linear-gradient(top, #e40f42, #cc0e3b); background-image: -o-linear-gradient(top, #e40f42, #cc0e3b); background-image: linear-gradient(to bottom, #e40f42, #cc0e3b); }
/* line 232, ../sass/_mixins.scss */
.button:active, .button:visited:active { background-color: #f01d4f; background-image: -webkit-gradient(linear, left top, left bottom, from(#e40f42), to(#f01d4f)); background-image: -webkit-linear-gradient(top, #e40f42, #f01d4f); background-image: -moz-linear-gradient(top, #e40f42, #f01d4f); background-image: -o-linear-gradient(top, #e40f42, #f01d4f); background-image: linear-gradient(to bottom, #e40f42, #f01d4f); }

/* line 237, ../sass/_mixins.scss */
.blue-button, .blue-button:visited { border-color: #1472ad; text-shadow: 0 1px 1px #1472ad; background-color: #1681c4; background-image: -webkit-gradient(linear, left top, left bottom, from(#1990db), to(#1681c4)); background-image: -webkit-linear-gradient(top, #1990db, #1681c4); background-image: -moz-linear-gradient(top, #1990db, #1681c4); background-image: -o-linear-gradient(top, #1990db, #1681c4); background-image: linear-gradient(to bottom, #1990db, #1681c4); box-shadow: inset 0 0 3px #59b3ec; }
/* line 243, ../sass/_mixins.scss */
.blue-button:hover, .blue-button:focus, .blue-button:visited:hover, .blue-button:visited:focus { border-color: #116396; background-color: #1472ad; background-image: -webkit-gradient(linear, left top, left bottom, from(#1784c9), to(#1472ad)); background-image: -webkit-linear-gradient(top, #1784c9, #1472ad); background-image: -moz-linear-gradient(top, #1784c9, #1472ad); background-image: -o-linear-gradient(top, #1784c9, #1472ad); background-image: linear-gradient(to bottom, #1784c9, #1472ad); }
/* line 247, ../sass/_mixins.scss */
.blue-button:active, .blue-button:visited:active { background-color: #1990db; background-image: -webkit-gradient(linear, left top, left bottom, from(#1681c4), to(#1990db)); background-image: -webkit-linear-gradient(top, #1681c4, #1990db); background-image: -moz-linear-gradient(top, #1681c4, #1990db); background-image: -o-linear-gradient(top, #1681c4, #1990db); background-image: linear-gradient(to bottom, #1681c4, #1990db); }

/* line 264, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_global.scss */
meta.foundation-mq-small { font-family: "only screen and (min-width: 768px)"; width: 768px; }

/* line 269, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_global.scss */
meta.foundation-mq-medium { font-family: "only screen and (min-width:1280px)"; width: 1280px; }

/* line 274, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_global.scss */
meta.foundation-mq-large { font-family: "only screen and (min-width:1440px)"; width: 1440px; }

/* line 292, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_global.scss */
*, *:before, *:after { -moz-box-sizing: border-box; -webkit-box-sizing: border-box; box-sizing: border-box; }

/* line 297, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_global.scss */
html, body { font-size: 100%; }

/* line 300, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_global.scss */
body { background: white; color: #222222; padding: 0; margin: 0; font-family: "Roboto", "open-sans", "museo-sans", "Segoe UI", Candara, "Bitstream Vera Sans", "DejaVu Sans", "Bitstream Vera Sans", "Trebuchet MS", Verdana, "Verdana Ref", sans-serif; font-weight: normal; font-style: normal; line-height: 1; position: relative; cursor: "default"; padding-top:116px; }
body.no-header { padding-top:0px; }

/* line 313, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_global.scss */
a:hover { cursor: pointer; }

/* line 318, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_global.scss */
img, object, embed { max-width: 100%; height: auto; }

/* line 321, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_global.scss */
object, embed { height: 100%; }

/* line 322, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_global.scss */
img { -ms-interpolation-mode: bicubic; }

/* line 328, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_global.scss */
#map_canvas img, #map_canvas embed, #map_canvas object, .map_canvas img, .map_canvas embed, .map_canvas object { max-width: none !important; }

/* line 333, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_global.scss */
.left { float: left !important; }

/* line 334, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_global.scss */
.right { float: right !important; }

/* line 335, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_global.scss */
.text-left { text-align: left !important; }

/* line 336, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_global.scss */
.text-right { text-align: right !important; }

/* line 337, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_global.scss */
.text-center { text-align: center !important; }

/* line 338, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_global.scss */
.text-justify { text-align: justify !important; }

/* line 339, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_global.scss */
.hide { display: none; }

/* line 345, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_global.scss */
.antialiased { -webkit-font-smoothing: antialiased; }

/* line 348, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_global.scss */
img { display: inline-block; vertical-align: middle; }

/* line 358, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_global.scss */
textarea { height: auto; min-height: 50px; }

/* line 361, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_global.scss */
select { width: 100%; }

/* Grid HTML Classes */
/* line 116, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_grid.scss */
.row { width: 100%; margin-left: auto; margin-right: auto; margin-top: 0; margin-bottom: 0; *zoom: 1; }
/* line 121, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_global.scss */
.row:before, .row:after { content: " "; display: table; }
/* line 122, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_global.scss */
.row:after { clear: both; }
/* line 121, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_grid.scss */
.row.collapse > .column, .row.collapse > .columns { position: relative; padding-left: 0; padding-right: 0; float: left; }
/* line 123, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_grid.scss */
.row.collapse .row { margin-left: 0; margin-right: 0; }
/* line 126, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_grid.scss */
.row .row { width: auto; margin-left: -0.9375em; margin-right: -0.9375em; margin-top: 0; margin-bottom: 0; max-width: none; *zoom: 1; }
/* line 121, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_global.scss */
.row .row:before, .row .row:after { content: " "; display: table; }
/* line 122, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_global.scss */
.row .row:after { clear: both; }
/* line 127, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_grid.scss */
.row .row.collapse { width: auto; margin: 0; max-width: none; *zoom: 1; }
/* line 121, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_global.scss */
.row .row.collapse:before, .row .row.collapse:after { content: " "; display: table; }
/* line 122, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_global.scss */
.row .row.collapse:after { clear: both; }

/* line 132, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_grid.scss */
.column, .columns { position: relative; padding-left: 0.9375em; padding-right: 0.9375em; width: 100%; float: left; }

@media only screen { /* line 137, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_grid.scss */
	.column, .columns { position: relative; padding-left: 0.9375em; padding-right: 0.9375em; float: left; }
	/* line 140, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_grid.scss */
	.small-1 { position: relative; width: 8.33333%; }
	/* line 140, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_grid.scss */
	.small-2 { position: relative; width: 16.66667%; }
	/* line 140, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_grid.scss */
	.small-3 { position: relative; width: 25%; }
	/* line 140, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_grid.scss */
	.small-4 { position: relative; width: 33.33333%; }
	/* line 140, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_grid.scss */
	.small-5 { position: relative; width: 41.66667%; }
	/* line 140, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_grid.scss */
	.small-6 { position: relative; width: 50%; }
	/* line 140, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_grid.scss */
	.small-7 { position: relative; width: 58.33333%; }
	/* line 140, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_grid.scss */
	.small-8 { position: relative; width: 66.66667%; }
	/* line 140, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_grid.scss */
	.small-9 { position: relative; width: 75%; }
	/* line 140, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_grid.scss */
	.small-10 { position: relative; width: 83.33333%; }
	/* line 140, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_grid.scss */
	.small-11 { position: relative; width: 91.66667%; }
	/* line 140, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_grid.scss */
	.small-12 { position: relative; width: 100%; }
	/* line 144, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_grid.scss */
	.small-offset-0 { position: relative; margin-left: 0%; }
	/* line 144, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_grid.scss */
	.small-offset-1 { position: relative; margin-left: 8.33333%; }
	/* line 144, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_grid.scss */
	.small-offset-2 { position: relative; margin-left: 16.66667%; }
	/* line 144, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_grid.scss */
	.small-offset-3 { position: relative; margin-left: 25%; }
	/* line 144, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_grid.scss */
	.small-offset-4 { position: relative; margin-left: 33.33333%; }
	/* line 144, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_grid.scss */
	.small-offset-5 { position: relative; margin-left: 41.66667%; }
	/* line 144, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_grid.scss */
	.small-offset-6 { position: relative; margin-left: 50%; }
	/* line 144, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_grid.scss */
	.small-offset-7 { position: relative; margin-left: 58.33333%; }
	/* line 144, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_grid.scss */
	.small-offset-8 { position: relative; margin-left: 66.66667%; }
	/* line 144, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_grid.scss */
	.small-offset-9 { position: relative; margin-left: 75%; }
	/* line 144, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_grid.scss */
	.small-offset-10 { position: relative; margin-left: 83.33333%; }
	/* line 147, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_grid.scss */
	[class*="column"] + [class*="column"]:last-child { float: right; }
	/* line 148, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_grid.scss */
	[class*="column"] + [class*="column"].end { float: left; }
	/* line 151, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_grid.scss */
	.column.small-centered, .columns.small-centered { position: relative; margin-left: auto; margin-right: auto; float: none !important; } }
/* Styles for screens that are atleast 768px; */
@media only screen and (min-width: 768px) { /* line 158, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_grid.scss */
	.large-1 { position: relative; width: 8.33333%; }
	/* line 158, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_grid.scss */
	.large-2 { position: relative; width: 16.66667%; }
	/* line 158, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_grid.scss */
	.large-3 { position: relative; width: 25%; }
	/* line 158, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_grid.scss */
	.large-4 { position: relative; width: 33.33333%; }
	/* line 158, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_grid.scss */
	.large-5 { position: relative; width: 41.66667%; }
	/* line 158, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_grid.scss */
	.large-6 { position: relative; width: 50%; }
	/* line 158, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_grid.scss */
	.large-7 { position: relative; width: 58.33333%; }
	/* line 158, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_grid.scss */
	.large-8 { position: relative; width: 66.66667%; }
	/* line 158, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_grid.scss */
	.large-9 { position: relative; width: 75%; }
	/* line 158, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_grid.scss */
	.large-10 { position: relative; width: 83.33333%; }
	/* line 158, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_grid.scss */
	.large-11 { position: relative; width: 91.66667%; }
	/* line 158, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_grid.scss */
	.large-12 { position: relative; width: 100%; }
	/* line 162, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_grid.scss */
	.row .large-offset-0 { position: relative; margin-left: 0%; }
	/* line 162, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_grid.scss */
	.row .large-offset-1 { position: relative; margin-left: 8.33333%; }
	/* line 162, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_grid.scss */
	.row .large-offset-2 { position: relative; margin-left: 16.66667%; }
	/* line 162, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_grid.scss */
	.row .large-offset-3 { position: relative; margin-left: 25%; }
	/* line 162, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_grid.scss */
	.row .large-offset-4 { position: relative; margin-left: 33.33333%; }
	/* line 162, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_grid.scss */
	.row .large-offset-5 { position: relative; margin-left: 41.66667%; }
	/* line 162, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_grid.scss */
	.row .large-offset-6 { position: relative; margin-left: 50%; }
	/* line 162, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_grid.scss */
	.row .large-offset-7 { position: relative; margin-left: 58.33333%; }
	/* line 162, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_grid.scss */
	.row .large-offset-8 { position: relative; margin-left: 66.66667%; }
	/* line 162, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_grid.scss */
	.row .large-offset-9 { position: relative; margin-left: 75%; }
	/* line 162, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_grid.scss */
	.row .large-offset-10 { position: relative; margin-left: 83.33333%; }
	/* line 162, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_grid.scss */
	.row .large-offset-11 { position: relative; margin-left: 91.66667%; }
	/* line 166, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_grid.scss */
	.push-1 { position: relative; left: 8.33333%; right: auto; }
	/* line 167, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_grid.scss */
	.pull-1 { position: relative; right: 8.33333%; left: auto; }
	/* line 166, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_grid.scss */
	.push-2 { position: relative; left: 16.66667%; right: auto; }
	/* line 167, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_grid.scss */
	.pull-2 { position: relative; right: 16.66667%; left: auto; }
	/* line 166, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_grid.scss */
	.push-3 { position: relative; left: 25%; right: auto; }
	/* line 167, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_grid.scss */
	.pull-3 { position: relative; right: 25%; left: auto; }
	/* line 166, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_grid.scss */
	.push-4 { position: relative; left: 33.33333%; right: auto; }
	/* line 167, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_grid.scss */
	.pull-4 { position: relative; right: 33.33333%; left: auto; }
	/* line 166, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_grid.scss */
	.push-5 { position: relative; left: 41.66667%; right: auto; }
	/* line 167, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_grid.scss */
	.pull-5 { position: relative; right: 41.66667%; left: auto; }
	/* line 166, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_grid.scss */
	.push-6 { position: relative; left: 50%; right: auto; }
	/* line 167, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_grid.scss */
	.pull-6 { position: relative; right: 50%; left: auto; }
	/* line 166, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_grid.scss */
	.push-7 { position: relative; left: 58.33333%; right: auto; }
	/* line 167, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_grid.scss */
	.pull-7 { position: relative; right: 58.33333%; left: auto; }
	/* line 166, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_grid.scss */
	.push-8 { position: relative; left: 66.66667%; right: auto; }
	/* line 167, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_grid.scss */
	.pull-8 { position: relative; right: 66.66667%; left: auto; }
	/* line 166, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_grid.scss */
	.push-9 { position: relative; left: 75%; right: auto; }
	/* line 167, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_grid.scss */
	.pull-9 { position: relative; right: 75%; left: auto; }
	/* line 166, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_grid.scss */
	.push-10 { position: relative; left: 83.33333%; right: auto; }
	/* line 167, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_grid.scss */
	.pull-10 { position: relative; right: 83.33333%; left: auto; }
	/* line 166, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_grid.scss */
	.push-11 { position: relative; left: 91.66667%; right: auto; }
	/* line 167, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_grid.scss */
	.pull-11 { position: relative; right: 91.66667%; left: auto; }
	/* line 171, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_grid.scss */
	.column.large-centered, .columns.large-centered { position: relative; margin-left: auto; margin-right: auto; float: none !important; }
	/* line 174, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_grid.scss */
	.column.large-uncentered, .columns.large-uncentered { margin-left: 0; margin-right: 0; float: left !important; }
	/* line 181, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_grid.scss */
	.column.large-uncentered.opposite, .columns.large-uncentered.opposite { float: right !important; } }
/* Foundation Visibility HTML Classes */
/* line 11, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_visibility.scss */
.show-for-small, .show-for-medium-down, .show-for-large-down { display: inherit !important; }

/* line 17, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_visibility.scss */
.show-for-medium, .show-for-medium-up, .show-for-large, .show-for-large-up, .show-for-xlarge { display: none !important; }

/* line 23, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_visibility.scss */
.hide-for-medium, .hide-for-medium-up, .hide-for-large, .hide-for-large-up, .hide-for-xlarge { display: inherit !important; }

/* line 27, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_visibility.scss */
.hide-for-small, .hide-for-medium-down, .hide-for-large-down { display: none !important; }

/* Specific visilbity for tables */
/* line 38, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_visibility.scss */
table.show-for-small, table.show-for-medium-down, table.show-for-large-down, table.hide-for-medium, table.hide-for-medium-up, table.hide-for-large, table.hide-for-large-up, table.hide-for-xlarge { display: table; }

/* line 48, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_visibility.scss */
thead.show-for-small, thead.show-for-medium-down, thead.show-for-large-down, thead.hide-for-medium, thead.hide-for-medium-up, thead.hide-for-large, thead.hide-for-large-up, thead.hide-for-xlarge { display: table-header-group !important; }

/* line 58, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_visibility.scss */
tbody.show-for-small, tbody.show-for-medium-down, tbody.show-for-large-down, tbody.hide-for-medium, tbody.hide-for-medium-up, tbody.hide-for-large, tbody.hide-for-large-up, tbody.hide-for-xlarge { display: table-row-group !important; }

/* line 68, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_visibility.scss */
tr.show-for-small, tr.show-for-medium-down, tr.show-for-large-down, tr.hide-for-medium, tr.hide-for-medium-up, tr.hide-for-large, tr.hide-for-large-up, tr.hide-for-xlarge { display: table-row !important; }

/* line 79, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_visibility.scss */
td.show-for-small, td.show-for-medium-down, td.show-for-large-down, td.hide-for-medium, td.hide-for-medium-up, td.hide-for-large, td.hide-for-large-up, td.hide-for-xlarge, th.show-for-small, th.show-for-medium-down, th.show-for-large-down, th.hide-for-medium, th.hide-for-medium-up, th.hide-for-large, th.hide-for-large-up, th.hide-for-xlarge { display: table-cell !important; }

/* Medium Displays: 768px - 1279px */
@media only screen and (min-width: 768px) { /* line 85, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_visibility.scss */
	.show-for-medium, .show-for-medium-up { display: inherit !important; }
	/* line 87, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_visibility.scss */
	.show-for-small { display: none !important; }
	/* line 89, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_visibility.scss */
	.hide-for-small { display: inherit !important; }
	/* line 92, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_visibility.scss */
	.hide-for-medium, .hide-for-medium-up { display: none !important; }
	/* Specific visilbity for tables */
	/* line 98, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_visibility.scss */
	table.show-for-medium, table.show-for-medium-up, table.hide-for-small { display: table; }
	/* line 103, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_visibility.scss */
	thead.show-for-medium, thead.show-for-medium-up, thead.hide-for-small { display: table-header-group !important; }
	/* line 108, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_visibility.scss */
	tbody.show-for-medium, tbody.show-for-medium-up, tbody.hide-for-small { display: table-row-group !important; }
	/* line 113, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_visibility.scss */
	tr.show-for-medium, tr.show-for-medium-up, tr.hide-for-small { display: table-row !important; }
	/* line 119, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_visibility.scss */
	td.show-for-medium, td.show-for-medium-up, td.hide-for-small, th.show-for-medium, th.show-for-medium-up, th.hide-for-small { display: table-cell !important; } }
/* Large Displays: 1280px - 1440px */
@media only screen and (min-width: 1280px) { /* line 126, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_visibility.scss */
	.show-for-large, .show-for-large-up { display: inherit !important; }
	/* line 129, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_visibility.scss */
	.show-for-medium, .show-for-medium-down { display: none !important; }
	/* line 132, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_visibility.scss */
	.hide-for-medium, .hide-for-medium-down { display: inherit !important; }
	/* line 135, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_visibility.scss */
	.hide-for-large, .hide-for-large-up { display: none !important; }
	/* Specific visilbity for tables */
	/* line 142, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_visibility.scss */
	table.show-for-large, table.show-for-large-up, table.hide-for-medium, table.hide-for-medium-down { display: table; }
	/* line 148, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_visibility.scss */
	thead.show-for-large, thead.show-for-large-up, thead.hide-for-medium, thead.hide-for-medium-down { display: table-header-group !important; }
	/* line 154, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_visibility.scss */
	tbody.show-for-large, tbody.show-for-large-up, tbody.hide-for-medium, tbody.hide-for-medium-down { display: table-row-group !important; }
	/* line 160, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_visibility.scss */
	tr.show-for-large, tr.show-for-large-up, tr.hide-for-medium, tr.hide-for-medium-down { display: table-row !important; }
	/* line 167, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_visibility.scss */
	td.show-for-large, td.show-for-large-up, td.hide-for-medium, td.hide-for-medium-down, th.show-for-large, th.show-for-large-up, th.hide-for-medium, th.hide-for-medium-down { display: table-cell !important; } }
/* X-Large Displays: 1400px and up */
@media only screen and (min-width: 1440px) { /* line 173, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_visibility.scss */
	.show-for-xlarge { display: inherit !important; }
	/* line 176, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_visibility.scss */
	.show-for-large, .show-for-large-down { display: none !important; }
	/* line 179, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_visibility.scss */
	.hide-for-large, .hide-for-large-down { display: inherit !important; }
	/* line 181, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_visibility.scss */
	.hide-for-xlarge { display: none !important; }
	/* Specific visilbity for tables */
	/* line 187, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_visibility.scss */
	table.show-for-xlarge, table.hide-for-large, table.hide-for-large-down { display: table; }
	/* line 192, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_visibility.scss */
	thead.show-for-xlarge, thead.hide-for-large, thead.hide-for-large-down { display: table-header-group !important; }
	/* line 197, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_visibility.scss */
	tbody.show-for-xlarge, tbody.hide-for-large, tbody.hide-for-large-down { display: table-row-group !important; }
	/* line 202, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_visibility.scss */
	tr.show-for-xlarge, tr.hide-for-large, tr.hide-for-large-down { display: table-row !important; }
	/* line 208, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_visibility.scss */
	td.show-for-xlarge, td.hide-for-large, td.hide-for-large-down, th.show-for-xlarge, th.hide-for-large, th.hide-for-large-down { display: table-cell !important; } }
/* Orientation targeting */
/* line 215, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_visibility.scss */
.show-for-landscape, .hide-for-portrait { display: inherit !important; }

/* line 217, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_visibility.scss */
.hide-for-landscape, .show-for-portrait { display: none !important; }

/* Specific visilbity for tables */
/* line 222, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_visibility.scss */
table.hide-for-landscape, table.show-for-portrait { display: table; }

/* line 226, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_visibility.scss */
thead.hide-for-landscape, thead.show-for-portrait { display: table-header-group !important; }

/* line 230, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_visibility.scss */
tbody.hide-for-landscape, tbody.show-for-portrait { display: table-row-group !important; }

/* line 234, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_visibility.scss */
tr.hide-for-landscape, tr.show-for-portrait { display: table-row !important; }

/* line 239, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_visibility.scss */
td.hide-for-landscape, td.show-for-portrait, th.hide-for-landscape, th.show-for-portrait { display: table-cell !important; }

@media only screen and (orientation: landscape) { /* line 244, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_visibility.scss */
	.show-for-landscape, .hide-for-portrait { display: inherit !important; }
	/* line 246, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_visibility.scss */
	.hide-for-landscape, .show-for-portrait { display: none !important; }
	/* Specific visilbity for tables */
	/* line 251, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_visibility.scss */
	table.show-for-landscape, table.hide-for-portrait { display: table; }
	/* line 255, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_visibility.scss */
	thead.show-for-landscape, thead.hide-for-portrait { display: table-header-group !important; }
	/* line 259, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_visibility.scss */
	tbody.show-for-landscape, tbody.hide-for-portrait { display: table-row-group !important; }
	/* line 263, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_visibility.scss */
	tr.show-for-landscape, tr.hide-for-portrait { display: table-row !important; }
	/* line 268, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_visibility.scss */
	td.show-for-landscape, td.hide-for-portrait, th.show-for-landscape, th.hide-for-portrait { display: table-cell !important; } }
@media only screen and (orientation: portrait) { /* line 274, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_visibility.scss */
	.show-for-portrait, .hide-for-landscape { display: inherit !important; }
	/* line 276, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_visibility.scss */
	.hide-for-portrait, .show-for-landscape { display: none !important; }
	/* Specific visilbity for tables */
	/* line 281, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_visibility.scss */
	table.show-for-portrait, table.hide-for-landscape { display: table; }
	/* line 285, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_visibility.scss */
	thead.show-for-portrait, thead.hide-for-landscape { display: table-header-group !important; }
	/* line 289, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_visibility.scss */
	tbody.show-for-portrait, tbody.hide-for-landscape { display: table-row-group !important; }
	/* line 293, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_visibility.scss */
	tr.show-for-portrait, tr.hide-for-landscape { display: table-row !important; }
	/* line 298, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_visibility.scss */
	td.show-for-portrait, td.hide-for-landscape, th.show-for-portrait, th.hide-for-landscape { display: table-cell !important; } }
/* Touch-enabled device targeting */
/* line 303, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_visibility.scss */
.show-for-touch { display: none !important; }

/* line 304, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_visibility.scss */
.hide-for-touch { display: inherit !important; }

/* line 305, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_visibility.scss */
.touch .show-for-touch { display: inherit !important; }

/* line 306, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_visibility.scss */
.touch .hide-for-touch { display: none !important; }

/* Specific visilbity for tables */
/* line 309, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_visibility.scss */
table.hide-for-touch { display: table; }

/* line 310, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_visibility.scss */
.touch table.show-for-touch { display: table; }

/* line 311, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_visibility.scss */
thead.hide-for-touch { display: table-header-group !important; }

/* line 312, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_visibility.scss */
.touch thead.show-for-touch { display: table-header-group !important; }

/* line 313, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_visibility.scss */
tbody.hide-for-touch { display: table-row-group !important; }

/* line 314, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_visibility.scss */
.touch tbody.show-for-touch { display: table-row-group !important; }

/* line 315, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_visibility.scss */
tr.hide-for-touch { display: table-row !important; }

/* line 316, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_visibility.scss */
.touch tr.show-for-touch { display: table-row !important; }

/* line 317, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_visibility.scss */
td.hide-for-touch { display: table-cell !important; }

/* line 318, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_visibility.scss */
.touch td.show-for-touch { display: table-cell !important; }

/* line 319, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_visibility.scss */
th.hide-for-touch { display: table-cell !important; }

/* line 320, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_visibility.scss */
.touch th.show-for-touch { display: table-cell !important; }

/* Foundation Block Grids for below small breakpoint */
@media only screen { /* line 50, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_block-grid.scss */
	[class*="block-grid-"] { display: block; padding: 0; margin: 0 -0.625em; *zoom: 1; }
	/* line 121, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_global.scss */
	[class*="block-grid-"]:before, [class*="block-grid-"]:after { content: " "; display: table; }
	/* line 122, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_global.scss */
	[class*="block-grid-"]:after { clear: both; }
	/* line 27, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_block-grid.scss */
	[class*="block-grid-"] > li { display: inline; height: auto; float: left; padding: 0 0.625em 1.25em; }
	/* line 36, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_block-grid.scss */
	.small-block-grid-1 > li { width: 100%; padding: 0 0.625em 1.25em; }
	/* line 40, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_block-grid.scss */
	.small-block-grid-1 > li:nth-of-type(n) { clear: none; }
	/* line 41, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_block-grid.scss */
	.small-block-grid-1 > li:nth-of-type(1n+1) { clear: both; }
	/* line 36, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_block-grid.scss */
	.small-block-grid-2 > li { width: 50%; padding: 0 0.625em 1.25em; }
	/* line 40, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_block-grid.scss */
	.small-block-grid-2 > li:nth-of-type(n) { clear: none; }
	/* line 41, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_block-grid.scss */
	.small-block-grid-2 > li:nth-of-type(2n+1) { clear: both; }
	/* line 36, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_block-grid.scss */
	.small-block-grid-3 > li { width: 33.33333%; padding: 0 0.625em 1.25em; }
	/* line 40, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_block-grid.scss */
	.small-block-grid-3 > li:nth-of-type(n) { clear: none; }
	/* line 41, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_block-grid.scss */
	.small-block-grid-3 > li:nth-of-type(3n+1) { clear: both; }
	/* line 36, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_block-grid.scss */
	.small-block-grid-4 > li { width: 25%; padding: 0 0.625em 1.25em; }
	/* line 40, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_block-grid.scss */
	.small-block-grid-4 > li:nth-of-type(n) { clear: none; }
	/* line 41, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_block-grid.scss */
	.small-block-grid-4 > li:nth-of-type(4n+1) { clear: both; }
	/* line 36, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_block-grid.scss */
	.small-block-grid-5 > li { width: 20%; padding: 0 0.625em 1.25em; }
	/* line 40, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_block-grid.scss */
	.small-block-grid-5 > li:nth-of-type(n) { clear: none; }
	/* line 41, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_block-grid.scss */
	.small-block-grid-5 > li:nth-of-type(5n+1) { clear: both; }
	/* line 36, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_block-grid.scss */
	.small-block-grid-6 > li { width: 16.66667%; padding: 0 0.625em 1.25em; }
	/* line 40, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_block-grid.scss */
	.small-block-grid-6 > li:nth-of-type(n) { clear: none; }
	/* line 41, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_block-grid.scss */
	.small-block-grid-6 > li:nth-of-type(6n+1) { clear: both; }
	/* line 36, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_block-grid.scss */
	.small-block-grid-7 > li { width: 14.28571%; padding: 0 0.625em 1.25em; }
	/* line 40, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_block-grid.scss */
	.small-block-grid-7 > li:nth-of-type(n) { clear: none; }
	/* line 41, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_block-grid.scss */
	.small-block-grid-7 > li:nth-of-type(7n+1) { clear: both; }
	/* line 36, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_block-grid.scss */
	.small-block-grid-8 > li { width: 12.5%; padding: 0 0.625em 1.25em; }
	/* line 40, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_block-grid.scss */
	.small-block-grid-8 > li:nth-of-type(n) { clear: none; }
	/* line 41, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_block-grid.scss */
	.small-block-grid-8 > li:nth-of-type(8n+1) { clear: both; }
	/* line 36, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_block-grid.scss */
	.small-block-grid-9 > li { width: 11.11111%; padding: 0 0.625em 1.25em; }
	/* line 40, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_block-grid.scss */
	.small-block-grid-9 > li:nth-of-type(n) { clear: none; }
	/* line 41, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_block-grid.scss */
	.small-block-grid-9 > li:nth-of-type(9n+1) { clear: both; }
	/* line 36, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_block-grid.scss */
	.small-block-grid-10 > li { width: 10%; padding: 0 0.625em 1.25em; }
	/* line 40, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_block-grid.scss */
	.small-block-grid-10 > li:nth-of-type(n) { clear: none; }
	/* line 41, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_block-grid.scss */
	.small-block-grid-10 > li:nth-of-type(10n+1) { clear: both; }
	/* line 36, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_block-grid.scss */
	.small-block-grid-11 > li { width: 9.09091%; padding: 0 0.625em 1.25em; }
	/* line 40, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_block-grid.scss */
	.small-block-grid-11 > li:nth-of-type(n) { clear: none; }
	/* line 41, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_block-grid.scss */
	.small-block-grid-11 > li:nth-of-type(11n+1) { clear: both; }
	/* line 36, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_block-grid.scss */
	.small-block-grid-12 > li { width: 8.33333%; padding: 0 0.625em 1.25em; }
	/* line 40, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_block-grid.scss */
	.small-block-grid-12 > li:nth-of-type(n) { clear: none; }
	/* line 41, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_block-grid.scss */
	.small-block-grid-12 > li:nth-of-type(12n+1) { clear: both; } }
/* Foundation Block Grids for above small breakpoint */
@media only screen and (min-width: 768px) { /* Remove small grid clearing */
	/* line 63, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_block-grid.scss */
	.small-block-grid-1 > li:nth-of-type(1n+1) { clear: none; }
	/* line 63, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_block-grid.scss */
	.small-block-grid-2 > li:nth-of-type(2n+1) { clear: none; }
	/* line 63, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_block-grid.scss */
	.small-block-grid-3 > li:nth-of-type(3n+1) { clear: none; }
	/* line 63, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_block-grid.scss */
	.small-block-grid-4 > li:nth-of-type(4n+1) { clear: none; }
	/* line 63, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_block-grid.scss */
	.small-block-grid-5 > li:nth-of-type(5n+1) { clear: none; }
	/* line 63, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_block-grid.scss */
	.small-block-grid-6 > li:nth-of-type(6n+1) { clear: none; }
	/* line 63, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_block-grid.scss */
	.small-block-grid-7 > li:nth-of-type(7n+1) { clear: none; }
	/* line 63, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_block-grid.scss */
	.small-block-grid-8 > li:nth-of-type(8n+1) { clear: none; }
	/* line 63, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_block-grid.scss */
	.small-block-grid-9 > li:nth-of-type(9n+1) { clear: none; }
	/* line 63, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_block-grid.scss */
	.small-block-grid-10 > li:nth-of-type(10n+1) { clear: none; }
	/* line 63, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_block-grid.scss */
	.small-block-grid-11 > li:nth-of-type(11n+1) { clear: none; }
	/* line 63, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_block-grid.scss */
	.small-block-grid-12 > li:nth-of-type(12n+1) { clear: none; }
	/* line 36, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_block-grid.scss */
	.large-block-grid-1 > li { width: 100%; padding: 0 0.625em 1.25em; }
	/* line 40, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_block-grid.scss */
	.large-block-grid-1 > li:nth-of-type(n) { clear: none; }
	/* line 41, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_block-grid.scss */
	.large-block-grid-1 > li:nth-of-type(1n+1) { clear: both; }
	/* line 36, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_block-grid.scss */
	.large-block-grid-2 > li { width: 50%; padding: 0 0.625em 1.25em; }
	/* line 40, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_block-grid.scss */
	.large-block-grid-2 > li:nth-of-type(n) { clear: none; }
	/* line 41, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_block-grid.scss */
	.large-block-grid-2 > li:nth-of-type(2n+1) { clear: both; }
	/* line 36, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_block-grid.scss */
	.large-block-grid-3 > li { width: 33.33333%; padding: 0 0.625em 1.25em; }
	/* line 40, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_block-grid.scss */
	.large-block-grid-3 > li:nth-of-type(n) { clear: none; }
	/* line 41, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_block-grid.scss */
	.large-block-grid-3 > li:nth-of-type(3n+1) { clear: both; }
	/* line 36, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_block-grid.scss */
	.large-block-grid-4 > li { width: 25%; padding: 0 0.625em 1.25em; }
	/* line 40, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_block-grid.scss */
	.large-block-grid-4 > li:nth-of-type(n) { clear: none; }
	/* line 41, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_block-grid.scss */
	.large-block-grid-4 > li:nth-of-type(4n+1) { clear: both; }
	/* line 36, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_block-grid.scss */
	.large-block-grid-5 > li { width: 20%; padding: 0 0.625em 1.25em; }
	/* line 40, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_block-grid.scss */
	.large-block-grid-5 > li:nth-of-type(n) { clear: none; }
	/* line 41, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_block-grid.scss */
	.large-block-grid-5 > li:nth-of-type(5n+1) { clear: both; }
	/* line 36, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_block-grid.scss */
	.large-block-grid-6 > li { width: 16.66667%; padding: 0 0.625em 1.25em; }
	/* line 40, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_block-grid.scss */
	.large-block-grid-6 > li:nth-of-type(n) { clear: none; }
	/* line 41, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_block-grid.scss */
	.large-block-grid-6 > li:nth-of-type(6n+1) { clear: both; }
	/* line 36, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_block-grid.scss */
	.large-block-grid-7 > li { width: 14.28571%; padding: 0 0.625em 1.25em; }
	/* line 40, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_block-grid.scss */
	.large-block-grid-7 > li:nth-of-type(n) { clear: none; }
	/* line 41, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_block-grid.scss */
	.large-block-grid-7 > li:nth-of-type(7n+1) { clear: both; }
	/* line 36, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_block-grid.scss */
	.large-block-grid-8 > li { width: 12.5%; padding: 0 0.625em 1.25em; }
	/* line 40, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_block-grid.scss */
	.large-block-grid-8 > li:nth-of-type(n) { clear: none; }
	/* line 41, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_block-grid.scss */
	.large-block-grid-8 > li:nth-of-type(8n+1) { clear: both; }
	/* line 36, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_block-grid.scss */
	.large-block-grid-9 > li { width: 11.11111%; padding: 0 0.625em 1.25em; }
	/* line 40, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_block-grid.scss */
	.large-block-grid-9 > li:nth-of-type(n) { clear: none; }
	/* line 41, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_block-grid.scss */
	.large-block-grid-9 > li:nth-of-type(9n+1) { clear: both; }
	/* line 36, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_block-grid.scss */
	.large-block-grid-10 > li { width: 10%; padding: 0 0.625em 1.25em; }
	/* line 40, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_block-grid.scss */
	.large-block-grid-10 > li:nth-of-type(n) { clear: none; }
	/* line 41, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_block-grid.scss */
	.large-block-grid-10 > li:nth-of-type(10n+1) { clear: both; }
	/* line 36, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_block-grid.scss */
	.large-block-grid-11 > li { width: 9.09091%; padding: 0 0.625em 1.25em; }
	/* line 40, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_block-grid.scss */
	.large-block-grid-11 > li:nth-of-type(n) { clear: none; }
	/* line 41, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_block-grid.scss */
	.large-block-grid-11 > li:nth-of-type(11n+1) { clear: both; }
	/* line 36, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_block-grid.scss */
	.large-block-grid-12 > li { width: 8.33333%; padding: 0 0.625em 1.25em; }
	/* line 40, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_block-grid.scss */
	.large-block-grid-12 > li:nth-of-type(n) { clear: none; }
	/* line 41, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_block-grid.scss */
	.large-block-grid-12 > li:nth-of-type(12n+1) { clear: both; } }
/* line 111, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_type.scss */
p.lead { font-size: 1.21875em; line-height: 1.6; }

/* line 116, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_type.scss */
.subheader { line-height: 1.4; color: #6f6f6f; font-weight: 300; margin-top: 0.2em; margin-bottom: 0.5em; }

/* Typography resets */
/* line 145, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_type.scss */
div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, form, p, blockquote, th, td { margin: 0; padding: 0; direction: ltr; }

/* Default Link Styles */
/* line 152, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_type.scss */
a { color: #0084c7; text-decoration: none; line-height: inherit; }
/* line 158, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_type.scss */
a:hover, a:focus { color: #0073ae; }
/* line 160, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_type.scss */
a img { border: none; }

/* Default paragraph styles */
/* line 164, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_type.scss */
p { font-family: inherit; font-weight: 300; font-size: 1em; line-height: 1.6; margin-bottom: 1.25em; text-rendering: optimizeLegibility; }
/* line 174, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_type.scss */
p aside { font-size: 0.875em; line-height: 1.35; font-style: italic; }

/* Default header styles */
/* line 182, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_type.scss */
h1, h2, h3, h4, h5, h6 { font-family: "Roboto Slab", "aleo", "prenton-condensed", "league-gothic", "League Gothic", Candara, Calibri, Segoe, "Segoe UI", Optima, Arial, sans-serif; font-weight: 300; font-style: normal; color: #222222; text-rendering: optimizeLegibility; margin-top: 0.2em; margin-bottom: 0.5em; line-height: 1.2125em; }
/* line 192, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_type.scss */
h1 small, h2 small, h3 small, h4 small, h5 small, h6 small { font-size: 60%; color: #6f6f6f; line-height: 0; }

/* line 199, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_type.scss */
h1 { font-size: 2.125em; }

/* line 200, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_type.scss */
h2 { font-size: 1.6875em; }

/* line 201, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_type.scss */
h3 { font-size: 1.375em; }

/* line 202, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_type.scss */
h4 { font-size: 1.125em; }

/* line 203, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_type.scss */
h5 { font-size: 1.125em; }

/* line 204, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_type.scss */
h6 { font-size: 1em; }

/* line 208, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_type.scss */
hr { border: solid #dddddd; border-width: 1px 0 0; clear: both; margin: 1.25em 0 1.1875em; height: 0; }

/* Helpful Typography Defaults */
/* line 218, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_type.scss */
em, i { font-style: italic; line-height: inherit; }

/* line 224, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_type.scss */
strong, b { font-weight: bold; line-height: inherit; }

/* line 229, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_type.scss */
small { font-size: 60%; line-height: inherit; }

/* line 234, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_type.scss */
code { font-family: Consolas, "Liberation Mono", Courier, monospace; font-weight: bold; color: #7f0a0c; }

/* Lists */
/* line 243, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_type.scss */
ul, ol, dl { font-size: 1em; line-height: 1.6; margin-bottom: 1.25em; list-style-position: inside; font-family: inherit; }

/* line 251, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_type.scss */
ul, ol { margin-left: 0; }
/* line 253, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_type.scss */
ul.no-bullet, ol.no-bullet { margin-left: 0; }

/* Unordered Lists */
/* line 260, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_type.scss */
ul li ul, ul li ol { margin-left: 1.25em; margin-bottom: 0; font-size: 1em; /* Override nested font-size change */ }
/* line 269, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_type.scss */
ul.square li ul, ul.circle li ul, ul.disc li ul { list-style: inherit; }
/* line 272, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_type.scss */
ul.square { list-style-type: square; }
/* line 273, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_type.scss */
ul.circle { list-style-type: circle; }
/* line 274, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_type.scss */
ul.disc { list-style-type: disc; }
/* line 275, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_type.scss */
ul.no-bullet { list-style: none; }

/* Ordered Lists */
/* line 282, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_type.scss */
ol li ul, ol li ol { margin-left: 1.25em; margin-bottom: 0; }

/* Definition Lists */
/* line 291, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_type.scss */
dl dt { margin-bottom: 0.3em; font-weight: bold; }
/* line 295, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_type.scss */
dl dd { margin-bottom: 0.75em; }

/* Abbreviations */
/* line 300, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_type.scss */
abbr, acronym { text-transform: uppercase; font-size: 90%; color: #222222; border-bottom: 1px dotted #dddddd; cursor: help; }

/* line 307, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_type.scss */
abbr { text-transform: none; }

/* Blockquotes */
/* line 312, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_type.scss */
blockquote { margin: 0 0 1.25em; padding: 0.5625em 1.25em 0 1.1875em; border-left: 1px solid #dddddd; }
/* line 317, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_type.scss */
blockquote cite { display: block; font-size: 0.8125em; color: #555555; }
/* line 321, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_type.scss */
blockquote cite:before { content: "\2014 \0020"; }
/* line 326, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_type.scss */
blockquote cite a, blockquote cite a:visited { color: #555555; }

/* line 332, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_type.scss */
blockquote, blockquote p { line-height: 1.6; color: #6f6f6f; }

/* Microformats */
/* line 338, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_type.scss */
.vcard { display: inline-block; margin: 0 0 1.25em 0; border: 1px solid #dddddd; padding: 0.625em 0.75em; }
/* line 344, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_type.scss */
.vcard li { margin: 0; display: block; }
/* line 348, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_type.scss */
.vcard .fn { font-weight: bold; font-size: 0.9375em; }

/* line 355, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_type.scss */
.vevent .summary { font-weight: bold; }
/* line 357, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_type.scss */
.vevent abbr { cursor: "default"; text-decoration: none; font-weight: bold; border: none; padding: 0 0.0625em; }

@media only screen and (min-width: 768px) { /* line 368, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_type.scss */
	h1, h2, h3, h4, h5, h6 { line-height: 1.4; }
	/* line 369, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_type.scss */
	h1 { font-size: 2.75em; }
	/* line 370, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_type.scss */
	h2 { font-size: 2.3125em; }
	/* line 371, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_type.scss */
	h3 { font-size: 1.6875em; }
	/* line 372, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_type.scss */
	h4 { font-size: 1.4375em; } }
/* Print styles.	Inlined to avoid required HTTP connection: www.phpied.com/delay-loading-your-print-css/ Credit to Paul Irish and HTML5 Boilerplate (html5boilerplate.com)
*/
/* line 383, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_type.scss */
.print-only { display: none !important; }

@media print { /* line 385, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_type.scss */
	* { background: transparent !important; color: #000 !important; /* Black prints faster: h5bp.com/s */ box-shadow: none !important; text-shadow: none !important; }
	/* line 393, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_type.scss */
	a, a:visited { text-decoration: underline; }
	/* line 394, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_type.scss */
	a[href]:after { content: " (" attr(href) ")"; }
	/* line 396, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_type.scss */
	abbr[title]:after { content: " (" attr(title) ")"; }
	/* line 401, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_type.scss */
	.ir a:after, a[href^="javascript:"]:after, a[href^="#"]:after { content: ""; }
	/* line 404, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_type.scss */
	pre, blockquote { border: 1px solid #999; page-break-inside: avoid; }
	/* line 409, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_type.scss */
	thead { display: table-header-group; /* h5bp.com/t */ }
	/* line 412, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_type.scss */
	tr, img { page-break-inside: avoid; }
	/* line 414, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_type.scss */
	img { max-width: 100% !important; }
	@page { margin: 0.5cm; }
	/* line 420, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_type.scss */
	p, h2, h3 { orphans: 3; widows: 3; }
	/* line 426, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_type.scss */
	h2, h3 { page-break-after: avoid; }
	/* line 428, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_type.scss */
	.hide-on-print { display: none !important; }
	/* line 429, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_type.scss */
	.print-only { display: block !important; }
	/* line 430, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_type.scss */
	.hide-for-print { display: none !important; }
	/* line 431, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_type.scss */
	.show-for-print { display: inherit !important; } }
/* line 171, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_buttons.scss */
button, .button { border-style: solid; border-width: 1px; cursor: pointer; font-family: inherit; font-weight: bold; line-height: normal; margin: 0 0 1.25em; position: relative; text-decoration: none; text-align: center; display: inline-block; padding-top: 0.75em; padding-right: 1.5em; padding-bottom: 0.8125em; padding-left: 1.5em; font-size: 1em; background-color: #0084c7; border-color: #006294; color: white; }
/* line 122, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_buttons.scss */
button:hover, button:focus, .button:hover, .button:focus { background-color: #006294; }
/* line 133, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_buttons.scss */
button:hover, button:focus, .button:hover, .button:focus { color: white; }
/* line 176, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_buttons.scss */
button.secondary, .button.secondary { background-color: #d0ddf1; border-color: #a9c1e5; color: #333333; }
/* line 122, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_buttons.scss */
button.secondary:hover, button.secondary:focus, .button.secondary:hover, .button.secondary:focus { background-color: #a9c1e5; }
/* line 128, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_buttons.scss */
button.secondary:hover, button.secondary:focus, .button.secondary:hover, .button.secondary:focus { color: #333333; }
/* line 177, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_buttons.scss */
button.success, .button.success { background-color: #5da423; border-color: #457a1a; color: white; }
/* line 122, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_buttons.scss */
button.success:hover, button.success:focus, .button.success:hover, .button.success:focus { background-color: #457a1a; }
/* line 133, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_buttons.scss */
button.success:hover, button.success:focus, .button.success:hover, .button.success:focus { color: white; }
/* line 178, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_buttons.scss */
button.alert, .button.alert { background-color: #c60f13; border-color: #970b0e; color: white; }
/* line 122, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_buttons.scss */
button.alert:hover, button.alert:focus, .button.alert:hover, .button.alert:focus { background-color: #970b0e; }
/* line 133, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_buttons.scss */
button.alert:hover, button.alert:focus, .button.alert:hover, .button.alert:focus { color: white; }
/* line 180, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_buttons.scss */
button.large, .button.large { padding-top: 1em; padding-right: 2em; padding-bottom: 1.0625em; padding-left: 2em; font-size: 1.25em; }
/* line 181, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_buttons.scss */
button.small, .button.small { padding-top: 0.5625em; padding-right: 1.125em; padding-bottom: 0.625em; padding-left: 1.125em; font-size: 0.8125em; }
/* line 182, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_buttons.scss */
button.tiny, .button.tiny { padding-top: 0.4375em; padding-right: 0.875em; padding-bottom: 0.5em; padding-left: 0.875em; font-size: 0.6875em; }
/* line 183, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_buttons.scss */
button.expand, .button.expand { padding-right: 0; padding-left: 0; width: 100%; }
/* line 185, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_buttons.scss */
button.left-align, .button.left-align { text-align: left; text-indent: 0.75em; }
/* line 186, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_buttons.scss */
button.right-align, .button.right-align { text-align: right; padding-right: 0.75em; }
/* line 188, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_buttons.scss */
button.disabled, button[disabled], .button.disabled, .button[disabled] { background-color: #0084c7; border-color: #006294; color: white; cursor: "default"; opacity: 0.6; -webkit-box-shadow: none; box-shadow: none; }
/* line 122, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_buttons.scss */
button.disabled:hover, button.disabled:focus, button[disabled]:hover, button[disabled]:focus, .button.disabled:hover, .button.disabled:focus, .button[disabled]:hover, .button[disabled]:focus { background-color: #006294; }
/* line 133, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_buttons.scss */
button.disabled:hover, button.disabled:focus, button[disabled]:hover, button[disabled]:focus, .button.disabled:hover, .button.disabled:focus, .button[disabled]:hover, .button[disabled]:focus { color: white; }
/* line 146, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_buttons.scss */
button.disabled:hover, button.disabled:focus, button[disabled]:hover, button[disabled]:focus, .button.disabled:hover, .button.disabled:focus, .button[disabled]:hover, .button[disabled]:focus { background-color: #0084c7; }
/* line 189, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_buttons.scss */
button.disabled.secondary, button[disabled].secondary, .button.disabled.secondary, .button[disabled].secondary { background-color: #d0ddf1; border-color: #a9c1e5; color: #333333; cursor: "default"; opacity: 0.6; -webkit-box-shadow: none; box-shadow: none; }
/* line 122, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_buttons.scss */
button.disabled.secondary:hover, button.disabled.secondary:focus, button[disabled].secondary:hover, button[disabled].secondary:focus, .button.disabled.secondary:hover, .button.disabled.secondary:focus, .button[disabled].secondary:hover, .button[disabled].secondary:focus { background-color: #a9c1e5; }
/* line 128, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_buttons.scss */
button.disabled.secondary:hover, button.disabled.secondary:focus, button[disabled].secondary:hover, button[disabled].secondary:focus, .button.disabled.secondary:hover, .button.disabled.secondary:focus, .button[disabled].secondary:hover, .button[disabled].secondary:focus { color: #333333; }
/* line 146, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_buttons.scss */
button.disabled.secondary:hover, button.disabled.secondary:focus, button[disabled].secondary:hover, button[disabled].secondary:focus, .button.disabled.secondary:hover, .button.disabled.secondary:focus, .button[disabled].secondary:hover, .button[disabled].secondary:focus { background-color: #d0ddf1; }
/* line 190, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_buttons.scss */
button.disabled.success, button[disabled].success, .button.disabled.success, .button[disabled].success { background-color: #5da423; border-color: #457a1a; color: white; cursor: "default"; opacity: 0.6; -webkit-box-shadow: none; box-shadow: none; }
/* line 122, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_buttons.scss */
button.disabled.success:hover, button.disabled.success:focus, button[disabled].success:hover, button[disabled].success:focus, .button.disabled.success:hover, .button.disabled.success:focus, .button[disabled].success:hover, .button[disabled].success:focus { background-color: #457a1a; }
/* line 133, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_buttons.scss */
button.disabled.success:hover, button.disabled.success:focus, button[disabled].success:hover, button[disabled].success:focus, .button.disabled.success:hover, .button.disabled.success:focus, .button[disabled].success:hover, .button[disabled].success:focus { color: white; }
/* line 146, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_buttons.scss */
button.disabled.success:hover, button.disabled.success:focus, button[disabled].success:hover, button[disabled].success:focus, .button.disabled.success:hover, .button.disabled.success:focus, .button[disabled].success:hover, .button[disabled].success:focus { background-color: #5da423; }
/* line 191, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_buttons.scss */
button.disabled.alert, button[disabled].alert, .button.disabled.alert, .button[disabled].alert { background-color: #c60f13; border-color: #970b0e; color: white; cursor: "default"; opacity: 0.6; -webkit-box-shadow: none; box-shadow: none; }
/* line 122, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_buttons.scss */
button.disabled.alert:hover, button.disabled.alert:focus, button[disabled].alert:hover, button[disabled].alert:focus, .button.disabled.alert:hover, .button.disabled.alert:focus, .button[disabled].alert:hover, .button[disabled].alert:focus { background-color: #970b0e; }
/* line 133, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_buttons.scss */
button.disabled.alert:hover, button.disabled.alert:focus, button[disabled].alert:hover, button[disabled].alert:focus, .button.disabled.alert:hover, .button.disabled.alert:focus, .button[disabled].alert:hover, .button[disabled].alert:focus { color: white; }
/* line 146, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_buttons.scss */
button.disabled.alert:hover, button.disabled.alert:focus, button[disabled].alert:hover, button[disabled].alert:focus, .button.disabled.alert:hover, .button.disabled.alert:focus, .button[disabled].alert:hover, .button[disabled].alert:focus { background-color: #c60f13; }

/* line 196, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_buttons.scss */
button, .button { padding-top: 0.8125em; padding-bottom: 0.75em; -webkit-appearance: none; }
/* line 198, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_buttons.scss */
button.tiny, .button.tiny { padding-top: 0.5em; padding-bottom: 0.4375em; -webkit-appearance: none; }
/* line 199, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_buttons.scss */
button.small, .button.small { padding-top: 0.625em; padding-bottom: 0.5625em; -webkit-appearance: none; }
/* line 200, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_buttons.scss */
button.large, .button.large { padding-top: 1.03125em; padding-bottom: 1.03125em; -webkit-appearance: none; }

@media only screen { /* line 206, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_buttons.scss */
	button, .button { -webkit-box-shadow: 0 1px 0 rgba(255, 255, 255, 0.5) inset; box-shadow: 0 1px 0 rgba(255, 255, 255, 0.5) inset; -webkit-transition: background-color 300ms ease-out; -moz-transition: background-color 300ms ease-out; transition: background-color 300ms ease-out; }
	/* line 68, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_global.scss */
	button:active, .button:active { -webkit-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.2) inset; box-shadow: 0 1px 0 rgba(0, 0, 0, 0.2) inset; }
	/* line 214, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_buttons.scss */
	button.radius, .button.radius { -webkit-border-radius: 1px; border-radius: 1px; }
	/* line 215, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_buttons.scss */
	button.round, .button.round { -webkit-border-radius: 1000px; border-radius: 1000px; } }
@media only screen and (min-width: 768px) { /* line 223, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_buttons.scss */
	button, .button { display: inline-block; } }
/* Standard Forms */
/* line 264, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_forms.scss */
form { margin: 0 0 1em; }

/* Using forms within rows, we need to set some defaults */
/* line 67, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_forms.scss */
form .row .row { margin: 0 -0.5em; }
/* line 70, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_forms.scss */
form .row .row .column, form .row .row .columns { padding: 0 0.5em; }
/* line 73, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_forms.scss */
form .row .row.collapse { margin: 0; }
/* line 76, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_forms.scss */
form .row .row.collapse .column, form .row .row.collapse .columns { padding: 0; }
/* line 77, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_forms.scss */
form .row .row.collapse input { -moz-border-radius-bottomright: 0; -moz-border-radius-topright: 0; -webkit-border-bottom-right-radius: 0; -webkit-border-top-right-radius: 0; }
/* line 89, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_forms.scss */
form .row input.column, form .row input.columns, form .row textarea.column, form .row textarea.columns { padding-left: 0.5em; }

/* Label Styles */
/* line 270, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_forms.scss */
label { font-size: 0.875em; color: #4d4d4d; cursor: pointer; display: block; font-weight: 500; margin-bottom: 0.1875em; /* Styles for required inputs */ }
/* line 271, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_forms.scss */
label.right { float: none; text-align: right; }
/* line 272, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_forms.scss */
label.inline { margin: 0 0 1em 0; padding: 0.625em 0; }
/* line 274, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_forms.scss */
label small { text-transform: capitalize; color: #666666; }

/* Attach elements to the beginning or end of an input */
/* line 282, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_forms.scss */
.prefix, .postfix { display: block; position: relative; z-index: 2; text-align: center; width: 100%; padding-top: 0; padding-bottom: 0; border-style: solid; border-width: 1px; overflow: hidden; font-size: 0.875em; height: 2.3125em; line-height: 2.3125em; }

/* Adjust padding, alignment and radius if pre/post element is a button */
/* line 285, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_forms.scss */
.postfix.button { padding-left: 0; padding-right: 0; padding-top: 0; padding-bottom: 0; text-align: center; line-height: 2.125em; }

/* line 286, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_forms.scss */
.prefix.button { padding-left: 0; padding-right: 0; padding-top: 0; padding-bottom: 0; text-align: center; line-height: 2.125em; }

/* line 288, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_forms.scss */
.prefix.button.radius { -webkit-border-radius: 0; border-radius: 0; -moz-border-radius-bottomleft: 1px; -moz-border-radius-topleft: 1px; -webkit-border-bottom-left-radius: 1px; -webkit-border-top-left-radius: 1px; border-bottom-left-radius: 1px; border-top-left-radius: 1px; }

/* line 289, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_forms.scss */
.postfix.button.radius { -webkit-border-radius: 0; border-radius: 0; -moz-border-radius-topright: 1px; -moz-border-radius-bottomright: 1px; -webkit-border-top-right-radius: 1px; -webkit-border-bottom-right-radius: 1px; border-top-right-radius: 1px; border-bottom-right-radius: 1px; }

/* line 290, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_forms.scss */
.prefix.button.round { -webkit-border-radius: 0; border-radius: 0; -moz-border-radius-bottomleft: 1000px; -moz-border-radius-topleft: 1000px; -webkit-border-bottom-left-radius: 1000px; -webkit-border-top-left-radius: 1000px; border-bottom-left-radius: 1000px; border-top-left-radius: 1000px; }

/* line 291, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_forms.scss */
.postfix.button.round { -webkit-border-radius: 0; border-radius: 0; -moz-border-radius-topright: 1000px; -moz-border-radius-bottomright: 1000px; -webkit-border-top-right-radius: 1000px; -webkit-border-bottom-right-radius: 1000px; border-top-right-radius: 1000px; border-bottom-right-radius: 1000px; }

/* Separate prefix and postfix styles when on span or label so buttons keep their own */
/* line 294, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_forms.scss */
span.prefix, label.prefix { background: #f2f2f2; border-color: #d9d9d9; border-right: none; color: #333333; }
/* line 295, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_forms.scss */
span.prefix.radius, label.prefix.radius { -webkit-border-radius: 0; border-radius: 0; -moz-border-radius-bottomleft: 1px; -moz-border-radius-topleft: 1px; -webkit-border-bottom-left-radius: 1px; -webkit-border-top-left-radius: 1px; border-bottom-left-radius: 1px; border-top-left-radius: 1px; }

/* line 297, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_forms.scss */
span.postfix, label.postfix { background: #f2f2f2; border-color: #cccccc; border-left: none; color: #333333; }
/* line 298, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_forms.scss */
span.postfix.radius, label.postfix.radius { -webkit-border-radius: 0; border-radius: 0; -moz-border-radius-topright: 1px; -moz-border-radius-bottomright: 1px; -webkit-border-top-right-radius: 1px; -webkit-border-bottom-right-radius: 1px; border-top-right-radius: 1px; border-bottom-right-radius: 1px; }

/* Input groups will automatically style first and last elements of the group */
/* line 304, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_forms.scss */
.input-group.radius > *:first-child, .input-group.radius > *:first-child * { -moz-border-radius-bottomleft: 1px; -moz-border-radius-topleft: 1px; -webkit-border-bottom-left-radius: 1px; -webkit-border-top-left-radius: 1px; border-bottom-left-radius: 1px; border-top-left-radius: 1px; }
/* line 307, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_forms.scss */
.input-group.radius > *:last-child, .input-group.radius > *:last-child * { -moz-border-radius-topright: 1px; -moz-border-radius-bottomright: 1px; -webkit-border-top-right-radius: 1px; -webkit-border-bottom-right-radius: 1px; border-top-right-radius: 1px; border-bottom-right-radius: 1px; }
/* line 312, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_forms.scss */
.input-group.round > *:first-child, .input-group.round > *:first-child * { -moz-border-radius-bottomleft: 1000px; -moz-border-radius-topleft: 1000px; -webkit-border-bottom-left-radius: 1000px; -webkit-border-top-left-radius: 1000px; border-bottom-left-radius: 1000px; border-top-left-radius: 1000px; }
/* line 315, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_forms.scss */
.input-group.round > *:last-child, .input-group.round > *:last-child * { -moz-border-radius-topright: 1000px; -moz-border-radius-bottomright: 1000px; -webkit-border-top-right-radius: 1000px; -webkit-border-bottom-right-radius: 1000px; border-top-right-radius: 1000px; border-bottom-right-radius: 1000px; }

/* We use this to get basic styling on all basic form elements */
/* line 335, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_forms.scss */
input[type="text"], input[type="password"], input[type="date"], input[type="datetime"], input[type="datetime-local"], input[type="month"], input[type="week"], input[type="email"], input[type="number"], input[type="search"], input[type="tel"], input[type="time"], input[type="url"], textarea { -webkit-appearance: none; -webkit-border-radius: 0; border-radius: 0; background-color: white; font-family: inherit; border: 1px solid #cccccc; -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1); box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1); color: rgba(0, 0, 0, 0.75); display: block; font-size: 0.875em; margin: 0 0 1em 0; padding: 0.5em; height: 2.3125em; width: 100%; -moz-box-sizing: border-box; -webkit-box-sizing: border-box; box-sizing: border-box; -webkit-transition: -webkit-box-shadow 0.45s, border-color 0.45s ease-in-out; -moz-transition: -moz-box-shadow 0.45s, border-color 0.45s ease-in-out; transition: box-shadow 0.45s, border-color 0.45s ease-in-out; }
/* line 134, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_global.scss */
input[type="text"]:focus, input[type="password"]:focus, input[type="date"]:focus, input[type="datetime"]:focus, input[type="datetime-local"]:focus, input[type="month"]:focus, input[type="week"]:focus, input[type="email"]:focus, input[type="number"]:focus, input[type="search"]:focus, input[type="tel"]:focus, input[type="time"]:focus, input[type="url"]:focus, textarea:focus { -webkit-box-shadow: 0 0 5px #999999; -moz-box-shadow: 0 0 5px #999999; box-shadow: 0 0 5px #999999; border-color: #999999; }
/* line 113, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_forms.scss */
input[type="text"]:focus, input[type="password"]:focus, input[type="date"]:focus, input[type="datetime"]:focus, input[type="datetime-local"]:focus, input[type="month"]:focus, input[type="week"]:focus, input[type="email"]:focus, input[type="number"]:focus, input[type="search"]:focus, input[type="tel"]:focus, input[type="time"]:focus, input[type="url"]:focus, textarea:focus { background: #fafafa; border-color: #999999; outline: none; }
/* line 120, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_forms.scss */
input[type="text"][disabled], input[type="password"][disabled], input[type="date"][disabled], input[type="datetime"][disabled], input[type="datetime-local"][disabled], input[type="month"][disabled], input[type="week"][disabled], input[type="email"][disabled], input[type="number"][disabled], input[type="search"][disabled], input[type="tel"][disabled], input[type="time"][disabled], input[type="url"][disabled], textarea[disabled] { background-color: #dddddd; }

/* Adjust margin for form elements below */
/* line 349, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_forms.scss */
input[type="file"], input[type="checkbox"], input[type="radio"], select { margin: 0 0 1em 0; }

/* Normalize file input width */
/* line 354, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_forms.scss */
input[type="file"] { width: 100%; }

/* We add basic fieldset styling */
/* line 359, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_forms.scss */
fieldset { border: solid 1px #dddddd; padding: 1.25em; margin: 1.125em 0; }
/* line 221, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_forms.scss */
fieldset legend { font-weight: bold; background: white; padding: 0 0.1875em; margin: 0; margin-left: -0.1875em; }

/* Error Handling */
/* line 366, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_forms.scss */
[data-abide] .error small.error, [data-abide] span.error, [data-abide] small.error { display: block; padding: 0.375em 0.25em; margin-top: 0; margin-bottom: 1em; font-size: 0.75em; font-weight: bold; background: #c60f13; color: white; }
/* line 369, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_forms.scss */
[data-abide] span.error, [data-abide] small.error { display: none; }

/* line 371, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_forms.scss */
span.error, small.error { display: block; padding: 0.375em 0.25em; margin-top: 0; margin-bottom: 1em; font-size: 0.75em; font-weight: bold; background: #c60f13; color: white; }

/* line 377, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_forms.scss */
.error input, .error textarea, .error select { border-color: #c60f13; background-color: rgba(198, 15, 19, 0.1); margin-bottom: 0; }
/* line 236, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_forms.scss */
.error input:focus, .error textarea:focus, .error select:focus { background: #fafafa; border-color: #999999; }
/* line 383, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_forms.scss */
.error label, .error label.error { color: #c60f13; }
/* line 388, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_forms.scss */
.error > small, .error small.error { display: block; padding: 0.375em 0.25em; margin-top: 0; margin-bottom: 1em; font-size: 0.75em; font-weight: bold; background: #c60f13; color: white; }
/* line 392, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_forms.scss */
.error span.error-message { display: block; }

/* line 398, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_forms.scss */
input.error, textarea.error { border-color: #c60f13; background-color: rgba(198, 15, 19, 0.1); margin-bottom: 0; }
/* line 236, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_forms.scss */
input.error:focus, textarea.error:focus { background: #fafafa; border-color: #999999; }

/* line 403, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_forms.scss */
.error select { border-color: #c60f13; background-color: rgba(198, 15, 19, 0.1); }
/* line 236, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_forms.scss */
.error select:focus { background: #fafafa; border-color: #999999; }

/* line 407, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_forms.scss */
label.error { color: #c60f13; }

/* Button Groups */
/* line 72, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_button-groups.scss */
.button-group { list-style: none; margin: 0; *zoom: 1; }
/* line 121, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_global.scss */
.button-group:before, .button-group:after { content: " "; display: table; }
/* line 122, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_global.scss */
.button-group:after { clear: both; }
/* line 74, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_button-groups.scss */
.button-group > * { margin: 0 0 0 -1px; float: left; }
/* line 35, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_button-groups.scss */
.button-group > *:first-child { margin-left: 0; }
/* line 53, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_button-groups.scss */
.button-group.radius > *:first-child, .button-group.radius > *:first-child > a, .button-group.radius > *:first-child > button, .button-group.radius > *:first-child > .button { -moz-border-radius-bottomleft: 1px; -moz-border-radius-topleft: 1px; -webkit-border-bottom-left-radius: 1px; -webkit-border-top-left-radius: 1px; border-bottom-left-radius: 1px; border-top-left-radius: 1px; }
/* line 57, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_button-groups.scss */
.button-group.radius > *:last-child, .button-group.radius > *:last-child > a, .button-group.radius > *:last-child > button, .button-group.radius > *:last-child > .button { -moz-border-radius-topright: 1px; -moz-border-radius-bottomright: 1px; -webkit-border-top-right-radius: 1px; -webkit-border-bottom-right-radius: 1px; border-top-right-radius: 1px; border-bottom-right-radius: 1px; }
/* line 53, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_button-groups.scss */
.button-group.round > *:first-child, .button-group.round > *:first-child > a, .button-group.round > *:first-child > button, .button-group.round > *:first-child > .button { -moz-border-radius-bottomleft: 1000px; -moz-border-radius-topleft: 1000px; -webkit-border-bottom-left-radius: 1000px; -webkit-border-top-left-radius: 1000px; border-bottom-left-radius: 1000px; border-top-left-radius: 1000px; }
/* line 57, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_button-groups.scss */
.button-group.round > *:last-child, .button-group.round > *:last-child > a, .button-group.round > *:last-child > button, .button-group.round > *:last-child > .button { -moz-border-radius-topright: 1000px; -moz-border-radius-bottomright: 1000px; -webkit-border-top-right-radius: 1000px; -webkit-border-bottom-right-radius: 1000px; border-top-right-radius: 1000px; border-bottom-right-radius: 1000px; }
/* line 80, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_button-groups.scss */
.button-group.even-2 li { width: 50%; }
/* line 63, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_button-groups.scss */
.button-group.even-2 li button, .button-group.even-2 li .button { width: 100%; }
/* line 80, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_button-groups.scss */
.button-group.even-3 li { width: 33.33333%; }
/* line 63, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_button-groups.scss */
.button-group.even-3 li button, .button-group.even-3 li .button { width: 100%; }
/* line 80, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_button-groups.scss */
.button-group.even-4 li { width: 25%; }
/* line 63, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_button-groups.scss */
.button-group.even-4 li button, .button-group.even-4 li .button { width: 100%; }
/* line 80, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_button-groups.scss */
.button-group.even-5 li { width: 20%; }
/* line 63, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_button-groups.scss */
.button-group.even-5 li button, .button-group.even-5 li .button { width: 100%; }
/* line 80, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_button-groups.scss */
.button-group.even-6 li { width: 16.66667%; }
/* line 63, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_button-groups.scss */
.button-group.even-6 li button, .button-group.even-6 li .button { width: 100%; }
/* line 80, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_button-groups.scss */
.button-group.even-7 li { width: 14.28571%; }
/* line 63, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_button-groups.scss */
.button-group.even-7 li button, .button-group.even-7 li .button { width: 100%; }
/* line 80, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_button-groups.scss */
.button-group.even-8 li { width: 12.5%; }
/* line 63, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_button-groups.scss */
.button-group.even-8 li button, .button-group.even-8 li .button { width: 100%; }

/* line 84, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_button-groups.scss */
.button-bar { *zoom: 1; }
/* line 121, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_global.scss */
.button-bar:before, .button-bar:after { content: " "; display: table; }
/* line 122, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_global.scss */
.button-bar:after { clear: both; }
/* line 86, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_button-groups.scss */
.button-bar .button-group { float: left; margin-right: 0.625em; }
/* line 23, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_button-groups.scss */
.button-bar .button-group div { overflow: hidden; }

/* Dropdown Button */
/* line 108, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_dropdown-buttons.scss */
.dropdown.button { position: relative; padding-right: 3.1875em; }
/* line 46, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_dropdown-buttons.scss */
.dropdown.button:before { position: absolute; content: ""; width: 0; height: 0; display: block; border-style: solid; border-color: white transparent transparent transparent; top: 50%; }
/* line 81, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_dropdown-buttons.scss */
.dropdown.button:before { border-width: 0.5625em; right: 1.5em; margin-top: -0.25em; }
/* line 100, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_dropdown-buttons.scss */
.dropdown.button:before { border-color: white transparent transparent transparent; }
/* line 109, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_dropdown-buttons.scss */
.dropdown.button.tiny { padding-right: 2.1875em; }
/* line 61, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_dropdown-buttons.scss */
.dropdown.button.tiny:before { border-width: 0.4375em; right: 0.875em; margin-top: -0.15625em; }
/* line 100, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_dropdown-buttons.scss */
.dropdown.button.tiny:before { border-color: white transparent transparent transparent; }
/* line 110, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_dropdown-buttons.scss */
.dropdown.button.small { padding-right: 2.8125em; }
/* line 71, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_dropdown-buttons.scss */
.dropdown.button.small:before { border-width: 0.5625em; right: 1.125em; margin-top: -0.21875em; }
/* line 100, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_dropdown-buttons.scss */
.dropdown.button.small:before { border-color: white transparent transparent transparent; }
/* line 111, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_dropdown-buttons.scss */
.dropdown.button.large { padding-right: 4em; }
/* line 91, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_dropdown-buttons.scss */
.dropdown.button.large:before { border-width: 0.625em; right: 1.75em; margin-top: -0.3125em; }
/* line 100, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_dropdown-buttons.scss */
.dropdown.button.large:before { border-color: white transparent transparent transparent; }
/* line 112, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_dropdown-buttons.scss */
.dropdown.button.secondary:before { border-color: #333333 transparent transparent transparent; }

/* Split Buttons */
/* line 150, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_split-buttons.scss */
.split.button { position: relative; padding-right: 4.8em; }
/* line 53, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_split-buttons.scss */
.split.button span { display: block; height: 100%; position: absolute; right: 0; top: 0; border-left: solid 1px; }
/* line 62, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_split-buttons.scss */
.split.button span:before { position: absolute; content: ""; width: 0; height: 0; display: block; border-style: inset; left: 50%; }
/* line 73, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_split-buttons.scss */
.split.button span:active { background-color: rgba(0, 0, 0, 0.1); }
/* line 79, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_split-buttons.scss */
.split.button span { border-left-color: #00517b; }
/* line 116, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_split-buttons.scss */
.split.button span { width: 3em; }
/* line 117, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_split-buttons.scss */
.split.button span:before { border-top-style: solid; border-width: 0.5625em; top: 1.125em; margin-left: -0.5625em; }
/* line 142, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_split-buttons.scss */
.split.button span:before { border-color: white transparent transparent transparent; }
/* line 79, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_split-buttons.scss */
.split.button.secondary span { border-left-color: #95b2df; }
/* line 142, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_split-buttons.scss */
.split.button.secondary span:before { border-color: white transparent transparent transparent; }
/* line 79, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_split-buttons.scss */
.split.button.alert span { border-left-color: #7f0a0c; }
/* line 79, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_split-buttons.scss */
.split.button.success span { border-left-color: #396516; }
/* line 156, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_split-buttons.scss */
.split.button.tiny { padding-right: 3.9375em; }
/* line 88, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_split-buttons.scss */
.split.button.tiny span { width: 2.84375em; }
/* line 89, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_split-buttons.scss */
.split.button.tiny span:before { border-top-style: solid; border-width: 0.4375em; top: 0.875em; margin-left: -0.3125em; }
/* line 157, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_split-buttons.scss */
.split.button.small { padding-right: 3.9375em; }
/* line 102, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_split-buttons.scss */
.split.button.small span { width: 2.8125em; }
/* line 103, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_split-buttons.scss */
.split.button.small span:before { border-top-style: solid; border-width: 0.5625em; top: 0.84375em; margin-left: -0.5625em; }
/* line 158, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_split-buttons.scss */
.split.button.large { padding-right: 6em; }
/* line 130, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_split-buttons.scss */
.split.button.large span { width: 3.75em; }
/* line 131, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_split-buttons.scss */
.split.button.large span:before { border-top-style: solid; border-width: 0.625em; top: 1.3125em; margin-left: -0.5625em; }
/* line 159, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_split-buttons.scss */
.split.button.expand { padding-left: 2em; }
/* line 142, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_split-buttons.scss */
.split.button.secondary span:before { border-color: #333333 transparent transparent transparent; }
/* line 163, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_split-buttons.scss */
.split.button.radius span { -moz-border-radius-topright: 1px; -moz-border-radius-bottomright: 1px; -webkit-border-top-right-radius: 1px; -webkit-border-bottom-right-radius: 1px; border-top-right-radius: 1px; border-bottom-right-radius: 1px; }
/* line 164, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_split-buttons.scss */
.split.button.round span { -moz-border-radius-topright: 1000px; -moz-border-radius-bottomright: 1000px; -webkit-border-top-right-radius: 1000px; -webkit-border-bottom-right-radius: 1000px; border-top-right-radius: 1000px; border-bottom-right-radius: 1000px; }

/* Flex Video */
/* line 44, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_flex-video.scss */
.flex-video { position: relative; padding-top: 1.5625em; padding-bottom: 67.5%; height: 0; margin-bottom: 1em; overflow: hidden; }
/* line 26, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_flex-video.scss */
.flex-video.widescreen { padding-bottom: 57.25%; }
/* line 27, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_flex-video.scss */
.flex-video.vimeo { padding-top: 0; }
/* line 32, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_flex-video.scss */
.flex-video iframe, .flex-video object, .flex-video embed, .flex-video video { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }

/* Sections */
/* line 285, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_section.scss */
[data-section=''], [data-section='auto'], .section-container.auto, [data-section='vertical-tabs'], .section-container.vertical-tabs, [data-section='vertical-nav'], .section-container.vertical-nav, [data-section='horizontal-nav'], .section-container.horizontal-nav, [data-section='accordion'], .section-container.accordion { width: 100%; position: relative; display: block; margin-bottom: 1.25em; }
/* line 55, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_section.scss */
[data-section=''][data-section-small-style], [data-section='auto'][data-section-small-style], .section-container.auto[data-section-small-style], [data-section='vertical-tabs'][data-section-small-style], .section-container.vertical-tabs[data-section-small-style], [data-section='vertical-nav'][data-section-small-style], .section-container.vertical-nav[data-section-small-style], [data-section='horizontal-nav'][data-section-small-style], .section-container.horizontal-nav[data-section-small-style], [data-section='accordion'][data-section-small-style], .section-container.accordion[data-section-small-style] { width: 100% !important; }
/* line 58, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_section.scss */
[data-section=''][data-section-small-style] > [data-section-region], [data-section=''][data-section-small-style] > section, [data-section=''][data-section-small-style] > .section, [data-section='auto'][data-section-small-style] > [data-section-region], [data-section='auto'][data-section-small-style] > section, [data-section='auto'][data-section-small-style] > .section, .section-container.auto[data-section-small-style] > [data-section-region], .section-container.auto[data-section-small-style] > section, .section-container.auto[data-section-small-style] > .section, [data-section='vertical-tabs'][data-section-small-style] > [data-section-region], [data-section='vertical-tabs'][data-section-small-style] > section, [data-section='vertical-tabs'][data-section-small-style] > .section, .section-container.vertical-tabs[data-section-small-style] > [data-section-region], .section-container.vertical-tabs[data-section-small-style] > section, .section-container.vertical-tabs[data-section-small-style] > .section, [data-section='vertical-nav'][data-section-small-style] > [data-section-region], [data-section='vertical-nav'][data-section-small-style] > section, [data-section='vertical-nav'][data-section-small-style] > .section, .section-container.vertical-nav[data-section-small-style] > [data-section-region], .section-container.vertical-nav[data-section-small-style] > section, .section-container.vertical-nav[data-section-small-style] > .section, [data-section='horizontal-nav'][data-section-small-style] > [data-section-region], [data-section='horizontal-nav'][data-section-small-style] > section, [data-section='horizontal-nav'][data-section-small-style] > .section, .section-container.horizontal-nav[data-section-small-style] > [data-section-region], .section-container.horizontal-nav[data-section-small-style] > section, .section-container.horizontal-nav[data-section-small-style] > .section, [data-section='accordion'][data-section-small-style] > [data-section-region], [data-section='accordion'][data-section-small-style] > section, [data-section='accordion'][data-section-small-style] > .section, .section-container.accordion[data-section-small-style] > [data-section-region], .section-container.accordion[data-section-small-style] > section, .section-container.accordion[data-section-small-style] > .section { padding: 0 !important; margin: 0 !important; }
/* line 61, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_section.scss */
[data-section=''][data-section-small-style] > [data-section-region] > [data-section-title], [data-section=''][data-section-small-style] > [data-section-region] > .title, [data-section=''][data-section-small-style] > section > [data-section-title], [data-section=''][data-section-small-style] > section > .title, [data-section=''][data-section-small-style] > .section > [data-section-title], [data-section=''][data-section-small-style] > .section > .title, [data-section='auto'][data-section-small-style] > [data-section-region] > [data-section-title], [data-section='auto'][data-section-small-style] > [data-section-region] > .title, [data-section='auto'][data-section-small-style] > section > [data-section-title], [data-section='auto'][data-section-small-style] > section > .title, [data-section='auto'][data-section-small-style] > .section > [data-section-title], [data-section='auto'][data-section-small-style] > .section > .title, .section-container.auto[data-section-small-style] > [data-section-region] > [data-section-title], .section-container.auto[data-section-small-style] > [data-section-region] > .title, .section-container.auto[data-section-small-style] > section > [data-section-title], .section-container.auto[data-section-small-style] > section > .title, .section-container.auto[data-section-small-style] > .section > [data-section-title], .section-container.auto[data-section-small-style] > .section > .title, [data-section='vertical-tabs'][data-section-small-style] > [data-section-region] > [data-section-title], [data-section='vertical-tabs'][data-section-small-style] > [data-section-region] > .title, [data-section='vertical-tabs'][data-section-small-style] > section > [data-section-title], [data-section='vertical-tabs'][data-section-small-style] > section > .title, [data-section='vertical-tabs'][data-section-small-style] > .section > [data-section-title], [data-section='vertical-tabs'][data-section-small-style] > .section > .title, .section-container.vertical-tabs[data-section-small-style] > [data-section-region] > [data-section-title], .section-container.vertical-tabs[data-section-small-style] > [data-section-region] > .title, .section-container.vertical-tabs[data-section-small-style] > section > [data-section-title], .section-container.vertical-tabs[data-section-small-style] > section > .title, .section-container.vertical-tabs[data-section-small-style] > .section > [data-section-title], .section-container.vertical-tabs[data-section-small-style] > .section > .title, [data-section='vertical-nav'][data-section-small-style] > [data-section-region] > [data-section-title], [data-section='vertical-nav'][data-section-small-style] > [data-section-region] > .title, [data-section='vertical-nav'][data-section-small-style] > section > [data-section-title], [data-section='vertical-nav'][data-section-small-style] > section > .title, [data-section='vertical-nav'][data-section-small-style] > .section > [data-section-title], [data-section='vertical-nav'][data-section-small-style] > .section > .title, .section-container.vertical-nav[data-section-small-style] > [data-section-region] > [data-section-title], .section-container.vertical-nav[data-section-small-style] > [data-section-region] > .title, .section-container.vertical-nav[data-section-small-style] > section > [data-section-title], .section-container.vertical-nav[data-section-small-style] > section > .title, .section-container.vertical-nav[data-section-small-style] > .section > [data-section-title], .section-container.vertical-nav[data-section-small-style] > .section > .title, [data-section='horizontal-nav'][data-section-small-style] > [data-section-region] > [data-section-title], [data-section='horizontal-nav'][data-section-small-style] > [data-section-region] > .title, [data-section='horizontal-nav'][data-section-small-style] > section > [data-section-title], [data-section='horizontal-nav'][data-section-small-style] > section > .title, [data-section='horizontal-nav'][data-section-small-style] > .section > [data-section-title], [data-section='horizontal-nav'][data-section-small-style] > .section > .title, .section-container.horizontal-nav[data-section-small-style] > [data-section-region] > [data-section-title], .section-container.horizontal-nav[data-section-small-style] > [data-section-region] > .title, .section-container.horizontal-nav[data-section-small-style] > section > [data-section-title], .section-container.horizontal-nav[data-section-small-style] > section > .title, .section-container.horizontal-nav[data-section-small-style] > .section > [data-section-title], .section-container.horizontal-nav[data-section-small-style] > .section > .title, [data-section='accordion'][data-section-small-style] > [data-section-region] > [data-section-title], [data-section='accordion'][data-section-small-style] > [data-section-region] > .title, [data-section='accordion'][data-section-small-style] > section > [data-section-title], [data-section='accordion'][data-section-small-style] > section > .title, [data-section='accordion'][data-section-small-style] > .section > [data-section-title], [data-section='accordion'][data-section-small-style] > .section > .title, .section-container.accordion[data-section-small-style] > [data-section-region] > [data-section-title], .section-container.accordion[data-section-small-style] > [data-section-region] > .title, .section-container.accordion[data-section-small-style] > section > [data-section-title], .section-container.accordion[data-section-small-style] > section > .title, .section-container.accordion[data-section-small-style] > .section > [data-section-title], .section-container.accordion[data-section-small-style] > .section > .title { width: 100% !important; }
/* line 287, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_section.scss */
[data-section=''] > section, [data-section=''] > .section, [data-section=''] > [data-section-region], [data-section='auto'] > section, [data-section='auto'] > .section, [data-section='auto'] > [data-section-region], .section-container.auto > section, .section-container.auto > .section, .section-container.auto > [data-section-region], [data-section='vertical-tabs'] > section, [data-section='vertical-tabs'] > .section, [data-section='vertical-tabs'] > [data-section-region], .section-container.vertical-tabs > section, .section-container.vertical-tabs > .section, .section-container.vertical-tabs > [data-section-region], [data-section='vertical-nav'] > section, [data-section='vertical-nav'] > .section, [data-section='vertical-nav'] > [data-section-region], .section-container.vertical-nav > section, .section-container.vertical-nav > .section, .section-container.vertical-nav > [data-section-region], [data-section='horizontal-nav'] > section, [data-section='horizontal-nav'] > .section, [data-section='horizontal-nav'] > [data-section-region], .section-container.horizontal-nav > section, .section-container.horizontal-nav > .section, .section-container.horizontal-nav > [data-section-region], [data-section='accordion'] > section, [data-section='accordion'] > .section, [data-section='accordion'] > [data-section-region], .section-container.accordion > section, .section-container.accordion > .section, .section-container.accordion > [data-section-region] { margin: 0; }
/* line 102, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_section.scss */
[data-section=''] > section > [data-section-title], [data-section=''] > section > .title, [data-section=''] > .section > [data-section-title], [data-section=''] > .section > .title, [data-section=''] > [data-section-region] > [data-section-title], [data-section=''] > [data-section-region] > .title, [data-section='auto'] > section > [data-section-title], [data-section='auto'] > section > .title, [data-section='auto'] > .section > [data-section-title], [data-section='auto'] > .section > .title, [data-section='auto'] > [data-section-region] > [data-section-title], [data-section='auto'] > [data-section-region] > .title, .section-container.auto > section > [data-section-title], .section-container.auto > section > .title, .section-container.auto > .section > [data-section-title], .section-container.auto > .section > .title, .section-container.auto > [data-section-region] > [data-section-title], .section-container.auto > [data-section-region] > .title, [data-section='vertical-tabs'] > section > [data-section-title], [data-section='vertical-tabs'] > section > .title, [data-section='vertical-tabs'] > .section > [data-section-title], [data-section='vertical-tabs'] > .section > .title, [data-section='vertical-tabs'] > [data-section-region] > [data-section-title], [data-section='vertical-tabs'] > [data-section-region] > .title, .section-container.vertical-tabs > section > [data-section-title], .section-container.vertical-tabs > section > .title, .section-container.vertical-tabs > .section > [data-section-title], .section-container.vertical-tabs > .section > .title, .section-container.vertical-tabs > [data-section-region] > [data-section-title], .section-container.vertical-tabs > [data-section-region] > .title, [data-section='vertical-nav'] > section > [data-section-title], [data-section='vertical-nav'] > section > .title, [data-section='vertical-nav'] > .section > [data-section-title], [data-section='vertical-nav'] > .section > .title, [data-section='vertical-nav'] > [data-section-region] > [data-section-title], [data-section='vertical-nav'] > [data-section-region] > .title, .section-container.vertical-nav > section > [data-section-title], .section-container.vertical-nav > section > .title, .section-container.vertical-nav > .section > [data-section-title], .section-container.vertical-nav > .section > .title, .section-container.vertical-nav > [data-section-region] > [data-section-title], .section-container.vertical-nav > [data-section-region] > .title, [data-section='horizontal-nav'] > section > [data-section-title], [data-section='horizontal-nav'] > section > .title, [data-section='horizontal-nav'] > .section > [data-section-title], [data-section='horizontal-nav'] > .section > .title, [data-section='horizontal-nav'] > [data-section-region] > [data-section-title], [data-section='horizontal-nav'] > [data-section-region] > .title, .section-container.horizontal-nav > section > [data-section-title], .section-container.horizontal-nav > section > .title, .section-container.horizontal-nav > .section > [data-section-title], .section-container.horizontal-nav > .section > .title, .section-container.horizontal-nav > [data-section-region] > [data-section-title], .section-container.horizontal-nav > [data-section-region] > .title, [data-section='accordion'] > section > [data-section-title], [data-section='accordion'] > section > .title, [data-section='accordion'] > .section > [data-section-title], [data-section='accordion'] > .section > .title, [data-section='accordion'] > [data-section-region] > [data-section-title], [data-section='accordion'] > [data-section-region] > .title, .section-container.accordion > section > [data-section-title], .section-container.accordion > section > .title, .section-container.accordion > .section > [data-section-title], .section-container.accordion > .section > .title, .section-container.accordion > [data-section-region] > [data-section-title], .section-container.accordion > [data-section-region] > .title { margin-bottom: 0; }
/* line 104, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_section.scss */
[data-section=''] > section > [data-section-title] a, [data-section=''] > section > .title a, [data-section=''] > .section > [data-section-title] a, [data-section=''] > .section > .title a, [data-section=''] > [data-section-region] > [data-section-title] a, [data-section=''] > [data-section-region] > .title a, [data-section='auto'] > section > [data-section-title] a, [data-section='auto'] > section > .title a, [data-section='auto'] > .section > [data-section-title] a, [data-section='auto'] > .section > .title a, [data-section='auto'] > [data-section-region] > [data-section-title] a, [data-section='auto'] > [data-section-region] > .title a, .section-container.auto > section > [data-section-title] a, .section-container.auto > section > .title a, .section-container.auto > .section > [data-section-title] a, .section-container.auto > .section > .title a, .section-container.auto > [data-section-region] > [data-section-title] a, .section-container.auto > [data-section-region] > .title a, [data-section='vertical-tabs'] > section > [data-section-title] a, [data-section='vertical-tabs'] > section > .title a, [data-section='vertical-tabs'] > .section > [data-section-title] a, [data-section='vertical-tabs'] > .section > .title a, [data-section='vertical-tabs'] > [data-section-region] > [data-section-title] a, [data-section='vertical-tabs'] > [data-section-region] > .title a, .section-container.vertical-tabs > section > [data-section-title] a, .section-container.vertical-tabs > section > .title a, .section-container.vertical-tabs > .section > [data-section-title] a, .section-container.vertical-tabs > .section > .title a, .section-container.vertical-tabs > [data-section-region] > [data-section-title] a, .section-container.vertical-tabs > [data-section-region] > .title a, [data-section='vertical-nav'] > section > [data-section-title] a, [data-section='vertical-nav'] > section > .title a, [data-section='vertical-nav'] > .section > [data-section-title] a, [data-section='vertical-nav'] > .section > .title a, [data-section='vertical-nav'] > [data-section-region] > [data-section-title] a, [data-section='vertical-nav'] > [data-section-region] > .title a, .section-container.vertical-nav > section > [data-section-title] a, .section-container.vertical-nav > section > .title a, .section-container.vertical-nav > .section > [data-section-title] a, .section-container.vertical-nav > .section > .title a, .section-container.vertical-nav > [data-section-region] > [data-section-title] a, .section-container.vertical-nav > [data-section-region] > .title a, [data-section='horizontal-nav'] > section > [data-section-title] a, [data-section='horizontal-nav'] > section > .title a, [data-section='horizontal-nav'] > .section > [data-section-title] a, [data-section='horizontal-nav'] > .section > .title a, [data-section='horizontal-nav'] > [data-section-region] > [data-section-title] a, [data-section='horizontal-nav'] > [data-section-region] > .title a, .section-container.horizontal-nav > section > [data-section-title] a, .section-container.horizontal-nav > section > .title a, .section-container.horizontal-nav > .section > [data-section-title] a, .section-container.horizontal-nav > .section > .title a, .section-container.horizontal-nav > [data-section-region] > [data-section-title] a, .section-container.horizontal-nav > [data-section-region] > .title a, [data-section='accordion'] > section > [data-section-title] a, [data-section='accordion'] > section > .title a, [data-section='accordion'] > .section > [data-section-title] a, [data-section='accordion'] > .section > .title a, [data-section='accordion'] > [data-section-region] > [data-section-title] a, [data-section='accordion'] > [data-section-region] > .title a, .section-container.accordion > section > [data-section-title] a, .section-container.accordion > section > .title a, .section-container.accordion > .section > [data-section-title] a, .section-container.accordion > .section > .title a, .section-container.accordion > [data-section-region] > [data-section-title] a, .section-container.accordion > [data-section-region] > .title a { width: 100%; display: inline-block; white-space: nowrap; }
/* line 111, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_section.scss */
[data-section=''] > section > [data-section-content], [data-section=''] > section > .content, [data-section=''] > .section > [data-section-content], [data-section=''] > .section > .content, [data-section=''] > [data-section-region] > [data-section-content], [data-section=''] > [data-section-region] > .content, [data-section='auto'] > section > [data-section-content], [data-section='auto'] > section > .content, [data-section='auto'] > .section > [data-section-content], [data-section='auto'] > .section > .content, [data-section='auto'] > [data-section-region] > [data-section-content], [data-section='auto'] > [data-section-region] > .content, .section-container.auto > section > [data-section-content], .section-container.auto > section > .content, .section-container.auto > .section > [data-section-content], .section-container.auto > .section > .content, .section-container.auto > [data-section-region] > [data-section-content], .section-container.auto > [data-section-region] > .content, [data-section='vertical-tabs'] > section > [data-section-content], [data-section='vertical-tabs'] > section > .content, [data-section='vertical-tabs'] > .section > [data-section-content], [data-section='vertical-tabs'] > .section > .content, [data-section='vertical-tabs'] > [data-section-region] > [data-section-content], [data-section='vertical-tabs'] > [data-section-region] > .content, .section-container.vertical-tabs > section > [data-section-content], .section-container.vertical-tabs > section > .content, .section-container.vertical-tabs > .section > [data-section-content], .section-container.vertical-tabs > .section > .content, .section-container.vertical-tabs > [data-section-region] > [data-section-content], .section-container.vertical-tabs > [data-section-region] > .content, [data-section='vertical-nav'] > section > [data-section-content], [data-section='vertical-nav'] > section > .content, [data-section='vertical-nav'] > .section > [data-section-content], [data-section='vertical-nav'] > .section > .content, [data-section='vertical-nav'] > [data-section-region] > [data-section-content], [data-section='vertical-nav'] > [data-section-region] > .content, .section-container.vertical-nav > section > [data-section-content], .section-container.vertical-nav > section > .content, .section-container.vertical-nav > .section > [data-section-content], .section-container.vertical-nav > .section > .content, .section-container.vertical-nav > [data-section-region] > [data-section-content], .section-container.vertical-nav > [data-section-region] > .content, [data-section='horizontal-nav'] > section > [data-section-content], [data-section='horizontal-nav'] > section > .content, [data-section='horizontal-nav'] > .section > [data-section-content], [data-section='horizontal-nav'] > .section > .content, [data-section='horizontal-nav'] > [data-section-region] > [data-section-content], [data-section='horizontal-nav'] > [data-section-region] > .content, .section-container.horizontal-nav > section > [data-section-content], .section-container.horizontal-nav > section > .content, .section-container.horizontal-nav > .section > [data-section-content], .section-container.horizontal-nav > .section > .content, .section-container.horizontal-nav > [data-section-region] > [data-section-content], .section-container.horizontal-nav > [data-section-region] > .content, [data-section='accordion'] > section > [data-section-content], [data-section='accordion'] > section > .content, [data-section='accordion'] > .section > [data-section-content], [data-section='accordion'] > .section > .content, [data-section='accordion'] > [data-section-region] > [data-section-content], [data-section='accordion'] > [data-section-region] > .content, .section-container.accordion > section > [data-section-content], .section-container.accordion > section > .content, .section-container.accordion > .section > [data-section-content], .section-container.accordion > .section > .content, .section-container.accordion > [data-section-region] > [data-section-content], .section-container.accordion > [data-section-region] > .content { display: none; }
/* line 116, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_section.scss */
[data-section=''] > section.active > [data-section-content], [data-section=''] > section.active > .content, [data-section=''] > .section.active > [data-section-content], [data-section=''] > .section.active > .content, [data-section=''] > [data-section-region].active > [data-section-content], [data-section=''] > [data-section-region].active > .content, [data-section='auto'] > section.active > [data-section-content], [data-section='auto'] > section.active > .content, [data-section='auto'] > .section.active > [data-section-content], [data-section='auto'] > .section.active > .content, [data-section='auto'] > [data-section-region].active > [data-section-content], [data-section='auto'] > [data-section-region].active > .content, .section-container.auto > section.active > [data-section-content], .section-container.auto > section.active > .content, .section-container.auto > .section.active > [data-section-content], .section-container.auto > .section.active > .content, .section-container.auto > [data-section-region].active > [data-section-content], .section-container.auto > [data-section-region].active > .content, [data-section='vertical-tabs'] > section.active > [data-section-content], [data-section='vertical-tabs'] > section.active > .content, [data-section='vertical-tabs'] > .section.active > [data-section-content], [data-section='vertical-tabs'] > .section.active > .content, [data-section='vertical-tabs'] > [data-section-region].active > [data-section-content], [data-section='vertical-tabs'] > [data-section-region].active > .content, .section-container.vertical-tabs > section.active > [data-section-content], .section-container.vertical-tabs > section.active > .content, .section-container.vertical-tabs > .section.active > [data-section-content], .section-container.vertical-tabs > .section.active > .content, .section-container.vertical-tabs > [data-section-region].active > [data-section-content], .section-container.vertical-tabs > [data-section-region].active > .content, [data-section='vertical-nav'] > section.active > [data-section-content], [data-section='vertical-nav'] > section.active > .content, [data-section='vertical-nav'] > .section.active > [data-section-content], [data-section='vertical-nav'] > .section.active > .content, [data-section='vertical-nav'] > [data-section-region].active > [data-section-content], [data-section='vertical-nav'] > [data-section-region].active > .content, .section-container.vertical-nav > section.active > [data-section-content], .section-container.vertical-nav > section.active > .content, .section-container.vertical-nav > .section.active > [data-section-content], .section-container.vertical-nav > .section.active > .content, .section-container.vertical-nav > [data-section-region].active > [data-section-content], .section-container.vertical-nav > [data-section-region].active > .content, [data-section='horizontal-nav'] > section.active > [data-section-content], [data-section='horizontal-nav'] > section.active > .content, [data-section='horizontal-nav'] > .section.active > [data-section-content], [data-section='horizontal-nav'] > .section.active > .content, [data-section='horizontal-nav'] > [data-section-region].active > [data-section-content], [data-section='horizontal-nav'] > [data-section-region].active > .content, .section-container.horizontal-nav > section.active > [data-section-content], .section-container.horizontal-nav > section.active > .content, .section-container.horizontal-nav > .section.active > [data-section-content], .section-container.horizontal-nav > .section.active > .content, .section-container.horizontal-nav > [data-section-region].active > [data-section-content], .section-container.horizontal-nav > [data-section-region].active > .content, [data-section='accordion'] > section.active > [data-section-content], [data-section='accordion'] > section.active > .content, [data-section='accordion'] > .section.active > [data-section-content], [data-section='accordion'] > .section.active > .content, [data-section='accordion'] > [data-section-region].active > [data-section-content], [data-section='accordion'] > [data-section-region].active > .content, .section-container.accordion > section.active > [data-section-content], .section-container.accordion > section.active > .content, .section-container.accordion > .section.active > [data-section-content], .section-container.accordion > .section.active > .content, .section-container.accordion > [data-section-region].active > [data-section-content], .section-container.accordion > [data-section-region].active > .content { display: block; }
/* line 119, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_section.scss */
[data-section=''] > section:not(.active), [data-section=''] > .section:not(.active), [data-section=''] > [data-section-region]:not(.active), [data-section='auto'] > section:not(.active), [data-section='auto'] > .section:not(.active), [data-section='auto'] > [data-section-region]:not(.active), .section-container.auto > section:not(.active), .section-container.auto > .section:not(.active), .section-container.auto > [data-section-region]:not(.active), [data-section='vertical-tabs'] > section:not(.active), [data-section='vertical-tabs'] > .section:not(.active), [data-section='vertical-tabs'] > [data-section-region]:not(.active), .section-container.vertical-tabs > section:not(.active), .section-container.vertical-tabs > .section:not(.active), .section-container.vertical-tabs > [data-section-region]:not(.active), [data-section='vertical-nav'] > section:not(.active), [data-section='vertical-nav'] > .section:not(.active), [data-section='vertical-nav'] > [data-section-region]:not(.active), .section-container.vertical-nav > section:not(.active), .section-container.vertical-nav > .section:not(.active), .section-container.vertical-nav > [data-section-region]:not(.active), [data-section='horizontal-nav'] > section:not(.active), [data-section='horizontal-nav'] > .section:not(.active), [data-section='horizontal-nav'] > [data-section-region]:not(.active), .section-container.horizontal-nav > section:not(.active), .section-container.horizontal-nav > .section:not(.active), .section-container.horizontal-nav > [data-section-region]:not(.active), [data-section='accordion'] > section:not(.active), [data-section='accordion'] > .section:not(.active), [data-section='accordion'] > [data-section-region]:not(.active), .section-container.accordion > section:not(.active), .section-container.accordion > .section:not(.active), .section-container.accordion > [data-section-region]:not(.active) { padding: 0 !important; }
/* line 126, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_section.scss */
[data-section=''] > section > [data-section-title], [data-section=''] > section > .title, [data-section=''] > .section > [data-section-title], [data-section=''] > .section > .title, [data-section=''] > [data-section-region] > [data-section-title], [data-section=''] > [data-section-region] > .title, [data-section='auto'] > section > [data-section-title], [data-section='auto'] > section > .title, [data-section='auto'] > .section > [data-section-title], [data-section='auto'] > .section > .title, [data-section='auto'] > [data-section-region] > [data-section-title], [data-section='auto'] > [data-section-region] > .title, .section-container.auto > section > [data-section-title], .section-container.auto > section > .title, .section-container.auto > .section > [data-section-title], .section-container.auto > .section > .title, .section-container.auto > [data-section-region] > [data-section-title], .section-container.auto > [data-section-region] > .title, [data-section='vertical-tabs'] > section > [data-section-title], [data-section='vertical-tabs'] > section > .title, [data-section='vertical-tabs'] > .section > [data-section-title], [data-section='vertical-tabs'] > .section > .title, [data-section='vertical-tabs'] > [data-section-region] > [data-section-title], [data-section='vertical-tabs'] > [data-section-region] > .title, .section-container.vertical-tabs > section > [data-section-title], .section-container.vertical-tabs > section > .title, .section-container.vertical-tabs > .section > [data-section-title], .section-container.vertical-tabs > .section > .title, .section-container.vertical-tabs > [data-section-region] > [data-section-title], .section-container.vertical-tabs > [data-section-region] > .title, [data-section='vertical-nav'] > section > [data-section-title], [data-section='vertical-nav'] > section > .title, [data-section='vertical-nav'] > .section > [data-section-title], [data-section='vertical-nav'] > .section > .title, [data-section='vertical-nav'] > [data-section-region] > [data-section-title], [data-section='vertical-nav'] > [data-section-region] > .title, .section-container.vertical-nav > section > [data-section-title], .section-container.vertical-nav > section > .title, .section-container.vertical-nav > .section > [data-section-title], .section-container.vertical-nav > .section > .title, .section-container.vertical-nav > [data-section-region] > [data-section-title], .section-container.vertical-nav > [data-section-region] > .title, [data-section='horizontal-nav'] > section > [data-section-title], [data-section='horizontal-nav'] > section > .title, [data-section='horizontal-nav'] > .section > [data-section-title], [data-section='horizontal-nav'] > .section > .title, [data-section='horizontal-nav'] > [data-section-region] > [data-section-title], [data-section='horizontal-nav'] > [data-section-region] > .title, .section-container.horizontal-nav > section > [data-section-title], .section-container.horizontal-nav > section > .title, .section-container.horizontal-nav > .section > [data-section-title], .section-container.horizontal-nav > .section > .title, .section-container.horizontal-nav > [data-section-region] > [data-section-title], .section-container.horizontal-nav > [data-section-region] > .title, [data-section='accordion'] > section > [data-section-title], [data-section='accordion'] > section > .title, [data-section='accordion'] > .section > [data-section-title], [data-section='accordion'] > .section > .title, [data-section='accordion'] > [data-section-region] > [data-section-title], [data-section='accordion'] > [data-section-region] > .title, .section-container.accordion > section > [data-section-title], .section-container.accordion > section > .title, .section-container.accordion > .section > [data-section-title], .section-container.accordion > .section > .title, .section-container.accordion > [data-section-region] > [data-section-title], .section-container.accordion > [data-section-region] > .title { width: 100%; }

/* line 296, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_section.scss */
.section-container.auto, .section-container.vertical-tabs, .section-container.vertical-nav, .section-container.horizontal-nav, .section-container.accordion { border-top: 1px solid #cccccc; }
/* line 207, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_section.scss */
.section-container.auto > section > .title, .section-container.auto > .section > .title, .section-container.vertical-tabs > section > .title, .section-container.vertical-tabs > .section > .title, .section-container.vertical-nav > section > .title, .section-container.vertical-nav > .section > .title, .section-container.horizontal-nav > section > .title, .section-container.horizontal-nav > .section > .title, .section-container.accordion > section > .title, .section-container.accordion > .section > .title { background-color: #efefef; cursor: pointer; border: solid 1px #cccccc; }
/* line 211, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_section.scss */
.section-container.auto > section > .title a, .section-container.auto > .section > .title a, .section-container.vertical-tabs > section > .title a, .section-container.vertical-tabs > .section > .title a, .section-container.vertical-nav > section > .title a, .section-container.vertical-nav > .section > .title a, .section-container.horizontal-nav > section > .title a, .section-container.horizontal-nav > .section > .title a, .section-container.accordion > section > .title a, .section-container.accordion > .section > .title a { padding: 0.9375em; color: #333333; font-size: 0.875em; background: none; }
/* line 217, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_section.scss */
.section-container.auto > section > .title:hover, .section-container.auto > .section > .title:hover, .section-container.vertical-tabs > section > .title:hover, .section-container.vertical-tabs > .section > .title:hover, .section-container.vertical-nav > section > .title:hover, .section-container.vertical-nav > .section > .title:hover, .section-container.horizontal-nav > section > .title:hover, .section-container.horizontal-nav > .section > .title:hover, .section-container.accordion > section > .title:hover, .section-container.accordion > .section > .title:hover { background-color: #e2e2e2; }
/* line 220, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_section.scss */
.section-container.auto > section > .content, .section-container.auto > .section > .content, .section-container.vertical-tabs > section > .content, .section-container.vertical-tabs > .section > .content, .section-container.vertical-nav > section > .content, .section-container.vertical-nav > .section > .content, .section-container.horizontal-nav > section > .content, .section-container.horizontal-nav > .section > .content, .section-container.accordion > section > .content, .section-container.accordion > .section > .content { padding: 0.9375em; background-color: white; border: solid 1px #cccccc; }
/* line 225, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_section.scss */
.section-container.auto > section > .content > *:last-child, .section-container.auto > .section > .content > *:last-child, .section-container.vertical-tabs > section > .content > *:last-child, .section-container.vertical-tabs > .section > .content > *:last-child, .section-container.vertical-nav > section > .content > *:last-child, .section-container.vertical-nav > .section > .content > *:last-child, .section-container.horizontal-nav > section > .content > *:last-child, .section-container.horizontal-nav > .section > .content > *:last-child, .section-container.accordion > section > .content > *:last-child, .section-container.accordion > .section > .content > *:last-child { margin-bottom: 0; }
/* line 226, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_section.scss */
.section-container.auto > section > .content > *:first-child, .section-container.auto > .section > .content > *:first-child, .section-container.vertical-tabs > section > .content > *:first-child, .section-container.vertical-tabs > .section > .content > *:first-child, .section-container.vertical-nav > section > .content > *:first-child, .section-container.vertical-nav > .section > .content > *:first-child, .section-container.horizontal-nav > section > .content > *:first-child, .section-container.horizontal-nav > .section > .content > *:first-child, .section-container.accordion > section > .content > *:first-child, .section-container.accordion > .section > .content > *:first-child { padding-top: 0; }
/* line 227, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_section.scss */
.section-container.auto > section > .content > *:last-child:not(.flex-video), .section-container.auto > .section > .content > *:last-child:not(.flex-video), .section-container.vertical-tabs > section > .content > *:last-child:not(.flex-video), .section-container.vertical-tabs > .section > .content > *:last-child:not(.flex-video), .section-container.vertical-nav > section > .content > *:last-child:not(.flex-video), .section-container.vertical-nav > .section > .content > *:last-child:not(.flex-video), .section-container.horizontal-nav > section > .content > *:last-child:not(.flex-video), .section-container.horizontal-nav > .section > .content > *:last-child:not(.flex-video), .section-container.accordion > section > .content > *:last-child:not(.flex-video), .section-container.accordion > .section > .content > *:last-child:not(.flex-video) { padding-bottom: 0; }
/* line 231, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_section.scss */
.section-container.auto > section.active > .title, .section-container.auto > .section.active > .title, .section-container.vertical-tabs > section.active > .title, .section-container.vertical-tabs > .section.active > .title, .section-container.vertical-nav > section.active > .title, .section-container.vertical-nav > .section.active > .title, .section-container.horizontal-nav > section.active > .title, .section-container.horizontal-nav > .section.active > .title, .section-container.accordion > section.active > .title, .section-container.accordion > .section.active > .title { background: #d5d5d5; }
/* line 233, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_section.scss */
.section-container.auto > section.active > .title a, .section-container.auto > .section.active > .title a, .section-container.vertical-tabs > section.active > .title a, .section-container.vertical-tabs > .section.active > .title a, .section-container.vertical-nav > section.active > .title a, .section-container.vertical-nav > .section.active > .title a, .section-container.horizontal-nav > section.active > .title a, .section-container.horizontal-nav > .section.active > .title a, .section-container.accordion > section.active > .title a, .section-container.accordion > .section.active > .title a { color: #333333; }
/* line 237, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_section.scss */
.section-container.auto > section:not(.active), .section-container.auto > .section:not(.active), .section-container.vertical-tabs > section:not(.active), .section-container.vertical-tabs > .section:not(.active), .section-container.vertical-nav > section:not(.active), .section-container.vertical-nav > .section:not(.active), .section-container.horizontal-nav > section:not(.active), .section-container.horizontal-nav > .section:not(.active), .section-container.accordion > section:not(.active), .section-container.accordion > .section:not(.active) { padding: 0 !important; }
/* line 243, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_section.scss */
.section-container.auto > section > .title, .section-container.auto > .section > .title, .section-container.vertical-tabs > section > .title, .section-container.vertical-tabs > .section > .title, .section-container.vertical-nav > section > .title, .section-container.vertical-nav > .section > .title, .section-container.horizontal-nav > section > .title, .section-container.horizontal-nav > .section > .title, .section-container.accordion > section > .title, .section-container.accordion > .section > .title { border-top: none; }

/* line 303, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_section.scss */
[data-section='tabs'], .section-container.tabs { width: 100%; position: relative; display: block; margin-bottom: 1.25em; }
/* line 49, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_section.scss */
[data-section='tabs']:not([data-section-resized]):not([data-section-small-style]), .section-container.tabs:not([data-section-resized]):not([data-section-small-style]) { visibility: hidden; }
/* line 102, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_section.scss */
[data-section='tabs'] > section > [data-section-title], [data-section='tabs'] > section > .title, [data-section='tabs'] > .section > [data-section-title], [data-section='tabs'] > .section > .title, [data-section='tabs'] > [data-section-region] > [data-section-title], [data-section='tabs'] > [data-section-region] > .title, .section-container.tabs > section > [data-section-title], .section-container.tabs > section > .title, .section-container.tabs > .section > [data-section-title], .section-container.tabs > .section > .title, .section-container.tabs > [data-section-region] > [data-section-title], .section-container.tabs > [data-section-region] > .title { margin-bottom: 0; }
/* line 104, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_section.scss */
[data-section='tabs'] > section > [data-section-title] a, [data-section='tabs'] > section > .title a, [data-section='tabs'] > .section > [data-section-title] a, [data-section='tabs'] > .section > .title a, [data-section='tabs'] > [data-section-region] > [data-section-title] a, [data-section='tabs'] > [data-section-region] > .title a, .section-container.tabs > section > [data-section-title] a, .section-container.tabs > section > .title a, .section-container.tabs > .section > [data-section-title] a, .section-container.tabs > .section > .title a, .section-container.tabs > [data-section-region] > [data-section-title] a, .section-container.tabs > [data-section-region] > .title a { width: 100%; display: inline-block; white-space: nowrap; }
/* line 111, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_section.scss */
[data-section='tabs'] > section > [data-section-content], [data-section='tabs'] > section > .content, [data-section='tabs'] > .section > [data-section-content], [data-section='tabs'] > .section > .content, [data-section='tabs'] > [data-section-region] > [data-section-content], [data-section='tabs'] > [data-section-region] > .content, .section-container.tabs > section > [data-section-content], .section-container.tabs > section > .content, .section-container.tabs > .section > [data-section-content], .section-container.tabs > .section > .content, .section-container.tabs > [data-section-region] > [data-section-content], .section-container.tabs > [data-section-region] > .content { display: none; }
/* line 116, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_section.scss */
[data-section='tabs'] > section.active > [data-section-content], [data-section='tabs'] > section.active > .content, [data-section='tabs'] > .section.active > [data-section-content], [data-section='tabs'] > .section.active > .content, [data-section='tabs'] > [data-section-region].active > [data-section-content], [data-section='tabs'] > [data-section-region].active > .content, .section-container.tabs > section.active > [data-section-content], .section-container.tabs > section.active > .content, .section-container.tabs > .section.active > [data-section-content], .section-container.tabs > .section.active > .content, .section-container.tabs > [data-section-region].active > [data-section-content], .section-container.tabs > [data-section-region].active > .content { display: block; }
/* line 119, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_section.scss */
[data-section='tabs'] > section:not(.active), [data-section='tabs'] > .section:not(.active), [data-section='tabs'] > [data-section-region]:not(.active), .section-container.tabs > section:not(.active), .section-container.tabs > .section:not(.active), .section-container.tabs > [data-section-region]:not(.active) { padding: 0 !important; }
/* line 132, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_section.scss */
[data-section='tabs'] > section > [data-section-title], [data-section='tabs'] > section > .title, [data-section='tabs'] > .section > [data-section-title], [data-section='tabs'] > .section > .title, [data-section='tabs'] > [data-section-region] > [data-section-title], [data-section='tabs'] > [data-section-region] > .title, .section-container.tabs > section > [data-section-title], .section-container.tabs > section > .title, .section-container.tabs > .section > [data-section-title], .section-container.tabs > .section > .title, .section-container.tabs > [data-section-region] > [data-section-title], .section-container.tabs > [data-section-region] > .title { width: auto; position: absolute; top: 0; left: 0; }

/* line 310, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_section.scss */
.section-container.tabs { border: none; }
/* line 207, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_section.scss */
.section-container.tabs > section > .title, .section-container.tabs > .section > .title { background-color: #efefef; cursor: pointer; border: solid 1px #cccccc; }
/* line 211, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_section.scss */
.section-container.tabs > section > .title a, .section-container.tabs > .section > .title a { padding: 0.9375em; color: #333333; font-size: 0.875em; background: none; }
/* line 217, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_section.scss */
.section-container.tabs > section > .title:hover, .section-container.tabs > .section > .title:hover { background-color: #e2e2e2; }
/* line 220, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_section.scss */
.section-container.tabs > section > .content, .section-container.tabs > .section > .content { padding: 0.9375em; background-color: white; border: solid 1px #cccccc; }
/* line 225, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_section.scss */
.section-container.tabs > section > .content > *:last-child, .section-container.tabs > .section > .content > *:last-child { margin-bottom: 0; }
/* line 226, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_section.scss */
.section-container.tabs > section > .content > *:first-child, .section-container.tabs > .section > .content > *:first-child { padding-top: 0; }
/* line 227, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_section.scss */
.section-container.tabs > section > .content > *:last-child:not(.flex-video), .section-container.tabs > .section > .content > *:last-child:not(.flex-video) { padding-bottom: 0; }
/* line 231, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_section.scss */
.section-container.tabs > section.active > .title, .section-container.tabs > .section.active > .title { background: white; }
/* line 233, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_section.scss */
.section-container.tabs > section.active > .title a, .section-container.tabs > .section.active > .title a { color: #333333; }
/* line 237, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_section.scss */
.section-container.tabs > section:not(.active), .section-container.tabs > .section:not(.active) { padding: 0 !important; }
/* line 249, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_section.scss */
.section-container.tabs > section.active > .title, .section-container.tabs > .section.active > .title { border-bottom: 0; }

@media only screen and (min-width: 768px) { /* line 319, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_section.scss */
	[data-section=''], [data-section='auto'], .section-container.auto { width: 100%; position: relative; display: block; margin-bottom: 1.25em; }
	/* line 49, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_section.scss */
	[data-section='']:not([data-section-resized]):not([data-section-small-style]), [data-section='auto']:not([data-section-resized]):not([data-section-small-style]), .section-container.auto:not([data-section-resized]):not([data-section-small-style]) { visibility: hidden; }
	/* line 102, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_section.scss */
	[data-section=''] > section > [data-section-title], [data-section=''] > section > .title, [data-section=''] > .section > [data-section-title], [data-section=''] > .section > .title, [data-section=''] > [data-section-region] > [data-section-title], [data-section=''] > [data-section-region] > .title, [data-section='auto'] > section > [data-section-title], [data-section='auto'] > section > .title, [data-section='auto'] > .section > [data-section-title], [data-section='auto'] > .section > .title, [data-section='auto'] > [data-section-region] > [data-section-title], [data-section='auto'] > [data-section-region] > .title, .section-container.auto > section > [data-section-title], .section-container.auto > section > .title, .section-container.auto > .section > [data-section-title], .section-container.auto > .section > .title, .section-container.auto > [data-section-region] > [data-section-title], .section-container.auto > [data-section-region] > .title { margin-bottom: 0; }
	/* line 104, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_section.scss */
	[data-section=''] > section > [data-section-title] a, [data-section=''] > section > .title a, [data-section=''] > .section > [data-section-title] a, [data-section=''] > .section > .title a, [data-section=''] > [data-section-region] > [data-section-title] a, [data-section=''] > [data-section-region] > .title a, [data-section='auto'] > section > [data-section-title] a, [data-section='auto'] > section > .title a, [data-section='auto'] > .section > [data-section-title] a, [data-section='auto'] > .section > .title a, [data-section='auto'] > [data-section-region] > [data-section-title] a, [data-section='auto'] > [data-section-region] > .title a, .section-container.auto > section > [data-section-title] a, .section-container.auto > section > .title a, .section-container.auto > .section > [data-section-title] a, .section-container.auto > .section > .title a, .section-container.auto > [data-section-region] > [data-section-title] a, .section-container.auto > [data-section-region] > .title a { width: 100%; display: inline-block; white-space: nowrap; }
	/* line 111, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_section.scss */
	[data-section=''] > section > [data-section-content], [data-section=''] > section > .content, [data-section=''] > .section > [data-section-content], [data-section=''] > .section > .content, [data-section=''] > [data-section-region] > [data-section-content], [data-section=''] > [data-section-region] > .content, [data-section='auto'] > section > [data-section-content], [data-section='auto'] > section > .content, [data-section='auto'] > .section > [data-section-content], [data-section='auto'] > .section > .content, [data-section='auto'] > [data-section-region] > [data-section-content], [data-section='auto'] > [data-section-region] > .content, .section-container.auto > section > [data-section-content], .section-container.auto > section > .content, .section-container.auto > .section > [data-section-content], .section-container.auto > .section > .content, .section-container.auto > [data-section-region] > [data-section-content], .section-container.auto > [data-section-region] > .content { display: none; }
	/* line 116, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_section.scss */
	[data-section=''] > section.active > [data-section-content], [data-section=''] > section.active > .content, [data-section=''] > .section.active > [data-section-content], [data-section=''] > .section.active > .content, [data-section=''] > [data-section-region].active > [data-section-content], [data-section=''] > [data-section-region].active > .content, [data-section='auto'] > section.active > [data-section-content], [data-section='auto'] > section.active > .content, [data-section='auto'] > .section.active > [data-section-content], [data-section='auto'] > .section.active > .content, [data-section='auto'] > [data-section-region].active > [data-section-content], [data-section='auto'] > [data-section-region].active > .content, .section-container.auto > section.active > [data-section-content], .section-container.auto > section.active > .content, .section-container.auto > .section.active > [data-section-content], .section-container.auto > .section.active > .content, .section-container.auto > [data-section-region].active > [data-section-content], .section-container.auto > [data-section-region].active > .content { display: block; }
	/* line 119, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_section.scss */
	[data-section=''] > section:not(.active), [data-section=''] > .section:not(.active), [data-section=''] > [data-section-region]:not(.active), [data-section='auto'] > section:not(.active), [data-section='auto'] > .section:not(.active), [data-section='auto'] > [data-section-region]:not(.active), .section-container.auto > section:not(.active), .section-container.auto > .section:not(.active), .section-container.auto > [data-section-region]:not(.active) { padding: 0 !important; }
	/* line 132, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_section.scss */
	[data-section=''] > section > [data-section-title], [data-section=''] > section > .title, [data-section=''] > .section > [data-section-title], [data-section=''] > .section > .title, [data-section=''] > [data-section-region] > [data-section-title], [data-section=''] > [data-section-region] > .title, [data-section='auto'] > section > [data-section-title], [data-section='auto'] > section > .title, [data-section='auto'] > .section > [data-section-title], [data-section='auto'] > .section > .title, [data-section='auto'] > [data-section-region] > [data-section-title], [data-section='auto'] > [data-section-region] > .title, .section-container.auto > section > [data-section-title], .section-container.auto > section > .title, .section-container.auto > .section > [data-section-title], .section-container.auto > .section > .title, .section-container.auto > [data-section-region] > [data-section-title], .section-container.auto > [data-section-region] > .title { width: auto; position: absolute; top: 0; left: 0; }
	/* line 326, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_section.scss */
	.section-container.auto { border: none; }
	/* line 207, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_section.scss */
	.section-container.auto > section > .title, .section-container.auto > .section > .title { background-color: #efefef; cursor: pointer; border: solid 1px #cccccc; }
	/* line 211, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_section.scss */
	.section-container.auto > section > .title a, .section-container.auto > .section > .title a { padding: 0.9375em; color: #333333; font-size: 0.875em; background: none; }
	/* line 217, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_section.scss */
	.section-container.auto > section > .title:hover, .section-container.auto > .section > .title:hover { background-color: #e2e2e2; }
	/* line 220, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_section.scss */
	.section-container.auto > section > .content, .section-container.auto > .section > .content { padding: 0.9375em; background-color: white; border: solid 1px #cccccc; }
	/* line 225, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_section.scss */
	.section-container.auto > section > .content > *:last-child, .section-container.auto > .section > .content > *:last-child { margin-bottom: 0; }
	/* line 226, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_section.scss */
	.section-container.auto > section > .content > *:first-child, .section-container.auto > .section > .content > *:first-child { padding-top: 0; }
	/* line 227, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_section.scss */
	.section-container.auto > section > .content > *:last-child:not(.flex-video), .section-container.auto > .section > .content > *:last-child:not(.flex-video) { padding-bottom: 0; }
	/* line 231, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_section.scss */
	.section-container.auto > section.active > .title, .section-container.auto > .section.active > .title { background: white; }
	/* line 233, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_section.scss */
	.section-container.auto > section.active > .title a, .section-container.auto > .section.active > .title a { color: #333333; }
	/* line 237, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_section.scss */
	.section-container.auto > section:not(.active), .section-container.auto > .section:not(.active) { padding: 0 !important; }
	/* line 249, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_section.scss */
	.section-container.auto > section.active > .title, .section-container.auto > .section.active > .title { border-bottom: 0; }
	/* line 333, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_section.scss */
	[data-section='vertical-tabs'], .section-container.vertical-tabs { width: 100%; position: relative; display: block; margin-bottom: 1.25em; }
	/* line 49, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_section.scss */
	[data-section='vertical-tabs']:not([data-section-resized]):not([data-section-small-style]), .section-container.vertical-tabs:not([data-section-resized]):not([data-section-small-style]) { visibility: hidden; }
	/* line 55, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_section.scss */
	[data-section='vertical-tabs'][data-section-small-style], .section-container.vertical-tabs[data-section-small-style] { width: 100% !important; }
	/* line 58, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_section.scss */
	[data-section='vertical-tabs'][data-section-small-style] > [data-section-region], [data-section='vertical-tabs'][data-section-small-style] > section, [data-section='vertical-tabs'][data-section-small-style] > .section, .section-container.vertical-tabs[data-section-small-style] > [data-section-region], .section-container.vertical-tabs[data-section-small-style] > section, .section-container.vertical-tabs[data-section-small-style] > .section { padding: 0 !important; margin: 0 !important; }
	/* line 61, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_section.scss */
	[data-section='vertical-tabs'][data-section-small-style] > [data-section-region] > [data-section-title], [data-section='vertical-tabs'][data-section-small-style] > [data-section-region] > .title, [data-section='vertical-tabs'][data-section-small-style] > section > [data-section-title], [data-section='vertical-tabs'][data-section-small-style] > section > .title, [data-section='vertical-tabs'][data-section-small-style] > .section > [data-section-title], [data-section='vertical-tabs'][data-section-small-style] > .section > .title, .section-container.vertical-tabs[data-section-small-style] > [data-section-region] > [data-section-title], .section-container.vertical-tabs[data-section-small-style] > [data-section-region] > .title, .section-container.vertical-tabs[data-section-small-style] > section > [data-section-title], .section-container.vertical-tabs[data-section-small-style] > section > .title, .section-container.vertical-tabs[data-section-small-style] > .section > [data-section-title], .section-container.vertical-tabs[data-section-small-style] > .section > .title { width: 100% !important; }
	/* line 102, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_section.scss */
	[data-section='vertical-tabs'] > section > [data-section-title], [data-section='vertical-tabs'] > section > .title, [data-section='vertical-tabs'] > .section > [data-section-title], [data-section='vertical-tabs'] > .section > .title, [data-section='vertical-tabs'] > [data-section-region] > [data-section-title], [data-section='vertical-tabs'] > [data-section-region] > .title, .section-container.vertical-tabs > section > [data-section-title], .section-container.vertical-tabs > section > .title, .section-container.vertical-tabs > .section > [data-section-title], .section-container.vertical-tabs > .section > .title, .section-container.vertical-tabs > [data-section-region] > [data-section-title], .section-container.vertical-tabs > [data-section-region] > .title { margin-bottom: 0; }
	/* line 104, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_section.scss */
	[data-section='vertical-tabs'] > section > [data-section-title] a, [data-section='vertical-tabs'] > section > .title a, [data-section='vertical-tabs'] > .section > [data-section-title] a, [data-section='vertical-tabs'] > .section > .title a, [data-section='vertical-tabs'] > [data-section-region] > [data-section-title] a, [data-section='vertical-tabs'] > [data-section-region] > .title a, .section-container.vertical-tabs > section > [data-section-title] a, .section-container.vertical-tabs > section > .title a, .section-container.vertical-tabs > .section > [data-section-title] a, .section-container.vertical-tabs > .section > .title a, .section-container.vertical-tabs > [data-section-region] > [data-section-title] a, .section-container.vertical-tabs > [data-section-region] > .title a { width: 100%; display: inline-block; white-space: nowrap; }
	/* line 111, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_section.scss */
	[data-section='vertical-tabs'] > section > [data-section-content], [data-section='vertical-tabs'] > section > .content, [data-section='vertical-tabs'] > .section > [data-section-content], [data-section='vertical-tabs'] > .section > .content, [data-section='vertical-tabs'] > [data-section-region] > [data-section-content], [data-section='vertical-tabs'] > [data-section-region] > .content, .section-container.vertical-tabs > section > [data-section-content], .section-container.vertical-tabs > section > .content, .section-container.vertical-tabs > .section > [data-section-content], .section-container.vertical-tabs > .section > .content, .section-container.vertical-tabs > [data-section-region] > [data-section-content], .section-container.vertical-tabs > [data-section-region] > .content { display: none; }
	/* line 116, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_section.scss */
	[data-section='vertical-tabs'] > section.active > [data-section-content], [data-section='vertical-tabs'] > section.active > .content, [data-section='vertical-tabs'] > .section.active > [data-section-content], [data-section='vertical-tabs'] > .section.active > .content, [data-section='vertical-tabs'] > [data-section-region].active > [data-section-content], [data-section='vertical-tabs'] > [data-section-region].active > .content, .section-container.vertical-tabs > section.active > [data-section-content], .section-container.vertical-tabs > section.active > .content, .section-container.vertical-tabs > .section.active > [data-section-content], .section-container.vertical-tabs > .section.active > .content, .section-container.vertical-tabs > [data-section-region].active > [data-section-content], .section-container.vertical-tabs > [data-section-region].active > .content { display: block; }
	/* line 119, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_section.scss */
	[data-section='vertical-tabs'] > section:not(.active), [data-section='vertical-tabs'] > .section:not(.active), [data-section='vertical-tabs'] > [data-section-region]:not(.active), .section-container.vertical-tabs > section:not(.active), .section-container.vertical-tabs > .section:not(.active), .section-container.vertical-tabs > [data-section-region]:not(.active) { padding: 0 !important; }
	/* line 143, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_section.scss */
	[data-section='vertical-tabs'] > section > [data-section-title], [data-section='vertical-tabs'] > section > .title, [data-section='vertical-tabs'] > .section > [data-section-title], [data-section='vertical-tabs'] > .section > .title, [data-section='vertical-tabs'] > [data-section-region] > [data-section-title], [data-section='vertical-tabs'] > [data-section-region] > .title, .section-container.vertical-tabs > section > [data-section-title], .section-container.vertical-tabs > section > .title, .section-container.vertical-tabs > .section > [data-section-title], .section-container.vertical-tabs > .section > .title, .section-container.vertical-tabs > [data-section-region] > [data-section-title], .section-container.vertical-tabs > [data-section-region] > .title { position: absolute; top: 0; left: 0; width: 12.5em; }
	/* line 150, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_section.scss */
	[data-section='vertical-tabs'] > section.active, [data-section='vertical-tabs'] > .section.active, [data-section='vertical-tabs'] > [data-section-region].active, .section-container.vertical-tabs > section.active, .section-container.vertical-tabs > .section.active, .section-container.vertical-tabs > [data-section-region].active { padding-left: 12.5em; }
	/* line 153, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_section.scss */
	[data-section='vertical-tabs'] > section.active > [data-section-title], [data-section='vertical-tabs'] > section.active > .title, [data-section='vertical-tabs'] > .section.active > [data-section-title], [data-section='vertical-tabs'] > .section.active > .title, [data-section='vertical-tabs'] > [data-section-region].active > [data-section-title], [data-section='vertical-tabs'] > [data-section-region].active > .title, .section-container.vertical-tabs > section.active > [data-section-title], .section-container.vertical-tabs > section.active > .title, .section-container.vertical-tabs > .section.active > [data-section-title], .section-container.vertical-tabs > .section.active > .title, .section-container.vertical-tabs > [data-section-region].active > [data-section-title], .section-container.vertical-tabs > [data-section-region].active > .title { width: 12.5em; }
	/* line 340, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_section.scss */
	.section-container.vertical-tabs { border: none; }
	/* line 207, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_section.scss */
	.section-container.vertical-tabs > section > .title, .section-container.vertical-tabs > .section > .title { background-color: #efefef; cursor: pointer; border: solid 1px #cccccc; }
	/* line 211, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_section.scss */
	.section-container.vertical-tabs > section > .title a, .section-container.vertical-tabs > .section > .title a { padding: 0.9375em; color: #333333; font-size: 0.875em; background: none; }
	/* line 217, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_section.scss */
	.section-container.vertical-tabs > section > .title:hover, .section-container.vertical-tabs > .section > .title:hover { background-color: #e2e2e2; }
	/* line 220, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_section.scss */
	.section-container.vertical-tabs > section > .content, .section-container.vertical-tabs > .section > .content { padding: 0.9375em; background-color: white; border: solid 1px #cccccc; }
	/* line 225, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_section.scss */
	.section-container.vertical-tabs > section > .content > *:last-child, .section-container.vertical-tabs > .section > .content > *:last-child { margin-bottom: 0; }
	/* line 226, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_section.scss */
	.section-container.vertical-tabs > section > .content > *:first-child, .section-container.vertical-tabs > .section > .content > *:first-child { padding-top: 0; }
	/* line 227, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_section.scss */
	.section-container.vertical-tabs > section > .content > *:last-child:not(.flex-video), .section-container.vertical-tabs > .section > .content > *:last-child:not(.flex-video) { padding-bottom: 0; }
	/* line 231, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_section.scss */
	.section-container.vertical-tabs > section.active > .title, .section-container.vertical-tabs > .section.active > .title { background: #d5d5d5; }
	/* line 233, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_section.scss */
	.section-container.vertical-tabs > section.active > .title a, .section-container.vertical-tabs > .section.active > .title a { color: #333333; }
	/* line 237, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_section.scss */
	.section-container.vertical-tabs > section:not(.active), .section-container.vertical-tabs > .section:not(.active) { padding: 0 !important; }
	/* line 257, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_section.scss */
	.section-container.vertical-tabs > section.active, .section-container.vertical-tabs > .section.active { padding-left: 12.4375em; }
	/* line 260, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_section.scss */
	.section-container.vertical-tabs > section.active > .title, .section-container.vertical-tabs > .section.active > .title { background-color: #d5d5d5; }
	/* line 347, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_section.scss */
	[data-section='vertical-nav'], .section-container.vertical-nav { width: 100%; position: relative; display: block; margin-bottom: 1.25em; }
	/* line 49, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_section.scss */
	[data-section='vertical-nav']:not([data-section-resized]):not([data-section-small-style]), .section-container.vertical-nav:not([data-section-resized]):not([data-section-small-style]) { visibility: hidden; }
	/* line 55, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_section.scss */
	[data-section='vertical-nav'][data-section-small-style], .section-container.vertical-nav[data-section-small-style] { width: 100% !important; }
	/* line 58, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_section.scss */
	[data-section='vertical-nav'][data-section-small-style] > [data-section-region], [data-section='vertical-nav'][data-section-small-style] > section, [data-section='vertical-nav'][data-section-small-style] > .section, .section-container.vertical-nav[data-section-small-style] > [data-section-region], .section-container.vertical-nav[data-section-small-style] > section, .section-container.vertical-nav[data-section-small-style] > .section { padding: 0 !important; margin: 0 !important; }
	/* line 61, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_section.scss */
	[data-section='vertical-nav'][data-section-small-style] > [data-section-region] > [data-section-title], [data-section='vertical-nav'][data-section-small-style] > [data-section-region] > .title, [data-section='vertical-nav'][data-section-small-style] > section > [data-section-title], [data-section='vertical-nav'][data-section-small-style] > section > .title, [data-section='vertical-nav'][data-section-small-style] > .section > [data-section-title], [data-section='vertical-nav'][data-section-small-style] > .section > .title, .section-container.vertical-nav[data-section-small-style] > [data-section-region] > [data-section-title], .section-container.vertical-nav[data-section-small-style] > [data-section-region] > .title, .section-container.vertical-nav[data-section-small-style] > section > [data-section-title], .section-container.vertical-nav[data-section-small-style] > section > .title, .section-container.vertical-nav[data-section-small-style] > .section > [data-section-title], .section-container.vertical-nav[data-section-small-style] > .section > .title { width: 100% !important; }
	/* line 349, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_section.scss */
	[data-section='vertical-nav'] > section, [data-section='vertical-nav'] > .section, [data-section='vertical-nav'] > [data-section-region], .section-container.vertical-nav > section, .section-container.vertical-nav > .section, .section-container.vertical-nav > [data-section-region] { position: relative; display: inline-block; }
	/* line 102, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_section.scss */
	[data-section='vertical-nav'] > section > [data-section-title], [data-section='vertical-nav'] > section > .title, [data-section='vertical-nav'] > .section > [data-section-title], [data-section='vertical-nav'] > .section > .title, [data-section='vertical-nav'] > [data-section-region] > [data-section-title], [data-section='vertical-nav'] > [data-section-region] > .title, .section-container.vertical-nav > section > [data-section-title], .section-container.vertical-nav > section > .title, .section-container.vertical-nav > .section > [data-section-title], .section-container.vertical-nav > .section > .title, .section-container.vertical-nav > [data-section-region] > [data-section-title], .section-container.vertical-nav > [data-section-region] > .title { margin-bottom: 0; }
	/* line 104, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_section.scss */
	[data-section='vertical-nav'] > section > [data-section-title] a, [data-section='vertical-nav'] > section > .title a, [data-section='vertical-nav'] > .section > [data-section-title] a, [data-section='vertical-nav'] > .section > .title a, [data-section='vertical-nav'] > [data-section-region] > [data-section-title] a, [data-section='vertical-nav'] > [data-section-region] > .title a, .section-container.vertical-nav > section > [data-section-title] a, .section-container.vertical-nav > section > .title a, .section-container.vertical-nav > .section > [data-section-title] a, .section-container.vertical-nav > .section > .title a, .section-container.vertical-nav > [data-section-region] > [data-section-title] a, .section-container.vertical-nav > [data-section-region] > .title a { width: 100%; display: inline-block; white-space: nowrap; }
	/* line 111, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_section.scss */
	[data-section='vertical-nav'] > section > [data-section-content], [data-section='vertical-nav'] > section > .content, [data-section='vertical-nav'] > .section > [data-section-content], [data-section='vertical-nav'] > .section > .content, [data-section='vertical-nav'] > [data-section-region] > [data-section-content], [data-section='vertical-nav'] > [data-section-region] > .content, .section-container.vertical-nav > section > [data-section-content], .section-container.vertical-nav > section > .content, .section-container.vertical-nav > .section > [data-section-content], .section-container.vertical-nav > .section > .content, .section-container.vertical-nav > [data-section-region] > [data-section-content], .section-container.vertical-nav > [data-section-region] > .content { display: none; }
	/* line 116, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_section.scss */
	[data-section='vertical-nav'] > section.active > [data-section-content], [data-section='vertical-nav'] > section.active > .content, [data-section='vertical-nav'] > .section.active > [data-section-content], [data-section='vertical-nav'] > .section.active > .content, [data-section='vertical-nav'] > [data-section-region].active > [data-section-content], [data-section='vertical-nav'] > [data-section-region].active > .content, .section-container.vertical-nav > section.active > [data-section-content], .section-container.vertical-nav > section.active > .content, .section-container.vertical-nav > .section.active > [data-section-content], .section-container.vertical-nav > .section.active > .content, .section-container.vertical-nav > [data-section-region].active > [data-section-content], .section-container.vertical-nav > [data-section-region].active > .content { display: block; }
	/* line 119, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_section.scss */
	[data-section='vertical-nav'] > section:not(.active), [data-section='vertical-nav'] > .section:not(.active), [data-section='vertical-nav'] > [data-section-region]:not(.active), .section-container.vertical-nav > section:not(.active), .section-container.vertical-nav > .section:not(.active), .section-container.vertical-nav > [data-section-region]:not(.active) { padding: 0 !important; }
	/* line 165, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_section.scss */
	[data-section='vertical-nav'] > section > [data-section-title], [data-section='vertical-nav'] > section > .title, [data-section='vertical-nav'] > .section > [data-section-title], [data-section='vertical-nav'] > .section > .title, [data-section='vertical-nav'] > [data-section-region] > [data-section-title], [data-section='vertical-nav'] > [data-section-region] > .title, .section-container.vertical-nav > section > [data-section-title], .section-container.vertical-nav > section > .title, .section-container.vertical-nav > .section > [data-section-title], .section-container.vertical-nav > .section > .title, .section-container.vertical-nav > [data-section-region] > [data-section-title], .section-container.vertical-nav > [data-section-region] > .title { position: static; width: auto; }
	/* line 168, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_section.scss */
	[data-section='vertical-nav'] > section > [data-section-title] a, [data-section='vertical-nav'] > section > .title a, [data-section='vertical-nav'] > .section > [data-section-title] a, [data-section='vertical-nav'] > .section > .title a, [data-section='vertical-nav'] > [data-section-region] > [data-section-title] a, [data-section='vertical-nav'] > [data-section-region] > .title a, .section-container.vertical-nav > section > [data-section-title] a, .section-container.vertical-nav > section > .title a, .section-container.vertical-nav > .section > [data-section-title] a, .section-container.vertical-nav > .section > .title a, .section-container.vertical-nav > [data-section-region] > [data-section-title] a, .section-container.vertical-nav > [data-section-region] > .title a { display: block; }
	/* line 171, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_section.scss */
	[data-section='vertical-nav'] > section > [data-section-content], [data-section='vertical-nav'] > section > .content, [data-section='vertical-nav'] > .section > [data-section-content], [data-section='vertical-nav'] > .section > .content, [data-section='vertical-nav'] > [data-section-region] > [data-section-content], [data-section='vertical-nav'] > [data-section-region] > .content, .section-container.vertical-nav > section > [data-section-content], .section-container.vertical-nav > section > .content, .section-container.vertical-nav > .section > [data-section-content], .section-container.vertical-nav > .section > .content, .section-container.vertical-nav > [data-section-region] > [data-section-content], .section-container.vertical-nav > [data-section-region] > .content { position: absolute; top: 0; left: 0; z-index: 999; min-width: 12.5em; }
	/* line 354, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_section.scss */
	.section-container.vertical-nav { border: none; }
	/* line 207, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_section.scss */
	.section-container.vertical-nav > section > .title, .section-container.vertical-nav > .section > .title { background-color: #efefef; cursor: pointer; border: solid 1px #cccccc; }
	/* line 211, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_section.scss */
	.section-container.vertical-nav > section > .title a, .section-container.vertical-nav > .section > .title a { padding: 0.9375em; color: #333333; font-size: 0.875em; background: none; }
	/* line 217, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_section.scss */
	.section-container.vertical-nav > section > .title:hover, .section-container.vertical-nav > .section > .title:hover { background-color: #e2e2e2; }
	/* line 220, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_section.scss */
	.section-container.vertical-nav > section > .content, .section-container.vertical-nav > .section > .content { padding: 0.9375em; background-color: white; border: solid 1px #cccccc; }
	/* line 225, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_section.scss */
	.section-container.vertical-nav > section > .content > *:last-child, .section-container.vertical-nav > .section > .content > *:last-child { margin-bottom: 0; }
	/* line 226, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_section.scss */
	.section-container.vertical-nav > section > .content > *:first-child, .section-container.vertical-nav > .section > .content > *:first-child { padding-top: 0; }
	/* line 227, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_section.scss */
	.section-container.vertical-nav > section > .content > *:last-child:not(.flex-video), .section-container.vertical-nav > .section > .content > *:last-child:not(.flex-video) { padding-bottom: 0; }
	/* line 231, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_section.scss */
	.section-container.vertical-nav > section.active > .title, .section-container.vertical-nav > .section.active > .title { background: #d5d5d5; }
	/* line 233, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_section.scss */
	.section-container.vertical-nav > section.active > .title a, .section-container.vertical-nav > .section.active > .title a { color: #333333; }
	/* line 237, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_section.scss */
	.section-container.vertical-nav > section:not(.active), .section-container.vertical-nav > .section:not(.active) { padding: 0 !important; }
	/* line 361, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_section.scss */
	[data-section='horizontal-nav'], .section-container.horizontal-nav { width: 100%; position: relative; display: block; margin-bottom: 1.25em; }
	/* line 49, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_section.scss */
	[data-section='horizontal-nav']:not([data-section-resized]):not([data-section-small-style]), .section-container.horizontal-nav:not([data-section-resized]):not([data-section-small-style]) { visibility: hidden; }
	/* line 55, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_section.scss */
	[data-section='horizontal-nav'][data-section-small-style], .section-container.horizontal-nav[data-section-small-style] { width: 100% !important; }
	/* line 58, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_section.scss */
	[data-section='horizontal-nav'][data-section-small-style] > [data-section-region], [data-section='horizontal-nav'][data-section-small-style] > section, [data-section='horizontal-nav'][data-section-small-style] > .section, .section-container.horizontal-nav[data-section-small-style] > [data-section-region], .section-container.horizontal-nav[data-section-small-style] > section, .section-container.horizontal-nav[data-section-small-style] > .section { padding: 0 !important; margin: 0 !important; }
	/* line 61, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_section.scss */
	[data-section='horizontal-nav'][data-section-small-style] > [data-section-region] > [data-section-title], [data-section='horizontal-nav'][data-section-small-style] > [data-section-region] > .title, [data-section='horizontal-nav'][data-section-small-style] > section > [data-section-title], [data-section='horizontal-nav'][data-section-small-style] > section > .title, [data-section='horizontal-nav'][data-section-small-style] > .section > [data-section-title], [data-section='horizontal-nav'][data-section-small-style] > .section > .title, .section-container.horizontal-nav[data-section-small-style] > [data-section-region] > [data-section-title], .section-container.horizontal-nav[data-section-small-style] > [data-section-region] > .title, .section-container.horizontal-nav[data-section-small-style] > section > [data-section-title], .section-container.horizontal-nav[data-section-small-style] > section > .title, .section-container.horizontal-nav[data-section-small-style] > .section > [data-section-title], .section-container.horizontal-nav[data-section-small-style] > .section > .title { width: 100% !important; }
	/* line 363, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_section.scss */
	[data-section='horizontal-nav'] > section, [data-section='horizontal-nav'] > .section, [data-section='horizontal-nav'] > [data-section-region], .section-container.horizontal-nav > section, .section-container.horizontal-nav > .section, .section-container.horizontal-nav > [data-section-region] { position: relative; float: left; }
	/* line 102, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_section.scss */
	[data-section='horizontal-nav'] > section > [data-section-title], [data-section='horizontal-nav'] > section > .title, [data-section='horizontal-nav'] > .section > [data-section-title], [data-section='horizontal-nav'] > .section > .title, [data-section='horizontal-nav'] > [data-section-region] > [data-section-title], [data-section='horizontal-nav'] > [data-section-region] > .title, .section-container.horizontal-nav > section > [data-section-title], .section-container.horizontal-nav > section > .title, .section-container.horizontal-nav > .section > [data-section-title], .section-container.horizontal-nav > .section > .title, .section-container.horizontal-nav > [data-section-region] > [data-section-title], .section-container.horizontal-nav > [data-section-region] > .title { margin-bottom: 0; }
	/* line 104, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_section.scss */
	[data-section='horizontal-nav'] > section > [data-section-title] a, [data-section='horizontal-nav'] > section > .title a, [data-section='horizontal-nav'] > .section > [data-section-title] a, [data-section='horizontal-nav'] > .section > .title a, [data-section='horizontal-nav'] > [data-section-region] > [data-section-title] a, [data-section='horizontal-nav'] > [data-section-region] > .title a, .section-container.horizontal-nav > section > [data-section-title] a, .section-container.horizontal-nav > section > .title a, .section-container.horizontal-nav > .section > [data-section-title] a, .section-container.horizontal-nav > .section > .title a, .section-container.horizontal-nav > [data-section-region] > [data-section-title] a, .section-container.horizontal-nav > [data-section-region] > .title a { width: 100%; display: inline-block; white-space: nowrap; }
	/* line 111, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_section.scss */
	[data-section='horizontal-nav'] > section > [data-section-content], [data-section='horizontal-nav'] > section > .content, [data-section='horizontal-nav'] > .section > [data-section-content], [data-section='horizontal-nav'] > .section > .content, [data-section='horizontal-nav'] > [data-section-region] > [data-section-content], [data-section='horizontal-nav'] > [data-section-region] > .content, .section-container.horizontal-nav > section > [data-section-content], .section-container.horizontal-nav > section > .content, .section-container.horizontal-nav > .section > [data-section-content], .section-container.horizontal-nav > .section > .content, .section-container.horizontal-nav > [data-section-region] > [data-section-content], .section-container.horizontal-nav > [data-section-region] > .content { display: none; }
	/* line 116, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_section.scss */
	[data-section='horizontal-nav'] > section.active > [data-section-content], [data-section='horizontal-nav'] > section.active > .content, [data-section='horizontal-nav'] > .section.active > [data-section-content], [data-section='horizontal-nav'] > .section.active > .content, [data-section='horizontal-nav'] > [data-section-region].active > [data-section-content], [data-section='horizontal-nav'] > [data-section-region].active > .content, .section-container.horizontal-nav > section.active > [data-section-content], .section-container.horizontal-nav > section.active > .content, .section-container.horizontal-nav > .section.active > [data-section-content], .section-container.horizontal-nav > .section.active > .content, .section-container.horizontal-nav > [data-section-region].active > [data-section-content], .section-container.horizontal-nav > [data-section-region].active > .content { display: block; }
	/* line 119, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_section.scss */
	[data-section='horizontal-nav'] > section:not(.active), [data-section='horizontal-nav'] > .section:not(.active), [data-section='horizontal-nav'] > [data-section-region]:not(.active), .section-container.horizontal-nav > section:not(.active), .section-container.horizontal-nav > .section:not(.active), .section-container.horizontal-nav > [data-section-region]:not(.active) { padding: 0 !important; }
	/* line 186, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_section.scss */
	[data-section='horizontal-nav'] > section > [data-section-title], [data-section='horizontal-nav'] > section > .title, [data-section='horizontal-nav'] > .section > [data-section-title], [data-section='horizontal-nav'] > .section > .title, [data-section='horizontal-nav'] > [data-section-region] > [data-section-title], [data-section='horizontal-nav'] > [data-section-region] > .title, .section-container.horizontal-nav > section > [data-section-title], .section-container.horizontal-nav > section > .title, .section-container.horizontal-nav > .section > [data-section-title], .section-container.horizontal-nav > .section > .title, .section-container.horizontal-nav > [data-section-region] > [data-section-title], .section-container.horizontal-nav > [data-section-region] > .title { position: static; width: auto; }
	/* line 189, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_section.scss */
	[data-section='horizontal-nav'] > section > [data-section-title] a, [data-section='horizontal-nav'] > section > .title a, [data-section='horizontal-nav'] > .section > [data-section-title] a, [data-section='horizontal-nav'] > .section > .title a, [data-section='horizontal-nav'] > [data-section-region] > [data-section-title] a, [data-section='horizontal-nav'] > [data-section-region] > .title a, .section-container.horizontal-nav > section > [data-section-title] a, .section-container.horizontal-nav > section > .title a, .section-container.horizontal-nav > .section > [data-section-title] a, .section-container.horizontal-nav > .section > .title a, .section-container.horizontal-nav > [data-section-region] > [data-section-title] a, .section-container.horizontal-nav > [data-section-region] > .title a { display: block; }
	/* line 192, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_section.scss */
	[data-section='horizontal-nav'] > section > [data-section-content], [data-section='horizontal-nav'] > section > .content, [data-section='horizontal-nav'] > .section > [data-section-content], [data-section='horizontal-nav'] > .section > .content, [data-section='horizontal-nav'] > [data-section-region] > [data-section-content], [data-section='horizontal-nav'] > [data-section-region] > .content, .section-container.horizontal-nav > section > [data-section-content], .section-container.horizontal-nav > section > .content, .section-container.horizontal-nav > .section > [data-section-content], .section-container.horizontal-nav > .section > .content, .section-container.horizontal-nav > [data-section-region] > [data-section-content], .section-container.horizontal-nav > [data-section-region] > .content { width: auto; position: absolute; top: 0; left: 0; z-index: 999; min-width: 12.5em; }
	/* line 368, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_section.scss */
	.section-container.horizontal-nav { background: #efefef; border: 1px solid #cccccc; }
	/* line 207, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_section.scss */
	.section-container.horizontal-nav > section > .title, .section-container.horizontal-nav > .section > .title { background-color: #efefef; cursor: pointer; border: solid 1px #cccccc; }
	/* line 211, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_section.scss */
	.section-container.horizontal-nav > section > .title a, .section-container.horizontal-nav > .section > .title a { padding: 0.9375em; color: #333333; font-size: 0.875em; background: none; }
	/* line 217, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_section.scss */
	.section-container.horizontal-nav > section > .title:hover, .section-container.horizontal-nav > .section > .title:hover { background-color: #e2e2e2; }
	/* line 220, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_section.scss */
	.section-container.horizontal-nav > section > .content, .section-container.horizontal-nav > .section > .content { padding: 0.9375em; background-color: white; border: solid 1px #cccccc; }
	/* line 225, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_section.scss */
	.section-container.horizontal-nav > section > .content > *:last-child, .section-container.horizontal-nav > .section > .content > *:last-child { margin-bottom: 0; }
	/* line 226, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_section.scss */
	.section-container.horizontal-nav > section > .content > *:first-child, .section-container.horizontal-nav > .section > .content > *:first-child { padding-top: 0; }
	/* line 227, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_section.scss */
	.section-container.horizontal-nav > section > .content > *:last-child:not(.flex-video), .section-container.horizontal-nav > .section > .content > *:last-child:not(.flex-video) { padding-bottom: 0; }
	/* line 231, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_section.scss */
	.section-container.horizontal-nav > section.active > .title, .section-container.horizontal-nav > .section.active > .title { background: #d5d5d5; }
	/* line 233, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_section.scss */
	.section-container.horizontal-nav > section.active > .title a, .section-container.horizontal-nav > .section.active > .title a { color: #333333; }
	/* line 237, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_section.scss */
	.section-container.horizontal-nav > section:not(.active), .section-container.horizontal-nav > .section:not(.active) { padding: 0 !important; } }
/* line 378, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_section.scss */
.no-js [data-section], .no-js .section-container { width: 100%; position: relative; display: block; margin-bottom: 1.25em; }
/* line 55, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_section.scss */
.no-js [data-section][data-section-small-style], .no-js .section-container[data-section-small-style] { width: 100% !important; }
/* line 58, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_section.scss */
.no-js [data-section][data-section-small-style] > [data-section-region], .no-js [data-section][data-section-small-style] > section, .no-js [data-section][data-section-small-style] > .section, .no-js .section-container[data-section-small-style] > [data-section-region], .no-js .section-container[data-section-small-style] > section, .no-js .section-container[data-section-small-style] > .section { padding: 0 !important; margin: 0 !important; }
/* line 61, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_section.scss */
.no-js [data-section][data-section-small-style] > [data-section-region] > [data-section-title], .no-js [data-section][data-section-small-style] > [data-section-region] > .title, .no-js [data-section][data-section-small-style] > section > [data-section-title], .no-js [data-section][data-section-small-style] > section > .title, .no-js [data-section][data-section-small-style] > .section > [data-section-title], .no-js [data-section][data-section-small-style] > .section > .title, .no-js .section-container[data-section-small-style] > [data-section-region] > [data-section-title], .no-js .section-container[data-section-small-style] > [data-section-region] > .title, .no-js .section-container[data-section-small-style] > section > [data-section-title], .no-js .section-container[data-section-small-style] > section > .title, .no-js .section-container[data-section-small-style] > .section > [data-section-title], .no-js .section-container[data-section-small-style] > .section > .title { width: 100% !important; }
/* line 380, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_section.scss */
.no-js [data-section] > section, .no-js [data-section] > .section, .no-js [data-section] > [data-section-region], .no-js .section-container > section, .no-js .section-container > .section, .no-js .section-container > [data-section-region] { margin: 0; }
/* line 102, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_section.scss */
.no-js [data-section] > section > [data-section-title], .no-js [data-section] > section > .title, .no-js [data-section] > .section > [data-section-title], .no-js [data-section] > .section > .title, .no-js [data-section] > [data-section-region] > [data-section-title], .no-js [data-section] > [data-section-region] > .title, .no-js .section-container > section > [data-section-title], .no-js .section-container > section > .title, .no-js .section-container > .section > [data-section-title], .no-js .section-container > .section > .title, .no-js .section-container > [data-section-region] > [data-section-title], .no-js .section-container > [data-section-region] > .title { margin-bottom: 0; }
/* line 104, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_section.scss */
.no-js [data-section] > section > [data-section-title] a, .no-js [data-section] > section > .title a, .no-js [data-section] > .section > [data-section-title] a, .no-js [data-section] > .section > .title a, .no-js [data-section] > [data-section-region] > [data-section-title] a, .no-js [data-section] > [data-section-region] > .title a, .no-js .section-container > section > [data-section-title] a, .no-js .section-container > section > .title a, .no-js .section-container > .section > [data-section-title] a, .no-js .section-container > .section > .title a, .no-js .section-container > [data-section-region] > [data-section-title] a, .no-js .section-container > [data-section-region] > .title a { width: 100%; display: inline-block; white-space: nowrap; }
/* line 111, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_section.scss */
.no-js [data-section] > section > [data-section-content], .no-js [data-section] > section > .content, .no-js [data-section] > .section > [data-section-content], .no-js [data-section] > .section > .content, .no-js [data-section] > [data-section-region] > [data-section-content], .no-js [data-section] > [data-section-region] > .content, .no-js .section-container > section > [data-section-content], .no-js .section-container > section > .content, .no-js .section-container > .section > [data-section-content], .no-js .section-container > .section > .content, .no-js .section-container > [data-section-region] > [data-section-content], .no-js .section-container > [data-section-region] > .content { display: none; }
/* line 116, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_section.scss */
.no-js [data-section] > section.active > [data-section-content], .no-js [data-section] > section.active > .content, .no-js [data-section] > .section.active > [data-section-content], .no-js [data-section] > .section.active > .content, .no-js [data-section] > [data-section-region].active > [data-section-content], .no-js [data-section] > [data-section-region].active > .content, .no-js .section-container > section.active > [data-section-content], .no-js .section-container > section.active > .content, .no-js .section-container > .section.active > [data-section-content], .no-js .section-container > .section.active > .content, .no-js .section-container > [data-section-region].active > [data-section-content], .no-js .section-container > [data-section-region].active > .content { display: block; }
/* line 119, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_section.scss */
.no-js [data-section] > section:not(.active), .no-js [data-section] > .section:not(.active), .no-js [data-section] > [data-section-region]:not(.active), .no-js .section-container > section:not(.active), .no-js .section-container > .section:not(.active), .no-js .section-container > [data-section-region]:not(.active) { padding: 0 !important; }
/* line 126, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_section.scss */
.no-js [data-section] > section > [data-section-title], .no-js [data-section] > section > .title, .no-js [data-section] > .section > [data-section-title], .no-js [data-section] > .section > .title, .no-js [data-section] > [data-section-region] > [data-section-title], .no-js [data-section] > [data-section-region] > .title, .no-js .section-container > section > [data-section-title], .no-js .section-container > section > .title, .no-js .section-container > .section > [data-section-title], .no-js .section-container > .section > .title, .no-js .section-container > [data-section-region] > [data-section-title], .no-js .section-container > [data-section-region] > .title { width: 100%; }
/* line 384, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_section.scss */
.no-js .section-container { border-top: 1px solid #cccccc; }
/* line 207, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_section.scss */
.no-js .section-container > section > .title, .no-js .section-container > .section > .title { background-color: #efefef; cursor: pointer; border: solid 1px #cccccc; }
/* line 211, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_section.scss */
.no-js .section-container > section > .title a, .no-js .section-container > .section > .title a { padding: 0.9375em; color: #333333; font-size: 0.875em; background: none; }
/* line 217, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_section.scss */
.no-js .section-container > section > .title:hover, .no-js .section-container > .section > .title:hover { background-color: #e2e2e2; }
/* line 220, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_section.scss */
.no-js .section-container > section > .content, .no-js .section-container > .section > .content { padding: 0.9375em; background-color: white; border: solid 1px #cccccc; }
/* line 225, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_section.scss */
.no-js .section-container > section > .content > *:last-child, .no-js .section-container > .section > .content > *:last-child { margin-bottom: 0; }
/* line 226, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_section.scss */
.no-js .section-container > section > .content > *:first-child, .no-js .section-container > .section > .content > *:first-child { padding-top: 0; }
/* line 227, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_section.scss */
.no-js .section-container > section > .content > *:last-child:not(.flex-video), .no-js .section-container > .section > .content > *:last-child:not(.flex-video) { padding-bottom: 0; }
/* line 231, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_section.scss */
.no-js .section-container > section.active > .title, .no-js .section-container > .section.active > .title { background: #d5d5d5; }
/* line 233, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_section.scss */
.no-js .section-container > section.active > .title a, .no-js .section-container > .section.active > .title a { color: #333333; }
/* line 237, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_section.scss */
.no-js .section-container > section:not(.active), .no-js .section-container > .section:not(.active) { padding: 0 !important; }
/* line 243, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_section.scss */
.no-js .section-container > section > .title, .no-js .section-container > .section > .title { border-top: none; }

/* Wrapped around .top-bar to contain to grid width */
/* line 72, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_top-bar.scss */
.contain-to-grid { width: 100%; background: #111111; }
/* line 76, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_top-bar.scss */
.contain-to-grid .top-bar { margin-bottom: 0; }

/* line 80, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_top-bar.scss */
.fixed { width: 100%; left: 0; position: fixed; top: 0; z-index: 99; }
/* line 87, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_top-bar.scss */
.fixed.expanded:not(.top-bar) { overflow-y: auto; height: auto; width: 100%; max-height: 100%; }
/* line 93, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_top-bar.scss */
.fixed.expanded:not(.top-bar) .title-area { position: fixed; width: 100%; z-index: 99; }
/* line 99, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_top-bar.scss */
.fixed.expanded:not(.top-bar) .top-bar-section { z-index: 98; margin-top: 45px; }

/* line 106, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_top-bar.scss */
.top-bar { overflow: hidden; height: 45px; line-height: 45px; position: relative; background: #111111; margin-bottom: 0; }
/* line 115, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_top-bar.scss */
.top-bar ul { margin-bottom: 0; list-style: none; }
/* line 120, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_top-bar.scss */
.top-bar .row { max-width: none; }
/* line 123, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_top-bar.scss */
.top-bar form, .top-bar input { margin-bottom: 0; }
/* line 125, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_top-bar.scss */
.top-bar input { height: 2.45em; }
/* line 127, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_top-bar.scss */
.top-bar .button { padding-top: .5em; padding-bottom: .5em; margin-bottom: 0; }
/* line 130, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_top-bar.scss */
.top-bar .title-area { position: relative; margin: 0; }
/* line 135, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_top-bar.scss */
.top-bar .name { height: 45px; margin: 0; font-size: 16; }
/* line 140, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_top-bar.scss */
.top-bar .name h1 { line-height: 45px; font-size: 1.0625em; margin: 0; }
/* line 144, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_top-bar.scss */
.top-bar .name h1 a { font-weight: bold; color: white; width: 50%; display: block; padding: 0 15px; }
/* line 155, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_top-bar.scss */
.top-bar .toggle-topbar { position: absolute; right: 0; top: 0; }
/* line 160, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_top-bar.scss */
.top-bar .toggle-topbar a { color: white; text-transform: uppercase; font-size: 0.8125em; font-weight: bold; position: relative; display: block; padding: 0 15px; height: 45px; line-height: 45px; }
/* line 173, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_top-bar.scss */
.top-bar .toggle-topbar.menu-icon { right: 15px; top: 50%; margin-top: -16px; padding-left: 40px; }
/* line 179, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_top-bar.scss */
.top-bar .toggle-topbar.menu-icon a { text-indent: -48px; width: 34px; height: 34px; line-height: 33px; padding: 0; color: white; }
/* line 187, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_top-bar.scss */
.top-bar .toggle-topbar.menu-icon a span { position: absolute; right: 0; display: block; width: 16px; height: 0; -webkit-box-shadow: 0 10px 0 1px white, 0 16px 0 1px white, 0 22px 0 1px white; box-shadow: 0 10px 0 1px white, 0 16px 0 1px white, 0 22px 0 1px white; }
/* line 208, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_top-bar.scss */
.top-bar.expanded { height: auto; background: transparent; }
/* line 212, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_top-bar.scss */
.top-bar.expanded .title-area { background: #111111; }
/* line 215, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_top-bar.scss */
.top-bar.expanded .toggle-topbar a { color: #888888; }
/* line 216, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_top-bar.scss */
.top-bar.expanded .toggle-topbar a span { -webkit-box-shadow: 0 10px 0 1px #888888, 0 16px 0 1px #888888, 0 22px 0 1px #888888; box-shadow: 0 10px 0 1px #888888, 0 16px 0 1px #888888, 0 22px 0 1px #888888; }

/* line 234, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_top-bar.scss */
.top-bar-section { left: 0; position: relative; width: auto; -webkit-transition: left 300ms ease-out; -moz-transition: left 300ms ease-out; transition: left 300ms ease-out; }
/* line 240, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_top-bar.scss */
.top-bar-section ul { width: 100%; height: auto; display: block; background: #222222; font-size: 16; margin: 0; }
/* line 250, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_top-bar.scss */
.top-bar-section .divider, .top-bar-section [role="separator"] { border-bottom: solid 1px #2b2b2b; border-top: solid 1px black; clear: both; height: 1px; width: 100%; }
/* line 259, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_top-bar.scss */
.top-bar-section ul li > a { display: block; width: 100%; color: white; padding: 12px 0 12px 0; padding-left: 15px; font-size: 0.8125em; font-weight: bold; background: #222222; }
/* line 269, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_top-bar.scss */
.top-bar-section ul li > a.button { background: #0084c7; font-size: 0.8125em; padding-right: 15px; padding-left: 15px; }
/* line 274, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_top-bar.scss */
.top-bar-section ul li > a.button:hover { background: #006294; }
/* line 278, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_top-bar.scss */
.top-bar-section ul li > a.button.secondary { background: #d0ddf1; }
/* line 280, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_top-bar.scss */
.top-bar-section ul li > a.button.secondary:hover { background: #a9c1e5; }
/* line 284, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_top-bar.scss */
.top-bar-section ul li > a.button.success { background: #5da423; }
/* line 286, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_top-bar.scss */
.top-bar-section ul li > a.button.success:hover { background: #457a1a; }
/* line 290, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_top-bar.scss */
.top-bar-section ul li > a.button.alert { background: #c60f13; }
/* line 292, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_top-bar.scss */
.top-bar-section ul li > a.button.alert:hover { background: #970b0e; }
/* line 300, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_top-bar.scss */
.top-bar-section ul li:hover > a { background: black; color: white; }
/* line 306, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_top-bar.scss */
.top-bar-section ul li.active > a { background: #090909; color: white; }
/* line 313, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_top-bar.scss */
.top-bar-section .has-form { padding: 15px; }
/* line 316, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_top-bar.scss */
.top-bar-section .has-dropdown { position: relative; }
/* line 320, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_top-bar.scss */
.top-bar-section .has-dropdown > a:after { content: ""; display: block; width: 0; height: 0; border: inset 5px; border-color: transparent transparent transparent rgba(255, 255, 255, 0.5); border-left-style: solid; margin-right: 15px; margin-top: -4.5px; position: absolute; top: 50%; right: 0; }
/* line 332, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_top-bar.scss */
.top-bar-section .has-dropdown.moved { position: static; }
/* line 333, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_top-bar.scss */
.top-bar-section .has-dropdown.moved > .dropdown { display: block; }
/* line 340, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_top-bar.scss */
.top-bar-section .dropdown { position: absolute; left: 100%; top: 0; display: none; z-index: 99; }
/* line 347, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_top-bar.scss */
.top-bar-section .dropdown li { width: 100%; height: auto; }
/* line 351, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_top-bar.scss */
.top-bar-section .dropdown li a { font-weight: normal; padding: 8px 15px; }
/* line 354, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_top-bar.scss */
.top-bar-section .dropdown li a.parent-link { font-weight: bold; }
/* line 359, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_top-bar.scss */
.top-bar-section .dropdown li.title h5 { margin-bottom: 0; }
/* line 360, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_top-bar.scss */
.top-bar-section .dropdown li.title h5 a { color: white; line-height: 22.5px; display: block; }
/* line 368, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_top-bar.scss */
.top-bar-section .dropdown label { padding: 8px 15px 2px; margin-bottom: 0; text-transform: uppercase; color: #555555; font-weight: bold; font-size: 0.625em; }

/* line 380, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_top-bar.scss */
.top-bar-js-breakpoint { width: 940px !important; visibility: hidden; }

/* line 384, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_top-bar.scss */
.js-generated { display: block; }

@media only screen and (min-width: 940px) { /* line 389, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_top-bar.scss */
	.top-bar { background: #111111; *zoom: 1; overflow: visible; }
	/* line 121, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_global.scss */
	.top-bar:before, .top-bar:after { content: " "; display: table; }
	/* line 122, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_global.scss */
	.top-bar:after { clear: both; }
	/* line 394, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_top-bar.scss */
	.top-bar .toggle-topbar { display: none; }
	/* line 396, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_top-bar.scss */
	.top-bar .title-area { float: left; }
	/* line 397, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_top-bar.scss */
	.top-bar .name h1 a { width: auto; }
	/* line 400, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_top-bar.scss */
	.top-bar input, .top-bar .button { line-height: 2em; font-size: 0.875em; height: 2em; padding: 0 10px; position: relative; top: 8px; }
	/* line 409, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_top-bar.scss */
	.top-bar.expanded { background: #111111; }
	/* line 412, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_top-bar.scss */
	.contain-to-grid .top-bar { max-width: 70em; margin: 0 auto; margin-bottom: 0; }
	/* line 418, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_top-bar.scss */
	.top-bar-section { -webkit-transition: none 0 0; -moz-transition: none 0 0; transition: none 0 0; left: 0 !important; }
	/* line 422, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_top-bar.scss */
	.top-bar-section ul { width: auto; height: auto !important; display: inline; }
	/* line 427, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_top-bar.scss */
	.top-bar-section ul li { float: left; }
	/* line 429, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_top-bar.scss */
	.top-bar-section ul li .js-generated { display: none; }
	/* line 435, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_top-bar.scss */
	.top-bar-section li.hover > a:not(.button) { background: black; color: white; }
	/* line 440, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_top-bar.scss */
	.top-bar-section li a:not(.button) { padding: 0 15px; line-height: 45px; background: #111111; }
	/* line 444, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_top-bar.scss */
	.top-bar-section li a:not(.button):hover { background: black; }
	/* line 452, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_top-bar.scss */
	.top-bar-section .has-dropdown > a { padding-right: 35px !important; }
	/* line 454, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_top-bar.scss */
	.top-bar-section .has-dropdown > a:after { content: ""; display: block; width: 0; height: 0; border: inset 5px; border-color: rgba(255, 255, 255, 0.5) transparent transparent transparent; border-top-style: solid; margin-top: -2.5px; top: 22.5px; }
	/* line 463, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_top-bar.scss */
	.top-bar-section .has-dropdown.moved { position: relative; }
	/* line 464, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_top-bar.scss */
	.top-bar-section .has-dropdown.moved > .dropdown { display: none; }
	/* line 468, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_top-bar.scss */
	.top-bar-section .has-dropdown.hover > .dropdown, .top-bar-section .has-dropdown.not-click:hover > .dropdown { display: block; }
	/* line 475, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_top-bar.scss */
	.top-bar-section .has-dropdown .dropdown li.has-dropdown > a:after { border: none; content: "\00bb"; top: 1em; margin-top: -7px; right: 5px; }
	/* line 487, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_top-bar.scss */
	.top-bar-section .dropdown { left: 0; top: auto; background: transparent; min-width: 100%; }
	/* line 494, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_top-bar.scss */
	.top-bar-section .dropdown li a { color: white; line-height: 1; white-space: nowrap; padding: 7px 15px; background: #1e1e1e; }
	/* line 502, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_top-bar.scss */
	.top-bar-section .dropdown li label { white-space: nowrap; background: #1e1e1e; }
	/* line 508, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_top-bar.scss */
	.top-bar-section .dropdown li .dropdown { left: 100%; top: 0; }
	/* line 516, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_top-bar.scss */
	.top-bar-section > ul > .divider, .top-bar-section > ul > [role="separator"] { border-bottom: none; border-top: none; border-right: solid 1px #2b2b2b; border-left: solid 1px black; clear: none; height: 45px; width: 0; }
	/* line 526, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_top-bar.scss */
	.top-bar-section .has-form { background: #111111; padding: 0 15px; height: 45px; }
	/* line 534, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_top-bar.scss */
	.top-bar-section ul.right li .dropdown { left: auto; right: 0; }
	/* line 538, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_top-bar.scss */
	.top-bar-section ul.right li .dropdown li .dropdown { right: 100%; }
	/* line 548, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_top-bar.scss */
	.no-js .top-bar-section ul li:hover > a { background: black; color: white; }
	/* line 554, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_top-bar.scss */
	.no-js .top-bar-section ul li:active > a { background: #090909; color: white; }
	/* line 562, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_top-bar.scss */
	.no-js .top-bar-section .has-dropdown:hover > .dropdown { display: block; } }
@-webkit-keyframes rotate { /* line 43, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_orbit.scss */
	from { -webkit-transform: rotate(0deg); }
	/* line 44, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_orbit.scss */
	to { -webkit-transform: rotate(360deg); } }

@-moz-keyframes rotate { /* line 47, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_orbit.scss */
	from { -moz-transform: rotate(0deg); }
	/* line 48, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_orbit.scss */
	to { -moz-transform: rotate(360deg); } }

@-o-keyframes rotate { /* line 51, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_orbit.scss */
	from { -o-transform: rotate(0deg); }
	/* line 52, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_orbit.scss */
	to { -o-transform: rotate(360deg); } }

@keyframes rotate { /* line 56, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_orbit.scss */
	from { transform: rotate(0deg); }
	/* line 57, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_orbit.scss */
	to { transform: rotate(360deg); } }

/* Orbit Graceful Loading */
/* line 61, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_orbit.scss */
.slideshow-wrapper { position: relative; }
/* line 64, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_orbit.scss */
.slideshow-wrapper ul { list-style-type: none; margin: 0; }
/* line 71, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_orbit.scss */
.slideshow-wrapper ul li, .slideshow-wrapper ul li .orbit-caption { display: none; }
/* line 74, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_orbit.scss */
.slideshow-wrapper ul li:first-child { display: block; }
/* line 77, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_orbit.scss */
.slideshow-wrapper .orbit-container { background-color: transparent; }
/* line 80, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_orbit.scss */
.slideshow-wrapper .orbit-container li { display: block; }
/* line 82, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_orbit.scss */
.slideshow-wrapper .orbit-container li .orbit-caption { display: block; }

/* line 88, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_orbit.scss */
.preloader { display: block; width: 40px; height: 40px; position: absolute; top: 50%; left: 50%; margin-top: -20px; margin-left: -20px; border: solid 3px; border-color: #555 #fff; -webkit-border-radius: 1000px; border-radius: 1000px; -webkit-animation-name: rotate; -webkit-animation-duration: 1.5s; -webkit-animation-iteration-count: infinite; -webkit-animation-timing-function: linear; -moz-animation-name: rotate; -moz-animation-duration: 1.5s; -moz-animation-iteration-count: infinite; -moz-animation-timing-function: linear; -o-animation-name: rotate; -o-animation-duration: 1.5s; -o-animation-iteration-count: infinite; -o-animation-timing-function: linear; animation-name: rotate; animation-duration: 1.5s; animation-iteration-count: infinite; animation-timing-function: linear; }

/* line 120, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_orbit.scss */
.orbit-container { overflow: hidden; width: 100%; position: relative; background: whitesmoke; }
/* line 126, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_orbit.scss */
.orbit-container .orbit-slides-container { list-style: none; margin: 0; padding: 0; position: relative; }
/* line 132, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_orbit.scss */
.orbit-container .orbit-slides-container img { display: block; max-width: 100%; }
/* line 134, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_orbit.scss */
.orbit-container .orbit-slides-container > * { position: absolute; top: 0; width: 100%; margin-left: 100%; }
/* line 145, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_orbit.scss */
.orbit-container .orbit-slides-container > *:first-child { margin-left: 0%; }
/* line 154, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_orbit.scss */
.orbit-container .orbit-slides-container > * .orbit-caption { position: absolute; bottom: 0; background-color: rgba(0, 0, 0, 0.6); color: white; width: 100%; padding: 10px 14px; font-size: 0.875em; }
/* line 171, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_orbit.scss */
.orbit-container .orbit-slide-number { position: absolute; top: 10px; left: 10px; font-size: 12px; color: white; background: rgba(0, 0, 0, 0); z-index: 10; }
/* line 176, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_orbit.scss */
.orbit-container .orbit-slide-number span { font-weight: 700; padding: 0.3125em; }
/* line 182, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_orbit.scss */
.orbit-container .orbit-timer { position: absolute; top: 10px; right: 10px; height: 6px; width: 100px; z-index: 10; }
/* line 189, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_orbit.scss */
.orbit-container .orbit-timer .orbit-progress { height: 100%; background-color: rgba(0, 0, 0, 0.6); display: block; width: 0%; }
/* line 199, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_orbit.scss */
.orbit-container .orbit-timer > span { display: none; position: absolute; top: 10px; right: 0; width: 11px; height: 14px; border: solid 4px #000; border-top: none; border-bottom: none; }
/* line 213, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_orbit.scss */
.orbit-container .orbit-timer.paused > span { right: -6px; top: 9px; width: 11px; height: 14px; border: inset 8px; border-right-style: solid; border-color: transparent transparent transparent #000; }
/* line 225, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_orbit.scss */
.orbit-container:hover .orbit-timer > span { display: block; }
/* line 229, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_orbit.scss */
.orbit-container .orbit-prev, .orbit-container .orbit-next { position: absolute; top: 50%; margin-top: -25px; background-color: rgba(0, 0, 0, 0.6); width: 50px; height: 60px; line-height: 50px; color: white; text-indent: -9999px !important; z-index: 10; }
/* line 241, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_orbit.scss */
.orbit-container .orbit-prev:hover, .orbit-container .orbit-next:hover { background-color: rgba(0, 0, 0, 0.6); }
/* line 245, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_orbit.scss */
.orbit-container .orbit-prev > span, .orbit-container .orbit-next > span { position: absolute; top: 50%; margin-top: -16px; display: block; width: 0; height: 0; border: inset 16px; }
/* line 255, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_orbit.scss */
.orbit-container .orbit-prev { left: 0; }
/* line 256, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_orbit.scss */
.orbit-container .orbit-prev > span { border-right-style: solid; border-color: transparent; border-right-color: white; }
/* line 261, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_orbit.scss */
.orbit-container .orbit-prev:hover > span { border-right-color: #cccccc; }
/* line 265, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_orbit.scss */
.orbit-container .orbit-next { right: 0; }
/* line 266, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_orbit.scss */
.orbit-container .orbit-next > span { border-color: transparent; border-left-style: solid; border-left-color: white; left: 50%; margin-left: -8px; }
/* line 273, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_orbit.scss */
.orbit-container .orbit-next:hover > span { border-left-color: #cccccc; }

/* line 279, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_orbit.scss */
.orbit-bullets { margin: 0 auto 30px auto; overflow: hidden; position: relative; top: 10px; }
/* line 285, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_orbit.scss */
.orbit-bullets li { display: block; width: 0.75em; height: 0.75em; background: #999999; float: left; margin-right: 6px; border: solid 1px #555555; -webkit-border-radius: 1000px; border-radius: 1000px; }
/* line 295, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_orbit.scss */
.orbit-bullets li.active { background: #555555; }
/* line 299, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_orbit.scss */
.orbit-bullets li:last-child { margin-right: 0; }

/* line 306, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_orbit.scss */
.touch .orbit-container .orbit-prev, .touch .orbit-container .orbit-next { display: none; }
/* line 309, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_orbit.scss */
.touch .orbit-bullets { display: none; }

@media only screen and (min-width: 768px) { /* line 318, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_orbit.scss */
	.touch .orbit-container .orbit-prev, .touch .orbit-container .orbit-next { display: inherit; }
	/* line 321, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_orbit.scss */
	.touch .orbit-bullets { display: block; } }
@media only screen and (max-width: 768px) { /* line 328, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_orbit.scss */
	.orbit-stack-on-small .orbit-slides-container { height: auto !important; }
	/* line 329, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_orbit.scss */
	.orbit-stack-on-small .orbit-slides-container > * { position: relative; margin-left: 0% !important; }
	/* line 336, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_orbit.scss */
	.orbit-stack-on-small .orbit-timer, .orbit-stack-on-small .orbit-next, .orbit-stack-on-small .orbit-prev, .orbit-stack-on-small .orbit-bullets { display: none; } }
/* line 109, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_reveal.scss */
.reveal-modal-bg { position: fixed; height: 100%; width: 100%; background: black; background: rgba(0, 0, 0, 0.45); z-index: 98; display: none; top: 0; left: 0; }

/* line 111, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_reveal.scss */
.reveal-modal { visibility: hidden; display: none; position: absolute; left: 50%; z-index: 99; height: auto; margin-left: -40%; width: 80%; background-color: white; padding: 1.25em; border: solid 1px #666666; -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.4); box-shadow: 0 0 10px rgba(0, 0, 0, 0.4); top: 50px; }
/* line 62, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_reveal.scss */
.reveal-modal .column, .reveal-modal .columns { min-width: 0; }
/* line 65, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_reveal.scss */
.reveal-modal > :first-child { margin-top: 0; }
/* line 66, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_reveal.scss */
.reveal-modal > :last-child { margin-bottom: 0; }
/* line 115, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_reveal.scss */
.reveal-modal .close-reveal-modal { font-size: 1.375em; line-height: 1; position: absolute; top: 0.5em; right: 0.6875em; color: #aaaaaa; font-weight: bold; cursor: pointer; }

@media only screen and (min-width: 768px) { /* line 121, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_reveal.scss */
	.reveal-modal { padding: 1.875em; top: 6.25em; }
	/* line 124, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_reveal.scss */
	.reveal-modal.tiny { margin-left: -15%; width: 30%; }
	/* line 125, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_reveal.scss */
	.reveal-modal.small { margin-left: -20%; width: 40%; }
	/* line 126, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_reveal.scss */
	.reveal-modal.medium { margin-left: -30%; width: 60%; }
	/* line 127, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_reveal.scss */
	.reveal-modal.large { margin-left: -35%; width: 70%; }
	/* line 128, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_reveal.scss */
	.reveal-modal.xlarge { margin-left: -47.5%; width: 95%; } }
@media print { /* line 134, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_reveal.scss */
	.reveal-modal { background: #fff !important; } }
/* Foundation Joyride */
/* line 41, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_joyride.scss */
.joyride-list { display: none; }

/* Default styles for the container */
/* line 44, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_joyride.scss */
.joyride-tip-guide { display: none; position: absolute; background: black; color: white; z-index: 101; top: 0; left: 2.5%; font-family: inherit; font-weight: normal; width: 95%; }

/* line 57, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_joyride.scss */
.lt-ie9 .joyride-tip-guide { max-width: 800px; left: 50%; margin-left: -400px; }

/* line 63, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_joyride.scss */
.joyride-content-wrapper { width: 100%; padding: 1.125em 1.25em 1.5em; }
/* line 68, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_joyride.scss */
.joyride-content-wrapper .button { margin-bottom: 0 !important; }

/* Add a little css triangle pip, older browser just miss out on the fanciness of it */
/* line 73, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_joyride.scss */
.joyride-tip-guide .joyride-nub { display: block; position: absolute; left: 22px; width: 0; height: 0; border: inset 14px; }
/* line 81, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_joyride.scss */
.joyride-tip-guide .joyride-nub.top { border-top-style: solid; border-color: black; border-top-color: transparent !important; border-left-color: transparent !important; border-right-color: transparent !important; top: -28px; }
/* line 89, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_joyride.scss */
.joyride-tip-guide .joyride-nub.bottom { border-bottom-style: solid; border-color: black !important; border-bottom-color: transparent !important; border-left-color: transparent !important; border-right-color: transparent !important; bottom: -28px; }
/* line 98, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_joyride.scss */
.joyride-tip-guide .joyride-nub.right { right: -28px; }
/* line 99, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_joyride.scss */
.joyride-tip-guide .joyride-nub.left { left: -28px; }

/* Typography */
/* line 109, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_joyride.scss */
.joyride-tip-guide h1, .joyride-tip-guide h2, .joyride-tip-guide h3, .joyride-tip-guide h4, .joyride-tip-guide h5, .joyride-tip-guide h6 { line-height: 1.25; margin: 0; font-weight: bold; color: white; }

/* line 115, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_joyride.scss */
.joyride-tip-guide p { margin: 0 0 1.125em 0; font-size: 0.875em; line-height: 1.3; }

/* line 121, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_joyride.scss */
.joyride-timer-indicator-wrap { width: 50px; height: 3px; border: solid 1px #555555; position: absolute; right: 1.0625em; bottom: 1em; }

/* line 129, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_joyride.scss */
.joyride-timer-indicator { display: block; width: 0; height: inherit; background: #666666; }

/* line 136, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_joyride.scss */
.joyride-close-tip { position: absolute; right: 12px; top: 10px; color: #777777 !important; text-decoration: none; font-size: 30px; font-weight: normal; line-height: .5 !important; }
/* line 147, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_joyride.scss */
.joyride-close-tip:hover, .joyride-close-tip:focus { color: #eee !important; }

/* line 150, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_joyride.scss */
.joyride-modal-bg { position: fixed; height: 100%; width: 100%; background: transparent; background: rgba(0, 0, 0, 0.5); z-index: 100; display: none; top: 0; left: 0; cursor: pointer; }

/* line 163, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_joyride.scss */
.joyride-expose-wrapper { background-color: #ffffff; position: absolute; border-radius: 3px; z-index: 102; -moz-box-shadow: 0 0 30px #ffffff; -webkit-box-shadow: 0 0 15px #ffffff; box-shadow: 0 0 15px #ffffff; }

/* line 175, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_joyride.scss */
.joyride-expose-cover { background: transparent; border-radius: 3px; position: absolute; z-index: 9999; top: 0; left: 0; }

/* Styles for screens that are atleast 768px; */
@media only screen and (min-width: 768px) { /* line 187, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_joyride.scss */
	.joyride-tip-guide { width: 300px; left: inherit; }
	/* line 189, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_joyride.scss */
	.joyride-tip-guide .joyride-nub.bottom { border-color: black !important; border-bottom-color: transparent !important; border-left-color: transparent !important; border-right-color: transparent !important; bottom: -28px; }
	/* line 196, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_joyride.scss */
	.joyride-tip-guide .joyride-nub.right { border-color: black !important; border-top-color: transparent !important; border-right-color: transparent !important; border-bottom-color: transparent !important; top: 22px; left: auto; right: -28px; }
	/* line 204, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_joyride.scss */
	.joyride-tip-guide .joyride-nub.left { border-color: black !important; border-top-color: transparent !important; border-left-color: transparent !important; border-bottom-color: transparent !important; top: 22px; left: -28px; right: auto; } }
/* Clearing Styles */
/* line 36, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_clearing.scss */
[data-clearing] { *zoom: 1; margin-bottom: 0; margin-left: 0; list-style: none; }
/* line 121, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_global.scss */
[data-clearing]:before, [data-clearing]:after { content: " "; display: table; }
/* line 122, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_global.scss */
[data-clearing]:after { clear: both; }
/* line 42, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_clearing.scss */
[data-clearing] li { float: left; margin-right: 10px; }

/* line 48, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_clearing.scss */
.clearing-blackout { background: #111111; position: fixed; width: 100%; height: 100%; top: 0; left: 0; z-index: 998; }
/* line 57, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_clearing.scss */
.clearing-blackout .clearing-close { display: block; }

/* line 60, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_clearing.scss */
.clearing-container { position: relative; z-index: 998; height: 100%; overflow: hidden; margin: 0; }

/* line 68, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_clearing.scss */
.visible-img { height: 95%; position: relative; }
/* line 72, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_clearing.scss */
.visible-img img { position: absolute; left: 50%; top: 50%; margin-left: -50%; max-height: 100%; max-width: 100%; }

/* line 82, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_clearing.scss */
.clearing-caption { color: white; line-height: 1.3; margin-bottom: 0; text-align: center; bottom: 0; background: #111111; width: 100%; padding: 10px 30px; position: absolute; left: 0; }

/* line 95, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_clearing.scss */
.clearing-close { z-index: 999; padding-left: 20px; padding-top: 10px; font-size: 40px; line-height: 1; color: white; display: none; }
/* line 105, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_clearing.scss */
.clearing-close:hover, .clearing-close:focus { color: #ccc; }

/* line 108, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_clearing.scss */
.clearing-assembled .clearing-container { height: 100%; }
/* line 109, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_clearing.scss */
.clearing-assembled .clearing-container .carousel > ul { display: none; }

/* line 113, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_clearing.scss */
.clearing-feature li { display: none; }
/* line 115, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_clearing.scss */
.clearing-feature li.clearing-featured-img { display: block; }

@media only screen and (min-width: 768px) { /* line 123, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_clearing.scss */
	.clearing-main-prev, .clearing-main-next { position: absolute; height: 100%; width: 40px; top: 0; }
	/* line 128, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_clearing.scss */
	.clearing-main-prev > span, .clearing-main-next > span { position: absolute; top: 50%; display: block; width: 0; height: 0; border: solid 16px; }
	/* line 137, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_clearing.scss */
	.clearing-main-prev { left: 0; }
	/* line 139, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_clearing.scss */
	.clearing-main-prev > span { left: 5px; border-color: transparent; border-right-color: white; }
	/* line 145, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_clearing.scss */
	.clearing-main-next { right: 0; }
	/* line 147, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_clearing.scss */
	.clearing-main-next > span { border-color: transparent; border-left-color: white; }
	/* line 154, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_clearing.scss */
	.clearing-main-prev.disabled, .clearing-main-next.disabled { opacity: 0.5; }
	/* line 158, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_clearing.scss */
	.clearing-assembled .clearing-container .carousel { background: #111111; height: 150px; margin-top: 5px; }
	/* line 163, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_clearing.scss */
	.clearing-assembled .clearing-container .carousel > ul { display: block; z-index: 999; width: 200%; height: 100%; margin-left: 0; position: relative; left: 0; }
	/* line 172, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_clearing.scss */
	.clearing-assembled .clearing-container .carousel > ul li { display: block; width: 175px; height: inherit; padding: 0; float: left; overflow: hidden; margin-right: 1px; position: relative; cursor: pointer; opacity: 0.4; }
	/* line 185, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_clearing.scss */
	.clearing-assembled .clearing-container .carousel > ul li.fix-height img { min-height: 100%; height: 100%; max-width: none; }
	/* line 192, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_clearing.scss */
	.clearing-assembled .clearing-container .carousel > ul li a.th { border: none; -webkit-box-shadow: none; box-shadow: none; display: block; }
	/* line 201, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_clearing.scss */
	.clearing-assembled .clearing-container .carousel > ul li img { cursor: pointer !important; min-width: 100% !important; }
	/* line 206, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_clearing.scss */
	.clearing-assembled .clearing-container .carousel > ul li.visible { opacity: 1; }
	/* line 211, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_clearing.scss */
	.clearing-assembled .clearing-container .visible-img { background: #111111; overflow: hidden; height: 75%; }
	/* line 218, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_clearing.scss */
	.clearing-close { position: absolute; top: 10px; right: 20px; padding-left: 0; padding-top: 0; } }
/* Foundation Alerts */
/* line 94, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_alert-boxes.scss */
.alert-box { border-style: solid; border-width: 1px; display: block; font-weight: bold; margin-bottom: 1.25em; position: relative; padding: 0.6875em 1.3125em 0.75em 0.6875em; font-size: 0.875em; background-color: #0084c7; border-color: #006294; color: white; }
/* line 97, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_alert-boxes.scss */
.alert-box .close { font-size: 1.375em; padding: 5px 4px 4px; line-height: 0; position: absolute; top: 0.4375em; right: 0.3125em; color: #333333; opacity: 0.3; }
/* line 81, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_alert-boxes.scss */
.alert-box .close:hover, .alert-box .close:focus { opacity: 0.5; }
/* line 99, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_alert-boxes.scss */
.alert-box.radius { -webkit-border-radius: 1px; border-radius: 1px; }
/* line 100, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_alert-boxes.scss */
.alert-box.round { -webkit-border-radius: 1000px; border-radius: 1000px; }
/* line 102, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_alert-boxes.scss */
.alert-box.success { background-color: #5da423; border-color: #457a1a; color: white; }
/* line 103, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_alert-boxes.scss */
.alert-box.alert { background-color: #c60f13; border-color: #970b0e; color: white; }
/* line 104, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_alert-boxes.scss */
.alert-box.secondary { background-color: #d0ddf1; border-color: #a9c1e5; color: #213f6e; }

/* Breadcrumbs */
/* line 115, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_breadcrumbs.scss */
.breadcrumbs { display: block; padding: 0.5625em 0.875em 0.5625em; overflow: hidden; margin-left: 0; list-style: none; border-style: solid; border-width: 1px; background-color: #e4ebf7; border-color: #bccfeb; -webkit-border-radius: 1px; border-radius: 1px; }
/* line 119, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_breadcrumbs.scss */
.breadcrumbs > * { margin: 0; float: left; font-size: 0.6875em; text-transform: uppercase; }
/* line 60, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_breadcrumbs.scss */
.breadcrumbs > *:hover a, .breadcrumbs > *:focus a { text-decoration: underline; }
/* line 63, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_breadcrumbs.scss */
.breadcrumbs > * a, .breadcrumbs > * span { text-transform: uppercase; color: #0084c7; }
/* line 69, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_breadcrumbs.scss */
.breadcrumbs > *.current { cursor: "default"; color: #333333; }
/* line 72, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_breadcrumbs.scss */
.breadcrumbs > *.current a { cursor: "default"; color: #333333; }
/* line 78, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_breadcrumbs.scss */
.breadcrumbs > *.current:hover, .breadcrumbs > *.current:hover a, .breadcrumbs > *.current:focus, .breadcrumbs > *.current:focus a { text-decoration: none; }
/* line 82, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_breadcrumbs.scss */
.breadcrumbs > *.unavailable { color: #999999; }
/* line 84, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_breadcrumbs.scss */
.breadcrumbs > *.unavailable a { color: #999999; }
/* line 89, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_breadcrumbs.scss */
.breadcrumbs > *.unavailable:hover, .breadcrumbs > *.unavailable:hover a, .breadcrumbs > *.unavailable:focus, .breadcrumbs > *.unavailable a:focus { text-decoration: none; color: #999999; cursor: "default"; }
/* line 96, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_breadcrumbs.scss */
.breadcrumbs > *:before { content: "/"; color: #aaaaaa; margin: 0 0.75em; position: relative; top: 1px; }
/* line 104, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_breadcrumbs.scss */
.breadcrumbs > *:first-child:before { content: " "; margin: 0; }

/* Custom Checkbox and Radio Inputs */
/* line 67, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_custom-forms.scss */
form.custom .hidden-field { margin-left: -99999px; position: absolute; visibility: hidden; }
/* line 73, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_custom-forms.scss */
form.custom .custom { display: inline-block; width: 16px; height: 16px; position: relative; top: -1px; /* fix centering issue */ vertical-align: middle; border: solid 1px #cccccc; background: white; }
/* line 83, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_custom-forms.scss */
form.custom .custom.checkbox { -webkit-border-radius: 0; border-radius: 0; padding: 0; }
/* line 87, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_custom-forms.scss */
form.custom .custom.radio { -webkit-border-radius: 1000px; border-radius: 1000px; padding: 3px; }
/* line 92, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_custom-forms.scss */
form.custom .custom.checkbox:before { content: ""; display: block; font-size: 16px; color: white; }
/* line 101, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_custom-forms.scss */
form.custom .custom.radio.checked:before { content: ""; display: block; width: 8px; height: 8px; -webkit-border-radius: 1000px; border-radius: 1000px; background: #222222; position: relative; }
/* line 113, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_custom-forms.scss */
form.custom .custom.checkbox.checked:before { content: "\00d7"; color: #222222; position: absolute; top: -50%; left: 50%; margin-top: 4px; margin-left: -5px; }

/* Custom Select Options and Dropdowns */
/* line 127, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_custom-forms.scss */
form.custom { /* Custom input, disabled */ }
/* line 128, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_custom-forms.scss */
form.custom .custom.dropdown { display: block; position: relative; top: 0; height: 2.3125em; margin-bottom: 1.25em; margin-top: 0; padding: 0; width: 100%; background: white; background: -moz-linear-gradient(top, white 0%, #f3f3f3 100%); background: -webkit-linear-gradient(top, white 0%, #f3f3f3 100%); -webkit-box-shadow: none; background: linear-gradient(to bottom, #ffffff 0%, #f3f3f3 100%); box-shadow: none; font-size: 0.875em; vertical-align: top; }
/* line 148, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_custom-forms.scss */
form.custom .custom.dropdown ul { overflow-y: auto; max-height: 200px; }
/* line 153, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_custom-forms.scss */
form.custom .custom.dropdown .current { cursor: default; white-space: nowrap; line-height: 2.25em; color: rgba(0, 0, 0, 0.75); text-decoration: none; overflow: hidden; display: block; margin-left: 0.5em; margin-right: 2.3125em; }
/* line 165, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_custom-forms.scss */
form.custom .custom.dropdown .selector { cursor: default; position: absolute; width: 2.5em; height: 2.3125em; display: block; right: 0; top: 0; }
/* line 173, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_custom-forms.scss */
form.custom .custom.dropdown .selector:after { content: ""; display: block; content: ""; display: block; width: 0; height: 0; border: inset 5px; border-color: #aaaaaa transparent transparent transparent; border-top-style: solid; position: absolute; left: 0.9375em; top: 50%; margin-top: -3px; }
/* line 186, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_custom-forms.scss */
form.custom .custom.dropdown:hover a.selector:after, form.custom .custom.dropdown.open a.selector:after { content: ""; display: block; width: 0; height: 0; border: inset 5px; border-color: #222222 transparent transparent transparent; border-top-style: solid; }
/* line 190, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_custom-forms.scss */
form.custom .custom.dropdown .disabled { color: #888888; }
/* line 192, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_custom-forms.scss */
form.custom .custom.dropdown .disabled:hover { background: transparent; color: #888888; }
/* line 195, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_custom-forms.scss */
form.custom .custom.dropdown .disabled:hover:after { display: none; }
/* line 199, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_custom-forms.scss */
form.custom .custom.dropdown.open ul { display: block; z-index: 10; min-width: 100%; -moz-box-sizing: content-box; -webkit-box-sizing: content-box; box-sizing: content-box; }
/* line 206, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_custom-forms.scss */
form.custom .custom.dropdown.small { max-width: 134px; }
/* line 207, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_custom-forms.scss */
form.custom .custom.dropdown.medium { max-width: 254px; }
/* line 208, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_custom-forms.scss */
form.custom .custom.dropdown.large { max-width: 434px; }
/* line 209, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_custom-forms.scss */
form.custom .custom.dropdown.expand { width: 100% !important; }
/* line 211, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_custom-forms.scss */
form.custom .custom.dropdown.open.small ul { min-width: 134px; -moz-box-sizing: border-box; -webkit-box-sizing: border-box; box-sizing: border-box; }
/* line 212, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_custom-forms.scss */
form.custom .custom.dropdown.open.medium ul { min-width: 254px; -moz-box-sizing: border-box; -webkit-box-sizing: border-box; box-sizing: border-box; }
/* line 213, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_custom-forms.scss */
form.custom .custom.dropdown.open.large ul { min-width: 434px; -moz-box-sizing: border-box; -webkit-box-sizing: border-box; box-sizing: border-box; }
/* line 216, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_custom-forms.scss */
form.custom .error .custom.dropdown { border-color: #c60f13; background-color: rgba(198, 15, 19, 0.1); background: rgba(198, 15, 19, 0.1); margin-bottom: 0; }
/* line 236, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_forms.scss */
form.custom .error .custom.dropdown:focus { background: #fafafa; border-color: #999999; }
/* line 222, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_custom-forms.scss */
form.custom .error .custom.dropdown + small.error { margin-top: 0; }
/* line 226, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_custom-forms.scss */
form.custom .custom.dropdown ul { position: absolute; width: auto; display: none; margin: 0; left: -1px; top: auto; -webkit-box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.1); box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.1); margin: 0; padding: 0; background: white; border: solid 1px #cccccc; font-size: 16; }
/* line 243, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_custom-forms.scss */
form.custom .custom.dropdown ul li { color: #555555; font-size: 0.875em; cursor: "default"; padding-top: 0.25em; padding-bottom: 0.25em; padding-left: 0.375em; padding-right: 2.375em; min-height: 1.5em; line-height: 1.5em; margin: 0; white-space: nowrap; list-style: none; }
/* line 257, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_custom-forms.scss */
form.custom .custom.dropdown ul li.selected { background: #eeeeee; color: black; }
/* line 261, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_custom-forms.scss */
form.custom .custom.dropdown ul li:hover { background-color: #e4e4e4; color: black; }
/* line 265, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_custom-forms.scss */
form.custom .custom.dropdown ul li.selected:hover { background: #eeeeee; cursor: "default"; color: black; }
/* line 272, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_custom-forms.scss */
form.custom .custom.dropdown ul.show { display: block; }
/* line 276, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_custom-forms.scss */
form.custom .custom.disabled { background: #dddddd; }

/* Keystroke Characters */
/* line 52, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_keystrokes.scss */
.keystroke, kbd { background-color: #ededed; border-color: #dbdbdb; color: #222222; border-style: solid; border-width: 1px; margin: 0; font-family: "Consolas", "Menlo", "Courier", monospace; font-size: 0.875em; padding: 0.125em 0.25em 0; -webkit-border-radius: 1px; border-radius: 1px; }

/* Labels */
/* line 71, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_labels.scss */
.label { font-weight: bold; text-align: center; text-decoration: none; line-height: 1; white-space: nowrap; display: inline-block; position: relative; padding: 0.1875em 0.625em 0.25em; font-size: 0.875em; background-color: #0084c7; color: white; }
/* line 77, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_labels.scss */
.label.radius { -webkit-border-radius: 1px; border-radius: 1px; }
/* line 78, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_labels.scss */
.label.round { -webkit-border-radius: 1000px; border-radius: 1000px; }
/* line 80, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_labels.scss */
.label.alert { background-color: #c60f13; color: white; }
/* line 81, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_labels.scss */
.label.success { background-color: #5da423; color: white; }
/* line 82, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_labels.scss */
.label.secondary { background-color: #d0ddf1; color: #333333; }

/* Inline Lists */
/* line 49, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_inline-lists.scss */
.inline-list { margin: 0 auto 1.0625em auto; margin-left: -1.375em; margin-right: 0; padding: 0; list-style: none; overflow: hidden; }
/* line 36, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_inline-lists.scss */
.inline-list > li { list-style: none; float: left; margin-left: 1.375em; display: block; }
/* line 41, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_inline-lists.scss */
.inline-list > li > * { display: block; }

/* Default Pagination */
/* line 128, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_pagination.scss */
ul.pagination { display: block; height: 1.5em; margin-left: -0.3125em; }
/* line 87, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_pagination.scss */
ul.pagination li { height: 1.5em; color: #222222; font-size: 0.875em; margin-left: 0.3125em; }
/* line 93, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_pagination.scss */
ul.pagination li a { display: block; padding: 0.0625em 0.4375em 0.0625em; color: #999999; }
/* line 100, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_pagination.scss */
ul.pagination li:hover a, ul.pagination li a:focus { background: #e6e6e6; }
/* line 45, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_pagination.scss */
ul.pagination li.unavailable a { cursor: default; color: #999999; }
/* line 50, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_pagination.scss */
ul.pagination li.unavailable:hover a, ul.pagination li.unavailable a:focus { background: transparent; }
/* line 57, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_pagination.scss */
ul.pagination li.current a { background: #0084c7; color: white; font-weight: bold; cursor: default; }
/* line 64, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_pagination.scss */
ul.pagination li.current a:hover, ul.pagination li.current a:focus { background: #0084c7; }
/* line 110, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_pagination.scss */
ul.pagination li { float: left; display: block; }

/* Pagination centred wrapper */
/* line 133, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_pagination.scss */
.pagination-centered { text-align: center; }
/* line 110, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_pagination.scss */
.pagination-centered ul.pagination li { float: none; display: inline-block; }

/* Panels */
/* line 66, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_panels.scss */
.panel { border-style: solid; border-width: 1px; border-color: #d9d9d9; margin-bottom: 1.25em; padding: 1.25em; background: #f2f2f2; }
/* line 44, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_panels.scss */
.panel > :first-child { margin-top: 0; }
/* line 45, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_panels.scss */
.panel > :last-child { margin-bottom: 0; }
/* line 50, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_panels.scss */
.panel h1, .panel h2, .panel h3, .panel h4, .panel h5, .panel h6, .panel p { color: #333333; }
/* line 54, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_panels.scss */
.panel h1, .panel h2, .panel h3, .panel h4, .panel h5, .panel h6 { line-height: 1; margin-bottom: 0.625em; }
/* line 56, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_panels.scss */
.panel h1.subheader, .panel h2.subheader, .panel h3.subheader, .panel h4.subheader, .panel h5.subheader, .panel h6.subheader { line-height: 1.4; }
/* line 68, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_panels.scss */
.panel.callout { border-style: solid; border-width: 1px; border-color: #006294; margin-bottom: 1.25em; padding: 1.25em; background: #0084c7; -webkit-box-shadow: 0 1px 0 rgba(255, 255, 255, 0.5) inset; box-shadow: 0 1px 0 rgba(255, 255, 255, 0.5) inset; }
/* line 44, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_panels.scss */
.panel.callout > :first-child { margin-top: 0; }
/* line 45, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_panels.scss */
.panel.callout > :last-child { margin-bottom: 0; }
/* line 51, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_panels.scss */
.panel.callout h1, .panel.callout h2, .panel.callout h3, .panel.callout h4, .panel.callout h5, .panel.callout h6, .panel.callout p { color: white; }
/* line 54, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_panels.scss */
.panel.callout h1, .panel.callout h2, .panel.callout h3, .panel.callout h4, .panel.callout h5, .panel.callout h6 { line-height: 1; margin-bottom: 0.625em; }
/* line 56, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_panels.scss */
.panel.callout h1.subheader, .panel.callout h2.subheader, .panel.callout h3.subheader, .panel.callout h4.subheader, .panel.callout h5.subheader, .panel.callout h6.subheader { line-height: 1.4; }
/* line 71, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_panels.scss */
.panel.callout a { color: white; }
/* line 76, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_panels.scss */
.panel.radius { -webkit-border-radius: 1px; border-radius: 1px; }

/* Pricing Tables */
/* line 121, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_pricing-tables.scss */
.pricing-table { border: solid 1px #dddddd; margin-left: 0; margin-bottom: 1.25em; }
/* line 61, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_pricing-tables.scss */
.pricing-table * { list-style: none; line-height: 1; }
/* line 124, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_pricing-tables.scss */
.pricing-table .title { background-color: #dddddd; padding: 0.9375em 1.25em; text-align: center; color: #333333; font-weight: bold; font-size: 1em; }
/* line 125, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_pricing-tables.scss */
.pricing-table .price { background-color: #eeeeee; padding: 0.9375em 1.25em; text-align: center; color: #333333; font-weight: normal; font-size: 1.25em; }
/* line 126, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_pricing-tables.scss */
.pricing-table .description { background-color: white; padding: 0.9375em; text-align: center; color: #777777; font-size: 0.75em; font-weight: normal; line-height: 1.4; border-bottom: dotted 1px #dddddd; }
/* line 127, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_pricing-tables.scss */
.pricing-table .bullet-item { background-color: white; padding: 0.9375em; text-align: center; color: #333333; font-size: 0.875em; font-weight: normal; border-bottom: dotted 1px #dddddd; }
/* line 128, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_pricing-tables.scss */
.pricing-table .cta-button { background-color: whitesmoke; text-align: center; padding: 1.25em 1.25em 0; }

/* Progress Bar */
/* line 50, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_progress-bars.scss */
.progress { background-color: transparent; height: 1.5625em; border: 1px solid #cccccc; padding: 0.125em; margin-bottom: 0.625em; }
/* line 54, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_progress-bars.scss */
.progress .meter { background: #0084c7; height: 100%; display: block; }
/* line 57, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_progress-bars.scss */
.progress.secondary .meter { background: #d0ddf1; height: 100%; display: block; }
/* line 58, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_progress-bars.scss */
.progress.success .meter { background: #5da423; height: 100%; display: block; }
/* line 59, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_progress-bars.scss */
.progress.alert .meter { background: #c60f13; height: 100%; display: block; }
/* line 61, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_progress-bars.scss */
.progress.radius { -webkit-border-radius: 1px; border-radius: 1px; }
/* line 62, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_progress-bars.scss */
.progress.radius .meter { -webkit-border-radius: 0px; border-radius: 0px; }
/* line 65, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_progress-bars.scss */
.progress.round { -webkit-border-radius: 1000px; border-radius: 1000px; }
/* line 66, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_progress-bars.scss */
.progress.round .meter { -webkit-border-radius: 999px; border-radius: 999px; }

/* Side Nav */
/* line 67, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_side-nav.scss */
.side-nav { display: block; margin: 0; padding: 0.875em 0; list-style-type: none; list-style-position: inside; }
/* line 39, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_side-nav.scss */
.side-nav li { margin: 0 0 0.4375em 0; font-size: 0.875em; }
/* line 43, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_side-nav.scss */
.side-nav li a { display: block; color: #0084c7; }
/* line 48, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_side-nav.scss */
.side-nav li.active > a:first-child { color: #4d4d4d; font-weight: bold; }
/* line 53, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_side-nav.scss */
.side-nav li.divider { border-top: 1px solid; height: 0; padding: 0; list-style: none; border-top-color: #e6e6e6; }

/* Side Nav */
/* line 82, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_sub-nav.scss */
.sub-nav { display: block; width: auto; overflow: hidden; margin: -0.25em 0 1.125em; padding-top: 0.25em; margin-right: 0; margin-left: -0.5625em; }
/* line 42, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_sub-nav.scss */
.sub-nav dt, .sub-nav dd, .sub-nav li { float: left; display: inline; margin-left: 0.5625em; margin-bottom: 0.625em; font-weight: normal; font-size: 0.875em; }
/* line 50, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_sub-nav.scss */
.sub-nav dt a, .sub-nav dd a, .sub-nav li a { color: #999999; text-decoration: none; }
/* line 54, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_sub-nav.scss */
.sub-nav dt.active a, .sub-nav dd.active a, .sub-nav li.active a { -webkit-border-radius: 1000px; border-radius: 1000px; font-weight: bold; background: #0084c7; padding: 0.1875em 0.5625em; cursor: default; color: white; }

/* Foundation Switches */
@media only screen { /* line 239, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_switch.scss */
	div.switch { position: relative; padding: 0; display: block; overflow: hidden; border-style: solid; border-width: 1px; margin-bottom: 1.25em; height: 2.25em; background: white; border-color: #cccccc; }
	/* line 58, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_switch.scss */
	div.switch label { position: relative; left: 0; z-index: 2; float: left; width: 50%; height: 100%; margin: 0; font-weight: bold; text-align: left; -webkit-transition: all 0.1s ease-out; -moz-transition: all 0.1s ease-out; transition: all 0.1s ease-out; }
	/* line 75, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_switch.scss */
	div.switch input { position: absolute; z-index: 3; opacity: 0; width: 100%; height: 100%; -moz-appearance: none; }
	/* line 85, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_switch.scss */
	div.switch input:hover, div.switch input:focus { cursor: pointer; }
	/* line 91, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_switch.scss */
	div.switch span:last-child { position: absolute; top: -1px; left: -1px; z-index: 1; display: block; padding: 0; border-width: 1px; border-style: solid; -webkit-transition: all 0.1s ease-out; -moz-transition: all 0.1s ease-out; transition: all 0.1s ease-out; }
	/* line 106, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_switch.scss */
	div.switch input:not(:checked) + label { opacity: 0; }
	/* line 109, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_switch.scss */
	div.switch input:checked { display: none !important; }
	/* line 110, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_switch.scss */
	div.switch input { left: 0; display: block !important; }
	/* line 114, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_switch.scss */
	div.switch input:first-of-type + label, div.switch input:first-of-type + span + label { left: -50%; }
	/* line 116, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_switch.scss */
	div.switch input:first-of-type:checked + label, div.switch input:first-of-type:checked + span + label { left: 0%; }
	/* line 120, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_switch.scss */
	div.switch input:last-of-type + label, div.switch input:last-of-type + span + label { right: -50%; left: auto; text-align: right; }
	/* line 122, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_switch.scss */
	div.switch input:last-of-type:checked + label, div.switch input:last-of-type:checked + span + label { right: 0%; left: auto; }
	/* line 125, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_switch.scss */
	div.switch span.custom { display: none !important; }
	/* line 137, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_switch.scss */
	form.custom div.switch .hidden-field { margin-left: auto; position: absolute; visibility: visible; }
	/* line 149, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_switch.scss */
	div.switch label { padding: 0; line-height: 2.3em; font-size: 0.875em; }
	/* line 157, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_switch.scss */
	div.switch input:first-of-type:checked ~ span:last-child { left: 100%; margin-left: -2.1875em; }
	/* line 163, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_switch.scss */
	div.switch span:last-child { width: 2.25em; height: 2.25em; }
	/* line 177, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_switch.scss */
	div.switch span:last-child { border-color: #b3b3b3; background: white; background: -moz-linear-gradient(top, white 0%, #f2f2f2 100%); background: -webkit-linear-gradient(top, white 0%, #f2f2f2 100%); background: linear-gradient(to bottom, #ffffff 0%, #f2f2f2 100%); -webkit-box-shadow: 2px 0 10px 0 rgba(0, 0, 0, 0.07), 1000px 0 0 1000px #e1f5d1, -2px 0 10px 0 rgba(0, 0, 0, 0.07), -1000px 0 0 1000px whitesmoke; box-shadow: 2px 0 10px 0 rgba(0, 0, 0, 0.07), 1000px 0 0 980px #e1f5d1, -2px 0 10px 0 rgba(0, 0, 0, 0.07), -1000px 0 0 1000px whitesmoke; }
	/* line 201, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_switch.scss */
	div.switch:hover span:last-child, div.switch:focus span:last-child { background: white; background: -moz-linear-gradient(top, white 0%, #e6e6e6 100%); background: -webkit-linear-gradient(top, white 0%, #e6e6e6 100%); background: linear-gradient(to bottom, #ffffff 0%, #e6e6e6 100%); }
	/* line 211, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_switch.scss */
	div.switch:active { background: transparent; }
	/* line 243, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_switch.scss */
	div.switch.large { height: 2.75em; }
	/* line 149, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_switch.scss */
	div.switch.large label { padding: 0; line-height: 2.3em; font-size: 1.0625em; }
	/* line 157, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_switch.scss */
	div.switch.large input:first-of-type:checked ~ span:last-child { left: 100%; margin-left: -2.6875em; }
	/* line 163, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_switch.scss */
	div.switch.large span:last-child { width: 2.75em; height: 2.75em; }
	/* line 246, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_switch.scss */
	div.switch.small { height: 1.75em; }
	/* line 149, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_switch.scss */
	div.switch.small label { padding: 0; line-height: 2.1em; font-size: 0.75em; }
	/* line 157, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_switch.scss */
	div.switch.small input:first-of-type:checked ~ span:last-child { left: 100%; margin-left: -1.6875em; }
	/* line 163, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_switch.scss */
	div.switch.small span:last-child { width: 1.75em; height: 1.75em; }
	/* line 249, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_switch.scss */
	div.switch.tiny { height: 1.375em; }
	/* line 149, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_switch.scss */
	div.switch.tiny label { padding: 0; line-height: 1.9em; font-size: 0.6875em; }
	/* line 157, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_switch.scss */
	div.switch.tiny input:first-of-type:checked ~ span:last-child { left: 100%; margin-left: -1.3125em; }
	/* line 163, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_switch.scss */
	div.switch.tiny span:last-child { width: 1.375em; height: 1.375em; }
	/* line 252, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_switch.scss */
	div.switch.radius { -webkit-border-radius: 4px; border-radius: 4px; }
	/* line 253, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_switch.scss */
	div.switch.radius span:last-child { -webkit-border-radius: 3px; border-radius: 3px; }
	/* line 257, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_switch.scss */
	div.switch.round { -webkit-border-radius: 1000px; border-radius: 1000px; }
	/* line 258, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_switch.scss */
	div.switch.round span:last-child { -webkit-border-radius: 999px; border-radius: 999px; }
	/* line 259, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_switch.scss */
	div.switch.round label { padding: 0 0.5625em; }
	@-webkit-keyframes webkitSiblingBugfix { /* line 264, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_switch.scss */
	from { position: relative; }
	/* line 264, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_switch.scss */
	to { position: relative; } } }
@media only screen and (-webkit-min-device-pixel-ratio: 0) and (max-device-width: 480px) { /* line 239, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_switch.scss */
	div.switch { -webkit-animation: webkitSiblingBugfix infinite 1s; } }
@media only screen and (-webkit-min-device-pixel-ratio: 1.5) { /* line 239, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_switch.scss */
	div.switch { -webkit-animation: none 0; } }
/* line 11, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_magellan.scss */
[data-magellan-expedition] { background: white; z-index: 50; min-width: 100%; padding: 10px; }
/* line 17, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_magellan.scss */
[data-magellan-expedition] .sub-nav { margin-bottom: 0; }
/* line 19, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_magellan.scss */
[data-magellan-expedition] .sub-nav dd { margin-bottom: 0; }

/* Tables */
/* line 80, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_tables.scss */
table { background: white; margin-bottom: 1.25em; border: solid 1px #dddddd; }
/* line 42, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_tables.scss */
table thead, table tfoot { background: whitesmoke; font-weight: bold; }
/* line 48, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_tables.scss */
table thead tr th, table thead tr td, table tfoot tr th, table tfoot tr td { padding: 0.5em 0.625em 0.625em; font-size: 0.875em; color: #222222; text-align: left; }
/* line 59, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_tables.scss */
table tr th, table tr td { padding: 0.5625em 0.625em; font-size: 0.875em; color: #222222; }
/* line 67, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_tables.scss */
table tr.even, table tr.alt, table tr:nth-of-type(even) { background: #f9f9f9; }
/* line 74, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_tables.scss */
table thead tr th, table tfoot tr th, table tbody tr td, table tr td, table tfoot tr td { display: table-cell; line-height: 1.125em; }

/* Image Thumbnails */
/* line 45, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_thumbs.scss */
.th { line-height: 0; display: inline-block; border: solid 4px white; -webkit-box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.2); box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.2); -webkit-transition: all 200ms ease-out; -moz-transition: all 200ms ease-out; transition: all 200ms ease-out; }
/* line 32, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_thumbs.scss */
.th:hover, .th:focus { -webkit-box-shadow: 0 0 6px 1px rgba(0, 132, 199, 0.5); box-shadow: 0 0 6px 1px rgba(0, 132, 199, 0.5); }
/* line 49, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_thumbs.scss */
.th.radius { -webkit-border-radius: 1px; border-radius: 1px; }

/* line 51, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_thumbs.scss */
a.th { display: inline-block; max-width: 100%; }

/* Tooltips */
/* line 29, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_tooltips.scss */
.has-tip { border-bottom: dotted 1px #cccccc; cursor: help; font-weight: bold; color: #333333; }
/* line 36, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_tooltips.scss */
.has-tip:hover, .has-tip:focus { border-bottom: dotted 1px #004061; color: #0084c7; }
/* line 42, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_tooltips.scss */
.has-tip.tip-left, .has-tip.tip-right { float: none !important; }

/* line 45, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_tooltips.scss */
.tooltip { display: none; position: absolute; z-index: 999; font-weight: bold; font-size: 0.9375em; line-height: 1.3; padding: 0.5em; max-width: 85%; left: 50%; width: 100%; color: white; background: black; -webkit-border-radius: 1px; border-radius: 1px; }
/* line 60, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_tooltips.scss */
.tooltip > .nub { display: block; left: 5px; position: absolute; width: 0; height: 0; border: solid 5px; border-color: transparent transparent black transparent; top: -10px; }
/* line 71, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_tooltips.scss */
.tooltip.opened { color: #0084c7 !important; border-bottom: dotted 1px #004061 !important; }

/* line 77, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_tooltips.scss */
.tap-to-close { display: block; font-size: 0.625em; color: #888888; font-weight: normal; }

@media only screen and (min-width: 768px) { /* line 86, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_tooltips.scss */
	.tooltip > .nub { border-color: transparent transparent black transparent; top: -10px; }
	/* line 90, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_tooltips.scss */
	.tooltip.tip-top > .nub { border-color: black transparent transparent transparent; top: auto; bottom: -10px; }
	/* line 97, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_tooltips.scss */
	.tooltip.tip-left, .tooltip.tip-right { float: none !important; }
	/* line 99, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_tooltips.scss */
	.tooltip.tip-left > .nub { border-color: transparent transparent transparent black; right: -10px; left: auto; top: 50%; margin-top: -5px; }
	/* line 106, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_tooltips.scss */
	.tooltip.tip-right > .nub { border-color: transparent black transparent transparent; right: auto; left: -10px; top: 50%; margin-top: -5px; } }
@media only screen and (max-width: 767px) { /* line 128, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_dropdown.scss */
	.f-dropdown { max-width: 100%; left: 0; } }
/* Foundation Dropdowns */
/* line 135, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_dropdown.scss */
.f-dropdown { display:none; left:-9999px; position: absolute; top: -9999px; list-style: none; margin-left: 0; width: 100%; max-height: none; height: auto; background: white; border: solid 1px #cccccc; font-size: 16px; z-index: 99; margin-top: 2px; max-width: 200px; }
.f-dropdown.open { display:block; }
/* line 50, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_dropdown.scss */
.f-dropdown > *:first-child { margin-top: 0; }
/* line 51, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_dropdown.scss */
.f-dropdown > *:last-child { margin-bottom: 0; }
/* line 76, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_dropdown.scss */
.f-dropdown:before { content: ""; display: block; width: 0; height: 0; border: inset 6px; border-color: transparent transparent white transparent; border-bottom-style: solid; position: absolute; top: -12px; left: 10px; z-index: 99; }
/* line 83, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_dropdown.scss */
.f-dropdown:after { content: ""; display: block; width: 0; height: 0; border: inset 7px; border-color: transparent transparent #cccccc transparent; border-bottom-style: solid; position: absolute; top: -14px; left: 9px; z-index: 98; }
/* line 91, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_dropdown.scss */
.f-dropdown.right:before { left: auto; right: 10px; }
/* line 95, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_dropdown.scss */
.f-dropdown.right:after { left: auto; right: 9px; }
/* line 139, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_dropdown.scss */
.f-dropdown li { font-size: 0.875em; cursor: pointer; line-height: 1.125em; margin: 0; }
/* line 115, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_dropdown.scss */
.f-dropdown li:hover, .f-dropdown li:focus { background: #eeeeee; }
/* line 117, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_dropdown.scss */
.f-dropdown li a { display: block; padding: 0.5em; color: #555555; }
/* line 142, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_dropdown.scss */
.f-dropdown.content { position: absolute; top: -9999px; list-style: none; margin-left: 0; padding: 1.25em; width: 100%; height: auto; max-height: none; background: white; border: solid 1px #cccccc; font-size: 16; z-index: 99; max-width: 400px; min-width:400px; }
/* line 50, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_dropdown.scss */
.f-dropdown.content > *:first-child { margin-top: 0; }
/* line 51, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_dropdown.scss */
.f-dropdown.content > *:last-child { margin-bottom: 0; }
/* line 145, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_dropdown.scss */
.f-dropdown.tiny { max-width: 200px; }
/* line 146, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_dropdown.scss */
.f-dropdown.small { max-width: 300px; }
/* line 147, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_dropdown.scss */
.f-dropdown.medium { max-width: 500px; }
/* line 148, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_dropdown.scss */
.f-dropdown.large { max-width: 800px; }

/* font-face */
@font-face { font-family: "GeneralFoundicons"; src: url("../fonts/general_foundicons.eot"); src: url("../fonts/general_foundicons.eot?#iefix") format("embedded-opentype"), url("../fonts/general_foundicons.woff") format("woff"), url("../fonts/general_foundicons.ttf") format("truetype"), url("../fonts/general_foundicons.svg#GeneralFoundicons") format("svg"); font-weight: normal; font-style: normal; }

@font-face { font-family: "SocialFoundicons"; src: url("../fonts/social_foundicons.eot"); src: url("../fonts/social_foundicons.eot?#iefix") format("embedded-opentype"), url("../fonts/social_foundicons.woff") format("woff"), url("../fonts/social_foundicons.ttf") format("truetype"), url("../fonts/social_foundicons.svg#SocialFoundicons") format("svg"); font-weight: normal; font-style: normal; }

@font-face { font-family: "AccessibilityFoundicons"; src: url("../fonts/accessibility_foundicons.eot"); src: url("../fonts/accessibility_foundicons.eot?#iefix") format("embedded-opentype"), url("../fonts/accessibility_foundicons.woff") format("woff"), url("../fonts/accessibility_foundicons.ttf") format("truetype"), url("../fonts/accessibility_foundicons.svg#AccessibilityFoundicons") format("svg"); font-weight: normal; font-style: normal; }

@font-face { font-family: 'EntypoRegular'; src: url("../fonts/Entypo-webfont.eot"); src: url("../fonts/Entypo-webfont.eot?#iefix") format("embedded-opentype"), url("../fonts/Entypo-webfont.woff") format("woff"), url("../fonts/Entypo-webfont.ttf") format("truetype"), url("../fonts/Entypo-webfont.svg#EntypoRegular") format("svg"); font-weight: normal; font-style: normal; }

/* line 14, ../sass/_foundfont.scss */
.ut-social-icon { background: none repeat scroll 0 0 rgba(255, 255, 255, 0.15); border-radius: 50%; display: inline-block; height: 80px; line-height: 80px; margin: 15px; text-align: center; transition: background 0.2s linear 0s; width: 80px; font-size: 1.5em; }

/* line 28, ../sass/_foundfont.scss */
.ut-social-icon:hover { background: none repeat scroll 0 0 rgba(255, 255, 255, 0.5); }

/* line 30, ../sass/_foundfont.scss */
.entypo { font-family: "EntypoRegular"; display: inline-block; font-size: 2.5em; margin-right: 0.2em; color: #00a2f5; width: 0.5em; line-height: 0; vertical-align: top; margin-top: 2px; }

/* line 44, ../sass/_foundfont.scss */
[class*="foundicon-"] { display: inline; width: auto; height: auto; line-height: inherit; vertical-align: baseline; background-image: none; background-position: 0 0; background-repeat: repeat; }

/*					*/
/* The multiple magic */
/*					*/
/* General Icons */
/* line 50, ../sass/_foundfont.scss */
[class*="foundicon-"]:before { font-family: "GeneralFoundicons"; font-weight: normal; font-style: normal; text-decoration: inherit; }

/* Social Icons */
/* line 53, ../sass/_foundfont.scss */
.social[class*="foundicon-"]:before { font-family: "SocialFoundicons"; font-weight: normal; font-style: normal; text-decoration: inherit; }

/* Accessibility Icons */
/* line 56, ../sass/_foundfont.scss */
.accessibility[class*="foundicon-"]:before { font-family: "AccessibilityFoundicons"; font-weight: normal; font-style: normal; text-decoration: inherit; }

/* General icon classes */
/* line 59, ../sass/_foundfont.scss */
.foundicon-settings:before { content: "\f000"; }

/* line 60, ../sass/_foundfont.scss */
.foundicon-heart:before { content: "\f001"; }

/* line 61, ../sass/_foundfont.scss */
.foundicon-star:before { content: "\f002"; }

/* line 62, ../sass/_foundfont.scss */
.foundicon-plus:before { content: "\f003"; }

/* line 63, ../sass/_foundfont.scss */
.foundicon-minus:before { content: "\f004"; }

/* line 64, ../sass/_foundfont.scss */
.foundicon-checkmark:before { content: "\f005"; }

/* line 65, ../sass/_foundfont.scss */
.foundicon-remove:before { content: "\f006"; }

/* line 66, ../sass/_foundfont.scss */
.foundicon-mail:before { content: "\f007"; }

/* line 67, ../sass/_foundfont.scss */
.foundicon-calendar:before { content: "\f008"; }

/* line 68, ../sass/_foundfont.scss */
.foundicon-page:before { content: "\f009"; }

/* line 69, ../sass/_foundfont.scss */
.foundicon-tools:before { content: "\f00a"; }

/* line 70, ../sass/_foundfont.scss */
.foundicon-globe:before { content: "\f00b"; }

/* line 71, ../sass/_foundfont.scss */
.foundicon-home:before { content: "\f00c"; }

/* line 72, ../sass/_foundfont.scss */
.foundicon-quote:before { content: "\f00d"; }

/* line 73, ../sass/_foundfont.scss */
.foundicon-people:before { content: "\f00e"; }

/* line 74, ../sass/_foundfont.scss */
.foundicon-monitor:before { content: "\f00f"; }

/* line 75, ../sass/_foundfont.scss */
.foundicon-laptop:before { content: "\f010"; }

/* line 76, ../sass/_foundfont.scss */
.foundicon-phone:before { content: "\f011"; }

/* line 77, ../sass/_foundfont.scss */
.foundicon-cloud:before { content: "\f012"; }

/* line 78, ../sass/_foundfont.scss */
.foundicon-error:before { content: "\f013"; }

/* line 79, ../sass/_foundfont.scss */
.foundicon-right-arrow:before { content: "\f014"; }

/* line 80, ../sass/_foundfont.scss */
.foundicon-left-arrow:before { content: "\f015"; }

/* line 81, ../sass/_foundfont.scss */
.foundicon-up-arrow:before { content: "\f016"; }

/* line 82, ../sass/_foundfont.scss */
.foundicon-down-arrow:before { content: "\f017"; }

/* line 83, ../sass/_foundfont.scss */
.foundicon-trash:before { content: "\f018"; }

/* line 84, ../sass/_foundfont.scss */
.foundicon-add-doc:before { content: "\f019"; }

/* line 85, ../sass/_foundfont.scss */
.foundicon-edit:before { content: "\f01a"; }

/* line 86, ../sass/_foundfont.scss */
.foundicon-lock:before { content: "\f01b"; }

/* line 87, ../sass/_foundfont.scss */
.foundicon-unlock:before { content: "\f01c"; }

/* line 88, ../sass/_foundfont.scss */
.foundicon-refresh:before { content: "\f01d"; }

/* line 89, ../sass/_foundfont.scss */
.foundicon-paper-clip:before { content: "\f01e"; }

/* line 90, ../sass/_foundfont.scss */
.foundicon-video:before { content: "\f01f"; }

/* line 91, ../sass/_foundfont.scss */
.foundicon-photo:before { content: "\f020"; }

/* line 92, ../sass/_foundfont.scss */
.foundicon-graph:before { content: "\f021"; }

/* line 93, ../sass/_foundfont.scss */
.foundicon-idea:before { content: "\f022"; }

/* line 94, ../sass/_foundfont.scss */
.foundicon-mic:before { content: "\f023"; }

/* line 95, ../sass/_foundfont.scss */
.foundicon-cart:before { content: "\f024"; }

/* line 96, ../sass/_foundfont.scss */
.foundicon-address-book:before { content: "\f025"; }

/* line 97, ../sass/_foundfont.scss */
.foundicon-compass:before { content: "\f026"; }

/* line 98, ../sass/_foundfont.scss */
.foundicon-flag:before { content: "\f027"; }

/* line 99, ../sass/_foundfont.scss */
.foundicon-location:before { content: "\f028"; }

/* line 100, ../sass/_foundfont.scss */
.foundicon-clock:before { content: "\f029"; }

/* line 101, ../sass/_foundfont.scss */
.foundicon-folder:before { content: "\f02a"; }

/* line 102, ../sass/_foundfont.scss */
.foundicon-inbox:before { content: "\f02b"; }

/* line 103, ../sass/_foundfont.scss */
.foundicon-website:before { content: "\f02c"; }

/* line 104, ../sass/_foundfont.scss */
.foundicon-smiley:before { content: "\f02d"; }

/* line 105, ../sass/_foundfont.scss */
.foundicon-search:before { content: "\f02e"; }

/* Social icon classes */
/* line 108, ../sass/_foundfont.scss */
.foundicon-thumb-up:before { content: "\f000"; }

/* line 109, ../sass/_foundfont.scss */
.foundicon-thumb-down:before { content: "\f001"; }

/* line 110, ../sass/_foundfont.scss */
.foundicon-rss:before { content: "\f002"; }

/* line 111, ../sass/_foundfont.scss */
.foundicon-facebook:before { content: "\f003"; }

/* line 112, ../sass/_foundfont.scss */
.foundicon-twitter:before { content: "\f004"; }

/* line 113, ../sass/_foundfont.scss */
.foundicon-pinterest:before { content: "\f005"; }

/* line 114, ../sass/_foundfont.scss */
.foundicon-github:before { content: "\f006"; }

/* line 115, ../sass/_foundfont.scss */
.foundicon-path:before { content: "\f007"; }

/* line 116, ../sass/_foundfont.scss */
.foundicon-linkedin:before { content: "\f008"; }

/* line 117, ../sass/_foundfont.scss */
.foundicon-dribbble:before { content: "\f009"; }

/* line 118, ../sass/_foundfont.scss */
.foundicon-stumble-upon:before { content: "\f00a"; }

/* line 119, ../sass/_foundfont.scss */
.foundicon-behance:before { content: "\f00b"; }

/* line 120, ../sass/_foundfont.scss */
.foundicon-reddit:before { content: "\f00c"; }

/* line 121, ../sass/_foundfont.scss */
.foundicon-google-plus:before { content: "\f00d"; }

/* line 122, ../sass/_foundfont.scss */
.foundicon-youtube:before { content: "\f00e"; }

/* line 123, ../sass/_foundfont.scss */
.foundicon-vimeo:before { content: "\f00f"; }

/* line 124, ../sass/_foundfont.scss */
.foundicon-flickr:before { content: "\f010"; }

/* line 125, ../sass/_foundfont.scss */
.foundicon-slideshare:before { content: "\f011"; }

/* line 126, ../sass/_foundfont.scss */
.foundicon-picassa:before { content: "\f012"; }

/* line 127, ../sass/_foundfont.scss */
.foundicon-skype:before { content: "\f013"; }

/* line 128, ../sass/_foundfont.scss */
.foundicon-steam:before { content: "\f014"; }

/* line 129, ../sass/_foundfont.scss */
.foundicon-instagram:before { content: "\f015"; }

/* line 130, ../sass/_foundfont.scss */
.foundicon-foursquare:before { content: "\f016"; }

/* line 131, ../sass/_foundfont.scss */
.foundicon-delicious:before { content: "\f017"; }

/* line 132, ../sass/_foundfont.scss */
.foundicon-chat:before { content: "\f018"; }

/* line 133, ../sass/_foundfont.scss */
.foundicon-torso:before { content: "\f019"; }

/* line 134, ../sass/_foundfont.scss */
.foundicon-tumblr:before { content: "\f01a"; }

/* line 135, ../sass/_foundfont.scss */
.foundicon-video-chat:before { content: "\f01"; }

/* line 136, ../sass/_foundfont.scss */
.foundicon-digg:before { content: "\f01c"; }

/* line 137, ../sass/_foundfont.scss */
.foundicon-wordpress:before { content: "\f01d"; }

/* Accessibility icon classes */
/* line 140, ../sass/_foundfont.scss */
.foundicon-wheelchair:before { content: "\f000"; }

/* line 141, ../sass/_foundfont.scss */
.foundicon-speaker:before { content: "\f001"; }

/* line 142, ../sass/_foundfont.scss */
.foundicon-fontsize:before { content: "\f002"; }

/* line 143, ../sass/_foundfont.scss */
.foundicon-eject:before { content: "\f003"; }

/* line 144, ../sass/_foundfont.scss */
.foundicon-view-mode:before { content: "\f004"; }

/* line 145, ../sass/_foundfont.scss */
.foundicon-eyeball:before { content: "\f005"; }

/* line 146, ../sass/_foundfont.scss */
.foundicon-asl:before { content: "\f006"; }

/* line 147, ../sass/_foundfont.scss */
.foundicon-person:before { content: "\f007"; }

/* line 148, ../sass/_foundfont.scss */
.foundicon-question:before { content: "\f008"; }

/* line 149, ../sass/_foundfont.scss */
.foundicon-adult:before { content: "\f009"; }

/* line 150, ../sass/_foundfont.scss */
.foundicon-child:before { content: "\f00a"; }

/* line 151, ../sass/_foundfont.scss */
.foundicon-glasses:before { content: "\f00b"; }

/* line 152, ../sass/_foundfont.scss */
.foundicon-cc:before { content: "\f00c"; }

/* line 153, ../sass/_foundfont.scss */
.foundicon-blind:before { content: "\f00d"; }

/* line 154, ../sass/_foundfont.scss */
.foundicon-braille:before { content: "\f00e"; }

/* line 155, ../sass/_foundfont.scss */
.foundicon-iphone-home:before { content: "\f00f"; }

/* line 156, ../sass/_foundfont.scss */
.foundicon-w3c:before { content: "\f010"; }

/* line 157, ../sass/_foundfont.scss */
.foundicon-css:before { content: "\f011"; }

/* line 158, ../sass/_foundfont.scss */
.foundicon-key:before { content: "\f012"; }

/* line 159, ../sass/_foundfont.scss */
.foundicon-hearing-impaired:before { content: "\f013"; }

/* line 160, ../sass/_foundfont.scss */
.foundicon-male:before { content: "\f014"; }

/* line 161, ../sass/_foundfont.scss */
.foundicon-female:before { content: "\f015"; }

/* line 162, ../sass/_foundfont.scss */
.foundicon-network:before { content: "\f016"; }

/* line 163, ../sass/_foundfont.scss */
.foundicon-guidedog:before { content: "\f017"; }

/* line 164, ../sass/_foundfont.scss */
.foundicon-universal-access:before { content: "\f018"; }

/* line 165, ../sass/_foundfont.scss */
.foundicon-elevator:before { content: "\f019"; }

@font-face {
	font-family: 'EntypoRegular';
	src: url("../fonts/Entypo-webfont.eot");
	src: url("../fonts/Entypo-webfont.eot?#iefix") format("embedded-opentype"), url("../fonts/Entypo-webfont.woff") format("woff"), url("../fonts/Entypo-webfont.ttf") format("truetype"), url("../fonts/Entypo-webfont.svg#EntypoRegular") format("svg");
	font-weight: normal;
	font-style: normal;
}

/* line 10, ../sass/_foundfont.scss */
.ut-social-icon {
	background: none repeat scroll 0 0 rgba(255, 255, 255, 0.15);
	border-radius: 50%;
	display: inline-block;
	height: 80px;
	line-height: 80px;
	margin: 15px;
	text-align: center;
	transition: background 0.2s linear 0s;
	width: 80px;
	font-size: 1.5em;
}

/* line 24, ../sass/_foundfont.scss */
.ut-social-icon:hover {
	background: none repeat scroll 0 0 rgba(255, 255, 255, 0.5);
}

/* line 26, ../sass/_foundfont.scss */
.entypo {
	font-family: "EntypoRegular";
	display: inline-block;
	font-size: 2.5em;
	margin-right: 0.2em;
	color: #00a2f5;
	width: 0.5em;
	line-height: 0;
	vertical-align: top;
	margin-top: 2px;
}

/*
 * Foundation Icons v 3.0
 * Made by ZURB 2013 http://zurb.com/playground/foundation-icon-fonts-3
 * MIT License
 */
@font-face {
	font-family: "foundation-icons";
	src: url("../fonts/foundation-icons.eot");
	src: url("../fonts/foundation-icons.eot?#iefix") format("embedded-opentype"), url("../fonts/foundation-icons.woff") format("woff"), url("../fonts/foundation-icons.ttf") format("truetype"), url("../fonts/foundation-icons.svg#fontcustom") format("svg");
	font-weight: normal;
	font-style: normal;
}

/* line 337, ../sass/_foundfont.scss */
.foundicon-address-book:before,
.foundicon-alert:before,
.foundicon-align-center:before,
.foundicon-align-justify:before,
.foundicon-align-left:before,
.foundicon-align-right:before,
.foundicon-anchor:before,
.foundicon-annotate:before,
.foundicon-archive:before,
.foundicon-arrow-down:before,
.foundicon-arrow-left:before,
.foundicon-arrow-right:before,
.foundicon-arrow-up:before,
.foundicon-arrows-compress:before,
.foundicon-arrows-expand:before,
.foundicon-arrows-in:before,
.foundicon-arrows-out:before,
.foundicon-asl:before,
.foundicon-asterisk:before,
.foundicon-at-sign:before,
.foundicon-background-color:before,
.foundicon-battery-empty:before,
.foundicon-battery-full:before,
.foundicon-battery-half:before,
.foundicon-bitcoin-circle:before,
.foundicon-bitcoin:before,
.foundicon-blind:before,
.foundicon-bluetooth:before,
.foundicon-bold:before,
.foundicon-book-bookmark:before,
.foundicon-book:before,
.foundicon-bookmark:before,
.foundicon-braille:before,
.foundicon-burst-new:before,
.foundicon-burst-sale:before,
.foundicon-burst:before,
.foundicon-calendar:before,
.foundicon-camera:before,
.foundicon-check:before,
.foundicon-checkbox:before,
.foundicon-clipboard-notes:before,
.foundicon-clipboard-pencil:before,
.foundicon-clipboard:before,
.foundicon-clock:before,
.foundicon-closed-caption:before,
.foundicon-cloud:before,
.foundicon-comment-minus:before,
.foundicon-comment-quotes:before,
.foundicon-comment-video:before,
.foundicon-comment:before,
.foundicon-comments:before,
.foundicon-compass:before,
.foundicon-contrast:before,
.foundicon-credit-card:before,
.foundicon-crop:before,
.foundicon-crown:before,
.foundicon-css3:before,
.foundicon-database:before,
.foundicon-die-five:before,
.foundicon-die-four:before,
.foundicon-die-one:before,
.foundicon-die-six:before,
.foundicon-die-three:before,
.foundicon-die-two:before,
.foundicon-dislike:before,
.foundicon-dollar-bill:before,
.foundicon-dollar:before,
.foundicon-download:before,
.foundicon-eject:before,
.foundicon-elevator:before,
.foundicon-euro:before,
.foundicon-eye:before,
.foundicon-fast-forward:before,
.foundicon-female-symbol:before,
.foundicon-female:before,
.foundicon-filter:before,
.foundicon-first-aid:before,
.foundicon-flag:before,
.foundicon-folder-add:before,
.foundicon-folder-lock:before,
.foundicon-folder:before,
.foundicon-foot:before,
.foundicon-foundation:before,
.foundicon-graph-bar:before,
.foundicon-graph-horizontal:before,
.foundicon-graph-pie:before,
.foundicon-graph-trend:before,
.foundicon-guide-dog:before,
.foundicon-hearing-aid:before,
.foundicon-heart:before,
.foundicon-home:before,
.foundicon-html5:before,
.foundicon-indent-less:before,
.foundicon-indent-more:before,
.foundicon-info:before,
.foundicon-italic:before,
.foundicon-key:before,
.foundicon-laptop:before,
.foundicon-layout:before,
.foundicon-lightbulb:before,
.foundicon-like:before,
.foundicon-link:before,
.foundicon-list-bullet:before,
.foundicon-list-number:before,
.foundicon-list-thumbnails:before,
.foundicon-list:before,
.foundicon-lock:before,
.foundicon-loop:before,
.foundicon-magnifying-glass:before,
.foundicon-mail:before,
.foundicon-male-female:before,
.foundicon-male-symbol:before,
.foundicon-male:before,
.foundicon-map:before,
.foundicon-marker:before,
.foundicon-megaphone:before,
.foundicon-microphone:before,
.foundicon-minus-circle:before,
.foundicon-minus:before,
.foundicon-mobile-signal:before,
.foundicon-mobile:before,
.foundicon-monitor:before,
.foundicon-mountains:before,
.foundicon-music:before,
.foundicon-next:before,
.foundicon-no-dogs:before,
.foundicon-no-smoking:before,
.foundicon-page-add:before,
.foundicon-page-copy:before,
.foundicon-page-csv:before,
.foundicon-page-delete:before,
.foundicon-page-doc:before,
.foundicon-page-edit:before,
.foundicon-page-export-csv:before,
.foundicon-page-export-doc:before,
.foundicon-page-export-pdf:before,
.foundicon-page-export:before,
.foundicon-page-filled:before,
.foundicon-page-multiple:before,
.foundicon-page-pdf:before,
.foundicon-page-remove:before,
.foundicon-page-search:before,
.foundicon-page:before,
.foundicon-paint-bucket:before,
.foundicon-paperclip:before,
.foundicon-pause:before,
.foundicon-paw:before,
.foundicon-paypal:before,
.foundicon-pencil:before,
.foundicon-photo:before,
.foundicon-play-circle:before,
.foundicon-play-video:before,
.foundicon-play:before,
.foundicon-plus:before,
.foundicon-pound:before,
.foundicon-power:before,
.foundicon-previous:before,
.foundicon-price-tag:before,
.foundicon-pricetag-multiple:before,
.foundicon-print:before,
.foundicon-prohibited:before,
.foundicon-projection-screen:before,
.foundicon-puzzle:before,
.foundicon-quote:before,
.foundicon-record:before,
.foundicon-refresh:before,
.foundicon-results-demographics:before,
.foundicon-results:before,
.foundicon-rewind-ten:before,
.foundicon-rewind:before,
.foundicon-rss:before,
.foundicon-safety-cone:before,
.foundicon-save:before,
.foundicon-share:before,
.foundicon-sheriff-badge:before,
.foundicon-shield:before,
.foundicon-shopping-bag:before,
.foundicon-shopping-cart:before,
.foundicon-shuffle:before,
.foundicon-skull:before,
.foundicon-social-500px:before,
.foundicon-social-adobe:before,
.foundicon-social-amazon:before,
.foundicon-social-android:before,
.foundicon-social-apple:before,
.foundicon-social-behance:before,
.foundicon-social-bing:before,
.foundicon-social-blogger:before,
.foundicon-social-delicious:before,
.foundicon-social-designer-news:before,
.foundicon-social-deviant-art:before,
.foundicon-social-digg:before,
.foundicon-social-dribbble:before,
.foundicon-social-drive:before,
.foundicon-social-dropbox:before,
.foundicon-social-evernote:before,
.foundicon-social-facebook:before,
.foundicon-social-flickr:before,
.foundicon-social-forrst:before,
.foundicon-social-foursquare:before,
.foundicon-social-game-center:before,
.foundicon-social-github:before,
.foundicon-social-google-plus:before,
.foundicon-social-hacker-news:before,
.foundicon-social-hi5:before,
.foundicon-social-instagram:before,
.foundicon-social-joomla:before,
.foundicon-social-lastfm:before,
.foundicon-social-linkedin:before,
.foundicon-social-medium:before,
.foundicon-social-myspace:before,
.foundicon-social-orkut:before,
.foundicon-social-path:before,
.foundicon-social-picasa:before,
.foundicon-social-pinterest:before,
.foundicon-social-rdio:before,
.foundicon-social-reddit:before,
.foundicon-social-skillshare:before,
.foundicon-social-skype:before,
.foundicon-social-smashing-mag:before,
.foundicon-social-snapchat:before,
.foundicon-social-spotify:before,
.foundicon-social-squidoo:before,
.foundicon-social-stack-overflow:before,
.foundicon-social-steam:before,
.foundicon-social-stumbleupon:before,
.foundicon-social-treehouse:before,
.foundicon-social-tumblr:before,
.foundicon-social-twitter:before,
.foundicon-social-vimeo:before,
.foundicon-social-windows:before,
.foundicon-social-xbox:before,
.foundicon-social-yahoo:before,
.foundicon-social-yelp:before,
.foundicon-social-youtube:before,
.foundicon-social-zerply:before,
.foundicon-social-zurb:before,
.foundicon-sound:before,
.foundicon-star:before,
.foundicon-stop:before,
.foundicon-strikethrough:before,
.foundicon-subscript:before,
.foundicon-superscript:before,
.foundicon-tablet-landscape:before,
.foundicon-tablet-portrait:before,
.foundicon-target-two:before,
.foundicon-target:before,
.foundicon-telephone-accessible:before,
.foundicon-telephone:before,
.foundicon-text-color:before,
.foundicon-thumbnails:before,
.foundicon-ticket:before,
.foundicon-torso-business:before,
.foundicon-torso-female:before,
.foundicon-torso:before,
.foundicon-torsos-all-female:before,
.foundicon-torsos-all:before,
.foundicon-torsos-female-male:before,
.foundicon-torsos-male-female:before,
.foundicon-torsos:before,
.foundicon-trash:before,
.foundicon-trees:before,
.foundicon-trophy:before,
.foundicon-underline:before,
.foundicon-universal-access:before,
.foundicon-unlink:before,
.foundicon-unlock:before,
.foundicon-upload-cloud:before,
.foundicon-upload:before,
.foundicon-usb:before,
.foundicon-video:before,
.foundicon-volume-none:before,
.foundicon-volume-strike:before,
.foundicon-volume:before,
.foundicon-web:before,
.foundicon-wheelchair:before,
.foundicon-widget:before,
.foundicon-wrench:before,
.foundicon-x-circle:before,
.foundicon-x:before,
.foundicon-yen:before,
.foundicon-zoom-in:before,
.foundicon-zoom-out:before {
	font-family: "foundation-icons";
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;
	-webkit-font-smoothing: antialiased;
	display: inline-block;
	text-decoration: inherit;
	font-size: 125%;
}

/* line 351, ../sass/_foundfont.scss */
.foundicon-address-book:before {
	content: "\f100";
}

/* line 352, ../sass/_foundfont.scss */
.foundicon-alert:before {
	content: "\f101";
}

/* line 353, ../sass/_foundfont.scss */
.foundicon-align-center:before {
	content: "\f102";
}

/* line 354, ../sass/_foundfont.scss */
.foundicon-align-justify:before {
	content: "\f103";
}

/* line 355, ../sass/_foundfont.scss */
.foundicon-align-left:before {
	content: "\f104";
}

/* line 356, ../sass/_foundfont.scss */
.foundicon-align-right:before {
	content: "\f105";
}

/* line 357, ../sass/_foundfont.scss */
.foundicon-anchor:before {
	content: "\f106";
}

/* line 358, ../sass/_foundfont.scss */
.foundicon-annotate:before {
	content: "\f107";
}

/* line 359, ../sass/_foundfont.scss */
.foundicon-archive:before {
	content: "\f108";
}

/* line 360, ../sass/_foundfont.scss */
.foundicon-arrow-down:before {
	content: "\f109";
}

/* line 361, ../sass/_foundfont.scss */
.foundicon-arrow-left:before {
	content: "\f10a";
}

/* line 362, ../sass/_foundfont.scss */
.foundicon-arrow-right:before {
	content: "\f10b";
}

/* line 363, ../sass/_foundfont.scss */
.foundicon-arrow-up:before {
	content: "\f10c";
}

/* line 364, ../sass/_foundfont.scss */
.foundicon-arrows-compress:before {
	content: "\f10d";
}

/* line 365, ../sass/_foundfont.scss */
.foundicon-arrows-expand:before {
	content: "\f10e";
}

/* line 366, ../sass/_foundfont.scss */
.foundicon-arrows-in:before {
	content: "\f10f";
}

/* line 367, ../sass/_foundfont.scss */
.foundicon-arrows-out:before {
	content: "\f110";
}

/* line 368, ../sass/_foundfont.scss */
.foundicon-asl:before {
	content: "\f111";
}

/* line 369, ../sass/_foundfont.scss */
.foundicon-asterisk:before {
	content: "\f112";
}

/* line 370, ../sass/_foundfont.scss */
.foundicon-at-sign:before {
	content: "\f113";
}

/* line 371, ../sass/_foundfont.scss */
.foundicon-background-color:before {
	content: "\f114";
}

/* line 372, ../sass/_foundfont.scss */
.foundicon-battery-empty:before {
	content: "\f115";
}

/* line 373, ../sass/_foundfont.scss */
.foundicon-battery-full:before {
	content: "\f116";
}

/* line 374, ../sass/_foundfont.scss */
.foundicon-battery-half:before {
	content: "\f117";
}

/* line 375, ../sass/_foundfont.scss */
.foundicon-bitcoin-circle:before {
	content: "\f118";
}

/* line 376, ../sass/_foundfont.scss */
.foundicon-bitcoin:before {
	content: "\f119";
}

/* line 377, ../sass/_foundfont.scss */
.foundicon-blind:before {
	content: "\f11a";
}

/* line 378, ../sass/_foundfont.scss */
.foundicon-bluetooth:before {
	content: "\f11b";
}

/* line 379, ../sass/_foundfont.scss */
.foundicon-bold:before {
	content: "\f11c";
}

/* line 380, ../sass/_foundfont.scss */
.foundicon-book-bookmark:before {
	content: "\f11d";
}

/* line 381, ../sass/_foundfont.scss */
.foundicon-book:before {
	content: "\f11e";
}

/* line 382, ../sass/_foundfont.scss */
.foundicon-bookmark:before {
	content: "\f11f";
}

/* line 383, ../sass/_foundfont.scss */
.foundicon-braille:before {
	content: "\f120";
}

/* line 384, ../sass/_foundfont.scss */
.foundicon-burst-new:before {
	content: "\f121";
}

/* line 385, ../sass/_foundfont.scss */
.foundicon-burst-sale:before {
	content: "\f122";
}

/* line 386, ../sass/_foundfont.scss */
.foundicon-burst:before {
	content: "\f123";
}

/* line 387, ../sass/_foundfont.scss */
.foundicon-calendar:before {
	content: "\f124";
}

/* line 388, ../sass/_foundfont.scss */
.foundicon-camera:before {
	content: "\f125";
}

/* line 389, ../sass/_foundfont.scss */
.foundicon-check:before {
	content: "\f126";
}

/* line 390, ../sass/_foundfont.scss */
.foundicon-checkbox:before {
	content: "\f127";
}

/* line 391, ../sass/_foundfont.scss */
.foundicon-clipboard-notes:before {
	content: "\f128";
}

/* line 392, ../sass/_foundfont.scss */
.foundicon-clipboard-pencil:before {
	content: "\f129";
}

/* line 393, ../sass/_foundfont.scss */
.foundicon-clipboard:before {
	content: "\f12a";
}

/* line 394, ../sass/_foundfont.scss */
.foundicon-clock:before {
	content: "\f12b";
}

/* line 395, ../sass/_foundfont.scss */
.foundicon-closed-caption:before {
	content: "\f12c";
}

/* line 396, ../sass/_foundfont.scss */
.foundicon-cloud:before {
	content: "\f12d";
}

/* line 397, ../sass/_foundfont.scss */
.foundicon-comment-minus:before {
	content: "\f12e";
}

/* line 398, ../sass/_foundfont.scss */
.foundicon-comment-quotes:before {
	content: "\f12f";
}

/* line 399, ../sass/_foundfont.scss */
.foundicon-comment-video:before {
	content: "\f130";
}

/* line 400, ../sass/_foundfont.scss */
.foundicon-comment:before {
	content: "\f131";
}

/* line 401, ../sass/_foundfont.scss */
.foundicon-comments:before {
	content: "\f132";
}

/* line 402, ../sass/_foundfont.scss */
.foundicon-compass:before {
	content: "\f133";
}

/* line 403, ../sass/_foundfont.scss */
.foundicon-contrast:before {
	content: "\f134";
}

/* line 404, ../sass/_foundfont.scss */
.foundicon-credit-card:before {
	content: "\f135";
}

/* line 405, ../sass/_foundfont.scss */
.foundicon-crop:before {
	content: "\f136";
}

/* line 406, ../sass/_foundfont.scss */
.foundicon-crown:before {
	content: "\f137";
}

/* line 407, ../sass/_foundfont.scss */
.foundicon-css3:before {
	content: "\f138";
}

/* line 408, ../sass/_foundfont.scss */
.foundicon-database:before {
	content: "\f139";
}

/* line 409, ../sass/_foundfont.scss */
.foundicon-die-five:before {
	content: "\f13a";
}

/* line 410, ../sass/_foundfont.scss */
.foundicon-die-four:before {
	content: "\f13b";
}

/* line 411, ../sass/_foundfont.scss */
.foundicon-die-one:before {
	content: "\f13c";
}

/* line 412, ../sass/_foundfont.scss */
.foundicon-die-six:before {
	content: "\f13d";
}

/* line 413, ../sass/_foundfont.scss */
.foundicon-die-three:before {
	content: "\f13e";
}

/* line 414, ../sass/_foundfont.scss */
.foundicon-die-two:before {
	content: "\f13f";
}

/* line 415, ../sass/_foundfont.scss */
.foundicon-dislike:before {
	content: "\f140";
}

/* line 416, ../sass/_foundfont.scss */
.foundicon-dollar-bill:before {
	content: "\f141";
}

/* line 417, ../sass/_foundfont.scss */
.foundicon-dollar:before {
	content: "\f142";
}

/* line 418, ../sass/_foundfont.scss */
.foundicon-download:before {
	content: "\f143";
}

/* line 419, ../sass/_foundfont.scss */
.foundicon-eject:before {
	content: "\f144";
}

/* line 420, ../sass/_foundfont.scss */
.foundicon-elevator:before {
	content: "\f145";
}

/* line 421, ../sass/_foundfont.scss */
.foundicon-euro:before {
	content: "\f146";
}

/* line 422, ../sass/_foundfont.scss */
.foundicon-eye:before {
	content: "\f147";
}

/* line 423, ../sass/_foundfont.scss */
.foundicon-fast-forward:before {
	content: "\f148";
}

/* line 424, ../sass/_foundfont.scss */
.foundicon-female-symbol:before {
	content: "\f149";
}

/* line 425, ../sass/_foundfont.scss */
.foundicon-female:before {
	content: "\f14a";
}

/* line 426, ../sass/_foundfont.scss */
.foundicon-filter:before {
	content: "\f14b";
}

/* line 427, ../sass/_foundfont.scss */
.foundicon-first-aid:before {
	content: "\f14c";
}

/* line 428, ../sass/_foundfont.scss */
.foundicon-flag:before {
	content: "\f14d";
}

/* line 429, ../sass/_foundfont.scss */
.foundicon-folder-add:before {
	content: "\f14e";
}

/* line 430, ../sass/_foundfont.scss */
.foundicon-folder-lock:before {
	content: "\f14f";
}

/* line 431, ../sass/_foundfont.scss */
.foundicon-folder:before {
	content: "\f150";
}

/* line 432, ../sass/_foundfont.scss */
.foundicon-foot:before {
	content: "\f151";
}

/* line 433, ../sass/_foundfont.scss */
.foundicon-foundation:before {
	content: "\f152";
}

/* line 434, ../sass/_foundfont.scss */
.foundicon-graph-bar:before {
	content: "\f153";
}

/* line 435, ../sass/_foundfont.scss */
.foundicon-graph-horizontal:before {
	content: "\f154";
}

/* line 436, ../sass/_foundfont.scss */
.foundicon-graph-pie:before {
	content: "\f155";
}

/* line 437, ../sass/_foundfont.scss */
.foundicon-graph-trend:before {
	content: "\f156";
}

/* line 438, ../sass/_foundfont.scss */
.foundicon-guide-dog:before {
	content: "\f157";
}

/* line 439, ../sass/_foundfont.scss */
.foundicon-hearing-aid:before {
	content: "\f158";
}

/* line 440, ../sass/_foundfont.scss */
.foundicon-heart:before {
	content: "\f159";
}

/* line 441, ../sass/_foundfont.scss */
.foundicon-home:before {
	content: "\f15a";
}

/* line 442, ../sass/_foundfont.scss */
.foundicon-html5:before {
	content: "\f15b";
}

/* line 443, ../sass/_foundfont.scss */
.foundicon-indent-less:before {
	content: "\f15c";
}

/* line 444, ../sass/_foundfont.scss */
.foundicon-indent-more:before {
	content: "\f15d";
}

/* line 445, ../sass/_foundfont.scss */
.foundicon-info:before {
	content: "\f15e";
}

/* line 446, ../sass/_foundfont.scss */
.foundicon-italic:before {
	content: "\f15f";
}

/* line 447, ../sass/_foundfont.scss */
.foundicon-key:before {
	content: "\f160";
}

/* line 448, ../sass/_foundfont.scss */
.foundicon-laptop:before {
	content: "\f161";
}

/* line 449, ../sass/_foundfont.scss */
.foundicon-layout:before {
	content: "\f162";
}

/* line 450, ../sass/_foundfont.scss */
.foundicon-lightbulb:before {
	content: "\f163";
}

/* line 451, ../sass/_foundfont.scss */
.foundicon-like:before {
	content: "\f164";
}

/* line 452, ../sass/_foundfont.scss */
.foundicon-link:before {
	content: "\f165";
}

/* line 453, ../sass/_foundfont.scss */
.foundicon-list-bullet:before {
	content: "\f166";
}

/* line 454, ../sass/_foundfont.scss */
.foundicon-list-number:before {
	content: "\f167";
}

/* line 455, ../sass/_foundfont.scss */
.foundicon-list-thumbnails:before {
	content: "\f168";
}

/* line 456, ../sass/_foundfont.scss */
.foundicon-list:before {
	content: "\f169";
}

/* line 457, ../sass/_foundfont.scss */
.foundicon-lock:before {
	content: "\f16a";
}

/* line 458, ../sass/_foundfont.scss */
.foundicon-loop:before {
	content: "\f16b";
}

/* line 459, ../sass/_foundfont.scss */
.foundicon-magnifying-glass:before {
	content: "\f16c";
}

/* line 460, ../sass/_foundfont.scss */
.foundicon-mail:before {
	content: "\f16d";
}

/* line 461, ../sass/_foundfont.scss */
.foundicon-male-female:before {
	content: "\f16e";
}

/* line 462, ../sass/_foundfont.scss */
.foundicon-male-symbol:before {
	content: "\f16f";
}

/* line 463, ../sass/_foundfont.scss */
.foundicon-male:before {
	content: "\f170";
}

/* line 464, ../sass/_foundfont.scss */
.foundicon-map:before {
	content: "\f171";
}

/* line 465, ../sass/_foundfont.scss */
.foundicon-marker:before {
	content: "\f172";
}

/* line 466, ../sass/_foundfont.scss */
.foundicon-megaphone:before {
	content: "\f173";
}

/* line 467, ../sass/_foundfont.scss */
.foundicon-microphone:before {
	content: "\f174";
}

/* line 468, ../sass/_foundfont.scss */
.foundicon-minus-circle:before {
	content: "\f175";
}

/* line 469, ../sass/_foundfont.scss */
.foundicon-minus:before {
	content: "\f176";
}

/* line 470, ../sass/_foundfont.scss */
.foundicon-mobile-signal:before {
	content: "\f177";
}

/* line 471, ../sass/_foundfont.scss */
.foundicon-mobile:before {
	content: "\f178";
}

/* line 472, ../sass/_foundfont.scss */
.foundicon-monitor:before {
	content: "\f179";
}

/* line 473, ../sass/_foundfont.scss */
.foundicon-mountains:before {
	content: "\f17a";
}

/* line 474, ../sass/_foundfont.scss */
.foundicon-music:before {
	content: "\f17b";
}

/* line 475, ../sass/_foundfont.scss */
.foundicon-next:before {
	content: "\f17c";
}

/* line 476, ../sass/_foundfont.scss */
.foundicon-no-dogs:before {
	content: "\f17d";
}

/* line 477, ../sass/_foundfont.scss */
.foundicon-no-smoking:before {
	content: "\f17e";
}

/* line 478, ../sass/_foundfont.scss */
.foundicon-page-add:before {
	content: "\f17f";
}

/* line 479, ../sass/_foundfont.scss */
.foundicon-page-copy:before {
	content: "\f180";
}

/* line 480, ../sass/_foundfont.scss */
.foundicon-page-csv:before {
	content: "\f181";
}

/* line 481, ../sass/_foundfont.scss */
.foundicon-page-delete:before {
	content: "\f182";
}

/* line 482, ../sass/_foundfont.scss */
.foundicon-page-doc:before {
	content: "\f183";
}

/* line 483, ../sass/_foundfont.scss */
.foundicon-page-edit:before {
	content: "\f184";
}

/* line 484, ../sass/_foundfont.scss */
.foundicon-page-export-csv:before {
	content: "\f185";
}

/* line 485, ../sass/_foundfont.scss */
.foundicon-page-export-doc:before {
	content: "\f186";
}

/* line 486, ../sass/_foundfont.scss */
.foundicon-page-export-pdf:before {
	content: "\f187";
}

/* line 487, ../sass/_foundfont.scss */
.foundicon-page-export:before {
	content: "\f188";
}

/* line 488, ../sass/_foundfont.scss */
.foundicon-page-filled:before {
	content: "\f189";
}

/* line 489, ../sass/_foundfont.scss */
.foundicon-page-multiple:before {
	content: "\f18a";
}

/* line 490, ../sass/_foundfont.scss */
.foundicon-page-pdf:before {
	content: "\f18b";
}

/* line 491, ../sass/_foundfont.scss */
.foundicon-page-remove:before {
	content: "\f18c";
}

/* line 492, ../sass/_foundfont.scss */
.foundicon-page-search:before {
	content: "\f18d";
}

/* line 493, ../sass/_foundfont.scss */
.foundicon-page:before {
	content: "\f18e";
}

/* line 494, ../sass/_foundfont.scss */
.foundicon-paint-bucket:before {
	content: "\f18f";
}

/* line 495, ../sass/_foundfont.scss */
.foundicon-paperclip:before {
	content: "\f190";
}

/* line 496, ../sass/_foundfont.scss */
.foundicon-pause:before {
	content: "\f191";
}

/* line 497, ../sass/_foundfont.scss */
.foundicon-paw:before {
	content: "\f192";
}

/* line 498, ../sass/_foundfont.scss */
.foundicon-paypal:before {
	content: "\f193";
}

/* line 499, ../sass/_foundfont.scss */
.foundicon-pencil:before {
	content: "\f194";
}

/* line 500, ../sass/_foundfont.scss */
.foundicon-photo:before {
	content: "\f195";
}

/* line 501, ../sass/_foundfont.scss */
.foundicon-play-circle:before {
	content: "\f196";
}

/* line 502, ../sass/_foundfont.scss */
.foundicon-play-video:before {
	content: "\f197";
}

/* line 503, ../sass/_foundfont.scss */
.foundicon-play:before {
	content: "\f198";
}

/* line 504, ../sass/_foundfont.scss */
.foundicon-plus:before {
	content: "\f199";
}

/* line 505, ../sass/_foundfont.scss */
.foundicon-pound:before {
	content: "\f19a";
}

/* line 506, ../sass/_foundfont.scss */
.foundicon-power:before {
	content: "\f19b";
}

/* line 507, ../sass/_foundfont.scss */
.foundicon-previous:before {
	content: "\f19c";
}

/* line 508, ../sass/_foundfont.scss */
.foundicon-price-tag:before {
	content: "\f19d";
}

/* line 509, ../sass/_foundfont.scss */
.foundicon-pricetag-multiple:before {
	content: "\f19e";
}

/* line 510, ../sass/_foundfont.scss */
.foundicon-print:before {
	content: "\f19f";
}

/* line 511, ../sass/_foundfont.scss */
.foundicon-prohibited:before {
	content: "\f1a0";
}

/* line 512, ../sass/_foundfont.scss */
.foundicon-projection-screen:before {
	content: "\f1a1";
}

/* line 513, ../sass/_foundfont.scss */
.foundicon-puzzle:before {
	content: "\f1a2";
}

/* line 514, ../sass/_foundfont.scss */
.foundicon-quote:before {
	content: "\f1a3";
}

/* line 515, ../sass/_foundfont.scss */
.foundicon-record:before {
	content: "\f1a4";
}

/* line 516, ../sass/_foundfont.scss */
.foundicon-refresh:before {
	content: "\f1a5";
}

/* line 517, ../sass/_foundfont.scss */
.foundicon-results-demographics:before {
	content: "\f1a6";
}

/* line 518, ../sass/_foundfont.scss */
.foundicon-results:before {
	content: "\f1a7";
}

/* line 519, ../sass/_foundfont.scss */
.foundicon-rewind-ten:before {
	content: "\f1a8";
}

/* line 520, ../sass/_foundfont.scss */
.foundicon-rewind:before {
	content: "\f1a9";
}

/* line 521, ../sass/_foundfont.scss */
.foundicon-rss:before {
	content: "\f1aa";
}

/* line 522, ../sass/_foundfont.scss */
.foundicon-safety-cone:before {
	content: "\f1ab";
}

/* line 523, ../sass/_foundfont.scss */
.foundicon-save:before {
	content: "\f1ac";
}

/* line 524, ../sass/_foundfont.scss */
.foundicon-share:before {
	content: "\f1ad";
}

/* line 525, ../sass/_foundfont.scss */
.foundicon-sheriff-badge:before {
	content: "\f1ae";
}

/* line 526, ../sass/_foundfont.scss */
.foundicon-shield:before {
	content: "\f1af";
}

/* line 527, ../sass/_foundfont.scss */
.foundicon-shopping-bag:before {
	content: "\f1b0";
}

/* line 528, ../sass/_foundfont.scss */
.foundicon-shopping-cart:before {
	content: "\f1b1";
}

/* line 529, ../sass/_foundfont.scss */
.foundicon-shuffle:before {
	content: "\f1b2";
}

/* line 530, ../sass/_foundfont.scss */
.foundicon-skull:before {
	content: "\f1b3";
}

/* line 531, ../sass/_foundfont.scss */
.foundicon-social-500px:before {
	content: "\f1b4";
}

/* line 532, ../sass/_foundfont.scss */
.foundicon-social-adobe:before {
	content: "\f1b5";
}

/* line 533, ../sass/_foundfont.scss */
.foundicon-social-amazon:before {
	content: "\f1b6";
}

/* line 534, ../sass/_foundfont.scss */
.foundicon-social-android:before {
	content: "\f1b7";
}

/* line 535, ../sass/_foundfont.scss */
.foundicon-social-apple:before {
	content: "\f1b8";
}

/* line 536, ../sass/_foundfont.scss */
.foundicon-social-behance:before {
	content: "\f1b9";
}

/* line 537, ../sass/_foundfont.scss */
.foundicon-social-bing:before {
	content: "\f1ba";
}

/* line 538, ../sass/_foundfont.scss */
.foundicon-social-blogger:before {
	content: "\f1bb";
}

/* line 539, ../sass/_foundfont.scss */
.foundicon-social-delicious:before {
	content: "\f1bc";
}

/* line 540, ../sass/_foundfont.scss */
.foundicon-social-designer-news:before {
	content: "\f1bd";
}

/* line 541, ../sass/_foundfont.scss */
.foundicon-social-deviant-art:before {
	content: "\f1be";
}

/* line 542, ../sass/_foundfont.scss */
.foundicon-social-digg:before {
	content: "\f1bf";
}

/* line 543, ../sass/_foundfont.scss */
.foundicon-social-dribbble:before {
	content: "\f1c0";
}

/* line 544, ../sass/_foundfont.scss */
.foundicon-social-drive:before {
	content: "\f1c1";
}

/* line 545, ../sass/_foundfont.scss */
.foundicon-social-dropbox:before {
	content: "\f1c2";
}

/* line 546, ../sass/_foundfont.scss */
.foundicon-social-evernote:before {
	content: "\f1c3";
}

/* line 547, ../sass/_foundfont.scss */
.foundicon-social-facebook:before {
	content: "\f1c4";
}

/* line 548, ../sass/_foundfont.scss */
.foundicon-social-flickr:before {
	content: "\f1c5";
}

/* line 549, ../sass/_foundfont.scss */
.foundicon-social-forrst:before {
	content: "\f1c6";
}

/* line 550, ../sass/_foundfont.scss */
.foundicon-social-foursquare:before {
	content: "\f1c7";
}

/* line 551, ../sass/_foundfont.scss */
.foundicon-social-game-center:before {
	content: "\f1c8";
}

/* line 552, ../sass/_foundfont.scss */
.foundicon-social-github:before {
	content: "\f1c9";
}

/* line 553, ../sass/_foundfont.scss */
.foundicon-social-google-plus:before {
	content: "\f1ca";
}

/* line 554, ../sass/_foundfont.scss */
.foundicon-social-hacker-news:before {
	content: "\f1cb";
}

/* line 555, ../sass/_foundfont.scss */
.foundicon-social-hi5:before {
	content: "\f1cc";
}

/* line 556, ../sass/_foundfont.scss */
.foundicon-social-instagram:before {
	content: "\f1cd";
}

/* line 557, ../sass/_foundfont.scss */
.foundicon-social-joomla:before {
	content: "\f1ce";
}

/* line 558, ../sass/_foundfont.scss */
.foundicon-social-lastfm:before {
	content: "\f1cf";
}

/* line 559, ../sass/_foundfont.scss */
.foundicon-social-linkedin:before {
	content: "\f1d0";
}

/* line 560, ../sass/_foundfont.scss */
.foundicon-social-medium:before {
	content: "\f1d1";
}

/* line 561, ../sass/_foundfont.scss */
.foundicon-social-myspace:before {
	content: "\f1d2";
}

/* line 562, ../sass/_foundfont.scss */
.foundicon-social-orkut:before {
	content: "\f1d3";
}

/* line 563, ../sass/_foundfont.scss */
.foundicon-social-path:before {
	content: "\f1d4";
}

/* line 564, ../sass/_foundfont.scss */
.foundicon-social-picasa:before {
	content: "\f1d5";
}

/* line 565, ../sass/_foundfont.scss */
.foundicon-social-pinterest:before {
	content: "\f1d6";
}

/* line 566, ../sass/_foundfont.scss */
.foundicon-social-rdio:before {
	content: "\f1d7";
}

/* line 567, ../sass/_foundfont.scss */
.foundicon-social-reddit:before {
	content: "\f1d8";
}

/* line 568, ../sass/_foundfont.scss */
.foundicon-social-skillshare:before {
	content: "\f1d9";
}

/* line 569, ../sass/_foundfont.scss */
.foundicon-social-skype:before {
	content: "\f1da";
}

/* line 570, ../sass/_foundfont.scss */
.foundicon-social-smashing-mag:before {
	content: "\f1db";
}

/* line 571, ../sass/_foundfont.scss */
.foundicon-social-snapchat:before {
	content: "\f1dc";
}

/* line 572, ../sass/_foundfont.scss */
.foundicon-social-spotify:before {
	content: "\f1dd";
}

/* line 573, ../sass/_foundfont.scss */
.foundicon-social-squidoo:before {
	content: "\f1de";
}

/* line 574, ../sass/_foundfont.scss */
.foundicon-social-stack-overflow:before {
	content: "\f1df";
}

/* line 575, ../sass/_foundfont.scss */
.foundicon-social-steam:before {
	content: "\f1e0";
}

/* line 576, ../sass/_foundfont.scss */
.foundicon-social-stumbleupon:before {
	content: "\f1e1";
}

/* line 577, ../sass/_foundfont.scss */
.foundicon-social-treehouse:before {
	content: "\f1e2";
}

/* line 578, ../sass/_foundfont.scss */
.foundicon-social-tumblr:before {
	content: "\f1e3";
}

/* line 579, ../sass/_foundfont.scss */
.foundicon-social-twitter:before {
	content: "\f1e4";
}

/* line 580, ../sass/_foundfont.scss */
.foundicon-social-vimeo:before {
	content: "\f1e5";
}

/* line 581, ../sass/_foundfont.scss */
.foundicon-social-windows:before {
	content: "\f1e6";
}

/* line 582, ../sass/_foundfont.scss */
.foundicon-social-xbox:before {
	content: "\f1e7";
}

/* line 583, ../sass/_foundfont.scss */
.foundicon-social-yahoo:before {
	content: "\f1e8";
}

/* line 584, ../sass/_foundfont.scss */
.foundicon-social-yelp:before {
	content: "\f1e9";
}

/* line 585, ../sass/_foundfont.scss */
.foundicon-social-youtube:before {
	content: "\f1ea";
}

/* line 586, ../sass/_foundfont.scss */
.foundicon-social-zerply:before {
	content: "\f1eb";
}

/* line 587, ../sass/_foundfont.scss */
.foundicon-social-zurb:before {
	content: "\f1ec";
}

/* line 588, ../sass/_foundfont.scss */
.foundicon-sound:before {
	content: "\f1ed";
}

/* line 589, ../sass/_foundfont.scss */
.foundicon-star:before {
	content: "\f1ee";
}

/* line 590, ../sass/_foundfont.scss */
.foundicon-stop:before {
	content: "\f1ef";
}

/* line 591, ../sass/_foundfont.scss */
.foundicon-strikethrough:before {
	content: "\f1f0";
}

/* line 592, ../sass/_foundfont.scss */
.foundicon-subscript:before {
	content: "\f1f1";
}

/* line 593, ../sass/_foundfont.scss */
.foundicon-superscript:before {
	content: "\f1f2";
}

/* line 594, ../sass/_foundfont.scss */
.foundicon-tablet-landscape:before {
	content: "\f1f3";
}

/* line 595, ../sass/_foundfont.scss */
.foundicon-tablet-portrait:before {
	content: "\f1f4";
}

/* line 596, ../sass/_foundfont.scss */
.foundicon-target-two:before {
	content: "\f1f5";
}

/* line 597, ../sass/_foundfont.scss */
.foundicon-target:before {
	content: "\f1f6";
}

/* line 598, ../sass/_foundfont.scss */
.foundicon-telephone-accessible:before {
	content: "\f1f7";
}

/* line 599, ../sass/_foundfont.scss */
.foundicon-telephone:before {
	content: "\f1f8";
}

/* line 600, ../sass/_foundfont.scss */
.foundicon-text-color:before {
	content: "\f1f9";
}

/* line 601, ../sass/_foundfont.scss */
.foundicon-thumbnails:before {
	content: "\f1fa";
}

/* line 602, ../sass/_foundfont.scss */
.foundicon-ticket:before {
	content: "\f1fb";
}

/* line 603, ../sass/_foundfont.scss */
.foundicon-torso-business:before {
	content: "\f1fc";
}

/* line 604, ../sass/_foundfont.scss */
.foundicon-torso-female:before {
	content: "\f1fd";
}

/* line 605, ../sass/_foundfont.scss */
.foundicon-torso:before {
	content: "\f1fe";
}

/* line 606, ../sass/_foundfont.scss */
.foundicon-torsos-all-female:before {
	content: "\f1ff";
}

/* line 607, ../sass/_foundfont.scss */
.foundicon-torsos-all:before {
	content: "\f200";
}

/* line 608, ../sass/_foundfont.scss */
.foundicon-torsos-female-male:before {
	content: "\f201";
}

/* line 609, ../sass/_foundfont.scss */
.foundicon-torsos-male-female:before {
	content: "\f202";
}

/* line 610, ../sass/_foundfont.scss */
.foundicon-torsos:before {
	content: "\f203";
}

/* line 611, ../sass/_foundfont.scss */
.foundicon-trash:before {
	content: "\f204";
}

/* line 612, ../sass/_foundfont.scss */
.foundicon-trees:before {
	content: "\f205";
}

/* line 613, ../sass/_foundfont.scss */
.foundicon-trophy:before {
	content: "\f206";
}

/* line 614, ../sass/_foundfont.scss */
.foundicon-underline:before {
	content: "\f207";
}

/* line 615, ../sass/_foundfont.scss */
.foundicon-universal-access:before {
	content: "\f208";
}

/* line 616, ../sass/_foundfont.scss */
.foundicon-unlink:before {
	content: "\f209";
}

/* line 617, ../sass/_foundfont.scss */
.foundicon-unlock:before {
	content: "\f20a";
}

/* line 618, ../sass/_foundfont.scss */
.foundicon-upload-cloud:before {
	content: "\f20b";
}

/* line 619, ../sass/_foundfont.scss */
.foundicon-upload:before {
	content: "\f20c";
}

/* line 620, ../sass/_foundfont.scss */
.foundicon-usb:before {
	content: "\f20d";
}

/* line 621, ../sass/_foundfont.scss */
.foundicon-video:before {
	content: "\f20e";
}

/* line 622, ../sass/_foundfont.scss */
.foundicon-volume-none:before {
	content: "\f20f";
}

/* line 623, ../sass/_foundfont.scss */
.foundicon-volume-strike:before {
	content: "\f210";
}

/* line 624, ../sass/_foundfont.scss */
.foundicon-volume:before {
	content: "\f211";
}

/* line 625, ../sass/_foundfont.scss */
.foundicon-web:before {
	content: "\f212";
}

/* line 626, ../sass/_foundfont.scss */
.foundicon-wheelchair:before {
	content: "\f213";
}

/* line 627, ../sass/_foundfont.scss */
.foundicon-widget:before {
	content: "\f214";
}

/* line 628, ../sass/_foundfont.scss */
.foundicon-wrench:before {
	content: "\f215";
}

/* line 629, ../sass/_foundfont.scss */
.foundicon-x-circle:before {
	content: "\f216";
}

/* line 630, ../sass/_foundfont.scss */
.foundicon-x:before {
	content: "\f217";
}

/* line 631, ../sass/_foundfont.scss */
.foundicon-yen:before {
	content: "\f218";
}

/* line 632, ../sass/_foundfont.scss */
.foundicon-zoom-in:before {
	content: "\f219";
}

/* line 633, ../sass/_foundfont.scss */
.foundicon-zoom-out:before {
	content: "\f21a";
}

/******************************************************************
Site Name:
Author:

Stylesheet: Main Stylesheet

Here's where the magic happens. Here, you'll see we are calling in
the separate media queries. The base mobile goes outside any query
and is called at the beginning, after that we call the rest
of the styles inside media queries.
******************************************************************/
/*
BASE (MOBILE) SIZE
This are the mobile styles. It's what people see on their phones. If
you set a great foundation, you won't need to add too many styles in
the other stylesheets. Remember, keep it light: Speed is Important.
*/
/******************************************************************
Site Name:
Author:

Stylesheet: Base Mobile Stylesheet

Be light and don't over style since everything here will be
loaded by mobile devices. You want to keep it as minimal as
possible. This is called at the top of the main stylsheet
and will be used across all viewports.

******************************************************************/
/*********************
GENERAL STYLES
*********************/

/* line 28, ../sass/_base.scss */
a:visited { color: #165b7e; }

/* line 30, ../sass/_base.scss */
strong, b, th { font-weight: 500; }

/* line 37, ../sass/_base.scss */
.mejs-container, .mejs-embed, .mejs-embed body { background-color: #0084C7; }

/* line 39, ../sass/_base.scss */
button, html input[type="button"], input[type="reset"], input[type="submit"], input[type="text"], input[type="email"], input[type="url"], input[type="password"], input[type="search"], textarea { border-radius: 1px; font-weight: 300; }

/********************
MY HOUSE MY STYLES
********************/
/* line 51, ../sass/_base.scss */
.pace .pace-progress { background: #0084c7; position: fixed; z-index: 2000; top: 0; left: 0; height: 2px; -webkit-transition: width 1s; -moz-transition: width 1s; -o-transition: width 1s; transition: width 1s; }

/* line 65, ../sass/_base.scss */
.pace-inactive { display: none; }

/* line 72, ../sass/_base.scss */
fieldset.lift-search-form-filters { display: none; font-weight: 300; }
/* line 75, ../sass/_base.scss */
fieldset.lift-search-form-filters ul li { margin-bottom: 0.5em; }
/* line 76, ../sass/_base.scss */
fieldset.lift-search-form-filters .lift-filter-expand { margin: 1em 0; }

/* line 78, ../sass/_base.scss */
.lift-search-form-filters li div { font-weight: 300; font-family: "Roboto Slab", "aleo", "prenton-condensed", "league-gothic", "League Gothic", Candara, Calibri, Segoe, "Segoe UI", Optima, Arial, sans-serif; font-size: 1.1em; }

/* line 83, ../sass/_base.scss */
body.search-results fieldset.lift-search-form-filters { display: block !important; }

/********************
Header
********************/
/* line 93, ../sass/_base.scss */
#masthead h1.site-title { border: 0; font: 0/0 a; text-shadow: none; color: transparent; background: url('/wp-content/themes/procom/img/procom-logo.svg?1373642962'); background-repeat: no-repeat; background-size: auto auto; background-position:center center; width: 177px; height: 65px; background-size:contain; }
/* line 106, ../sass/_base.scss */
#masthead h2.site-description { display: none; }

#masthead .main-navigation { font-size: 1.1em; font-weight: 300; }

#masthead .main-navigation ul.menu { float:left; }

#masthead .main-navigation ul.menu li { position:static; margin: 0em; }

#masthead .main-navigation ul.menu li.link-hide {
	display:none;
}

#masthead .main-navigation ul.menu a {
	color: #58585a;
	line-height:70px;
	border-bottom:0px solid #FFF;
	padding:0 0.75rem;
	outline:0;
	text-transform: uppercase;
	font-size:1rem;
	position:relative;
}

@media all and (max-width:1050px) {
	.lang-fr #masthead .main-navigation ul.menu a {
		text-transform:none;
	}
}

@media all and (max-width:850px) {
	.lang-fr #masthead .main-navigation ul.menu a {
		font-size:0.85rem;
	}
}

@media all and (max-width:768px) {
	.lang-fr #masthead .main-navigation ul.menu a {
		text-transform:uppercase;
		font-size:1rem;
	}

	#masthead h1.site-title {
		height:50px;
	}

	.site-branding .menu-toggle {
		margin-top:0px;
	}
}

@media all and (min-width:768px) {
	#masthead .main-navigation ul.menu li.item-cta a {
		text-align:center;
		color:#FFF;
		background-color:#26A7DF;
		border-radius:10px;
		line-height:60px;
		margin:5px 0;

	}
}

#masthead .main-navigation ul.menu li.menu-item-has-children a span.icon-dropdown {
	margin-left:5px; display:none;
}

#masthead .main-navigation ul.menu li:hover > a {
	border-bottom-color:#E6E7E8;
	color:#0079be;
}

@media all and (min-width:768px) {
	#masthead .main-navigation ul.menu li:hover > a {
		background-color:#E6E7E8;
	}
}

#masthead .main-navigation ul.menu li.link-highlight a {
	color:#f47a20;
}

#masthead .main-navigation ul.menu li:hover > a:before,
#masthead .main-navigation ul.menu > li.current_page_parent.menu-item-has-children > a:before,
#masthead .main-navigation ul.menu > li.current-menu-item > a:before,
.languages-selector .languages-current:hover a:before {
	position:absolute;
	content: '';
	top:100%;
	left:0;
	right:0;
	width:100%;
	height:4px;
	background-color:#007ABD;
}

#masthead .main-navigation ul.menu > li.item-cta:hover > a:before {
	display:none;
}

#masthead .main-navigation ul.menu ul {
	float:none;
	position:absolute;
	left:auto;
	right:0;
	top:100%;
	width:100%;
	background-color:#FFF;
	display:table;
	border-top:4px
	solid #007ABD;
	display:none;
}

#masthead .main-navigation ul.menu ul li {
	display:block;
	float:none;
	width:auto;
}

#masthead .main-navigation ul.menu ul li a {
	display:block;
	width:auto;
	text-align:right;
	line-height:50px;
	position:relative;
	border-bottom:1px solid #E6E7E8;
}

#masthead .main-navigation ul.menu ul li a span.item-desc { display:block; color:#231f20; }

#masthead .main-navigation ul.menu ul li a span.item-desc span.item-arrow { color:#0079be; margin-left:5px; }

#masthead .main-navigation ul.menu ul li.dropdown a { padding-top:90px; background-position:center top; background-repeat:no-repeat; }

#masthead .main-navigation ul.menu ul li.about a { background-image:url('../img/icon-about.png'); }

#masthead .main-navigation ul.menu ul li.contact a { background-image:url('../img/icon-contact.png'); }

#masthead .main-navigation ul.menu ul li:last-child a { }

#masthead .main-navigation ul.menu > li.current_page_parent.menu-item-has-children > a,
#masthead .main-navigation ul.menu > li.current-menu-item > a {
	color:#007ABD;
	border-bottom-color:#007ABD;
	font-weight:500;
}

#masthead .main-navigation ul.menu > li.item-cta.current-menu-item > a,
#masthead .main-navigation ul.menu li.item-cta:hover > a {
	border-bottom-width:0px;
	background-color:#26A7DF;
	color:#FFF;
}

#masthead .main-navigation ul.menu > li.item-cta.current-menu-item > a:before {
	display:none;
}

#masthead .main-navigation ul.menu li.dropdown-list {
	position:relative;
}


@media all and (min-width:768px) {
	#masthead .main-navigation ul.menu li.dropdown-list:hover ul,
	#masthead .main-navigation ul.menu li.menu-item-has-children:hover ul {
		display:block;
		left:auto;
		right:0;
		width:auto;
		min-width:300%;
	}
}

#masthead .main-navigation ul.menu li.dropdown-list:hover ul li,
#masthead .main-navigation ul.menu li.dropdown-list.open ul li {
	display:block;
	width:auto;
}

#masthead .main-navigation .languages-selector { float:right; position:relative; }

.languages-selector .languages-current { text-align:center; }

.languages-selector .languages-current a {
	line-height:70px; padding:0 0.75rem; color:#58585a; outline:0;
}

.languages-selector .languages-current a, .languages-selector .languages-current a img {
	vertical-align:middle;
}

.languages-selector .list-languages {
	position:absolute; display:none; right:0; top:100%; border:4px solid #E6E7E8; border-top-width:4px; z-index:2; background-color:#FFF; width:100%;
}

.languages-selector .list-languages.open {
	display:block;
}

.languages-selector .list-languages li {
	line-height:44px; text-align:center; display:block; float:none;
}

.languages-selector .list-languages li a {
	padding:6px 0; color:#58585a; font-size:1.1em; font-weight:300;
}

.languages-selector .list-languages li a span {
	line-height:32px; display:block;
}

.languages-selector .list-languages li:hover a span {
	background-color:#E6E7E8;
}

.languages-selector .list-languages li.current-language a {
	color:#007ABD;
}

.languages-selector ul {
	display:none;
}

.languages-selector:hover .languages-current a {
	border-bottom-color:#E6E7E8;
}

.languages-selector .list-languages.open {
	display:block;
	min-width:200px;
}

/* line 127, ../sass/_base.scss */
#masthead { width: 100%; margin-left: auto; margin-right: auto; margin-top: 0; margin-bottom: 0; *zoom: 1; max-width: 100%; background-color: white; position:relative; }
/* line 121, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_global.scss */
#masthead:before, #masthead:after { content: " "; display: table; }
/* line 122, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_global.scss */
#masthead:after { clear: both; }
/* line 130, ../sass/_base.scss */
#masthead .menu-toggle { font-size: 1.4375em; font-family: "Roboto Condensed", "aleo", "prenton-condensed", "league-gothic", "League Gothic", Candara, Calibri, Segoe, "Segoe UI", Optima, Arial, sans-serif; color: #f67a14; }
/* line 136, ../sass/_base.scss */
#masthead > .site-branding { width: 100%; float: left; padding-left: 0; position:relative; z-index:3; }
/* line 139, ../sass/_base.scss */
#masthead > .main-navigation { width: 100%; float: right; clear: none; position:relative; z-index:2; }

/********************
BUTTONS
********************/
/* line 149, ../sass/_base.scss */
.button-block { margin: 0 auto 2em auto; height: 150px; }
/* line 156, ../sass/_base.scss */
.button-block p { border-style: solid; border-width: 1px; cursor: pointer; font-family: inherit; font-weight: bold; line-height: normal; margin: 0 0 1.25em; position: relative; text-decoration: none; text-align: center; display: inline-block; padding-top: 0.75em; padding-right: 1.5em; padding-bottom: 0.8125em; padding-left: 1.5em; font-size: 1em; background-color: #0084c7; border-color: #006294; color: white; padding-top: 1em; padding-right: 2em; padding-bottom: 1.0625em; padding-left: 2em; font-size: 1.25em; padding-top: 1em; padding-bottom: 1.0625em; padding-right: 0; padding-left: 0; width: 100%; background-color: #70c62a; border-color: #589c21; color: white; font-size: 1.6875em; text-align: center; margin: 0 0 2em 0; }
/* line 122, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_buttons.scss */
.button-block p:hover, .button-block p:focus { background-color: #006294; }
/* line 133, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_buttons.scss */
.button-block p:hover, .button-block p:focus { color: white; }
/* line 122, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_buttons.scss */
.button-block p:hover, .button-block p:focus { background-color: #589c21; }
/* line 133, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_buttons.scss */
.button-block p:hover, .button-block p:focus { color: white; }
/* line 160, ../sass/_base.scss */
.button-block p:visited { color: #fff; }
/* line 173, ../sass/_base.scss */
.button-block img { margin: 0 auto; display: block; text-align: center; display: none; }

/* line 178, ../sass/_base.scss */
.action-block { width: 100%; margin-left: auto; margin-right: auto; margin-top: 0; margin-bottom: 0; max-width: 70em; *zoom: 1; margin-bottom: 2em; display: table; }
/* line 121, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_global.scss */
.action-block:before, .action-block:after { content: " "; display: table; }
/* line 122, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_global.scss */
.action-block:after { clear: both; }
/* line 187, ../sass/_base.scss */
.action-block .txt { position: relative; padding-left: 0.9375em; padding-right: 0.9375em; width: 100%; float: left; padding: 20px 20px 0 20px; display: table-cell; -moz-border-radius: 5px; -webkit-border-radius: 5px; border-radius: 5px; }
/* line 192, ../sass/_base.scss */
.action-block .txt h2 { font-size: 1.4375em; font-weight: 300; color: #000; text-align: center; font-family: "Roboto", "open-sans", "museo-sans", "Segoe UI", Candara, "Bitstream Vera Sans", "DejaVu Sans", "Bitstream Vera Sans", "Trebuchet MS", Verdana, "Verdana Ref", sans-serif; margin: 0; padding:0; line-height: 1em; }
/* line 198, ../sass/_base.scss */
.action-block .action-button { position: relative; padding-left: 0.9375em; padding-right: 0.9375em; width: 100%; float: left; display: table-cell; background-color: #70c62a; border: 2px solid #70c62a; border-left: none; padding: 20px; font-size: 1.4375em; font-weight: 300; color: #fff; font-family: "Roboto", "open-sans", "museo-sans", "Segoe UI", Candara, "Bitstream Vera Sans", "DejaVu Sans", "Bitstream Vera Sans", "Trebuchet MS", Verdana, "Verdana Ref", sans-serif; -webkit-transition: background-color 0.1s linear; -webkit-transition-delay: 0s; -moz-transition: background-color 0.1s linear 0s; -o-transition: background-color 0.1s linear 0s; transition: background-color 0.1s linear 0s; text-align: center; }
/* line 207, ../sass/_base.scss */
.action-block .action-button:hover { background-color: #82d63e; }
/* line 217, ../sass/_base.scss */
.action-block #submitresume img { width: 75px; padding-right: 5px; }

/* line 223, ../sass/_base.scss */
.home .action-block i, .single-job_order .action-block i, .type-jobs .action-block i { line-height: 0; margin-right: 0.5em; }

/* line 226, ../sass/_base.scss */
.apply { border-style: solid; border-width: 1px; cursor: pointer; font-family: inherit; font-weight: bold; line-height: normal; margin: 0 0 1.25em; position: relative; text-decoration: none; text-align: center; display: inline-block; padding-top: 0.75em; padding-right: 1.5em; padding-bottom: 0.8125em; padding-left: 1.5em; font-size: 1em; background-color: #0084c7; border-color: #006294; color: white; padding-top: 1em; padding-right: 2em; padding-bottom: 1.0625em; padding-left: 2em; font-size: 1.25em; padding-top: 1em; padding-bottom: 1.0625em; padding-right: 0; padding-left: 0; width: 100%; background-color: #70c62a; border-color: #589c21; color: white; max-width: 21em; }
.widget .apply { margin-bottom:0px; }
/* line 122, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_buttons.scss */
.apply:hover, .apply:focus { background-color: #006294; }
/* line 133, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_buttons.scss */
.apply:hover, .apply:focus { color: white; }
/* line 122, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_buttons.scss */
.apply:hover, .apply:focus { background-color: #589c21; }
/* line 133, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_buttons.scss */
.apply:hover, .apply:focus { color: white; }
/* line 286, ../sass/_768up.scss */
.apply:visited { color: #fff; }

/* line 229, ../sass/_base.scss */
.action { border-style: solid; border-width: 1px; cursor: pointer; font-family: inherit; font-weight: bold; line-height: normal; margin: 0 0 1.25em; position: relative; text-decoration: none; text-align: center; display: inline-block; padding-top: 0.75em; padding-right: 1.5em; padding-bottom: 0.8125em; padding-left: 1.5em; font-size: 1em; background-color: #0084c7; border-color: #006294; color: white; padding-top: 1em; padding-right: 2em; padding-bottom: 1.0625em; padding-left: 2em; font-size: 1.25em; padding-top: 1em; padding-bottom: 1.0625em; padding-right: 0; padding-left: 0; width: 100%; background-color: #70c62a; border-color: #589c21; color: white; }
/* line 122, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_buttons.scss */
.action:hover, .action:focus { background-color: #006294; }
/* line 133, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_buttons.scss */
.action:hover, .action:focus { color: white; }
/* line 122, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_buttons.scss */
.action:hover, .action:focus { background-color: #589c21; }
/* line 133, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_buttons.scss */
.action:hover, .action:focus { color: white; }
/* line 233, ../sass/_base.scss */
.action:visited { color: #fff; }

/********************
MY HOUSE MY STYLES
********************/
/* line 242, ../sass/_base.scss */
#primary { position: relative; width: 100%; float: left; }

/* line 243, ../sass/_base.scss */
#secondary { position: relative; width: 100%; float: left; }
/* line 245, ../sass/_base.scss */
#secondary .tagcloud { font-weight: 300; }
/* line 248, ../sass/_base.scss */
#secondary h1 { font-size: 2.3125em; }
/* line 253, ../sass/_base.scss */
#secondary #lift_form_widget-2 .desc-text { display: block; font-size: 1.2em; font-weight: 300; padding: 0.5em; }
/* line 260, ../sass/_base.scss */
#secondary #lift_form_widget-2 input[type=submit] { margin-top: 0.5em; }

/* line 272, ../sass/_base.scss */
#main { background-position: center bottom; width: 100%; margin-left: auto; margin-right: auto; margin-top: 0; margin-bottom: 0; *zoom: 1; }
/* line 121, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_global.scss */
#main:before, #main:after { content: " "; display: table; }
/* line 122, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_global.scss */
#main:after { clear: both; }
/* line 281, ../sass/_base.scss */
.home #main { max-width: 100%; }
/* line 283, ../sass/_base.scss */
#main h1.entry-title { margin-bottom: 0.20em; line-height: 1.1em; color: #0084c7; margin-bottom: 0; font-size:2rem; margin-top:1rem; }
#main h1.entry-title a { color:#24A7D7; }
/* line 288, ../sass/_base.scss */
#main h1.entry-title .entry-city { font-weight: 100; }
/* line 290, ../sass/_base.scss */
#main h1.section-title, #main h1.page-title { font-weight: 700; font-size: 2.3125em; color: #f67a14; }
/* line 297, ../sass/_base.scss */
#main .entry-meta { font-size: 1.2em; font-family: "Roboto Condensed", "aleo", "prenton-condensed", "league-gothic", "League Gothic", Candara, Calibri, Segoe, "Segoe UI", Optima, Arial, sans-serif; font-weight: 300; color: #f67a14; line-height: 1.1em; }
/* line 304, ../sass/_base.scss */
#main .entry-meta a { color: #f67a14; }
/* line 305, ../sass/_base.scss */
#main .entry-meta a:hover { text-decoration: underline; }
/* line 308, ../sass/_base.scss */
#main .job_order p + br { display: none; }

/* line 315, ../sass/_base.scss */
.search-form, .lift-search2 { font-size: 1.2em; padding: 1em 0; border: 1px dashed #aaa; border-left: none; border-right: none; background: #f6f6f6; text-align: center; min-height: 14em; }
/* line 322, ../sass/_base.scss */
.search-form span.desc-text, .lift-search2 span.desc-text { font-weight: 300; display: block; padding-bottom: 1em; }
/* line 323, ../sass/_base.scss */
.search-form input[type="text"], .search-form input[type="search"], .lift-search2 input[type="text"], .lift-search2 input[type="search"] { text-align: center; width: 80%; margin-left: auto; margin-right: auto; padding: 0; }

/* line 332, ../sass/_base.scss */
.wpml-fr .search-form, .wpml-fr .lift-search2 { font-size: 1em; }

/* line 339, ../sass/_base.scss */
div.alert { margin-bottom: 20px; font-size: 1.2em; padding: 1em 0; border: 1px dashed #aaa; border-left: none; border-right: none; background: #f6f6f6; text-align: center; }

/* line 354, ../sass/_base.scss */
.box { background-color: white; *zoom: 1; filter: progid:DXImageTransform.Microsoft.gradient(gradientType=1, startColorstr='#FFFFFFFF', endColorstr='#FFEBEBEB'); background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PHJhZGlhbEdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgY3g9IjUwJSIgY3k9IiIgcj0iMTAwIj48c3RvcCBvZmZzZXQ9IjUxJSIgc3RvcC1jb2xvcj0iI2ZmZmZmZiIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iI2ViZWJlYiIvPjwvcmFkaWFsR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA=='); background-size: 100%; background-image: -webkit-gradient(radial, 50%, 0, 50%, 100, color-stop(51%, #ffffff), color-stop(100%, #ebebeb)); background-image: -webkit-radial-gradient(center, ellipse cover, #ffffff 51%, #ebebeb 100%); background-image: -moz-radial-gradient(center, ellipse cover, #ffffff 51%, #ebebeb 100%); background-image: -o-radial-gradient(center, ellipse cover, #ffffff 51%, #ebebeb 100%); background-image: radial-gradient(center, ellipse cover, #ffffff 51%, #ebebeb 100%); border: 1px solid #DDD; padding: 0.75em 0.5em 0; padding: 2em; margin: 1em 0; width: auto; overflow: auto; }
/* line 358, ../sass/_base.scss */
.box strong { color: #176c7d; color: #f67a14; font-size: 1.125em; font-weight: 400; }
/* line 368, ../sass/_base.scss */
.box img { float: left; margin-bottom: 0; padding-right: 2em; }
/* line 384, ../sass/_base.scss */
.box.snappy { font-size: 1.6875em; line-height: 1.4375em; text-align: right; max-width: 32em; padding: 1.5em; font-weight: 300; }
/* line 391, ../sass/_base.scss */
.box.snappy img { padding-right: 1em; }
/* line 393, ../sass/_base.scss */
.box p:last-child { margin-bottom: 0; }

/* line 398, ../sass/_base.scss */
.walkthrough .snappy.box { font-size: 1.125em; text-align: center; padding: 0.5em; background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PHJhZGlhbEdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgY3g9IjUwJSIgY3k9IiIgcj0iMTAwIj48c3RvcCBvZmZzZXQ9IjUxJSIgc3RvcC1jb2xvcj0iI2ZmZmZmZiIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iI2ViZWJlYiIvPjwvcmFkaWFsR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA=='); background-size: 100%; background-image: -webkit-gradient(radial, 50%, 0, 50%, 100, color-stop(51%, #ffffff), color-stop(100%, #ebebeb)); background-image: -webkit-radial-gradient(center, ellipse cover, #ffffff 51%, #ebebeb 100%); background-image: -moz-radial-gradient(center, ellipse cover, #ffffff 51%, #ebebeb 100%); background-image: -o-radial-gradient(center, ellipse cover, #ffffff 51%, #ebebeb 100%); background-image: radial-gradient(center, ellipse cover, #ffffff 51%, #ebebeb 100%); }
/* line 404, ../sass/_base.scss */
.walkthrough .snappy.box h2 { font-size: 1.2em; margin: 0; colour: #fff; }

/* line 413, ../sass/_base.scss */
table.stats { display: none; }

/* line 425, ../sass/_base.scss */
.archive h1.entry-title, .search-results h1.entry-title, .blog h1.entry-title { font-size: 1.4375em; }
/* line 426, ../sass/_base.scss */
.archive .entry-summary, .search-results .entry-summary, .blog .entry-summary { margin-top: 0.5em; }

/* line 429, ../sass/_base.scss */
.page-content, .entry-content, .entry-summary { margin: 1em 0 0; }

/* line 433, ../sass/_base.scss */
.trifecta { text-align: center; display:none; }
/* line 441, ../sass/_base.scss */
.trifecta img.deco { position: relative; padding-left: 0.9375em; padding-right: 0.9375em; width: 16.66667%; float: left; padding: 4em 0 0 0; }
/* line 446, ../sass/_base.scss */
.trifecta .introbox, .trifecta .introbox2 { position: relative; padding-left: 0.9375em; padding-right: 0.9375em; width: 100%; float: left; padding: 3em 2em; margin-bottom: 0; color: #777; }
/* line 454, ../sass/_base.scss */
.trifecta .introbox2 { position: relative; padding-left: 0.9375em; padding-right: 0.9375em; width: 83.33333%; float: left; }
/* line 455, ../sass/_base.scss */
.trifecta h1 { font-size: 1.4375em; color: #333; }
/* line 456, ../sass/_base.scss */
.trifecta ul { list-style-type: none; }

/* line 459, ../sass/_base.scss */
.content { width: 100%; margin-left: auto; margin-right: auto; margin-top: 0; margin-bottom: 0; max-width: 70em; *zoom: 1; padding: 2em 0; }
/* line 121, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_global.scss */
.content:before, .content:after { content: " "; display: table; }
/* line 122, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_global.scss */
.content:after { clear: both; }
/* line 462, ../sass/_base.scss */
.content h2 { text-align: center; font-size: 2.75em; }

@media all and (max-width:768px) {
	.procom-tagline h2 { font-size:1.35rem; }
}

/* line 470, ../sass/_base.scss */
.vcard { border: none; margin: 0; padding: 0; }

/* line 475, ../sass/_base.scss */
.vcard .fn { font-size: inherit; font-weight: bold; }

/* line 481, ../sass/_base.scss */
.jobmeta { 1display: none; }
/* line 491, ../sass/_base.scss */
.jobmeta th { width: 6em; }
/* line 488, ../sass/_base.scss */
.jobmeta th, .jobmeta td { padding-left: 1em; padding-right: 2em; line-height: 1.5em; }

/* line 493, ../sass/_base.scss */
#map-canvas { height: 25em; border: 1px solid #0084c7; }

/* line 499, ../sass/_base.scss */
#offices h2 { clear: both; }
/* line 501, ../sass/_base.scss */
#offices .officebox { width: 33.333333%; text-align: center; float: left; padding: 0.5em 0.5em 0 0.5em; margin: 0.5em 0; border: 1px solid #fff; border: 1px solid #dddddd; min-height: 28em; }
.lang-es #offices .officebox { min-height:35em; }
@media all and (min-width:901px) { .officeboxes .officebox:nth-child(3n+4) { clear:left; } }
@media all and (max-width:900px) { #offices .officebox { width:50%; }}
@media all and (max-width:450px) { #offices .officebox { width:100%; }}

/* line 516, ../sass/_base.scss */
#offices .officebox img { margin-bottom: 0; }
/* line 517, ../sass/_base.scss */
#offices .officebox .adr { height: 7em; }
/* line 521, ../sass/_base.scss */
#offices .officebox h4 { font-size: 1em; }
/* line 522, ../sass/_base.scss */
#offices .officebox p { font-size: 0.9em; line-height: 1.2em; }
/* line 524, ../sass/_base.scss */
#offices .officebox a { color: #0084c7; }
/* line 525, ../sass/_base.scss */
#offices .officebox a:hover { color: #0073ae; }
/* line 527, ../sass/_base.scss */
#offices .officebox:hover { -webkit-transition: background-color 0.1s linear; -webkit-transition-delay: 0s; -moz-transition: background-color 0.1s linear 0s; -o-transition: background-color 0.1s linear 0s; transition: background-color 0.1s linear 0s; -webkit-transition-property: background-color, border; -moz-transition-property: background-color, border; -o-transition-property: background-color, border; transition-property: background-color, border; border: 1px solid #dddddd; }

/* line 544, ../sass/_base.scss */
label.error { font-size: 0.8em; line-height: 1em; width: 100%; padding: 0.5em 0 1em; }

/* line 555, ../sass/_base.scss */
.nivo-lightbox-wrap { position: absolute; top: 10%; bottom: 10%; left: 10%; right: 10%; }

/* line 550, ../sass/_base.scss */
div.sharedaddy, #content div.sharedaddy, #main div.sharedaddy, div.sharedaddy h3, #content div.sharedaddy h3, #main div.sharedaddy h3, #primary div.sharedaddy h3, div.sharedaddy a.sd-button { font-family: "Roboto Condensed", "aleo", "prenton-condensed", "league-gothic", "League Gothic", Candara, Calibri, Segoe, "Segoe UI", Optima, Arial, sans-serif; font-size: 0.9em; font-weight: 300; }

/* line 572, ../sass/_base.scss */
#content div.sharedaddy h3 { font-size: 1em; font-weight: 300; font-family: "Roboto", "open-sans", "museo-sans", "Segoe UI", Candara, "Bitstream Vera Sans", "DejaVu Sans", "Bitstream Vera Sans", "Trebuchet MS", Verdana, "Verdana Ref", sans-serif; }

/* line 561, ../sass/_base.scss */
div.sharedaddy a.sd-button { border-radius: 0; }

/* line 563, ../sass/_base.scss */
div.sharedaddy div.sd-block { border-bottom: 1px dashed rgba(0, 0, 0, 0.13); border-top: 1px dashed rgba(0, 0, 0, 0.13); }

/********************
Footer
********************/
/* line 573, ../sass/_base.scss */
#tweetbar { background-color: #00aced; color: #fff; padding: 0.5em 2em; text-align: center; }
/* line 576, ../sass/_base.scss */
#tweetbar i,
#tweetbar span.foundicon-icon { font-size: 1.6875em; vertical-align: -7px; }
/* line 577, ../sass/_base.scss */
#tweetbar ul { list-style: none; margin: 0; padding: 0 0 0 1em; display: inline-block; }
/* line 578, ../sass/_base.scss */
#tweetbar .rstw_comma { display: none; }
/* line 579, ../sass/_base.scss */
#tweetbar .twitter-timestamp { font-size: 0.8em; }
/* line 580, ../sass/_base.scss */
#tweetbar a { color: #fff; outline:none; }
/* line 581, ../sass/_base.scss */
#tweetbar a:hover { text-decoration: underline; }
/* line 582, ../sass/_base.scss */
#tweetbar a.smlink:hover { text-decoration: none; }

/* line 586, ../sass/_base.scss */
#colophon { margin: 0; text-align: center; padding: 20px; font-size: 80%; color: #fff; background-color:#3C4E5A; }
/* line 587, ../sass/_base.scss */
#colophon a { color: #fff; }
/* line 588, ../sass/_base.scss */
#colophon a:hover { text-decoration: underline; }

/********************
WORDPRESS BODY CLASSES
style a page via class
********************/
/* for sites that are read right to left (i.e. hebrew) */
/* line 600, ../sass/_base.scss */
.home article.page { text-align: center; }

/* home page */
/* blog template page */
/* archive page */
/* date archive page */
/* replace the number to the corresponding page number */
/* search page */
/* search result page */
/* no results search page */
/* individual paged search (i.e. body.search-paged-3) */
/* 404 page */
/* single post page */
/* individual post page by id (i.e. body.postid-73) */
/* individual paged single (i.e. body.single-paged-3) */
/* attatchment page */
/* individual attatchment page (i.e. body.attachmentid-763) */
/* style mime type pages */
/* author page */
/* user nicename (i.e. body.author-samueladams) */
/* paged author archives (i.e. body.author-paged-4) for page 4 */
/* category page */
/* individual category page (i.e. body.category-6) */
/* replace the number to the corresponding page number */
/* tag page */
/* individual tag page (i.e. body.tag-news) */
/* replace the number to the corresponding page number */
/* custom page template page */
/* individual page template (i.e. body.page-template-contact-php */
/* replace the number to the corresponding page number */
/* parent page template */
/* child page template */
/* replace the number to the corresponding page number */
/* if user is logged in */
/* paged items like search results or archives */
/* individual paged (i.e. body.paged-3) */
/*********************
HEADER STYLES
*********************/
/*********************
NAVIGATION STYLES
*********************/
/*
all navs have a .nav class applied via
the wp_menu function; this is so we can
easily write one group of styles for
the navs on the site so our css is cleaner
and more scalable.
*/
/* line 661, ../sass/_base.scss */
.nav { border: 1px solid #ccc; border-bottom: 0; /* end .menu li */ /* highlight current page */ /* end current highlighters */ }
/* line 665, ../sass/_base.scss */
.nav li { /*
so you really have to rethink your dropdowns for mobile.
you don't want to have it expand too much because the
screen is so small. How you manage your menu should
depend on the project. Here's some great info on it:
http://www.alistapart.com/articles/organizing-mobile/
*/ }
/* line 667, ../sass/_base.scss */
.nav li a { display: block; text-decoration: none; padding: 10px 10px; background-color: #eee; border-bottom: 1px solid #ccc; /*
remember this is for mobile ONLY, so there's no need
to even declare hover styles here, you can do it in
the style.scss file where it's relevant. We want to
keep this file as small as possible!
*/ }
/* line 701, ../sass/_base.scss */
.nav li ul.sub-menu li a, .nav li ul.children li a { padding-left: 30px; }

/* end .nav */
/*********************
POSTS & CONTENT STYLES
*********************/
/* line 737, ../sass/_base.scss */
#content { margin-left:auto; margin-right:auto; }

/* end .hentry */
/* want to style individual post classes? Booya! */
/* post by id (i.e. post-3) */
/* general post style */
/* general article on a page style */
/* general style on an attatchment */
/* sticky post style */
/* hentry class */
/* style by category (i.e. category-videos) */
/* style by tag (i.e. tag-news) */
/* post meta */
/* line 770, ../sass/_base.scss */
.byline { color: #999; }

/* entry content */
/* line 777, ../sass/_base.scss */
.entry-content { /*
image alignment on a screen this size may be
a bit difficult. It's set to start aligning
and floating images at the next breakpoint,
but it's up to you. Feel free to change it up.
*/ }

article.job_order .entry-content { font-family:"Verdana"; font-size:14px; }
article.job_order .entry-content b, article.job_order .entry-content strong { font-weight:bold; }

/* line 784, ../sass/_base.scss */
.entry-content ul, .entry-content ol { list-style-position: outside; padding-left: 1em; font-weight: 300; }
/* line 790, ../sass/_base.scss */
.entry-content ul li, .entry-content ol li { padding-bottom: 1em; }
/* line 792, ../sass/_base.scss */
.entry-content ul li:last-child, .entry-content ol li:last-child { padding-bottom: 0; }
/* line 801, ../sass/_base.scss */
.entry-content .et_lb_slider ul li { padding-bottom: 0; }
/* line 825, ../sass/_base.scss */
.entry-content dd { margin-left: 0; font-size: 0.9em; color: #787878; margin-bottom: 1.5em; }
/* line 832, ../sass/_base.scss */
.entry-content img { max-width: 100%; height: auto; }
/* line 848, ../sass/_base.scss */
.entry-content video, .entry-content object { max-width: 100%; height: auto; }
/* line 853, ../sass/_base.scss */
.entry-content pre { background: #eee; border: 1px solid #cecece; padding: 10px; }

/* end .entry-content */
/* line 861, ../sass/_base.scss */
.wp-caption { max-width: 100%; background: #eee; padding: 5px; /* images inside wp-caption */ }
/* line 867, ../sass/_base.scss */
.wp-caption img { max-width: 100%; margin-bottom: 0; width: 100%; }
/* line 873, ../sass/_base.scss */
.wp-caption p.wp-caption-text { font-size: 0.85em; margin: 4px 0 7px; text-align: center; }

/* end .wp-caption */
/* image gallery styles */
/* end .gallery */
/* gallery caption styles */
/******************************************************************
PAGE NAVI STYLES
******************************************************************/
/* line 911, ../sass/_base.scss */
.pagination, .wp-prev-next { margin: 1.1em 0 2.2em; }

/* line 914, ../sass/_base.scss */
.pagination { text-align: center; }
/* line 916, ../sass/_base.scss */
.pagination ul { display: inline-block; white-space: nowrap; padding: 0; clear: both; margin: 1px; }
/* line 922, ../sass/_base.scss */
.pagination ul li { padding: 0; margin: 0; float: left; display: inline; overflow: hidden; }
/* line 928, ../sass/_base.scss */
.pagination ul li a, .pagination ul li span { margin: 0; text-decoration: none; padding: 0; line-height: 1em; font-size: 1em; font-weight: normal; padding: .5em; min-width: 1em; display: block; }
/* line 939, ../sass/_base.scss */
.pagination ul li span.current { font-weight: bold; }

/* end .bones_page_navi */
/* fallback previous & next links */
/* line 954, ../sass/_base.scss */
.wp-prev-next .prev-link { float: left; }
/* line 958, ../sass/_base.scss */
.wp-prev-next .next-link { float: right; }

/* end .wp-prev-next */
/******************************************************************
COMMENT STYLES
******************************************************************/
/* h3 comment title */
/* line 969, ../sass/_base.scss */
#comments { /* number of comments span */ }

/* line 986, ../sass/_base.scss */
.comment-list { /* general comment classes */ /* vcard */ /* end .commentlist .vcard */ /* comment meta */ /* comment content */ /* end .commentlist .comment_content */ /* comment reply link */ /* end .commentlist .comment-reply-link */ }
/* line 988, ../sass/_base.scss */
.comment-list li { position: relative; clear: both; overflow: hidden; list-style-type: none; margin-bottom: 1.5em; padding: 0.7335em 10px; /* end .commentlist li ul.children */ }
/* line 996, ../sass/_base.scss */
.comment-list li:last-child { margin-bottom: 0; }
/* line 1000, ../sass/_base.scss */
.comment-list li ul.children { margin: 0; /* variations */ /* change number for different depth */ }
/* line 1018, ../sass/_base.scss */
.comment-list li[class*=depth-] { margin-top: 1.1em; }
/* line 1022, ../sass/_base.scss */
.comment-list li.depth-1 { margin-left: 0; margin-top: 0; }
/* line 1027, ../sass/_base.scss */
.comment-list li:not(.depth-1) { margin-right: -10px; margin-left: -10px; margin-top: 0; padding-bottom: 0; }
/* line 1041, ../sass/_base.scss */
.comment-list .odd { background: #eee; }
/* line 1044, ../sass/_base.scss */
.comment-list .even { background: #fefefe; }
/* line 1059, ../sass/_base.scss */
.comment-list .vcard { margin-left: 50px; margin-bottom: 0; border: none; }
/* line 1064, ../sass/_base.scss */
.comment-list .vcard cite.fn { font-weight: 700; font-style: normal; }
/* line 1072, ../sass/_base.scss */
.comment-list .vcard time { float: right; }
/* line 1075, ../sass/_base.scss */
.comment-list .vcard time a { color: #999; text-decoration: none; }
/* line 1079, ../sass/_base.scss */
.comment-list .vcard time a:hover { text-decoration: underline; }
/* line 1089, ../sass/_base.scss */
.comment-list .vcard img.avatar { position: absolute; left: 10px; padding: 2px; border: 1px solid #cecece; background: #fff; }
/* line 1107, ../sass/_base.scss */
.comment-list .comment-metadata { font-size: 1.1em; font-family: "Roboto Condensed", "aleo", "prenton-condensed", "league-gothic", "League Gothic", Candara, Calibri, Segoe, "Segoe UI", Optima, Arial, sans-serif; font-weight: 300; color: #f67a14; }
/* line 1114, ../sass/_base.scss */
.comment-list .comment-metadata a { color: #f67a14; }
/* line 1115, ../sass/_base.scss */
.comment-list .comment-metadata a:hover { text-decoration: underline; }
/* line 1122, ../sass/_base.scss */
.comment-list .comment_content { margin-left: 50px; }
/* line 1125, ../sass/_base.scss */
.comment-list .comment_content p { margin: 0.7335em 0 1.5em; font-size: 1em; line-height: 1.5em; }
/* line 1134, ../sass/_base.scss */
.comment-list .comment-reply-link { text-decoration: none; float: right; background: #4598bb; padding: 3px 5px; color: #fff; opacity: 0.65; margin-bottom: 10px; font-weight: 700; font-size: 0.9em; }
/* line 1146, ../sass/_base.scss */
.comment-list .comment-reply-link:hover, .comment-list .comment-reply-link:focus { opacity: 1; }

/* end .commentlist */
/******************************************************************
COMMENT FORM STYLES
******************************************************************/
/* line 1158, ../sass/_base.scss */
.comment-respond { margin: 1.5em 0; padding-bottom: 2.2em; }
/* line 1162, ../sass/_base.scss */
.comment-respond form { margin: 0.75em 0; }
/* line 1165, ../sass/_base.scss */
.comment-respond form li { list-style-type: none; clear: both; margin-bottom: 0.7335em; }
/* line 1171, ../sass/_base.scss */
.comment-respond form li label, .comment-respond form li small { display: none; }
/* line 1179, ../sass/_base.scss */
.comment-respond form input[type=text], .comment-respond form input[type=email], .comment-respond form input[type=url], .comment-respond form textarea { padding: 3px 6px; line-height: 1.5em; /* form validation */ }
/* line 1190, ../sass/_base.scss */
.comment-respond form input[type=text]:invalid, .comment-respond form input[type=email]:invalid, .comment-respond form input[type=url]:invalid, .comment-respond form textarea:invalid { outline: none; border-color: #fbc2c4; background-color: #f6e7eb; -webkit-box-shadow: none; -moz-box-shadow: none; -ms-box-shadow: none; box-shadow: none; }
/* line 1203, ../sass/_base.scss */
.comment-respond form input[type=text], .comment-respond form input[type=email], .comment-respond form input[type=url] { max-width: 400px; min-width: 250px; }
/* line 1208, ../sass/_base.scss */
.comment-respond form textarea { resize: none; width: 97.3%; height: 150px; }

/* comment submit button */
/* comment form title */
/* line 1221, ../sass/_base.scss */
#comment-reply-title { margin: 0 0 1.1em; }

/* cancel comment reply link */
/* logged in comments */
/* allowed tags */
/* line 1234, ../sass/_base.scss */
#allowed_tags { margin: 1.5em 10px 0.7335em 0; }

/* no comments */
/* line 1239, ../sass/_base.scss */
.nocomments { margin: 0 20px 1.1em; }

/*********************
SIDEBARS & ASIDES
*********************/
/* line 1255, ../sass/_base.scss */
.widget ul li { /* deep nesting */ }

/*********************
FOOTER STYLES
*********************/
/* line 1276, ../sass/_base.scss */
.footer { clear: both; }

/*
if you checked out the link above:
http://www.alistapart.com/articles/organizing-mobile/
you'll want to style the footer nav
a bit more in-depth. Remember to keep
it simple because you'll have to
override these styles for the desktop
view.
*/
/* end .footer-links */
/* line 1302, ../sass/_base.scss */
div.wpcf7-response-output { margin: 0 0 1.25em; padding: 0.75em 1.5em 0.8125em; box-shadow: 0 1px 0 rgba(255, 255, 255, 0.5) inset; border-style: solid; border-width: 1px; }

/* line 1316, ../sass/_base.scss */
div.wpcf7-mail-sent-ok { background-color: #70c62a; border-color: #5da423; border-style: solid; border-width: 1px; color: #fff; }

/* line 1323, ../sass/_base.scss */
div.wpcf7-mail-sent-ng { background-color: #ff0000; }

/* line 1326, ../sass/_base.scss */
div.wpcf7-spam-blocked { background-color: #ffa500; }

/* line 1329, ../sass/_base.scss */
div.wpcf7-validation-errors { background-color: #f7e700; border-color: #cec100; border-style: solid; border-width: 1px; }

/**** Given the shitty structure of this document we will simply enter what we need here at the end ****/

/**** Jobs List ****/
#secondary #submit-resume { display: none; }

/* line 1358, ../sass/_base.scss */
.blog #secondary #submit-resume { display: none; }

/**** Self Service ****/
.content-ss {
	background-color:#EDEEF0;
}

.content-ss h1.form-title {
	font-family:'Roboto Slab';
	font-size:2.75em;
	font-weight:400;
	color:#26A7E0;
}

.form-ss .prefix,
.form-ss .form-field input,
.form-ss .form-field-checkbox label,
.form-ss .form-field-link,
.form-ss .form-field-link a {
	font-size:1rem;
}

.form-ss .form-field-submit input {
	font-size:1.2rem;
}

.form-ss .form-field-submit input:focus {
	color:#FFF;
}

.ss-profilez .ss-title {
	color: #26A7E0;
	font-weight:400;
	text-align:center;
	font-size:2.75rem;
}

.ss-profilez .form-heading {
	font-size: 1em;
	color:#4d4d4d;
}

.form-ss .form-note {
	font-style:italic;
}

/** End Self Service **/

/**** Calculator ****/
.group-hide {
	display:none;
}

.calc-switch {
	position:relative;
}

.calc-switch input {
	position:absolute;
	opacity:0;
	left:0;
	top:0;
	padding:0;
	margin:0;
}

.calc-switch label {
	background: #DDDDDD;
	color: transparent;
	cursor: pointer;
	display: block;
	position: relative;
	height: 20px;
	transition: left 0.15s ease-out;
	margin:0;
	border-radius:10px;
}

.calc-switch label:after {
	background: #25A8E0;
	content: "";
	display: block;
	height: 16px;
	left:2px;
	top:2px;
	position: absolute;
	width: 50%;
	-webkit-transition: left 0.15s ease-out;
	-moz-transition: left 0.15s ease-out;
	-o-transition: translate3d(0, 0, 0);
	transition: left 0.15s ease-out;
	-webkit-transform: translate3d(0, 0, 0);
	-moz-transform: translate3d(0, 0, 0);
	-ms-transform: translate3d(0, 0, 0);
	-o-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
	border-radius:9px;
}

.calc-switch input:checked + label:after {
	left:50%;
	margin-left:-2px;
}

.calculator {
	padding:20px 0;
	font-size:16px;
	line-height:35px;
	color:#404041;
}

.calculator .row-main {
	margin-left:-0.9375em;
	margin-right:-0.9375em;
}

.calculator form .row .row {
	margin-left:0;
	margin-right:0;
}

.calculator-bold,
.cb {
	font-weight:700;
}

.calculator-title,
.ct {
	font-family:"Roboto Slab";
}

.calculator h1.calculator-title {
	font-size:36px;
	color:#047ABD;
	line-height:45px;
	margin-top:0;
	margin-bottom:15px;
}

.calculator h1.calculator-title .calculator-subtitle {
	font-size:20px;
	line-height:40px;
}

form .row .row.space-large,
.calculator .space-large {
	margin-bottom:25px;
}

form .row .row.space-small,
.calculator .space-small {
	margin-bottom:15px;
}

form .row .row.space-small-half,
.calculator .space-small-half {
	margin-bottom:7.5px;
}

.calculator .calc-switch {
	margin-top:7.5px;
}

/**** Chosen ***/
.calculator .chosen-container {
	display:block;
	max-width:100%;
}

.calculator .chosen-container-single .chosen-single {
	height:auto;
}

.calculator .chosen-container-single .chosen-single span {
	line-height:33px;
}

.calculator .chosen-container-single .chosen-single div b {
	background-position:0px 7px;
}

.calculator .chosen-container-active.chosen-with-drop .chosen-single div b {
	background-position:-18px 7px;
}

/** End Chosen **/

.column-calculator-container {
	padding-left:0;
	padding-right:0;
}

.calculator label {
	margin-bottom:0px;
	color:#404041;
	font-size:16px;
}

.calculator span.prefix,
.calculator label.prefix,
.calculator span.postfix,
.calculator label.postfix {
	height:auto;
	line-height:33px;
	background-color:#D0D2D3;
	border-color:#A6A8AB;
}

.calculator input.input-round-left,
.calculator span.prefix.prefix-round.prefix-left,
.calculator label.prefix.prefix-round.prefix-left,
.calculator span.postfix.postfix-round.postfix-left,
.calculator label.postfix.postfix-round.postfix-left {
	-webkit-border-top-left-radius: 6px;
	-webkit-border-bottom-left-radius: 6px;
	-moz-border-radius-topleft: 6px;
	-moz-border-radius-bottomleft: 6px;
	border-top-left-radius: 6px;
	border-bottom-left-radius: 6px;
}

.calculator form .row .row.collapse input.input-round-right,
.calculator span.prefix.prefix-round.prefix-right,
.calculator label.prefix.prefix-round.prefix-right,
.calculator span.postfix.postfix-round.postfix-right,
.calculator label.postfix.postfix-round.postfix-right {
	-webkit-border-top-right-radius: 6px;
	-webkit-border-bottom-right-radius: 6px;
	-moz-border-radius-topright: 6px;
	-moz-border-radius-bottomright: 6px;
	border-top-right-radius: 6px;
	border-bottom-right-radius: 6px;
}

.calculator input[type="text"] {
	height:35px;
	border-color:#A6A8AB;
	margin-bottom:0px;
	color:#404041;
	font-size:16px;
}

.calculator select {
	margin:0;
}

.calculator .row-divider {
	margin:20px 0;
	height:1px;
	background-color:#808184;
}

@media all and (min-width:768px) {
	.calculator .row-divider {
		margin-top:70px;
	}
}

@media all and (min-width:1024px) {
	.column-calculator-details,
	.column-calculator-breakdown { width:50%; }
}

.calculator .btn {
	display:block;
	border-radius: 5px;
	text-align:center;
	color:#FFF;
	line-height:35px;
	height:auto;
	font-weight:700;
	font-size:16px;
	text-decoration:none;
}

.calculator .btn.btn-calculate {
	background-color:#25A8E0;
}

.calculator .btn.btn-reset {
	background-color:#F04950;
}

.table-calculator {
	border-width:0px;
}

.table-calculator th,
.table-calculator td {
	border-bottom:1px solid #808184;
	font-size:16px;
	line-height:49px;
	padding:0;
}

.table-calculator thead,
.table-calculator th {
	background-color:transparent;
}

.table-calculator td {
	background-color:#F1F1F2;
}

.table-calculator th:first-child,
.table-calculator td:first-child {
	padding-left:15px;
}

.table-calculator th:last-child,
.table-calculator td:last-child {
	padding-right:15px;
}

.table-calculator tr.tr-last td {
	border-bottom:2px solid #25A8E0;
	line-height:48px;
}

.table-calculator tr.tr-result td {
	border-top:2px solid #25A8E0;
	line-height:48px;
	background-color:#3D4F5B;
	color:#FFF;
}

.table-calculator tr td.breakdown-value {
	width:10%;
	text-align:right;
}
/** End Calculator **/
/*
LARGER MOBILE DEVICES
This is for devices like the Galaxy Note or something that's
larger than an iPhone but smaller than a tablet. Let's call them
tweeners.
*/
@media only screen and (min-width: 481px) { /****************************************************************** Site Name:	Author:	 Stylesheet: 481px and Up Stylesheet	This stylesheet is loaded for larger devices. It's set to	481px because at 480px it would load on a landscaped iPhone. This isn't ideal because then you would be loading all those extra styles on that same mobile connection.	 A word of warning. This size COULD be a larger mobile device, so you still want to keep it pretty light and simply expand upon your base.scss styles.	*****************************************************************/
	/********************* NAVIGATION STYLES ********************/
	/* .menu is clearfixed inside mixins.scss */
	/* line 27, ../sass/_481up.scss */
	.menu { /* end .menu ul */ }
	/* line 28, ../sass/_481up.scss */
	.menu ul { /* end .menu ul li */ /* highlight current page */ /* end current highlighters */ }
	/* line 29, ../sass/_481up.scss */
	.menu ul li { /*
plan your menus and drop-downs wisely.
*/ }
	/* line 30, ../sass/_481up.scss */
	.menu ul li a { /*
you can use hover styles here even though this size
has the possibility of being a mobile device.
*/ }
	/* end .menu */
	/********************* POSTS & CONTENT STYLES ********************/
	/* entry content */
	/* line 75, ../sass/_481up.scss */
	.entry-content { /* at this larger size, we can start to align images */ }
	/* line 79, ../sass/_481up.scss */
	.entry-content .alignleft, .entry-content img.alignleft { margin-right: 1.5em; display: inline; float: left; }
	/* line 84, ../sass/_481up.scss */
	.entry-content .alignright, .entry-content img.alignright { margin-left: 1.5em; display: inline; float: right; }
	/* line 89, ../sass/_481up.scss */
	.entry-content .aligncenter, .entry-content img.aligncenter { margin-right: auto; margin-left: auto; display: block; clear: both; }
	/* end .entry-content */
	/********************* FOOTER STYLES ********************/
	/* check your menus here. do they look good? do they need tweaking? */
	/* end .footer-links */ }
/*
TABLET & SMALLER LAPTOPS
This is the average viewing window. So Desktops, Laptops, and
in general anyone not viewing on a mobile device. Here's where
you can add resource intensive styles.
*/
@media only screen and (min-width: 768px) { /****************************************************************** Site Name: Author:	Stylesheet: Tablet & Small Desktop Stylesheet	Here's where you can start getting into the good stuff. This size will work on iPads, other tablets, and desktops. So you can start working with more styles, background images, and other resources. You'll also notice the grid starts to come into play. Have fun!	*****************************************************************/
	/* line 17, ../sass/_768up.scss */
	#masthead { width: 100%; margin-left: auto; margin-right: auto; margin-top: 0; margin-bottom: 0; max-width: 70em; *zoom: 1; max-width: 100%; background-color: white; }
	/* line 121, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_global.scss */
	#masthead:before, #masthead:after { content: " "; display: table; }
	/* line 122, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_global.scss */
	#masthead:after { clear: both; }
	/* line 22, ../sass/_768up.scss */
	#masthead > .site-branding { width:auto; }
	/* line 23, ../sass/_768up.scss */
	#masthead > .main-navigation { width:auto; clear: none; }

	/* line 28, ../sass/_768up.scss */
	.jobmeta { display: block; }

	/* line 29, ../sass/_768up.scss */
	#secondary #submit-resume { display: inline-block; }

	/* line 31, ../sass/_768up.scss */
	.search-form, .lift-search2 { min-height: 0; }
	/* line 30, ../sass/_768up.scss */
	.search-form, #lift_form_widget-2 { text-align: center; }
	/* line 36, ../sass/_768up.scss */
	.search-form .lift-search-form-filters, #lift_form_widget-2 .lift-search-form-filters { text-align: left; }
	/* line 38, ../sass/_768up.scss */
	.search-form label, #lift_form_widget-2 label { margin: 0; display: inline; font-weight: 400; }
	/* line 42, ../sass/_768up.scss */
	.search-form label#jobsearch input[type="text"], .search-form label#jobsearch input[type="search"], #lift_form_widget-2 label#jobsearch input[type="text"], #lift_form_widget-2 label#jobsearch input[type="search"] { width: 16.5em; padding-right: none; }
	.lang-fr .search-form label#jobsearch input[type="search"], .lang-fr .search-form label#citysearch input[type="search"] { width:10em; }
	/* line 47, ../sass/_768up.scss */
	.search-form label#citysearch input[type="text"], .search-form label#citysearch input[type="search"], #lift_form_widget-2 label#citysearch input[type="text"], #lift_form_widget-2 label#citysearch input[type="search"] { width: 7.5em; text-align: center; margin-right: 0.25em; padding-right: 0; }

	/* line 51, ../sass/_768up.scss */
	.search-form span.desc-text, #lift_form_widget-2 span.desc-text { font-size: 1.5em; display: inline; padding-bottom: 0; }
	.lang-fr .search-form span.desc-text, #lift_form_widget-2 span.desc-text { font-size:1.25em; }
	/* line 52, ../sass/_768up.scss */
	.search-form input[type="text"], .search-form input[type="search"], #lift_form_widget-2 input[type="text"], #lift_form_widget-2 input[type="search"] { font-size: 1.0em; height: 40px; display: inline; text-align: center; margin: 0 0.3em; }
	/* line 71, ../sass/_768up.scss */
	.search-form input[type="text"], .search-form input[type="submit"], #lift_form_widget-2 input[type="text"], #lift_form_widget-2 input[type="submit"] { font-size: 1.0em; height: 40px; line-height: 10px; font-weight: 300; }
	/* line 86, ../sass/_768up.scss */
	.home #content { padding-top: 0em; }
	/* line 90, ../sass/_768up.scss */
	.home .entry-content p { font-size: 1.4375em; }
	/* line 99, ../sass/_768up.scss */
	#primary { position: relative; width: 67.5%; float: left; }

	.post-type-archive-job_order #primary,
	.tax-city #primary,
	.content-container-jobs-list #primary,
	#primary.jobs-list,
	#primary.content-full-width { width:100%; }

	/* line 100, ../sass/_768up.scss */
	.home #primary { position: relative; padding-left: 0.9375em; padding-right: 0.9375em; width: 100%; float: left; padding: 0; }
	/* line 102, ../sass/_768up.scss */
	.page-template-page-fullscreen-php #primary { position: relative; padding-left: 0.9375em; padding-right: 0.9375em; width: 100%; float: left; padding: 0; }
	/* line 104, ../sass/_768up.scss */
	.page-template-page-fullscreen-php #primary #main { }
	/* line 108, ../sass/_768up.scss */
	#secondary { position: relative; padding-left: 0.9375em; padding-right: 0.9375em; width: 32.5%; float: left; }
	/* line 114, ../sass/_768up.scss */
	.trifecta { width: 100%; max-width: 100%; text-align: left; background: url('/wp-content/themes/procom/img/bg-blue.jpg?1380297330') no-repeat fixed; background-size: cover; padding: 2.0em 0; }
	/* line 127, ../sass/_768up.scss */
	.trifecta ul { width: 100%; margin-left: auto; margin-right: auto; margin-top: 0; margin-bottom: 0; max-width: 70em; *zoom: 1; }
	/* line 121, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_global.scss */
	.trifecta ul:before, .trifecta ul:after { content: " "; display: table; }
	/* line 122, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_global.scss */
	.trifecta ul:after { clear: both; }
	/* line 134, ../sass/_768up.scss */
	.trifecta .introbox img {}
	/* line 139, ../sass/_768up.scss */
	.trifecta img.deco, .trifecta i { position: relative; padding-left: 0.9375em; padding-right: 0.9375em; width: 8.33333%; float: left; padding: 0.8em 0 0 0; font-size: 4.125em; }
	/* line 145, ../sass/_768up.scss */
	.trifecta .introbox, .trifecta .introbox2 { position: relative; padding-left: 0.9375em; padding-right: 0.9375em; width:50%; float: left; padding: 1em 2em; margin-bottom: 0; }
	/* line 152, ../sass/_768up.scss */
	.trifecta .introbox2 { position: relative; padding-left: 0.9375em; padding-right: 0.9375em; width: 25%; float: left; }
	/* line 153, ../sass/_768up.scss */
	.trifecta h1 { font-size: 1.8375em; color: #333; }
	/* line 154, ../sass/_768up.scss */
	.trifecta a, .trifecta h1 { color: white; }
	/* line 159, ../sass/_768up.scss */
	#main .entry-meta { font-size: 1.4em; }
	/* line 163, ../sass/_768up.scss */
	#main .hentry { margin-left: 1em; }
	/* line 165, ../sass/_768up.scss */
	#main h1.section-title, #main h1.page-title { font-size: 3.5em; }
	/* line 171, ../sass/_768up.scss */
	#main div.walkthrough { position: relative; padding-right: 0.9375em; width: 33.33333%; float: left; }
	/* line 173, ../sass/_768up.scss */
	#main div.walktext { position: relative; padding-left: 0.9375em; width: 66.66667%; float: left; }

	/* line 181, ../sass/_768up.scss */
	.archive h1.entry-title, .search-results h1.entry-title { font-size: 2.3125em; }
	/* line 185, ../sass/_768up.scss */
	.blog h1.entry-title { font-size: 2.75em; }
	/* line 189, ../sass/_768up.scss */
	.button-block { width: 500px; }
	/* line 194, ../sass/_768up.scss */
	.button-block p { text-align: right; padding: 0; }
	/* line 198, ../sass/_768up.scss */
	.button-block img { margin: -20px -50px -20px 0; display: inline; }
	/* line 203, ../sass/_768up.scss */
	.action-block { width: 100%; margin-left: auto; margin-right: auto; margin-top: 0; margin-bottom: 0; max-width: 70em; *zoom: 1; width: 70.625em; padding: 0 3em; height: 3.75em; -moz-border-radius: 5px; -webkit-border-radius: 5px; border-radius: 5px;	}
	/* line 121, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_global.scss */
	.action-block:before, .action-block:after { content: " "; display: table; }
	/* line 122, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_global.scss */
	.action-block:after { clear: both; }
	/* line 210, ../sass/_768up.scss */
	.action-block .txt { position: relative; padding-left: 0.9375em; padding-right: 0.9375em; width: 83.33333%; float: left; background-color: #0095e1; border: 2px solid #0095e1; display: table-cell; }
	/* line 215, ../sass/_768up.scss */
	.action-block .txt h2 { font-size: 1.4375em; font-weight: 300; color: #fff; font-family: "Roboto", "open-sans", "museo-sans", "Segoe UI", Candara, "Bitstream Vera Sans", "DejaVu Sans", "Bitstream Vera Sans", "Trebuchet MS", Verdana, "Verdana Ref", sans-serif; text-align: right; line-height: 1em; padding-left:5px; }
	/* line 222, ../sass/_768up.scss */
	.action-block .action-button { position: relative; padding-left: 0.9375em; padding-right: 0.9375em; width: 16.66667%; float: left; -webkit-border-top-right-radius: 5px; -webkit-border-bottom-right-radius: 5px; -moz-border-radius-topright: 5px; -moz-border-radius-bottomright: 5px; border-top-right-radius: 5px; border-bottom-right-radius: 5px; }
	/* line 231, ../sass/_768up.scss */
	.action-block { width: 100%; margin-left: auto; margin-right: auto; margin-top: 0; margin-bottom: 0; max-width: 70em; *zoom: 1; margin-bottom: 5em; background-color: #0095e1; padding: 0; text-align: right; }
	/* line 121, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_global.scss */
	.action-block:before, .action-block:after { content: " "; display: table; }
	/* line 122, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_global.scss */
	.action-block:after { clear: both; }
	/* line 239, ../sass/_768up.scss */
	.action-block .txt { position: relative; padding-left: 0.9375em; padding-right: 0.9375em; width: 75%; float: left; width: auto; }
	/* line 246, ../sass/_768up.scss */
	.action-block .action-button { position: relative; padding-left: 0.9375em; padding-right: 0.9375em; width: 25%; float: left; width: 10em; float: right; font-weight: 400; }
	/* line 261, ../sass/_768up.scss */
	table.stats { background-color: white; *zoom: 1; filter: progid:DXImageTransform.Microsoft.gradient(gradientType=1, startColorstr='#FFFFFFFF', endColorstr='#FFEBEBEB'); background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PHJhZGlhbEdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgY3g9IjUwJSIgY3k9IiIgcj0iMTAwIj48c3RvcCBvZmZzZXQ9IjUxJSIgc3RvcC1jb2xvcj0iI2ZmZmZmZiIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iI2ViZWJlYiIvPjwvcmFkaWFsR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA=='); background-size: 100%; background-image: -webkit-gradient(radial, 50%, 0, 50%, 100, color-stop(51%, #ffffff), color-stop(100%, #ebebeb)); background-image: -webkit-radial-gradient(center, ellipse cover, #ffffff 51%, #ebebeb 100%); background-image: -moz-radial-gradient(center, ellipse cover, #ffffff 51%, #ebebeb 100%); background-image: -o-radial-gradient(center, ellipse cover, #ffffff 51%, #ebebeb 100%); background-image: radial-gradient(center, ellipse cover, #ffffff 51%, #ebebeb 100%); }
	/* line 264, ../sass/_768up.scss */
	table.stats thead { background: none; }
	/* line 265, ../sass/_768up.scss */
	table.stats thead td { text-align: center; font-size: 2.3125em; color: #176c7d; font-family: "Roboto Slab", "aleo", "prenton-condensed", "league-gothic", "League Gothic", Candara, Calibri, Segoe, "Segoe UI", Optima, Arial, sans-serif; font-weight: 200; padding: 0.75em 0.5em 0; }
	/* line 271, ../sass/_768up.scss */
	table.stats tbody td { text-align: center; padding: 1em 2em 2em; font-size: 1em; font-weight: 300; vertical-align: top; font-family: "Roboto", "open-sans", "museo-sans", "Segoe UI", Candara, "Bitstream Vera Sans", "DejaVu Sans", "Bitstream Vera Sans", "Trebuchet MS", Verdana, "Verdana Ref", sans-serif; }
	/* line 282, ../sass/_768up.scss */
	.apply { border-style: solid; border-width: 1px; cursor: pointer; font-family: inherit; font-weight: bold; line-height: normal; margin: 0 0 1.25em; position: relative; text-decoration: none; text-align: center; display: inline-block; padding-top: 0.75em; padding-right: 1.5em; padding-bottom: 0.8125em; padding-left: 1.5em; font-size: 1em; background-color: #0084c7; border-color: #006294; color: white; padding-top: 1em; padding-right: 2em; padding-bottom: 1.0625em; padding-left: 2em; font-size: 1.25em; padding-top: 1em; padding-bottom: 1.0625em; padding-right: 0; padding-left: 0; width: 100%; background-color: #70c62a; border-color: #589c21; color: white; max-width: 21em; }
	.widget .apply { margin-bottom:0px; }
	/* line 122, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_buttons.scss */
	.apply:hover, .apply:focus { background-color: #006294; }
	/* line 133, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_buttons.scss */
	.apply:hover, .apply:focus { color: white; }
	/* line 122, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_buttons.scss */
	.apply:hover, .apply:focus { background-color: #589c21; }
	/* line 133, ../../../../../../../../RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/zurb-foundation-4.3.2/scss/foundation/components/_buttons.scss */
	.apply:hover, .apply:focus { color: white; }
	/* line 286, ../sass/_768up.scss */
	.apply:visited { color: #fff; }
	/* line 294, ../sass/_768up.scss */
	a.polaroid { background: white; display: inline; float: left; margin: 20px 15px 30px; padding: 10px 10px 25px; text-align: center; text-decoration: none; -webkit-box-shadow: rgba(0, 0, 0, 0.3) 0 4px 6px; -moz-box-shadow: rgba(0, 0, 0, 0.3) 0 4px 6px; box-shadow: rgba(0, 0, 0, 0.3) 0 4px 6px; -webkit-transition: all 0.15s linear; -moz-transition: all 0.15s linear; -o-transition: all 0.15s linear; transition: all 0.15s linear; z-index: 0; }
	/* line 308, ../sass/_768up.scss */
	a.polaroid.rot1 { -webkit-transform: rotate(-5deg); -moz-transform: rotate(-5deg); -ms-transform: rotate(-5deg); -o-transform: rotate(-5deg); transform: rotate(-5deg); }
	/* line 309, ../sass/_768up.scss */
	a.polaroid.rot2 { -webkit-transform: rotate(6deg); -moz-transform: rotate(6deg); -ms-transform: rotate(6deg); -o-transform: rotate(6deg); transform: rotate(6deg); }
	/* line 310, ../sass/_768up.scss */
	a.polaroid.rot3 { -webkit-transform: rotate(3deg); -moz-transform: rotate(3deg); -ms-transform: rotate(3deg); -o-transform: rotate(3deg); transform: rotate(3deg); }
	/* line 311, ../sass/_768up.scss */
	a.polaroid.rot4 { -webkit-transform: rotate(-2deg); -moz-transform: rotate(-2deg); -ms-transform: rotate(-2deg); -o-transform: rotate(-2deg); transform: rotate(-2deg); }
	/* line 312, ../sass/_768up.scss */
	a.polaroid.rot5 { -webkit-transform: rotate(4deg); -moz-transform: rotate(4deg); -ms-transform: rotate(4deg); -o-transform: rotate(4deg); transform: rotate(4deg); }
	/* line 313, ../sass/_768up.scss */
	a.polaroid.rot6 { -webkit-transform: rotate(-3deg); -moz-transform: rotate(-3deg); -ms-transform: rotate(-3deg); -o-transform: rotate(-3deg); transform: rotate(-3deg); }
	/* line 316, ../sass/_768up.scss */
	a.polaroid:after { color: #333; font-size: 1.4375em; content: attr(title); font-family: "Roboto", "open-sans", "museo-sans", "Segoe UI", Candara, "Bitstream Vera Sans", "DejaVu Sans", "Bitstream Vera Sans", "Trebuchet MS", Verdana, "Verdana Ref", sans-serif; font-weight: 300; position: relative; top: 12px; }
	/* line 326, ../sass/_768up.scss */
	a.polaroid:hover { -webkit-transform: rotate(0deg); -moz-transform: rotate(0deg); -ms-transform: rotate(0deg); -o-transform: rotate(0deg); transform: rotate(0deg); -webkit-transform: scale(1.1); -moz-transform: scale(1.1); -ms-transform: scale(1.1); -o-transform: scale(1.1); transform: scale(1.1); z-index: 10; -webkit-box-shadow: rgba(0, 0, 0, 0.7) 0 5px 10px; -moz-box-shadow: rgba(0, 0, 0, 0.7) 0 5px 10px; box-shadow: rgba(0, 0, 0, 0.7) 0 5px 10px; }
	/* line 338, ../sass/_768up.scss */
	a.polaroid img { display: block; width: inherit; }
	/* line 346, ../sass/_768up.scss */
	.nivo-lightbox-content iframe { overflow: hidden; }
	/* line 353, ../sass/_768up.scss */
	.nivo-lightbox-wrap { position: absolute; top: 10%; height: 45em; left: 20%; right: 20%; }
	/********************* GENERAL STYLES ********************/
	/********************* LAYOUT & GRID STYLES ********************/
	/* line 371, ../sass/_768up.scss */
	.wrap { max-width: 1140px; }
	/********************* HEADER STYLES ********************/
	/********************* NAVIGATION STYLES ********************/
	/* line 387, ../sass/_768up.scss */
	.nav { background: #eee; border: 0; /* end .menu ul li */ /* highlight current page */ /* end current highlighters */ }
	/* line 391, ../sass/_768up.scss */
	.nav li { float: left; position: relative; /*
plan your menus and drop-downs wisely.
*/ /* showing sub-menus */ }
	/* line 395, ../sass/_768up.scss */
	.nav li a { border-bottom: 0; /*
you can use hover styles here even though this size
has the possibility of being a mobile device.
*/ }
	/* line 402, ../sass/_768up.scss */
	.nav li a:hover, .nav li a:focus { background-color: #dedede; }
	/* line 415, ../sass/_768up.scss */
	.nav li ul.sub-menu, .nav li ul.children { margin-top: 0; border: 1px solid #ccc; border-top: 0; position: absolute; display: none; z-index: 8999; /* highlight sub-menu current page */ }
	/* line 423, ../sass/_768up.scss */
	.nav li ul.sub-menu li, .nav li ul.children li { /*
if you need to go deeper, go nuts
just remember deeper menus suck
for usability. k, bai.
*/ }
	/* line 425, ../sass/_768up.scss */
	.nav li ul.sub-menu li a, .nav li ul.children li a { padding-left: 10px; border-right: 0; display: block; width: 180px; border-bottom: 1px solid #ccc; }
	/* line 442, ../sass/_768up.scss */
	.nav li ul.sub-menu li:last-child a, .nav li ul.children li:last-child a { border-bottom: 0; }
	/* line 464, ../sass/_768up.scss */
	.nav li:hover ul { top: auto; display: block; }
	/* end .nav */
	/********************* SIDEBARS & ASIDES ********************/
	/* line 484, ../sass/_768up.scss */
	.sidebar { margin-top: 2.2em; }
	/* line 488, ../sass/_768up.scss */
	.widgettitle { border-bottom: 2px solid #444; margin-bottom: 0.75em; }
	/* line 493, ../sass/_768up.scss */
	.widget { padding: 0 10px; margin:0 0 1em 0; }
	/* line 498, ../sass/_768up.scss */
	.widget ul li { margin-bottom: 0.75em; /* deep nesting */ }
	/* line 506, ../sass/_768up.scss */
	.widget ul li ul { margin-top: 0.75em; padding-left: 1em; }
	/* links widget */
	/* meta widget */
	/* pages widget */
	/* recent-posts widget */
	/* archives widget */
	/* tag-cloud widget */
	/* calendar widget */
	/* category widget */
	/* recent-comments widget */
	/* search widget */
	/* text widget */
	/********************* FOOTER STYLES ********************/
	/* you'll probably need to do quite a bit of overriding here if you styled them for mobile. Make sure to double check these! */
	/* line 614, ../sass/_768up.scss */
	.footer-links ul li { /*
be careful with the depth of your menus.
it's very rare to have multi-depth menus in
the footer.
*/ }
	/* end .footer-links */

	/**** Given the shitty structure of this document we will simply enter what we need here at the end ****/

	/**** Jobs List ****/
	section.jobs-list #main h1.page-title { 	margin-top:0px; 	font-size:2.5em; }

	section.jobs-list #main h1.entry-title { 	font-size:1.5em; 	line-height:1.25em; 	margin-top:0px; }

	section.jobs-list #main .entry-meta { 	font-size:1em; 	line-height:1em; }

	section.jobs-list #main .entry-summary { margin-top:0.5em; }

	section.jobs-list #main .entry-summary p { margin-bottom:0px; }

	section.jobs-list #main .hentry { 	margin-bottom:1em; padding-bottom:1em; border-bottom:1px solid #e3e3e3; }

	.post-edit-link { display:none; }}

@media all and (min-width:768px) and (max-width:900px) {
	.search-form label#jobsearch input[type="search"], .lang-fr .search-form label#citysearch input[type="search"] { width:7.5em; }
	.lang-fr .search-form span.desc-text, #lift_form_widget-2 span.desc-text { font-size:1.05em; }
}

/*
DESKTOP
This is the average viewing window. So Desktops, Laptops, and
in general anyone not viewing on a mobile device. Here's where
you can add resource intensive styles.
*/
@media only screen and (min-width: 1030px) { /****************************************************************** Site Name:	Author:	 Stylesheet: Desktop Stylsheet	This is the desktop size. It's larger than an iPad so it will only be seen on the Desktop.	 *****************************************************************/ }
/*
LARGE VIEWING SIZE
This is for the larger monitors and possibly full screen viewers.
*/
@media only screen and (min-width: 1240px) { /****************************************************************** Site Name:	Author:	 Stylesheet: Super Large Monitor Stylesheet	You can add some advanced styles here if you like. This kicks in on larger screens.	*****************************************************************/ }
/*
RETINA (2x RESOLUTION DEVICES)
This applies to the retina iPhone (4s) and iPad (2,3) along with
other displays with a 2x resolution. You can also create a media
query for retina AND a certain size if you want. Go Nuts.
*/
@media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min--moz-device-pixel-ratio: 1.5), only screen and (min-device-pixel-ratio: 1.5) { /****************************************************************** Site Name:	Author:	 Stylesheet: Retina Screens & Devices Stylesheet	When handling retina screens you need to make adjustments, especially if you're not using font icons. Here you can add them in one neat place.	*****************************************************************/
	/*	 EXAMPLE	Let's say you have an image and you need to make sure it looks ok on retina screens. Let's say we have an icon which dimension are 24px x 24px. In your regular stylesheets, it would look something like this:	.icon { 	width: 24px; 	height: 24px; 	background: url(img/test.png) no-repeat; }	For retina screens, we have to make some adjustments, so that image doesn't look blurry. So, taking into account the image above and the dimensions, this is what we would put in our retina stylesheet:	.icon { 	background: url(img/test@2x.png) no-repeat; 	background-size: 24px 24px; }	So, you would create the same icon, but at double the resolution, meaning	it would be 48px x 48px. You'd name it the same, but with a @2x at the end (this is pretty standard practice). Set the background image so it matches the original dimensions and you are good to go.	 */ }
/*
iPHONE 5 MEDIA QUERY
Want to get fancy for no good reason? Knock yourself out.
*/
/*
PRINT STYLESHEET
Feel free to customize this. Remember to add things that won't make
sense to print at the bottom. Things like nav, ads, and forms should
be set to display none.
*/
@media print { /****************************************************************** Site Name: Author:	Stylesheet: Print Stylesheet	This is the print stylesheet. There's probably not a lot of reasons to edit this stylesheet. If you want to though, go for it.	*****************************************************************/
	/* line 15, ../sass/_print.scss */
	* { background: transparent !important; color: black !important; text-shadow: none !important; filter: none !important; -ms-filter: none !important; }
	/* line 23, ../sass/_print.scss */
	a, a:visited { color: #444 !important; text-decoration: underline; }
	/* line 28, ../sass/_print.scss */
	a:after, a:visited:after { content: " (" attr(href) ")"; }
	/* line 33, ../sass/_print.scss */
	a abbr[title]:after, a:visited abbr[title]:after { content: " (" attr(title) ")"; }
	/* line 40, ../sass/_print.scss */
	.ir a:after, a[href^="javascript:"]:after, a[href^="#"]:after { content: ""; }
	/* line 44, ../sass/_print.scss */
	pre, blockquote { border: 1px solid #999; page-break-inside: avoid; }
	/* line 49, ../sass/_print.scss */
	thead { display: table-header-group; }
	/* line 53, ../sass/_print.scss */
	tr, img { page-break-inside: avoid; }
	/* line 57, ../sass/_print.scss */
	img { max-width: 100% !important; }
	@page { margin: 0.5cm; }
	/* line 65, ../sass/_print.scss */
	p, h2, h3 { orphans: 3; widows: 3; }
	/* line 71, ../sass/_print.scss */
	h2, h3 { page-break-after: avoid; }
	/* line 80, ../sass/_print.scss */
	.sidebar, .page-navigation, .wp-prev-next, .respond-form, nav { display: none; }
}

@media only screen and (max-width: 950px) {
	#masthead .main-navigation ul.menu a {
		padding-left:0.5em; padding-right:0.5em; }
}

@media only screen and (max-width: 768px) {

	.header-border {
		border-bottom-width:0px; position:static; }

	#masthead > .site-branding, #masthead > .main-navigation {
		width:100%; }

	#masthead .main-navigation ul.menu {
		float:none; border-top:1px solid #E6E7E8; }

	#masthead .main-navigation ul.menu li {
		float:none; }

	#masthead .main-navigation ul.menu a {
		display:block; text-align:right; border:1px solid #E6E7E8; border-top-width:0px; line-height:50px; }

	#masthead .main-navigation ul.menu li ul {
		display:block; position:static; width:auto; border-top-width:0px; }

	#masthead .main-navigation ul.menu ul li {
		display:block; width:auto; }

	#masthead .main-navigation ul.menu li ul li a,
	#masthead .main-navigation ul.menu ul li.dropdown a {
		margin:0; background-image:none; padding-top:0; text-align:right; line-height:50px; color:#58585a; font-weight:300; }

	#masthead .main-navigation ul.menu ul li.dropdown a:hover, #masthead .main-navigation ul.menu li a:hover, #masthead .main-navigation ul.menu li ul li.current_page_item a, .languages-selector .languages-current a:hover, .languages-selector .list-languages li a:hover {
		color:#007ABD; }

	#masthead .main-navigation ul.menu ul li.about a, #masthead .main-navigation ul.menu ul li.contact a {
		background-image:none; }

	#masthead .main-navigation ul.menu ul li a span.item-desc {
		display:none; }

	#masthead .main-navigation ul.menu li.menu-item-has-children.open ul, #masthead .main-navigation ul.menu li.menu-item-has-children.open ul li {
		display:block; }

	#masthead .main-navigation .languages-selector {
		float:none; }

	.languages-selector {
		display:none; }

	.main-navigation.toggled .languages-selector {
		display:block; }

	.languages-selector .languages-current {
		text-align:right; }

	.languages-selector .languages-current a {
		padding:0 0.75em; display:block; text-align:right; border:1px solid #E6E7E8; border-top-width:0px; line-height:50px; }

	.languages-selector .list-languages {
		position:static; border-width:0px; display:none; }

	.languages-selector .list-languages.open {
		display:block; }

	.languages-selector .list-languages li {
		text-align:right; }

	.languages-selector .list-languages li a {
		border:1px solid #E6E7E8; border-top-width:0px; padding:0; }

	.languages-selector .list-languages li a span {
		background-color:#e7e7e8; padding:0 0.75em; line-height:50px; }
}

@media only screen and (max-width: 600px) {
	#masthead > .site-branding,
	#masthead > .main-navigation {
		float:none;
		width:auto;
	}

	#masthead .main-navigation ul {
		float:none;
	}

	.main-navigation li {
		float:none;
	}

	.main-navigation li a {
		display:block;
		text-align:right;
	}

	.main-navigation ul {
		float:none;
	}
}

@media only screen
and (min-device-width : 320px)
and (max-device-width : 480px) {
	.languages-selector .languages-current a,
	#masthead .main-navigation ul.menu li ul li a,
	#masthead .main-navigation ul.menu ul li.dropdown a,
	#masthead .main-navigation ul.menu a {
		line-height:25px;
		font-size:0.75rem;
	}
}

/**** Our Team ****/
.ease {
	-webkit-transition: all .75s ease-in-out;
	-moz-transition: all .75s ease-in-out;
	-o-transition: all .75s ease-in-out;
	transition: all .75s ease-in-out;
}

.bio {
	position:relative;
	padding-bottom:25px;
	border-bottom:1px solid #929497;
	margin-bottom:35px;
	padding-left:200px;
}

.bio .bio-container {
	overflow:hidden;
}

.bio .bio-info {
	position:relative;
}

.bio a.expend {
	border-radius:50%;
	background-color:#999b9e;
	width:30px;
	height:30px;
	position:absolute;
	left:50%;
	margin-left:-15px;
	bottom:0px;
	margin-bottom:-15px;
}

.bio a.expend:before {
	content: '';
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 6px 5.5px 0 5.5px;
	border-color: #ffffff transparent transparent transparent;
	line-height: 0px;
	_border-color: #ffffff #000000 #000000 #000000;
	_filter: progid:DXImageTransform.Microsoft.Chroma(color='#000000');
	position:absolute;
	top:50%;
	left:50%;
	margin-top:-3px;
	margin-left:-5.5px;
}

.bio.bio-expend a.expend:before {
	border-width: 0 5.5px 6px 5.5px;
	border-color: transparent transparent #ffffff transparent;
	_border-color: #000000 #000000 #ffffff #000000;
}

.bio .bio-picture {
	text-align:center;
	position:absolute;
	top:0;
	left:0;
	width:180px;
}

.bio .bio-content {
	line-height:20px;
	color:#231F20;
	font-size:16px;
}

.bio .bio-name,
.bio .bio-title {
	line-height:27px;
	font-size:24px;
	font-weight:500;
}

.bio .bio-name {
	color:#0583c6;
	font-family:"Roboto Slab";
}

.bio .bio-name img {
	position:relative;
	top:-2px;
}

.bio .bio-title {
	margin-bottom:15px;
	font-size:16px;
}

.bio .bio-text {
	max-height:120px;
	overflow:visible;
}

.bio .bio-text p {
	line-height:20px;
	font-size:16px;
	color:#231F20;
	margin-bottom:20px;
}

.bio .bio-text p:last-child {
	margin-bottom:0px;
}

@media all and (max-width:768px) {
	.bio {
		padding-left:0px;
	}

	.bio .bio-picture {
		position:static;
		text-align:left;
		width:180px;
		margin-right:15px;
		display:inline;
		float:left;
	}

	.bio.bio-expend .bio-text {
		overflow:visible;
	}
}

@media all and (max-width:440px) {
	.bio .bio-picture {
		display:block;
		text-align:center;
		width:auto;
		margin-right:0px;
		float:none;
	}

	.bio .bio-picture {
		margin-bottom:20px;
	}

	.bio .bio-info {
		padding-right:50px;
	}

	.bio .bio-info .bio-name a {
		position:absolute;
		right:0;
		top:5px;
	}

	.bio .bio-info .bio-name a img {
		width:44px;
		height:44px;
	}
}

/** End Our Team **/

.promotion-bar {
	background-color:#067ABC;
	color:#FFF;
	text-align:center;
	padding:10px 0;
}

.promotion-bar .icon img {
	width:20px;
}

.promotion-bar .text {
	margin:0 10px;
}

.promotion-bar,
.promotion-bar a {
	line-height:20px;
	font-size:14px;
	font-weight:700;
}

.promotion-bar a {
	color:#FCB716;
	text-decoration:underline;
}

@media all and (min-width:768px) {
	.promotion-bar .icon img {
		width:35px;
	}

	.promotion-bar .text {
		margin:0 30px;
	}

	.promotion-bar,
	.promotion-bar a {
		line-height:35px;
		font-size:18px;
	}
}