/**
 * Name: base.css
 * Version: 1.0.0
 *	
 *	-
 *
 *	T.O.C
 *	
 *	#CssReset
 *	#Typography
 *		#Links
 *		#Lists
 *		#Images
 *		#Tables
 *		#Forms
 *		#Misc
 *
 *   Standard CCCC Orange: #ff891d
 */


/* ==========================================================================
   #CssReset
   ========================================================================== */

	html, body, div, span, applet, object, iframe,
	h1, h2, h3, h4, h5, h6, p, blockquote, pre,
	a, abbr, acronym, address, big, cite, code,
	del, dfn, em, img, ins, kbd, q, s, samp,
	small, strike, strong, sub, sup, tt, var,
	b, u, i, center,
	dl, dt, dd, ol, ul, li,
	fieldset, form, label, legend,
	table, caption, tbody, tfoot, thead, tr, th, td,
	article, aside, canvas, details, embed, 
	figure, figcaption, footer, header, hgroup, 
	menu, nav, output, ruby, section, summary,
	time, mark, audio, video {
		margin: 0;
		padding: 0;
		border: 0;
		font-size: 100%;
		font: inherit;
		vertical-align: baseline;
	}
	
	/* HTML5 display-role reset for older browsers */
	
	article, 
	aside, 
	details, 
	figcaption, 
	figure, 
	footer, 
	header, 
	hgroup, 
	menu, 
	nav, 
	section {
		display: block;
	}
	
	body {
		line-height: 1;
	}
	
	ol, 
	ul {
		list-style: none;
	}
	
	blockquote, 
	q {
		quotes: none;
	}
	
	blockquote:before, 
	blockquote:after,
	q:before, 
	q:after {
		content: '';
		content: none;
	}
	
	table {
		border-collapse: collapse;
		border-spacing: 0;
	}
	
	/**
	 * 1. Always force vertical scroll
	 * 2. Prevent iOS text size adjust after orientation change, without disabling user zoom.
	 */
	
	html { 
		font-size: 100%; 
		overflow-y: scroll; /* 1  */ 
		-ms-text-size-adjust: 100%; /* 2 */
    	-webkit-text-size-adjust: 100%; /* 2 */
		-webkit-font-smoothing: antialiased; 
	}


/* ==========================================================================
   #Typography
   ========================================================================== */
   
	body {
		background-color: #fff;
		color: #444;
		font: 13px 'Open Sans', Arial, sans-serif; 
		line-height: 23px;	
	}
	
	h1, 
	h2, 
	h3, 
	h4, 
	h5, 
	h6 {
		color: #333;
		font-family: 'Open Sans', Arial, sans-serif;
		font-weight: normal; 
	}
		
	h1 a, 
	h2 a, 
	h3 a, 
	h4 a, 
	h5 a, 
	h6 a { 
		font-weight: inherit; 
	}
	
	h1 {
		margin-bottom: 14px; 	 
		font-size: 32px; 
		line-height: 1.3;
		font-weight: 300;	
	}
	
	h2 { 
		margin-bottom: 10px;	
		font-size: 24px; 
		line-height: 38px;
		font-weight: 300;		
	}
	
	h3 { 
		margin-bottom: 8px;
		font-size: 18px; 
		line-height: 34px;   
	}
	
	h4 {
		margin-bottom: 4px; 
		font-size: 16px; 
		line-height: 30px;   
	}
	
	h5 { 
		font-size: 14px; 
		line-height: 24px; 
	}
	
	h6 { 
		font-size: 12px; 
		line-height: 21px; 
	}
	
	p { margin-bottom: 20px; }
	em { font-style: italic; }
	strong { font-weight: bold; }
	small { font-size: 80%; }
	
	sub { 
		vertical-align: sub; 
		font-size: 75%; 
	}
	
	sup { 
		vertical-align: super; 
		font-size: 75%; 
	}
	
	abbr[title] {  
		border-bottom: 1px dotted #999; 
		cursor: help;
	}
	
	address { 
		display: block; 
		margin-bottom: 20px; 
	}
	
	blockquote {}
	
	blockquote p {}
	
	blockquote span { 
		display: block;
		margin-top: 5px;
		color: #999999;  
	}
	
	blockquote span:before { content: '\2013 \00A0'; }

	hr { 
		height: 0; 
		border: solid #efefef; 
		border-width: 1px 0 0 0;
		margin: 30px 0;
	}

	code, 
	pre { 
		-webkit-border-radius: 3px;
			    border-radius: 3px;	
		font-family: Monaco, Menlo, Consolas, "Courier New", monospace;			
	}
	
	code { 
		padding: 1px 4px;
		border: 1px solid #e1e1e8;
		background-color: #f7f7f7;  
		color: #d14;  
	}
	
	pre { 
		display: block;
		padding: 20px;
		border: 1px solid #e1e1e8;   
		margin-bottom: 20px;
		overflow-x: auto; 
		white-space: pre-wrap;
		background-color: #f7f7f7; 
	}
	
	/* Typography Helper Classes */
	
	/**
	 * <div class="hr"></div> acts like an <hr />
	 */
	
	.hr { 
		border-top: 1px solid #efefef;  
		margin: 30px 0;
	}
	
	.text-left { text-align: left; }
	.text-right { text-align: right; }
	.text-center { text-align: center; }
	
	.text-highlight { 
		padding: 1px 5px; 
		background-color: #d5edf8; 
		color: #111111; 
	}

	.text-uppercase { text-transform: uppercase; }
	
	.mute{ color: #aaa; }
	
	p.last,
	h1.last,
	h2.last,
	h3.last,
	h4.last,
	h5.last,
	address.last { margin-bottom: 0; }
	
/* #Links
   ========================================================================== */
	
	a, 
	a:visited { 
		color: #45aabb; 
		text-decoration: none; 
	}
	
   /**
	* 1. Remove the gray background color from active links in IE 10.
	*/
	
	a:active {
 		background: transparent; /* 1 */
	}
	
	a:hover, 
	a:focus { 
		text-decoration: underline;
		outline: 0; 
	}	
	
/* #Lists
   ========================================================================== */
	
	ul, 
	ol { 
		margin-bottom: 20px;
		list-style-position: inside; 
	}
	
	ul ul, 
	ul ol, 
	ol ol, 
	ol ul { 
		margin-left: 30px; 
		margin-bottom: 0; 
	}
	
	li {}
	
	ul { list-style-type: disc; }
	ol { list-style-type: decimal; }
	
	/* List Helper Classes */

	ul.last,
	ol.last { margin-bottom:0; }

/* #Images
   ========================================================================== */
	
	img {
		border: 0; 
	}
	
	/* Images Helper Classes */
	
	.img-align-left { 
		float: left;
		margin: 5px 10px 0 0;  
	}
	
	.img-align-right { 
		float: right;
		margin: 5px 0 0 10px; 
	}

/* #Tables
   ========================================================================== */

	table { 
		width: 100%;
		margin-bottom: 20px; 
		border-collapse: collapse; 
		border-spacing: 0; 
		background-color: transparent; 
	}
	
	caption { 
		margin: 20px 0;
		text-align: center;  
	}

	table th, 
	table td {
		padding: 15px; 
		border-top: 1px solid #b6b6b6;
		text-align: center; 
		vertical-align: top; 
	}
	
	table th { border-top: none; }
	
	table thead th { vertical-align: bottom; }
	
/* #Forms
   ========================================================================== */

	form {}
	
	fieldset {}
	
	form p {}
	
	label {
		display: block;
		margin-bottom: 5px;
	}

	label span { color: #FF0000; }
	
	select,
	button,
	input[type="button"],
	input[type="reset"],
	input[type="submit"],
	input[type="radio"],
	input[type="checkbox"] {
	  cursor: pointer;
	}
	
	input,
	textarea,
	select {
		-webkit-appearance: none;
		display: block;
		max-width: 100%;
		-webkit-box-sizing: border-box;
		   -moz-box-sizing: border-box;
				box-sizing: border-box;
		padding: 6px 10px;
		border: 1px solid #c6c5c5;
		margin-bottom: 10px;
		background: #fff;
		color: #666;
		font: 13px 'Open Sans', Arial, sans-serif; 			 
	}
	
	input[type="text"]:focus,
	input[type="email"]:focus,
	input[type="url"]:focus,
	textarea:focus {	
		border-color: #999;
  		outline: 0;	
	}
	
	select { height: 32px; }
	
	select:focus {
	  outline: thin dotted #333;
	  outline: 5px auto -webkit-focus-ring-color;
	  outline-offset: -2px;
	}
	
	textarea { 
		min-height: 100px; 
		overflow: auto; 
	}

	.radio,
	.checkbox {
		min-height: 18px;
		padding-left: 18px;
	}
	
	.radio input[type="radio"],
	.checkbox input[type="checkbox"] {
		float: left;
		margin-left: -18px;
	}
	
	input:-moz-placeholder,
	textarea:-moz-placeholder {
		color: #ccc;
	}
	
	input:-ms-input-placeholder,
	textarea:-ms-input-placeholder {
		color: #ccc;
	}
	
	input::-webkit-input-placeholder,
	textarea::-webkit-input-placeholder {
		color: #ccc;
	}

/* #Misc
   ========================================================================== */
   
   
   
/**
 * Name: grid.css
 * Version: 1.0.0
 *	
 *	-
 *
 *	T.O.C
 *	
 *	#Base Grid
 *	#Tablet (Portrait)
 *  #Mobile (Portrait and landscape)
 *  #Align
 *	#Responsive Images and embeds
 *	#Clearing
 *  #ResponsiveFormInputs
 */
 

/* ==========================================================================
   #Base Grid
   ========================================================================== */

	.row { 
		position: relative; 
		width: 940px; 
		margin: 0 auto;
	}
	
	.row .row { 
		width: auto; 
		margin: 0;
	 }

 	.span1, 
	.span2, 
	.span3, 
	.span4, 
	.span5, 
	.span6, 
	.span7, 
	.span8, 
	.span9, 
	.span10, 
	.span11, 
	.span12 { float: left; }

	.span1 { 
		width: 60px;  
		margin-left: 20px; 
	}
	
	.span2 { 
		width: 140px; 
		margin-left: 20px; 
	}
	
	.span3 { 
		width: 220px; 
		margin-left: 20px; 
	}
	
	.span4 { 
		width: 300px;
		margin-left: 20px; 
	}
	
	.span5 { 
		width: 380px; 
		margin-left: 20px; 
	}
	
	.span6 { 
		width: 460px; 
		margin-left: 20px; 
	}
	
	.span7 { 
		width: 540px; 
		margin-left: 20px; 
	}
	
	.span8 { 
		width: 620px; 
		margin-left: 20px; 
	}
	
	.span9 { 
		width: 700px; 
		margin-left: 20px; 
	}
	
	.span10 { 
		width: 780px; 
		margin-left: 20px; 
	}
	
	.span11 { 
		width: 860px; 
		margin-left: 20px; 
	}
	
	.span12 { 
		width: 940px; 
		margin-left: 20px; 
	}
	
	.span1:first-child, 
	.span2:first-child, 
	.span3:first-child, 
	.span4:first-child, 
	.span5:first-child, 
	.span6:first-child, 
	.span7:first-child, 
	.span8:first-child, 
	.span9:first-child, 
	.span10:first-child, 
	.span11:first-child, 
	.span12:first-child { margin-left: 0; }
 
	.visible-phone { display: none !important; }
	.visible-tablet { display: none !important; }
	.hidden-desktop { display: none !important; }
	.visible-desktop { display: inherit !important; } 
 
/* ==========================================================================
   #Tablet (Portrait)
   ========================================================================== */

	@media (min-width: 768px) and (max-width: 979px) {
		
		.row { width: 705px; }
	
		.span1 { 
			width: 45px;  
			margin-left: 15px; 
		}
		
		.span2 { 
			width: 105px; 
			margin-left: 15px; 
		}
		
		.span3 { 
			width: 165px; 
			margin-left: 15px; 
		}
		
		.span4 { 
			width: 225px; 
			margin-left: 15px; 
		}
		
		.span5 { 
			width: 285px; 
			margin-left: 15px; 
		}
		
		.span6 { 
			width: 345px; 
			margin-left: 15px; 
		}
		
		.span7 { 
			width: 405px; 
			margin-left: 15px; 
		}
		
		.span8 { 
			width: 465px; 
			margin-left: 15px; 
		}
		
		.span9 { 
			width: 525px; 
			margin-left: 15px; 
		}
		
		.span10 { 
			width: 585px;
			margin-left: 15px; 
		}
		
		.span11 { 
			width: 645px; 
			margin-left: 15px; 
		}
		
		.span12 { 
			width: 705px;
			margin-left: 15px; 
		}
		
		.hidden-desktop { display: inherit !important; } 
		.visible-desktop { display: none !important; }
		.visible-tablet { display: inherit !important; } 
		.hidden-tablet { display: none !important; }
		
	}

/* ==========================================================================
   #Mobile (Portrait and Landscape )
   ========================================================================== */

	@media (max-width: 767px) {
		
		.row { width: auto; }
		
		.span1,
		.span2,
		.span3,
		.span4,
		.span5,
		.span6,
		.span7,
		.span8,
		.span9,
		.span10,
		.span11,
		.span12 { 
			float: none;
			display: block;
			width: 100%;
			-webkit-box-sizing: border-box;
			   -moz-box-sizing: border-box;
					box-sizing: border-box;
			margin-left: 0;
		}
		
		.hidden-desktop { display: inherit !important; }
		.visible-desktop { display: none !important; }
		.visible-phone { display: inherit !important; }
		.hidden-phone { display: none !important; }
		
	}
	
/* ==========================================================================
   #Align
   ========================================================================== */

	.float-left { float: left; }
	.float-right { float: right; }

/* ==========================================================================
   #Responsive Images and Embeds
   ========================================================================== */

	.responsive-img {
		display: block; 
		max-width: 100%; 
		height: auto; 
	}
	
	/**
 	 * 1. 16/9 ratio
 	 */
	 
	.responsive-embed {
		position: relative;
		overflow: hidden;
		height: 0;
		padding: 0;
		padding-bottom: 56.25%; /* 1 */	
		margin-bottom: 20px;
	}

	.responsive-embed iframe,
	.responsive-embed object,
	.responsive-embed embed {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
	}

/* ==========================================================================
   #Clearing
   ========================================================================== */

	/**
 	 * Automatically Clear Fix rows
 	 */
	 
	.row:after {
		visibility: hidden;
		display: block;
		font-size: 0;
		content: " ";
		clear: both;
		height: 0;
	}

	/**
 	 * Clear Fix hack
	 * Usage:  add  class="fixed"  to div's that have floated elements in them
 	 */
	 
	.fixed:after {
		visibility: hidden;
		display: block;
		font-size: 0;
		content: " ";
		clear: both;
		height: 0;
	}
	
	/**
 	 * Clear content
	 * Usage:  <br class="clear"> 
 	 */	
	 
	.clear {
      clear: both;
      display: block;
      overflow: hidden;
      visibility: hidden;
      width: 0;
      height: 0;
	} 
	
/* ==========================================================================
   #ResponsiveFormInputs
   ========================================================================== */
	
	/**
	 * 1. Reset float inherited from .span*	
 	 * 2. Reset margin-left inherited from .span*
 	 */
	 
	input.span1,
	textarea.span1,
	select.span1,
	input.span2,
	textarea.span2,
	select.span2,
	input.span3,
	textarea.span3,
	select.span3,
	input.span4,
	textarea.span4,
	select.span4,
	input.span5,
	textarea.span5,
	select.span5,
	input.span6,
	textarea.span6,
	select.span6,
	input.span7,
	textarea.span7,
	select.span7,
	input.span8,
	textarea.span8,
	select.span8,
	input.span9,
	textarea.span9,
	select.span9,
	input.span10,
	textarea.span10,
	select.span10,
	input.span11,
	textarea.span11,
	select.span11,
	input.span12,
	textarea.span12,
	select.span12 {
		float: none; 	/* 1 */
		margin-left: 0; /* 2 */
	}
/**
 * Name: elements.css
 * Version: 1.0.0
 *	
 *	-
 *
 *	T.O.C
 *	
 *	#Accordions
 *  #Alerts
 *	#Buttons
 *	#Callout Boxes
 *	#Custom Lists
 *	#Dividers
 *	#Google Maps
 *  #Headlines
 *	#Icon Boxes
 *	#Milestones
 *	#Our Process
 *	#Parallax
 *	#Pie charts
 *	#Pricing Tables
 *	#ProgressBars
 *  #Services List
 *	#SocialMedia
 *	#Styled Tables
 *	#Tabs
 *	#Testimonials
 *  #WordPress Widgets
 *  #WordPress Comments
 *  #WordPress Comment Form
 */

/* ==========================================================================
   #Accordions
   ========================================================================== */
   
	/* Accordeon */
	
	.toggle,
	.accordion { margin-bottom: 30px; }

	.toggle-item,	
	.accordion-item { margin-bottom: 10px; }

	.toggle-item-toggle,	
	.accordion-item-toggle {
		position: relative;
		display: block;
		padding: 17px;
		background-color: #45aabb;
		color: #fff;
		text-decoration: none;
	}
	
	.toggle-item-toggle:after,
	.accordion-item-toggle:after {
		position: absolute;
		top: 15px;
		right: 15px;
		color: #fff;
		font-size: 24px;
		content: "+";
	}
	
	.toggle-item-toggle:hover,
	.toggle-item-toggle.active,
	.accordion-item-toggle:hover,
	.accordion-item-toggle.active { 
		background-color: #f98b6e;
		text-decoration: none;
	}

	.toggle-item-toggle.active:after,
	.accordion-item-toggle.active:after { content: "-"; }

	.toggle-item-content,
	.accordion-item-content {
		display: none;
		padding: 30px 0;
	}


	@media (max-width: 767px) {

	}


/* ==========================================================================
   #Alerts
   ========================================================================== */

	.alert {
		padding: 13px 15px;
		border: 1px solid #d1d1d1;
		border-radius: 3px;
		-webkit-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.1);
		        box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.1);
		margin-bottom: 30px;
		background-color: #f8f8f8;
		font-size: 13px;
	}

	.alert i {
		position: relative;
		top: 1px;
		margin-right: 7px;
		font-size: 16px;
	}

	.alert.info {
		border: 1px solid #86cde3;
		background-color: #cce9f2;
		color: #3194B1;
	}

	.alert.success {
		border: 1px solid #b3cda1;
		background-color: #d8f1c6;
		color: #749958;
	}

	.alert.error {
		border: 1px solid #e1a1a1;
		background-color: #f9d9d9;
		color: #B55454;
	}

	.alert.warning {
		border: 1px solid #d1c9ae;
		background-color: #fbf4dd;
		color: #978c68;
	}

/* ==========================================================================
   #Buttons
   ========================================================================== */

	.btn {
		display: inline-block;
		padding: 6px 12px;
		border: 1px solid #ccc;
		margin: 0 5px 20px 0;
		background-color: transparent;
		color: #444;
		line-height: 18px;
		text-decoration: none !important;
		cursor: pointer;
	}

	.btn:focus { outline: 0; }

	.btn-large {
		padding: 12px 24px;
		font-size: 13px;
	}

	.btn i,
	.btn-large i {
		float: left;
		margin: 2px 8px 0 -4px;
		font-size: 14px;
		line-height: 14px;
	}

	.btn:hover { background: #f1f1f1; }

	/* Buton Colors */

	.btn-orange {
		border: none;
		background-color: #f98b6e;
		color: #fff;
	}

	a.btn-orange{ color: #fff; }
	.btn-orange:hover { background: #dd775c; }

	.btn-green {
		border: none;
		background-color: #45aabb;
		color: #fff;
	}

	a.btn-green{ color: #fff; }
	.btn-green:hover { background: #3292a2; }

/* ==========================================================================
   #Callout Boxes
   ========================================================================== */

	.callout-box {
		padding: 30px 20px;
		margin: 30px 0;
	}

	.callout-box .btn { margin-bottom: 0; }

	/**
 	 * Callout box with one background image
 	 *
	 * 1. background-image must be supplied using inline css as it is different for every .callout-box
	 *
	 */

	.callout-box.bg-img {
		background-repeat: no-repeat; /* 1 */
		background-position: center center;
		-webkit-background-size: cover;
		background-size: cover;
		color: #fff;
	}

	/**
 	 * Callout box with repeating background image
 	 *
	 * 1. background-image must be supplied using inline css as it is different for every .callout-box
	 *
	 */

	.callout-box.bg-pattern {
		background: repeat top left; /* 1 */
		color: #fff;
	}

	.callout-box.bordered {
		border: 1px solid #efefef;
		background-color: #f5f5f5;
	}

	/**
 	 * Callout box grid system
 	 *
	 * 1. overwriting inherited .row width to 100% in order to make it fluid
	 *
	 */

	.callout-box .row {
		width: 100%; /* 1 */
	}

	.callout-box .span1,
	.callout-box .span2,
	.callout-box .span3,
	.callout-box .span4,
	.callout-box .span5,
	.callout-box .span6,
	.callout-box .span7,
	.callout-box .span8,
	.callout-box .span9,
	.callout-box .span10,
	.callout-box .span11,
	.callout-box .span12 {
		-webkit-box-sizing: border-box;
		   -moz-box-sizing: border-box;
				box-sizing: border-box;
		padding: 0 10px;
		margin: 0;
	}

	.callout-box .span12 { width: 100%; }
	.callout-box .span11 { width: 91.6666666667%; }
	.callout-box .span10 { width: 83.3333333333%; }
	.callout-box  .span9 { width: 75%; }
	.callout-box  .span8 { width: 66.6666666667%; }
	.callout-box  .span7 { width: 58.3333333333%; }
	.callout-box  .span6 { width: 50%; }
	.callout-box  .span5 { width: 41.6666666667%; }
	.callout-box  .span4 { width: 33.3333333333%; }
	.callout-box  .span3 { width: 25%; }
	.callout-box  .span2 { width: 16.66666666666667%; }
	.callout-box  .span1 { width: 8.333333333333333%; }

	@media (max-width: 767px) {

		.callout-box .span1,
		.callout-box .span2,
		.callout-box .span3,
		.callout-box .span4,
		.callout-box .span5,
		.callout-box .span6,
		.callout-box .span7,
		.callout-box .span8,
		.callout-box .span9,
		.callout-box .span10,
		.callout-box .span11,
		.callout-box .span12 { width: 100%; }

	}

/* ==========================================================================
   #Custom Lists
   ========================================================================== */

	/**
 	 * Custom lists
 	 *
	 * 1. unstyled list
	 * 2. list with squares for bullets
	 * 3. list with discs for bullets
	 *
	 */

	ul.unstyled { list-style-type: none; } /* 1 */
	ul.square { list-style-type: square; } /* 2 */
	ul.circle { list-style-type: circle; } /* 3 */

	ul.check,
	ul.plus,
	ul.pin,
	ul.fill-circle { list-style: none; }

	ul.check li:before,
	ul.plus li:before,
	ul.pin li:before,
	ul.fill-circle li:before {
		position: relative;
		top: -1px;
		width: auto;
		height: auto;
		margin-right: 10px;
		color: #45aabb;
		font-family: 'FontAwesome';
		font-size: 12px;
		font-style: normal;
	}

	ul.fill-circle li:before {
		top: -3px;
		font-size: 6px;
	}

	ul.check li:before { content: ""; }
	ul.plus li:before { content: ""; }
	ul.pin li:before { content: ""; }
	ul.fill-circle li:before { content: ""; }

/* ==========================================================================
   #Dividers
   ========================================================================== */

	.divider { margin: 40px 0; }

	.divider.single-line { border-top: 1px solid #d2d2d2; }

	.divider.double-line { border-top: 4px double #d2d2d2; }

	.divider.single-dotted {
		 height: 1px;
		 background: url(../themes/capitolkids/assets/images/bg-single-dotted.gif) repeat-x top left ;
	}

	.divider.double-dotted {
		height: 4px;
		background: url(../themes/capitolkids/assets/images/bg-double-dotted.gif) repeat-x top left;
	}

/* ==========================================================================
   #Google Maps
   ========================================================================== */

	.map {
		width: 100%;
		height: 300px;
	}

/* ==========================================================================
   #Headlines
   ========================================================================== */

	.headline {
		margin: 40px 0;
		text-align: center;
	}

	.headline h1 {
		text-transform: uppercase;
		margin-bottom: 0;
	}

	.error-headline {
		margin: 30px 0 60px 0;
		text-align: center;
	}

	.error-headline h1 {
		width: 180px;
		height: 180px;
		border: 10px solid #f98b6e;
		border-radius: 50%;
		margin: 0 auto 20px;
		color: #f98b6e;
		font-size: 48px;
		line-height: 180px;
	}

/* ==========================================================================
   #Icon Boxes
   ========================================================================== */

/* Icon Box 1
   ========================================================================== */

	.icon-box-1 {
		position: relative;
		margin: 30px 0;
	}

	.icon-box-1 > i {
		float: left;
		display: block;
		padding: 10px;
		box-shadow: inset 0 0 0 0 #f98b6e;
		background-color: #45aabb;
		color: #fff;
		font-size: 28px;
		line-height: 28px;
		-webkit-transition: box-shadow 0.5s;
			 -o-transition: box-shadow 0.5s;
				transition: box-shadow 0.5s;
	}

	.icon-box-1 > h1 {
		float: left;
		padding: 6px 13px;
		background-color: #45aabb;
		color: #fff;
		line-height: 36px;
		-webkit-transition: background-color 0.5s;
			 -o-transition: background-color 0.5s;
				transition: background-color 0.5s;
	}

	.icon-box-1 > img {
		float: left;
		display: block;
	}

	.icon-box-1 h3 {
		padding-top: 8px;
		margin-bottom: 20px;
	}

	.icon-box-1 a { color: #2b2b2b; }

	.icon-box-1 .icon-box-content { margin-left: 65px; }

	.icon-box-1:hover > i { box-shadow: inset 100px 100px 0 0 #f98b6e; }
	.icon-box-1:hover > h1 { background-color: #f98b6e;  }

/* Icon Box 3
   ========================================================================== */

	.icon-box-3 {
		position: relative;
		margin-bottom: 30px;
	}

	.icon-box-3 > i {
		float: left;
		padding: 10px;
		margin: 0 10px 30px 0;
		background-color: #f98b6e;
		color: #fff;
		font-size: 28px;
		line-height: 28px;
	}

	.icon-box-3 h3 { padding-top: 8px; }

	.icon-box-3 > img {
		float: left;
		margin-right: 10px;
	}

	.icon-box-3 .icon-box-content { }

/* ==========================================================================
   #Milestones
   ========================================================================== */

	.milestone {
		position: relative;
		margin-bottom: 30px;
	}

	.milestone i {
		float: left;
		z-index: 20;
		margin-right: 10px;
		font-size: 32px;
	}

	.milestone .milestone-content {
		float: left;
		z-index: 10;
		font-size: 26px;
		line-height: 32px;
	}

	.milestone .milestone-description { font-size: 14px; }

/* ==========================================================================
   #Our Process
   ========================================================================== */

	.process-builder { margin: 30px 0; }

	.process-builder ul:before {
		position: absolute;
		top: 100px;
		left: 95px;
		display: block;
		width: 75%;
		height: 0;
		border-top: 1px solid #bcbcbc;
		content: "";
	}

	.process-builder ul { list-style: none; }

	.process-builder ul li {
		position: relative;
		float: left;
		width: 25%;
		text-align: center;
	}

	.process-builder ul li:before {
		position: absolute;
		top: 59px;
		left: 0px;
		margin-left: -5px;
		color: #bcbcbc;
		font-family: 'FontAwesome';
		font-size: 10px;
		content: "";
	}

	.process-builder ul li:first-child:before { content: none; }

	.process-builder ul li > span {
		position: relative;
		display: inline-block;
		overflow: hidden;
		width: 100px;
		height: 100px;
		border: 15px solid #aad8e0;
		border-radius: 70px;
		-webkit-border-radius: 50%;
				border-radius: 50%;
		background-color: #fff;
		background-clip: padding-box;
		color: #bcbcbc;
		font-size: 36px;
		line-height: 100px;
		-webkit-transition: all 0.3s;
			 -o-transition: all 0.3s;
				transition: all 0.3s;
	}

	.process-builder ul li .outer {
		position: relative;
		display: inline-block;
		overflow: hidden;
		width: 80px;
		height: 80px;
		border: 15px solid #f98b6e;
		border-radius: 40px;
		-webkit-border-radius: 50%;
				border-radius: 50%;
		background-color: #fff;
		background-clip: padding-box;
	}

	.process-builder ul li span img,
	.process-builder ul li .outer img {
		display: block;
		width: 100%;
		-webkit-border-radius: 50%;
				border-radius: 50%;
	}

	.process-builder ul li .inner {
		position: absolute;
		right: 0;
		bottom: 0;
		left: 0;
		min-height: 30%;
		border-bottom-left-radius: 40px;
		border-bottom-right-radius: 40px;
		background-clip: padding-box;
		background-color: #f98b6e;
		color: #fff;
		opacity: 0.8;
		font-size: 16px;
	}

	.process-builder ul li:hover span {
		border-color: #fccabc;
		color: #fccabc;
	}

	.process-builder.three-items ul li { width: 33.3333333333%; }
	.process-builder.four-items ul li { width: 25%; }
	.process-builder.five-items ul li { width: 20%; }

	.process-builder.no-line ul:before { border-top: none; }
	.process-builder.no-line ul li:before { content: none; }

	.process-builder.arrow ul li:before {
		position: absolute;
		top: 58px;
		left: 47px;
		color: #bcbcbc;
		font-family: 'FontAwesome';
		font-size: 30px;
		content: "";
	}

	.process-builder.arrow ul li:first-child:before { content: none; }

	.process-builder.four-items.arrow ul li:before { left: 47px; }
	.process-builder.three-items.arrow ul li:before { left: 87px; }
	.process-builder.five-items.arrow ul li:before { left: 25px; }

	.process-description h1 { font-size: 48px; }
	.process-description small { font-size: 40%; }


	@media (min-width: 768px) and (max-width: 979px) {

		.process-builder ul:before { left: 70px; }

		.process-builder ul li i {
			font-size: 60px;
			line-height: 100px;
		}

		.process-builder ul li span {
			width: 100px;
			height: 100px;
		}

		.process-builder.four-items.arrow ul li:before { left: 18px; }
		.process-builder.three-items.arrow ul li:before { left: 47px; }

		.process-builder.five-items ul li:before { content: none; }

	}

	@media (max-width: 767px) {

		.process-builder ul li {
			float: none;
			width: auto;
			margin-bottom: 20px;
		}

		.process-builder ul li:last-child { margin-bottom: 0; }

		.process-builder ul:before { border-top: none; }

		.process-builder.three-items ul li,
		.process-builder.four-items ul li,
		.process-builder.five-items ul li { width: auto; }

		.process-builder ul li:before,
		.process-builder.arrow ul li:before { content: none; }

	}

/* ==========================================================================
   #Parallax
   ========================================================================== */

	.parallax {
		overflow: hidden;
		padding: 30px 0;
		margin: 30px 0;
		background-color: #333;
		background-attachment: scroll;
		background-repeat: no-repeat;
		background-position: 50% 0;
		-webkit-background-size: cover;
				background-size: cover;
		color: #fff;
	}

	.parallax h1,
	.parallax h2,
	.parallax h3,
	.parallax h4,
	.parallax h5,
	.parallax h6,
	.parallax a,
	.parallax .process-builder ul li:before,
	.parallax .process-builder.arrow ul li:before,
	.box h1,
	.box h2,
	.box h3,
	.box h4,
	.box h5,
	.box h6,
	.box a,
	.box .process-builder ul li:before,
	.box .process-builder.arrow ul li:before { color: #fff; }

	.parallax.parallax-enabled { background-attachment: fixed !important; }

	.parallax .process-builder ul:before { border-top-color: #fff; }

	.parallax a.btn:hover,
	.box a.btn:hover{ color: #2b2b2b; }

	.parallax .process-builder:last-child { margin-bottom: 0; }

	.box {
		padding: 40px 0;
		margin: 0 0 40px 0;
		background: #f98b6e no-repeat center center;
		color: #fff;
	}

	.box .testimonial,
	.box .testimonial-2 {
		padding: 0;
		margin: 20px;
	}

	.box .testimonial:last-child,
	.box .testimonial-2:last-child { margin-bottom: 0; }

	.box a.social-icon {
		width: 50px;
		height: 50px;
		border-radius: 50%;
		margin: 5px;
		background-color: #ccc;
		text-align: center;
	}

	.box a.social-icon i {
		font-size: 25px;
		line-height: 50px;
	}

	.box a.facebook-icon { background-color: #0e59a0 !important; }
	.box a.twitter-icon { background-color: #0ea4ff !important; }
	.box a.vimeo-icon { background-color: #63879c !important; }
	.box a.flickr-icon { background-color: #0061db !important; }
	.box a.github-icon { background-color: #3b3b3b !important; }
	.box a.googleplus-icon { background-color: #282927 !important; }
	.box a.pinterest-icon { background-color: #d73532 !important; }
	.box a.tumblr-icon { background-color: #586980 !important; }
	.box a.linkedin-icon { background-color: #018faf !important; }
	.box a.dribble-icon { background-color: #ea73a0 !important; }
	.box a.stumbleupon-icon { background-color: #ea4b24 !important; }
	.box a.lastfm-icon { background-color: #b80638 !important; }
	.box a.instagram-icon { background-color: #82685a !important; }
	.box a.evernote-icon { background-color: #3bab27 !important; }
	.box a.skype-icon { background-color: #00b0f6 !important; }
	.box a.paypal-icon { background-color: #0d3967 !important; }
	.box a.soundcloud-icon { background-color: #e9702b !important; }
	.box a.behance-icon { background-color: #0066ff !important; }
	.box a.rss-icon { background-color: #f79638 !important; }

	.box .callout-box { margin: 0; }

	.box-2 {
		padding-top: 80px;
		border-top: 1px solid #d8d8d8;
		border-bottom: 1px solid #d8d8d8;
		margin: 60px 0 30px 0;
		background-color: #f2f2f2;
		text-align: center;
	}

	.box-2 h1 {
		margin-bottom: 40px;
		color: #f98b6e;
		text-transform: uppercase;
	}

	.box-2 h3,
	.box-2 h4 { margin-bottom: 30px; }

	.box-2 i {
		font-size: 24px;
		vertical-align: text-bottom;
	}

	.box-2 img {
		display: block;
		width: 100%;
	}

	.bg-parallax-1 { background-image: url(../themes/capitolkids/_content/backgrounds/1920x1000-1.jpg); }
	.bg-parallax-2 { background-image: url(../themes/capitolkids/_content/backgrounds/1920x1000-2.jpg); }

/* ==========================================================================
   #Pie charts
   ========================================================================== */

	.pie-chart {
		position: relative;
		margin: 0 auto 30px auto;
		text-align: center;
	}

	.pie-chart canvas {
		position: absolute;
		z-index: 1;
		top: 0;
		left: 0;
	}

	.pie-chart i,
	.pie-chart .pie-chart-custom-text,
	.pie-chart .pie-chart-percent {
		position: absolute;
		z-index: 10;
		top: 0;
		left: 0;
		display: block;
		width: 100%;
		color: #444444;
		text-align: center;
	}

	.pie-chart img {
		max-width:100%;
		vertical-align: middle;
	}

	.pie-chart .pie-chart-custom-text {
		font-size: 18px;
	}

	.pie-chart .pie-chart-percent {
		font-size: 16px;
		font-weight: 700;
	}

	.pie-chart-description {
		display: block;
		font-size: 12px;
		text-align: center;
	}

/* ==========================================================================
   #Pricing Tables
   ========================================================================== */

	.price-table {
		margin-bottom: 30px;
		list-style: none;
	}

	.price-table > li {
		position: relative;
		overflow: hidden;
		float: left;
		width: 25%;
		-webkit-box-sizing: border-box;
		   -moz-box-sizing: border-box;
				box-sizing: border-box;
		padding-top: 50px;
		border-right: 2px solid #fff;
		border-left: 2px solid #fff;
		background-color: #ececec;
		-webkit-transition: all 0.3s;
			 -o-transition: all 0.3s;
				transition: all 0.3s;
	}

	.price-table > li:last-child { border-right: none; }
	.price-table > li:first-child { border-left: none; }

	.price-table.five-items > li { width: 20%; }
	.price-table.four-items > li { width: 25%; }
	.price-table.three-items > li { width: 33.3333333333%; }

	.price-table > li:hover {
		-webkit-transform: scale(1.05);
		    -ms-transform: scale(1.05);
			 -o-transform: scale(1.05);
			    transform: scale(1.05);
	}

	.price-heading {
		padding: 40px 0 30px 0;
		margin: 0 -2px;
		background-color: #45aabb;
	}

	.price-table > li:last-child .price-heading { margin-right: 0; }
	.price-table > li:first-child .price-heading { margin-left: 0; }

	.price-heading h3 {
		padding: 5px 0;
		background-color: #3292a2;
		color: #fff;
		text-align: center;
		text-transform: uppercase;
	}

	.price-table > li > h5 {
		position: absolute;
		top: 5px;
		right: -25px;
		padding: 3px 30px;
		background-color: #f98b6e;
		color: #fff;
		text-align: center;
		text-transform: uppercase;
		-webkit-transform: rotate(45deg);
			-ms-transform: rotate(45deg);
			 -o-transform: rotate(45deg);
				transform: rotate(45deg);
	}

	.pricing-features {
		margin-left: 0;
		list-style: none;
	}

	.pricing-features li {
		float: none;
		display: block;
		width: 100%;
		padding: 10px 0;
		background-color: #f7f7f7;
		text-align: center;
	}

	.pricing-features li:nth-child(odd) { background-color: #ececec; }

	.price-table > li.price-table-caption,
	.price-table > li.price-table-caption:hover { background-color: #fff; }

	.price-table > li.price-table-caption .pricing-features li,
	.price-table > li.price-table-caption:hover .pricing-features li { background-color: #f0f0f0; }

	.price-table > li.price-table-caption .pricing-features li:nth-child(odd),
	.price-table > li.price-table-caption:hover .pricing-features li:nth-child(odd) { background-color: #dbdbdb; }

	.price-table > li.selected,
	.price-table > li:hover { background-color: #fde7e1; }

	.price-table > li.selected .pricing-features li,
	.price-table > li:hover .pricing-features li { background-color: #fef5f2; }

	.price-table > li.selected .pricing-features li:nth-child(odd),
	.price-table > li:hover .pricing-features li:nth-child(odd) { background-color: #fde7e1; }

	.price-table > li.price-table-caption:hover {
		-webkit-transform: none;
		    -ms-transform: none;
			 -o-transform: none;
			    transform: none;
	}

	.pricing-features li .btn {
		margin: 30px 0;
	}

	@media (max-width: 767px) {

		.price-table > li {
			float: none;
			width: auto;
			margin: 20px 0;
		}

		.price-table.five-items > li,
		.price-table.four-items > li,
		.price-table.three-items > li {
			width: auto;
		}

		.price-table > li:hover {
			-webkit-transform: none;
				-ms-transform: none;
				 -o-transform: none;
					transform: none;
		}

	}

/* ==========================================================================
   #ProgressBars
   ========================================================================== */

	.progress-bar-description {
		position: relative;
		display: block;
		padding-top: 20px;
		margin-bottom: 10px;
		line-height: 14px;
	}

	.progress-bar-description span {
		position: absolute;
		top: 0;
		left: 0;
		padding: 7px 3px;
		background-color: #f98b6e;
		color: #fff;
	}

	.progress-bar-description span:after {
		position: absolute;
		bottom: -7px;
		left: 0;
		width: 0;
		height: 0;
		border-top: 7px solid #f98b6e;
		border-right: 10px solid transparent;
		content: "";
		-moz-transform: scale(.9999);
	}

	.progress-bar {
		position: relative;
		display: block;
		height: 8px;
		margin-bottom: 10px;
		background-color: #d5d5d5;
	}

	.progress-bar .progress-bar-outer {
		position: absolute;
		top: 0;
		left: 0;
		height: 100%;
	}

	.progress-bar .progress-bar-outer .progress-bar-inner {
		position: absolute;
		z-index: 1;
		left: 0;
		top: 0;
		display: block;
		overflow: hidden;
		height: 100%;
		width: 100%;
		background-color: #45aabb;
	}

/* ==========================================================================
   #Services List
   ========================================================================== */

	.services-list {
		margin: 30px 0;
		list-style: none;
	}

	.services-list h4 { margin-bottom: 0; }
	.services-list h4 a { text-decoration: none; }

	.services-list li {
		position: relative;
		min-height: 120px;
		margin-bottom: 20px;
	}

	.services-list li:last-child { margin-bottom: 0; }

	.services-list li:before {
		position: absolute;
		top: 85%;
		left: 38px;
		color: #45aabb;
		font-family: 'FontAwesome';
		font-size: 10px;
		content: "";
	}

	.services-list li:last-child:before { content: none; }

	.services-list li:after {
		position: absolute;
		bottom: -20px;
		left: 42px;
		height: 56px;
		border-left: 1px solid #45aabb;
		content: "";
	}

	.services-list li:last-child:after { border: none; }

	.services-list li h2 {
		float: left;
		display: block;
		width: 64px;
		height: 64px;
		border: 10px solid #f98b6e;
		-webkit-border-radius: 50%;
				border-radius: 50%;
		color: #bcbcbc;
		line-height: 64px;
		text-align: center;
		opacity: 0.5;
		-webkit-transition: all 0.3s;
			 -o-transition: all 0.3s;
				transition: all 0.3s;
	}

	.services-list-content {
		padding-top: 25px;
		margin-left: 100px;
	}

	.services-list-content h5 {
		margin-bottom: 0;
		text-transform: uppercase;
	}

	.services-list li:hover h2 {
		opacity: 1;
		color: #f98b6e;
	}

	.services-list li a { color: #2b2b2b; }

	.services-list li a:hover {
		color: #f98b6e;
		text-decoration: none;
	}

/* ==========================================================================
   #SocialMedia
   ========================================================================== */

	a.social-icon {
		display: inline-block;
		margin-right: 5px;
		margin-bottom: 1px;
		text-align: center;
	}

	a.social-icon:last-child { margin-right: 0; }

	a.social-icon i {
		font-size: 20px;
		line-height: 30px;
	}

	a.social-icon:hover { text-decoration: none; }
	a.social-icon:hover i { color: #f98b6e; }

	a.facebook-icon:hover { color: #0e59a0 !important; }
	a.twitter-icon:hover { color: #0ea4ff !important; }
	a.vimeo-icon:hover { color: #63879c !important; }
	a.flickr-icon:hover { color: #0061db !important; }
	a.github-icon:hover { color: #3b3b3b !important; }
	a.googleplus-icon:hover { color: #282927 !important; }
	a.pinterest-icon:hover { color: #d73532 !important; }
	a.tumblr-icon:hover { color: #586980 !important; }
	a.linkedin-icon:hover { color: #018faf !important; }
	a.dribble-icon:hover { color: #ea73a0 !important; }
	a.stumbleupon-icon:hover { color: #ea4b24 !important; }
	a.lastfm-icon:hover { color: #b80638 !important; }
	a.instagram-icon:hover { color: #82685a !important; }
	a.evernote-icon:hover { color: #3bab27 !important; }
	a.skype-icon:hover { color: #00b0f6 !important; }
	a.paypal-icon:hover { color: #0d3967 !important; }
	a.soundcloud-icon:hover { color: #e9702b !important; }
	a.behance-icon:hover { color: #0066ff !important; }
	a.rss-icon:hover { color: #f79638 !important; }

/* ==========================================================================
   #Styled Tables
   ========================================================================== */

	.table-bordered {
		border: 1px solid #b6b6b6;
		border-collapse: separate;
		border-left: 0;
	}

	.table-bordered th {
		background-color: #45aabb;
		color: #fff;
		font-size: 18px;
	}

	.table-bordered td { border-left: 1px solid #b6b6b6; }

	.table-bordered caption + thead tr:first-child th,
	.table-bordered caption + tbody tr:first-child th,
	.table-bordered caption + tbody tr:first-child td,
	.table-bordered colgroup + thead tr:first-child th,
	.table-bordered colgroup + tbody tr:first-child th,
	.table-bordered colgroup + tbody tr:first-child td,
	.table-bordered thead:first-child tr:first-child th,
	.table-bordered tbody:first-child tr:first-child th,
	.table-bordered tbody:first-child tr:first-child td { border-top: none; }

	.table-condensed th,
	.table-condensed td { padding: 4px 8px; }

	.table-striped tbody tr:nth-child(even) td,
	.table-striped tbody tr:nth-child(even) th { background-color: #dceff2; }

	@media (max-width: 480px) {

		/**
		 * Force table to not be like tables anymore
		 */

		table,
		thead,
		tbody,
		th,
		td,
		tr {
			display: block;
		}

		/**
		 * Hide table headers
		 */

		thead tr {
			position: absolute;
			top: -9999px;
			left: -9999px;
		}

		tr { border-top: 1px solid #b6b6b6; }

		td:first-child { border-top: none !important; }

		.table-bordered { border-top: none; }

	}

/* ==========================================================================
   #Tabs
   ========================================================================== */

	.tabs-menu {
		border-bottom: 1px solid #c4c4c4;
		margin-top: 30px;
		margin-bottom: 0;
		list-style: none;
	}

	.tabs-menu li { display: inline; }

	.tabs-menu li a {
		float: left;
		display: block;
		padding: 5px 20px;
		border: 1px solid #909090;
		margin-bottom: -1px;
		margin-right: 2px;
		color: #333;
		text-decoration: none;
	}

	.tabs-menu li a:hover { text-decoration: none; }

	.tabs-menu li:first-child a { border-left: 1px solid #909090; }

	.tabs-menu li.active a {
		border-color: #f98b6e;
		background-color: #f98b6e;
		color: #fff;
	}

	.tabs { margin-bottom: 30px; }

	.tab-content {
		padding: 25px 0;
	}

	@media (max-width: 767px) {

		.tabs-menu { border-bottom: none; }

		.tabs-menu li { display: block; }

		.tabs-menu li a {
			float: none;
			display: block;
			padding: 20px 25px;
			border: 1px solid #e7e7e7;
			border-top: none;
			margin: 0;
		}

		.tabs-menu li a:hover { text-decoration: none; }

		.tabs-menu li:first-child a { border-top: 1px solid #e7e7e7; }
		.tabs-menu li:first-child a { border-left: 1px solid #e7e7e7; }

		.tabs-menu li.active a {
			padding: 20px 25px;
			margin: 0px;
			background-color: #f98b6e;
			color: #fff;
		}

	}

/* ==========================================================================
   #Testimonials
   ========================================================================== */

	/* Testimonial with author details float left */

	.testimonial {
		position: relative;
		padding-top: 20px;
		margin: 30px 0;
	}

	.testimonial blockquote {
		padding-left: 30px;
		margin: 0 0 20px 120px;
		background: url(../themes/capitolkids/assets/images/bg-testimonial.png) no-repeat top left;
	}

	.testimonial blockquote p,
	.testimonial-author p { margin-bottom: 0; }

	.testimonial-author {
		float: left;
		margin-top: -20px;
		text-align: center;
	}

	.testimonial-author img {
		display: block;
		border-radius: 50%;
		margin-bottom: 10px;
	}

	.testimonial h5 { margin-top: 40px; }

	.testimonial a { color: #555; }

	.testimonial h5 span { color: #999; }

	.testimonial.bordered {
		padding: 40px 10px 40px 40px;
		border: 1px solid #c0c0c0;
	}

	/* Testimonial with author details after blockquote */

	.testimonial-2 {
		padding: 25px 10px;
		margin-bottom: 50px;
	}

	.testimonial-2 blockquote {
		padding-left: 30px;
		margin-bottom: 20px;
		background: url(../themes/capitolkids/assets/images/bg-testimonial.png) no-repeat top left;
	}

	.testimonial-2 .testimonial-author {
		float: none;
		margin-top: 0;
	}

	.testimonial-2 .testimonial-author img { margin: 0 auto 10px; }

	.testimonial-2.bordered {
		padding: 30px 10px 30px 10px;
		border: 1px solid #c0c0c0;
	}

	@media (max-width: 767px) {

		.testimonial-author {
			float: none;
			margin-top: 0;
			margin-bottom: 20px;
		}

		.testimonial-author img { margin: 0 auto 10px; }
		.testimonial blockquote { margin-left: 0; }

		.testimonial.bordered { padding-left: 10px; }

	}

/* ==========================================================================
   #WordPress Widgets
   ========================================================================== */

	/* WordPress Widget Defaults */

	.widget { margin-bottom: 70px; }
	.widget a { color: #2b2b2b; }

	.widget-title {
		padding-bottom: 12px;
		border-bottom: 1px solid #cccccc;
		margin-bottom: 10px;
		line-height: 18px;
		text-transform: uppercase;
	}

	.widget-title i {
		padding: 15px;
		margin-right: 15px;
		background-color: #f98b6e;
		color: #fff;
		font-size: 20px;
	}

	#header-top .widget-title,
	#header-top .widget a,
	#footer .widget-title,
	#footer .widget a { color: #fff; }

	#footer .widget-title {
		border-bottom-color: rgba(255, 255, 255, 0.5);
		margin-bottom: 40px;
		text-transform: none;
	}

	#footer .widget-title i {
		padding: 0;
		margin-right: 20px;
		background-color: transparent;
	}

	#header-top-widget-area-1 .widget:last-child,
	#header-top-widget-area-2 .widget:last-child,
	#footer .widget:last-child,
	#footer .widget:last-child { margin-bottom: 0; }

	/* Text Widget */

	.widget_text {}

	.textwidget {}

	/* Search Widget */

	.widget_search {}

	#searchform { position: relative; }

	.screen-reader-text { display: none; }

	#s {
		width: 100%;
		display:inline-block;
		-webkit-box-sizing: border-box;
		   -moz-box-sizing: border-box;
		   		box-sizing: border-box;
	}

	#searchsubmit {
		position: absolute;
		top: 0;
		right: 0;
		border: none;
		background: url(../themes/capitolkids/assets/images/bg-search.png) no-repeat center center;
	}

	/* Recent Entries Widget */

	.widget_recent_entries {}

	.widget_recent_entries ul { list-style: none; }

	.widget_recent_entries ul li {
		position: relative;
		padding-bottom: 10px;
		border-bottom: 1px solid #cccccc;
		margin-bottom: 10px;
	}

	.widget_recent_entries ul li:last-child { margin-bottom: 0; }

	.widget_recent_entries ul li img {
		float: left;
		margin-right: 10px;
	}

	.widget_recent_entries ul li > a {  }

	.widget_recent_entries ul li .post-date {
		display: block;
		margin-left: 55px;
	}

	.widget_recent_entries ul li .post-date a { color: #f98b6e; }
	#footer .widget_recent_entries ul li .post-date a { color: #fff; }

	#footer .widget_recent_entries ul li { border-bottom-color: rgba(255, 255, 255, 0.5); }
	#footer .widget_recent_entries ul li:last-child { border-bottom: none; }

	/* Pages Widget */

	.widget_pages {}

	.widget_pages ul { list-style: none; }

	.widget_pages ul li {
		position: relative;
		padding: 0 0 10px 50px;
		border-bottom: 1px solid #cccccc;
		margin-bottom: 10px;
		text-transform: uppercase;
	}

	.widget_pages ul li:before {
		position: relative;
		top: -3px;
		width: auto;
		height: auto;
		margin-right: 10px;
		font-family: 'FontAwesome';
		font-size: 6px;
		font-style: normal;
		content: "";
	}

	.widget_pages ul li:last-child { margin-bottom: 0; }

	.widget_pages ul li a {}

	#footer .widget_pages ul li { border-bottom-color: rgba(255, 255, 255, 0.5); }

	/* Archive Widget */

	.widget_archive {}

	.widget_archive ul { list-style: none; }

	.widget_archive ul li {
		position: relative;
		padding: 0 0 10px 50px;
		border-bottom: 1px solid #cccccc;
		margin-bottom: 10px;
		text-transform: uppercase;
	}

	.widget_archive ul li:before {
		position: relative;
		top: -3px;
		width: auto;
		height: auto;
		margin-right: 10px;
		font-family: 'FontAwesome';
		font-size: 6px;
		font-style: normal;
		content: "";
	}

	.widget_archive ul li:last-child { margin-bottom: 0; }

	.widget_archive ul li a {}

	.widget_archive select {}

	.widget_archive option {}

	#footer .widget_archive ul li { border-bottom-color: rgba(255, 255, 255, 0.5); }

	/* Categories Widget */

	.widget_categories {}

	.widget_categories ul { list-style: none; }

	.widget_categories ul li {
		position: relative;
		padding: 0 0 10px 25px;
		border-bottom: 1px solid #cccccc;
		margin-bottom: 10px;
		text-transform: uppercase;
	}

	.widget_categories ul li:before {
		position: relative;
		top: -3px;
		width: auto;
		height: auto;
		margin-right: 10px;
		font-family: 'FontAwesome';
		font-size: 6px;
		font-style: normal;
		content: "";
	}

	.widget_categories ul li:last-child { margin-bottom: 0; }

	.widget_categories ul ul.children {}

	.widget_categories a {}

	.widget_categories select{}

	.widget_categories select#cat {}

	.widget_categories select.postform {}

	.widget_categories option {}

	.widget_categories .level-0 {}

	.widget_categories .level-1 {}

	.widget_categories .level-2 {}

	.widget_categories .level-3 {}

	#footer .widget_categories ul li { border-bottom-color: rgba(255, 255, 255, 0.5); }

	/* Meta Widget */

	.widget_meta {}

	.widget_meta ul { list-style: none; }

	.widget_meta ul li {
		position: relative;
		padding: 0 0 10px 50px;
		border-bottom: 1px solid #cccccc;
		margin-bottom: 10px;
		text-transform: uppercase;
	}

	.widget_meta ul li:before {
		position: relative;
		top: -3px;
		width: auto;
		height: auto;
		margin-right: 10px;
		font-family: 'FontAwesome';
		font-size: 6px;
		font-style: normal;
		content: "";
	}

	.widget_meta ul li:last-child { margin-bottom: 0; }

	.widget_meta ul li a {}

	#footer .widget_meta ul li { border-bottom-color: rgba(255, 255, 255, 0.5); }

	/* Recent Comments Widget */

	.widget_recent_comments {}

	#recentcomments { list-style: none; }

	#recentcomments li {}

	#recentcomments li a { }

	.recentcomments {}

	/* Tag Cloud Widget  */

	.widget_tag_cloud {}

	.widget_tag_cloud a {}

	.widget_tag_cloud a:after {}

	.widget_tag_cloud a:before {}

	/* Calendar Widget */

	.widget_calendar {}

	#calendar_wrap {}

	#calendar_wrap th {}

	#calendar_wrap td {}

	#wp-calendar tr td {}

	#wp-calendar caption {}

	#wp-calendar a {}

	#wp-calendar #today {}

	#wp-calendar #prev {}

	#wp-calendar #next {}

	#wp-calendar #next a {}

	#wp-calendar #prev a {}

	/* Custom Menu Widget */

	.widget_nav_menu {}

	.widget_nav_menu .menu { list-style:none; }

	.widget_nav_menu ul li {
		position: relative;
		padding: 0 0 10px 50px;
		border-bottom: 1px solid #cccccc;
		margin-bottom: 10px;
		text-transform: uppercase;
	}

	.widget_nav_menu ul li:before {
		position: relative;
		top: -3px;
		width: auto;
		height: auto;
		margin-right: 10px;
		font-family: 'FontAwesome';
		font-size: 6px;
		font-style: normal;
		content: "";
	}

	.widget_nav_menu ul li:last-child { margin-bottom: 0; }

	#footer .widget_nav_menu ul li { border-bottom-color: rgba(255, 255, 255, 0.5); }

	/* RSS Widget */

	.widget_rss {}

	.widget_rss ul { list-style: none; }

	/* EWF Navigation */

	.ewf_widget_navigation {}

	.ewf_widget_navigation ul {
		margin-bottom: 30px;
		list-style-type: none;
		list-style-position: outside;
	}

	.ewf_widget_navigation ul li {
		position: relative;
		padding: 0 0 10px 50px;
		border-bottom: 1px solid #cccccc;
		margin-bottom: 10px;
		text-transform: uppercase;
	}

	.ewf_widget_navigation ul li:before {
		position: relative;
		top: -3px;
		width: auto;
		height: auto;
		margin-right: 10px;
		font-family: 'FontAwesome';
		font-size: 6px;
		font-style: normal;
		content: "";
	}

	.ewf_widget_navigation ul li:last-child { margin-bottom: 0; }

	.ewf_widget_navigation li a {}

	#footer .ewf_widget_navigation ul li { border-bottom-color: rgba(255, 255, 255, 0.5); }

	/* Custom - EWF Flickr Widget */

	.ewf_widget_flickr {}

	.ewf_widget_flickr .widget-title { margin-bottom: 10px; }

	#flickr-feed {}

	#flickr-feed a { display: inline; }

	#flickr-feed img {
		width: 68px;
		height: auto;
		border: 0;
		padding: 0 5px 0 0;
	}

	/* Contact Info Widget */

	.ewf_widget_contact_info {}

	.ewf_widget_contact_info ul { list-style: none; }

	.ewf_widget_contact_info ul li {
		position: relative;
		margin-bottom: 15px;
		padding-left: 30px;
	}

	.ewf_widget_contact_info ul li:last-child { margin-bottom: 0; }

	.ewf_widget_contact_info ul li i {
		position: absolute;
		top: 4px;
		left: 0;
		margin-right: 15px;
		font-size: 16px;
	}

/* ==========================================================================
   #WordPress Comments
   ========================================================================== */

	.comments-title { margin: 80px 0 40px 0; }

	.comments-title i {
		padding: 10px;
		margin-right: 15px;
		background-color: #f98b6e;
		color: #fff;
		font-size: 22px;
	}

	.comment-reply-title {}

	.commentlist .reply { display: none; }
	.commentlist .reply a {}

	.commentlist .alt {}
	.commentlist .odd {}
	.commentlist .even {}
	.commentlist .thread-alt {}
	.commentlist .thread-odd {}
	.commentlist .thread-even {}
	.commentlist li ul.children .alt {}
	.commentlist li ul.children .odd {}
	.commentlist li ul.children .even {}

	.commentlist .vcard {}
	.commentlist .vcard cite.fn {}
	.commentlist .vcard span.says { display: none; }

	.commentlist .vcard img.photo {
		float: left;
		border: 8px solid #f98b6e;
		border-radius: 50%;
		margin-right: 20px;
	}

	.commentlist .vcard img.avatar {}
	.commentlist .vcard cite.fn a.url { color: #f98b6e; }
	
	.commentlist .comment-meta { margin-bottom: 10px; } 
	.commentlist .comment-meta a { color: #2b2b2b; }
	.commentlist .commentmetadata {}
	.commentlist .commentmetadata a {}
	
	.commentlist .parent {}
	.commentlist .comment {}
	.commentlist .children {}
	.commentlist .pingback {}
	.commentlist .bypostauthor {}
	.commentlist .comment-author {}
	.commentlist .comment-author-admin {}
	
	.commentlist { 
		list-style: none;
		margin-bottom: 80px;
	}
	
	.commentlist li {}
	.commentlist li p {}
	.commentlist li ul { list-style: none; }
	.commentlist li ul.children li {}
	.commentlist li ul.children li.alt {}
	.commentlist li ul.children li.byuser {}
	.commentlist li ul.children li.comment {}
	.commentlist li ul.children li.bypostauthor {}
	.commentlist li ul.children li.comment-author-admin {}
	
	#cancel-comment-reply {}
	
	#cancel-comment-reply a {}
	
/* ==========================================================================
   #WordPress Comment Form
   ========================================================================== */	
   
	/* Blog Post Comment Form */

	.nocomments { display: none; }
	
	.must-log-in { display: none; }
	
	.logged-in-as { display: none; }

	/* Comment Form */

	#commentform { margin: 30px 0 50px; }
	
	/* Comment notes */
	
	.comment-notes { display: none; }
	
	/* Comment author field. */
	
	.comment-form-author { }
	
	.comment-form-author label { display: none; }
	
	.comment-form-author input#author { }

	/* Comment email field. */
	
	.comment-form-email { }
	
	.comment-form-email label { display: none; }
	
	.comment-form-email input#email { }

	/* Comment URL field. */
	
	.comment-form-url { }
	
	.comment-form-url label { display: none; }
	
	.comment-form-url input#url { }

	/* Required (*) text. */
	
	#commentform .required { }

	/* Comment form comment. */
	
	.comment-form-comment { }
	
	.comment-form-comment label { display: none; }
	
	.comment-form-comment textarea#comment { }

	/* Allowed tags paragraph. */
	
	.form-allowed-tags { display: none; }
	
	.form-allowed-tags code { }

	/* Paragraph that wraps the submit button and hidden comment ID fields. */
	
	.form-submit {}

	/* Submit button. */
	
	#commentform #submit {
		border: none;
		background-color: #45aabb;
		color: #fff;
	}
	
	#commentform #submit:hover { background-color: #3292a2; }
/**
 * Name: layout.css
 * Version: 1.0.0
 *	
 *	-
 *
 *	T.O.C
 *	
 *	#General Layout 
 *		#Header
 *		#Content
 *		#Footer
 *	#Page Styles
 *		#Index
 *		#About
 *		#Services
 *		#Portfolio
 *		#Blog
 *		#Contact
 *	#Responsive
 *		#Large Display
 *		#Smaller then 1024px width	
 *		#Tablet (Portrait)
 *		#Mobile (Portrait and Landscape )
 *		#Mobile ( Landscape )
 */

/* ==========================================================================
   #General Layout 
   ========================================================================== */

	#wrap { background-color: #fff; }

	
/* #Header
   ========================================================================== */	
   	
	#header-top {
		padding: 6px 0;
		background-color: #45aabb;
		color: #fff;
	}
	
	#header-top a.social-icon i { font-size: 18px; }
	
	#header { }
		
	/* Logo */

	#logo {
		display: block; 
		margin: 30px 0 20px 0;
		max-width:220px;
	}
		
	/* Menu basics */

	.sf-menu, 
	.sf-menu * {
		margin: 0;
		padding: 0;
		list-style: none;
	}
	
	.sf-menu li {
		position: relative;
		white-space: nowrap;
	}
	
	.sf-menu ul {
		position: absolute;
		display: none;
		top: 100%;
		left: 0;
		z-index: 105;
	}
	
	.sf-menu > li {
		float: left;
	}
	
	.sf-menu li:hover > ul,
	.sf-menu li.sfHover > ul {
		display: block;
	}
	
	.sf-menu a {
		display: block;
		position: relative;
	}
	
	.sf-menu ul ul {
		top: 0;
		left: 100%;
	}
	
	/* Menu skin */
	
	.sf-menu { float: right; }
	
	.sf-menu a {
		padding: 10px 15px; 
		font-family: 'Open Sans', Arial, sans-serif;
		font-size: 13px;
		color: #2b2b2b;   
	}
	
	.sf-menu a:hover { color: #f98b6e; }
	
	.sf-menu > li > a {
		border: none;
		padding: 40px 20px;
		font-size: 13px;
		text-transform: uppercase;	
	}
	
	.sf-menu li {
		-webkit-transition: background 0.2s;
		transition: background 0.2s;
	}
	
	.sf-menu li:hover,
	.sf-menu li.sfHover {
		position: relative;  
		text-decoration: none;	
	}
	
	.sf-menu li:hover a,
	.sf-menu li.sfHover a {
		text-decoration: none;
	}
	
	.sf-menu li.current > a {
		background-color: #f98b6e;
		color: #fff;
	}

	.sf-menu li.current:before {
		position: absolute;
		z-index: 110;
		bottom: -10px;
		left: 50%;
		width: 0;
		height: 0;
		border-left: 10px solid transparent;
		border-right: 10px solid transparent;
		border-top: 10px solid #f98b6e;
		margin-left: -10px;
		content: "";
		-moz-transform: scale(.9999);
	}

	/**
 	 * 1. allow long menu items to determine submenu width
 	 */

	.sf-menu ul {
		min-width: 200px; /* 1 */
		background-color: #fff;
		border:1px solid #cecece;
	}

	.sf-menu ul > li {
		position: relative;
		padding-left: 25px;
		border-bottom: 1px solid #cecece;
	}

	.sf-menu ul > li:last-child { border-bottom: none; }

	.sf-menu ul > li:before {
		position: absolute;
		top: 10px;
		left: 25px;
		color: #f98b6e;
		font-family: 'FontAwesome';
		content: "";
		font-size: 10px;
	}

	.sf-menu ul > li:last-child > a { border-bottom: none; }

	.sf-menu ul ul li {}

	/* Menu arrows */

	.sf-arrows .sf-with-ul { padding-right: 30px; }

	/* Bottom facing arrows */

	.sf-arrows .sf-with-ul:after {
		position: absolute;
		top: 50%;
		right: 10px;
		height: 0;
		width: 0;
		margin-top: -13px;
		border: 5px solid transparent;
		border-top-color: rgba(0, 0, 0, 0.5);
		content: '';
	}

	/* Right facing arrows */

	.sf-arrows ul .sf-with-ul:after {
		margin-top: -5px;
		margin-right: -3px;
		border-color: transparent;
		border-left-color: rgba(0, 0, 0, 0.5);
	}

	/* Mobile Menu  */

	#mobile-menu {
		z-index: 20;
		border-bottom: 1px solid #efefef;
		margin-bottom: 0;
	}

	#mobile-menu li {
		display: block;
		margin: 0;
	}

	#mobile-menu > li > ul,
	#mobile-menu > li > ul > li > ul {
		display: none;
		margin-left: 0;
	}

	#mobile-menu li a {
		position: relative;
		display: block;
		padding: 15px 25px;
		border-top: 1px solid #efefef;
		background-color: #45aabb;
		color: #fff;
		font-size: 13px;
		text-align: left;
		text-decoration: none;
	}

	#mobile-menu ul a { padding-left:45px; }

	#mobile-menu ul li ul a  { padding-left:65px; }

	#mobile-menu .mobile-menu-submenu-arrow {
		position: absolute;
		top: 0;
		right: 0;
		height: 100%;
		width: 70px;
		border-left: 1px solid #efefef;
		color: #fff;
		font-size:20px;
		line-height: 50px;
		text-align: center;
		cursor: pointer;
	}

	#mobile-menu .mobile-menu-submenu-arrow:hover { background-color: #75c5cc; }

	#mobile-menu li a:hover {}

	#mobile-menu { display: none; }

	/* Mobile menu trigger  */

	#mobile-menu-trigger {
		float: right;
		display: none;
		font-size: 32px;
	}

/* #Content
   ========================================================================== */

	#content {
		min-height: 300px;
		padding-bottom: 50px;
	}

	/* Page Header */

	#page-header {
		padding: 25px 0;
		margin-bottom: 30px;
		background-color: #f3f3f3;
	}

	#page-header i {
		float: left;
		padding: 10px;
		background-color: #45aabb;
		color: #fff;
		font-size: 28px;
		line-height: 28px;
		vertical-align: middle;
	}

	#page-header h3 {
		padding-top: 8px;
		margin-left: 65px;
	}

	/* Charts */

	#canvas-bar-chart-data,
	#canvas-line-chart-data { margin: 30px 0; }


/* #Footer
   ========================================================================== */

	#footer { color: #fff; }

	#footer h1,
	#footer h2,
	#footer h3,
	#footer h4,
	#footer h5,
	#footer h6 { color: #fff; }

	#footer-top {
		padding: 40px 0;
		background: #5bcfc5 url(../themes/capitolkids/assets/images/bg-footer-top.jpg) no-repeat center center;
	}

	#footer-middle {
		padding: 50px 0;
		background: #45bbbb url(../themes/capitolkids/assets/images/bg-footer-middle.jpg) no-repeat center center;
	}

	#footer-bottom {
		padding: 20px 0;
		background-color: #45AABB;
	}

/* ==========================================================================
   #Page Styles
   ========================================================================== */

/* #Index
   ========================================================================== */

/* #About
   ========================================================================== */

    .team-member {
		margin: 30px 0;
		text-align: center;
	}

	.team-member-preview {
		display: inline-block;
		max-width: 100%;
		-webkit-box-sizing: border-box;
		   -moz-box-sizing: border-box;
				box-sizing: border-box;
		border: 20px solid #f98b6e;
		-webkit-border-radius: 50%;
				border-radius: 50%;
		margin-bottom: 20px;
	}

	.team-member img {
		display: block;
		max-width: 100%;
		-webkit-border-radius: 50%;
				border-radius: 50%;
	}

	.team-member h3 { margin-bottom: 30px; }

/* #Services
   ========================================================================== */

   	/* Services */

   	.services {
		position: relative;
		z-index: 100;
		border-bottom: 5px solid #f98b6e;
		margin: -40px 0 30px 0;
	}

   	.services img {
		display: block;
		width: 100%;
	}

	.services-overlay {
		position: absolute;
		bottom: 0;
		left: 0;
		right: 0;
		opacity: 0;
		-webkit-transition: all 0.3s;
			 -o-transition: all 0.3s;
				transition: all 0.3s;
	}

	.services-overlay:before {
		position: absolute;
		z-index: 3;
		bottom: 0;
		left: 0;
		border-bottom: 70px solid #45a9bb;
		border-left: 150px solid rgba(0, 0, 0, 0);
		border-right: 150px solid rgba(0, 0, 0, 0);
		-moz-transform: scale(.9999);
		content: "";
	}

	.services-overlay h4 {
		position: relative;
		z-index: 10;
		color: #fff;
		text-align: center;
	}

	.services:hover .services-overlay { opacity: 1; }

	/* Legend */

	.line-chart-legend {
		margin: 40px 0;
		list-style: none;
	}

	.line-chart-legend li { margin-bottom: 10px; }
	.line-chart-legend li:last-child { margin-bottom: 0; }

	.line-chart-legend li:before {
		position: relative;
		top: 5px;
		margin-right: 10px;
		color: #ef8468;
		font-family: 'FontAwesome';
		font-size: 25px;
		content: "";
	}

	.line-chart-legend li.first:before { color: #ef8468; }
	.line-chart-legend li.second:before { color: #fa9c83; }
	.line-chart-legend li.third:before { color: #fccdc0; }

/* #Portfolio
   ========================================================================== */

    .portfolio-filter ul {
		margin: 30px 0;
		list-style: none;
	}

	.portfolio-filter ul:before {
		margin-right: 20px;
		content: "Categories";
	}

	.portfolio-filter ul li { display: inline-block; }

	.portfolio-filter ul li a {
		display: block;
		padding: 5px 15px;
		color: #2b2b2b;
	}

	.portfolio-filter ul li a:hover,
	.portfolio-filter ul li a.active {
		background-color: #f98b6e;
		color: #fff;
		text-decoration: none;
	}

	/* Isotope */

	.portfolio-items { list-style: none;	}

	.portfolio-items li {
		float: left;
		width: 33.3333333333%;
		-webkit-box-sizing: border-box;
		   -moz-box-sizing: border-box;
				box-sizing: border-box;
		padding: 0 10px;
	}

	.portfolio-item { position: relative; }

	.portfolio-strip {
		margin-top: 30px;
		list-style: none;
	}

	.portfolio-strip li {
		float: left;
		width: 20%;
		-webkit-box-sizing: border-box;
		   -moz-box-sizing: border-box;
				box-sizing: border-box;
		padding: 5px;
	}

    /* Portfolio Item */

	.portfolio-item {
		position: relative;
		border-bottom: 1px solid #d2d2d2;
		margin: 0 0 40px 0;
	}

	.portfolio-strip .portfolio-item {
		border-bottom: none;
		margin: 0;
	}

	.portfolio-item-preview { position: relative; }

	.portfolio-item-preview > a img {
		display: block;
		width: 100%;
	}

	.portfolio-item-overlay {
		position: absolute;
		right: 0;
		bottom: 0;
		top: 0;
		left: 0;
		border: 15px solid #f98b6e;
		opacity: 0;
		text-align: center;
		-webkit-transition: all 0.5s;
			 -o-transition: all 0.5s;
				transition: all 0.5s;
	}

	.portfolio-item-overlay-actions {
		position: absolute;
		top: 0;
		width: 100%;
		-webkit-box-sizing: border-box;
		   -moz-box-sizing: border-box;
				box-sizing: border-box;
		margin-top: -20px;
		text-align: center;
		-webkit-transition: top 0.5s;
			 -o-transition: top 0.5s;
				transition: top 0.5s;
	}

	.portfolio-item-overlay-actions .portfolio-item-zoom,
	.portfolio-item-overlay-actions .portfolio-item-link {
		display: inline-block;
		padding: 10px 10px 7px 10px;
		margin: 0 5px;
		background-color: #45aabb;
		text-decoration: none;
	}

	.portfolio-item-overlay-actions .portfolio-item-zoom i,
	.portfolio-item-overlay-actions .portfolio-item-link i {
		color: #fff;
		font-size: 20px;
		line-height: 20px;
	}

	.portfolio-item-overlay-actions .portfolio-item-zoom:hover,
	.portfolio-item-overlay-actions .portfolio-item-link:hover { background-color: #f98b6e; }

	.portfolio-item-description { padding: 15px 0; }
	.portfolio-item-description h4 { margin-bottom: 0; }
	.portfolio-item-description a { color: #2b2b2b; }
	.portfolio-item-description span { float: right; }
	.portfolio-item-description i { color: #f98b6e; }

	.portfolio-item-overlay .portfolio-item-description {
		position: absolute;
		bottom: 0;
		right: 0;
		left: 0;
		padding: 0;
		-webkit-transition: bottom 0.5s;
			 -o-transition: bottom 0.5s;
				transition: bottom 0.5s;
	}

	.portfolio-item-overlay .portfolio-item-description h4 { color: #fff; }

	.portfolio-item:hover .portfolio-item-overlay { opacity: 1; }
	.portfolio-item:hover .portfolio-item-overlay-actions { top: 50%; }

	.portfolio-item:hover .portfolio-item-overlay .portfolio-item-description { bottom: 5%; }

	/* Portfolio Pagination */

	.pagination {
		float: right;
		list-style: none;
	}

	.pagination li {
		display: inline-block;
		margin-right: 10px;
	}

	.pagination li:last-child { margin-right: 0; }

	.pagination a {
		display: block;
		padding: 3px 10px;
		border: 1px solid #f98b6e;
		color: #f98b6e;
	}

	.pagination li.current a,
	.pagination li a:hover {
		color: #fff;
		background-color: #f98b6e;
		text-decoration: none;
	}

/* #Blog
   ========================================================================== */

	/* Blog Post */

	.blog-post { margin-bottom: 30px; }

	.blog-post-title {
		margin-bottom: 20px;
		font-size: 18px;
	}

	.blog-post-title a { color: #2b2b2b; }

	.blog-post-thumb { margin-bottom: 20px; }

	.blog-post-thumb  img {
		display: block;
		width: 100%;
	}

	.blog-post-info {
		padding-top: 15px;
		margin-left: 110px;
	}

	.blog-post-info i {
		margin-right: 5px;
		font-size: 16px;
		vertical-align: middle;
	}

	.blog-post-readmore {}

	.blog-post .date {
		float: left;
		width: 75px;
		height: 75px;
		-webkit-box-sizing: border-box;
		   -moz-box-sizing: border-box;
				box-sizing: border-box;
		padding: 15px 10px;
		border: 5px solid #45aabb;
		border-radius: 45px;
		-webkit-border-radius: 50%;
				border-radius: 50%;
		background-clip: padding-box;
		background-color: #64cbc0;
		color: #fff;
		font-size: 20px;
		line-height: 15px;
		text-align: center;
	}

	.blog-post .date small { font-size: 12px; text-transform: uppercase; }

	.blog-post .date a { color: #fff; }
	.blog-post .date a:hover { text-decoration: none; }

	/* Recent Posts */

	.recent-posts {
		border-bottom: 1px solid #c4c4c4;
		margin-bottom: 20px;
	}

	.recent-posts img {
		float: left;
		margin-right: 20px;
	}

	.blog-post-comment-form{ position: relative; }
	.blog-post-comment-form input[type="text"] {
		width: 100%;
		height: 33px;
	}

	.blog-post-comment-form input[type="submit"] {
		position: absolute;
		top: 1px;
		right: -1px;
		height: 31px;
		padding: 6px 30px;
		border: none;
		background: #f98b6e url(../themes/capitolkids/assets/images/bg-check.png) no-repeat center center;
	}
	
	.blog-post-comment-form input[type="submit"]:hover { background-color: #dd775c; }
	
   
/* #Contact
   ========================================================================== */
   
	/* Contact Form */
  
	#contact-form { 
		overflow: hidden; 
		margin: 0 0 30px 0; 
	}
	
	#contact-form fieldset { }
	
	label.validation-error { 
		color: #b55454; 
	}
	
	input.validation-error,
	textarea.validation-error,
	select.validation-error { border :1px solid #e1a1a1; }
	
	#contact-form #formstatus {}
		
	#contact-form input[type="text"],
	#contact-form textarea {
	}
	
	#contact-form input[type="submit"].btn {
		padding: 6px 25px;
		margin-right: 0; 
	}
	
/* ==========================================================================
   #Responsive
   ========================================================================== */
   
/* #Large Display
   ========================================================================== */
   	
	@media (min-width: 1400px) {
		
		#wrap {}
		
		/* Portfolio */
		
		.portfolio-strip li { width: 16.666666%; }
		.portfolio-item:hover .portfolio-item-overlay .portfolio-item-description { bottom: 15%; }
		
	}

/* #Smaller then 1024px width
   ========================================================================== */
	
	@media (max-width: 1024px) {

		#wrap {}
		
		#header {}
		
		#content {}
		
		#footer {}
		
	}

/* #Tablet (Portrait)
   ========================================================================== */

	@media (min-width: 768px) and (max-width: 979px) {
		
		#wrap {}
		
		#header {}
		
		#menu { display: none; }
		
		#mobile-menu-trigger { 
			display: block;
			margin-top: 37px;
		}	
		
		#content {}
		
		/* Charts */
	
		#canvas-bar-chart-data,
		#canvas-line-chart-data {
			width: 100% !important;
			height: auto !important;
		}
		
		#footer {}
		
		/* Services */
		
		.services-overlay:before {
			border-left: 112.5px solid rgba(0, 0, 0, 0);
			border-right: 112.5px solid rgba(0, 0, 0, 0);
		}
		
		/* Legend */
	
		.legend { margin-top: 0; }
		
		/* Portfolio */
		
		.portfolio-strip li { width: 33.3333333333%; }

	}
	
/* #Mobile (Portrait and Landscape )
   ========================================================================== */
	
	@media (max-width: 767px) {
	
		body { 
			background: none; 
			background-color: #fff; 
		}
		
		#wrap {}
		
		#header-top {
			display: none;
		}

		#header { border-top:3px solid #45aabb; }	
		
		#logo {}
		
		#menu { display: none; }
		
		#mobile-menu-trigger { 
			display: block;
			padding: 10px;
			position: absolute;
			right: 10px;
			top: -12px;
		}
		
		#content {}
		
		/* Charts */
	
		#canvas-bar-chart-data,
		#canvas-line-chart-data {
			width: 100% !important;
			height: auto !important;
		}
		
		/* Portfolio Items */
		
		.portfolio-items li {
			float: none;
			width: 100%;
		}
		
		#footer{}	

		.row { padding: 0 40px; }
		
		.row .row { 
			width: auto; 
			padding: 0 20px; 
			margin: 0; 
		}
		
		p.last, 
		h1.last, 
		h2.last, 
		h3.last, 
		h4.last, 
		h5.last, 
		address.last, 
		ul.last, 
		ol.last { margin-bottom: 20px; }
		
		.text-right{ text-align:left; }
		
		/* Services */
		
		.services { margin-top: 20px; }
		
		.services-overlay {
			padding: 10px 0;
			background-color: #45aabb; 
		}
		
		/* Legend */
	
		.legend { margin-top: 0; }
		
		.services-overlay:before { display: none; }
		
		/* Portfolio */
		
		.portfolio-filter ul li {
			margin-top: 10px; 
			display: block; 
		}
		
		.portfolio-strip li { width: 100%; }
		
		/* Blog */
		
		.date { float: none; }
		.blog-post-info { margin-left: 0; }

	}
	
/* #Mobile ( Landscape )
  ========================================================================== */

	@media only screen and (min-width: 480px) and (max-width: 767px) {
		
		.row { padding: 0 40px; }
		
		#mobile-menu-trigger { right: 30px; }
		
		/* Portfolio Items */
		
		.portfolio-items li {
			float: left;
			width: 50%;
		}
		
		.portfolio-strip li { width: 50%; }
		
	}	
/**
 * Name: boxed.css
 * Version: 1.0.0
 *	
 *	-
 *
 * This file contains an alternative styling to make the layout boxed. 
 * The boxed version also comes with a few background options that you can choose from.
 *
 */

/* ==========================================================================
   #General Layout 
   ========================================================================== */

	/**
	 * You can choose an alternative background
	 */
		 
	body { 
		background: #fff url(../themes/capitolkids/assets/images/bg-body9.png) repeat top left;
		/*
		background: #fff url(../themes/capitolkids/assets/images/bg-body2.png) repeat top left;
		background: #fff url(../themes/capitolkids/assets/images/bg-body3.png) repeat top left;
		background: #fff url(../themes/capitolkids/assets/images/bg-body4.png) repeat top left;
		background: #fff url(../themes/capitolkids/assets/images/bg-body5.png) repeat top left;
		background: #fff url(../themes/capitolkids/assets/images/bg-body6.png) repeat top left;
		background: #fff url(../themes/capitolkids/assets/images/bg-body7.png) repeat top left;
		background: #fff url(../themes/capitolkids/assets/images/bg-body8.png) repeat top left;
		background: #fff url(../themes/capitolkids/assets/images/bg-body9.png) repeat top left;
		background: #fff url(../themes/capitolkids/assets/images/bg-body10.png) repeat top left;
		background: #fff url(../themes/capitolkids/assets/images/bg-body11.png) repeat top left;
		background: #fff url(../themes/capitolkids/assets/images/bg-body12.png) repeat top left;
		background: #fff url(../themes/capitolkids/assets/images/bg-body13.png) repeat top left;
		background: #fff url(../themes/capitolkids/assets/images/bg-body14.png) repeat top left;
		background: #fff url(../themes/capitolkids/assets/images/bg-body15.png) repeat top left;
		background: #fff url(../themes/capitolkids/assets/images/bg-body16.png) repeat top left;
		background: #fff url(../themes/capitolkids/assets/images/bg-body17.png) repeat top left;
		background: #fff url(../themes/capitolkids/assets/images/bg-body18.png) repeat top left;
		background: #fff url(../themes/capitolkids/assets/images/bg-body19.png) repeat top left;
		background: #fff url(../themes/capitolkids/assets/images/bg-body20.png) repeat top left;
		background: #fff url(../themes/capitolkids/assets/images/bg-body21.png) no-repeat fixed top left;
		background: #fff url(../themes/capitolkids/assets/images/bg-body22.png) no-repeat fixed top left;
		background: #fff url(../themes/capitolkids/assets/images/bg-body23.png) no-repeat fixed top left;
		*/
	}
	
	#wrap {
		max-width: 1140px; 
		margin: 0 auto;
		-webkit-box-shadow: 0 0 6px rgba(0, 0, 0, 0.3);  
		   -moz-box-shadow: 0 0 6px rgba(0, 0, 0, 0.3);    
		        box-shadow: 0 0 6px rgba(0, 0, 0, 0.3);  
	}
	
	#header {
		max-width: 1140px; 
	}
	
	
/* ==========================================================================
   #Responsive
   ========================================================================== */
	
	@media (max-width: 1139px) {
	
		#wrap {
			-webkit-box-shadow: none;  
			   -moz-box-shadow: none;     
		            box-shadow: none;  
		}
	
	}

/* Violet skin */

body {
	background-color: #fff;
	color: #444;
}

h1, 
h2, 
h3, 
h4, 
h5, 
h6 {
	color: #333;
}

abbr[title] {  
	border-bottom: 1px dotted #999; 
}

blockquote span { 
	color: #999999;  
}

hr { 
	border: solid #efefef; 
}

code { 
	border: 1px solid #e1e1e8;
	background-color: #f7f7f7;  
	color: #d14;  
}

pre { 
	border: 1px solid #e1e1e8;   
	background-color: #f7f7f7; 
}

.hr { 
	border-top: 1px solid #efefef;  
}

.text-highlight {  
	background-color: #d5edf8; 
	color: #111111; 
}

.mute{ color: #aaa; }

a, 
a:visited { 
	color: #5a3c7e;  
}

a:active {
	background: transparent; /* 1 */
}

table { 
	background-color: transparent; 
}

table th, 
table td {
	border-top: 1px solid #b6b6b6;
}

label span { color: #FF0000; }

input,
textarea,
select {
	border: 1px solid #c6c5c5;
	background: #fff;
	color: #666;			 
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
textarea:focus {	
	border-color: #999;
}

select:focus {
  outline: thin dotted #333;
}

input:-moz-placeholder,
textarea:-moz-placeholder {
	color: #ccc;
}

input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
	color: #ccc;
}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
	color: #ccc;
}


.toggle-item-toggle,	
.accordion-item-toggle {
	background-color: #8463a9;
	color: #fff;
}

.toggle-item-toggle:after,
.accordion-item-toggle:after {
	color: #fff;
}

.toggle-item-toggle:hover,
.toggle-item-toggle.active,
.accordion-item-toggle:hover,
.accordion-item-toggle.active { 
	background-color: #F57F26;
}

.alert {
	border: 1px solid #d1d1d1;
	-webkit-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.1);
			box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.1);
	background-color: #f8f8f8;
}

.alert.info {
	border: 1px solid #86cde3;
	background-color: #cce9f2;
	color: #006f8b;
}

.alert.success {
	border: 1px solid #b3cda1;
	background-color: #d8f1c6;
	color: #749958;
}

.alert.error {
	border: 1px solid #e1a1a1;
	background-color: #f9d9d9;
	color: #B55454;
}

.alert.warning {
	border: 1px solid #d1c9ae;
	background-color: #fbf4dd;
	color: #978c68;
} 

.btn { 
	border: 1px solid #ccc;
	background-color: transparent;
	color: #444;	
}

.btn:hover { background: #f1f1f1; }

.btn-purple { 
	border: 1px solid #462b6a;
	background-color: #462b6a!important;
	color: #ffffff;	
}

.btn-purple:hover{ background: #a795c7; background-color:#a795c7!important; color:#fff; }
.btn-purple:visited, .btn-purple:focus {color:#fff!important;}

.btn-orange {
	background-color: #F57F26;
	color: #fff;
}

a.btn-orange{ color: #fff; }
.btn-orange:hover { background: #dd775c; }

.btn-green {
	background-color: #8463a9;
	color: #fff;
}

a.btn-green{ color: #fff; }
.btn-green:hover { background: #3292a2; }

.callout-box.bg-img {
	color: #fff;
}

 
.callout-box.bg-pattern {	
	color: #fff;
}

.callout-box.bordered {
	border: 1px solid #efefef;
	background-color: #f5f5f5;
}

ul.check li:before,
ul.plus li:before,
ul.pin li:before,
ul.fill-circle li:before { 
	color: #8463a9;
}

.divider.single-line { border-top: 1px solid #d2d2d2; }

.divider.double-line { border-top: 4px double #d2d2d2; }

.divider.single-dotted {
	 background: url(../themes/capitolkids/assets/images/bg-single-dotted.gif) repeat-x top left;
}

.divider.double-dotted { 
	background: url(../themes/capitolkids/assets/images/bg-double-dotted.gif) repeat-x top left; 
}		

.error-headline h1 {
	border: 10px solid #F57F26;
	color: #FF891D;
}
	
.icon-box-1 > i { 
	box-shadow: inset 0 0 0 0 #F57F26;
	background-color: #8463a9;
	color: #fff;  
}

.icon-box-1 > h1 {
	background-color: #8463a9;
	color: #fff;
} 

.icon-box-1 a { color: #2b2b2b; }

.icon-box-1:hover > i { box-shadow: inset 100px 100px 0 0 #F57F26; }
.icon-box-1:hover > h1 { background-color: #F57F26;  }	

.icon-box-3 > i { 
	background-color: #F57F26;
	color: #fff;
} 
	
.process-builder ul:before {
	border-top: 1px solid #bcbcbc;
}

.process-builder ul li:before {
	color: #bcbcbc;
}

.process-builder ul li > span { 
	border: 15px solid #aad8e0; 
	background-color: #fff;
	color: #bcbcbc;
}

.process-builder ul li .outer {
	border: 15px solid #F57F26;
	background-color: #fff;
}

.process-builder ul li .inner {
	background-color: #F57F26;
	color: #fff;
}

.process-builder ul li:hover span { 
	border-color: #fccabc;
	color: #fccabc;
}

.process-builder.arrow ul li:before {
	color: #bcbcbc;
}

.parallax {
	background-color: #333;
	color: #fff;	
}

.parallax h1,
.parallax h2,
.parallax h3,
.parallax h4,
.parallax h5,
.parallax h6,
.parallax a,
.parallax .process-builder ul li:before,
.parallax .process-builder.arrow ul li:before, 
.box h1,
.box h2,
.box h3,
.box h4,
.box h5,
.box h6,
.box a,
.box .process-builder ul li:before,
.box .process-builder.arrow ul li:before { color: #791900; }


.parallax .process-builder ul:before { border-top-color: #fff; }

.parallax a.btn:hover, 
.box a.btn:hover{ color: #2b2b2b; }

.box {
	background: #462b6a no-repeat center center;
	color: #ffffff;
}

.box h1,
.box h2,
.box h3,
.box h4,
.box h5,
.box h6,
.box a{color:#ffffff!important;}

.box a.social-icon {
	background-color: #ccc;
}

.box h1{line-height:1.3!important;}

.box a.facebook-icon { background-color: #0e59a0 !important; }
.box a.twitter-icon { background-color: #0ea4ff !important; }
.box a.vimeo-icon { background-color: #63879c !important; }
.box a.flickr-icon { background-color: #0061db !important; }
.box a.github-icon { background-color: #3b3b3b !important; }
.box a.googleplus-icon { background-color: #282927 !important; }
.box a.pinterest-icon { background-color: #d73532 !important; }
.box a.tumblr-icon { background-color: #586980 !important; }
.box a.linkedin-icon { background-color: #018faf !important; }
.box a.dribble-icon { background-color: #ea73a0 !important; }
.box a.stumbleupon-icon { background-color: #ea4b24 !important; }
.box a.lastfm-icon { background-color: #b80638 !important; }
.box a.instagram-icon { background-color: #82685a !important; }
.box a.evernote-icon { background-color: #3bab27 !important; }
.box a.skype-icon { background-color: #00b0f6 !important; }
.box a.paypal-icon { background-color: #0d3967 !important; }
.box a.soundcloud-icon { background-color: #e9702b !important; }
.box a.behance-icon { background-color: #0066ff !important; }
.box a.rss-icon { background-color: #f79638 !important; }

.box-2 {
	border-top: 1px solid #d8d8d8;
	border-bottom: 1px solid #d8d8d8;
	background-color: #f2f2f2;
}

.box-2 h1 {
	color: #F57F26;
}

.tagline-text{
margin-bottom: 14px;
    font-size: 42px;
    line-height: 1.3;
    font-weight: 400;    
color:#f57f26;
}

.bg-parallax-1 { background-image: url(../themes/capitolkids/assets/images/backgrounds/1920x1000-1-violet.jpg) }
.bg-parallax-2 { background-image: url(../themes/capitolkids/assets/images/backgrounds/1920x1000-2.jpg); }

.pie-chart i, 
.pie-chart .pie-chart-custom-text, 
.pie-chart .pie-chart-percent {
	color: #444444;
}
	
.price-table > li {
	border-right: 2px solid #fff;
	border-left: 2px solid #fff;
	background-color: #ececec;
}

.price-heading {
	background-color: #8463a9;
}

.price-heading h3 {  
	background-color: #3292a2;
	color: #fff; 	
}

.price-table > li > h5 {
	background-color: #F57F26;
	color: #fff;
}

.pricing-features li { 
	background-color: #f7f7f7; 
}

.pricing-features li:nth-child(odd) { background-color: #ececec; }

.price-table > li.price-table-caption,
.price-table > li.price-table-caption:hover { background-color: #fff; }

.price-table > li.price-table-caption .pricing-features li,
.price-table > li.price-table-caption:hover .pricing-features li { background-color: #f0f0f0; }

.price-table > li.price-table-caption .pricing-features li:nth-child(odd),
.price-table > li.price-table-caption:hover .pricing-features li:nth-child(odd) { background-color: #dbdbdb; }

.price-table > li.selected,
.price-table > li:hover { background-color: #fde7e1; }

.price-table > li.selected .pricing-features li,
.price-table > li:hover .pricing-features li { background-color: #fef5f2; }

.price-table > li.selected .pricing-features li:nth-child(odd),
.price-table > li:hover .pricing-features li:nth-child(odd) { background-color: #fde7e1; }

.progress-bar-description span {
	background-color: #F57F26;
	color: #fff;
}

.progress-bar-description span:after {
	border-top: 7px solid #F57F26; 
	border-right: 10px solid transparent; 
}

.progress-bar {
	background-color: #d5d5d5;
}

.progress-bar .progress-bar-outer .progress-bar-inner {
	background-color: #8463a9;
}

.services-list li:before {
	color: #8463a9;
}

.services-list li:after {
	border-left: 1px solid #8463a9;
}

.services-list li h2 {
	border: 10px solid #F57F26;
	color: #bcbcbc; 
}

.services-list li:hover h2 { 
	color: #F57F26;
}

.services-list li a { color: #2b2b2b; }

.services-list li a:hover { 
	color: #F57F26;
}

a.social-icon:hover i { color: #F57F26; }

a.facebook-icon:hover { color: #0e59a0 !important; }
a.twitter-icon:hover { color: #0ea4ff !important; }
a.vimeo-icon:hover { color: #63879c !important; }
a.flickr-icon:hover { color: #0061db !important; }
a.github-icon:hover { color: #3b3b3b !important; }
a.googleplus-icon:hover { color: #282927 !important; }
a.pinterest-icon:hover { color: #d73532 !important; }
a.tumblr-icon:hover { color: #586980 !important; }
a.linkedin-icon:hover { color: #018faf !important; }
a.dribble-icon:hover { color: #ea73a0 !important; }
a.stumbleupon-icon:hover { color: #ea4b24 !important; }
a.lastfm-icon:hover { color: #b80638 !important; }
a.instagram-icon:hover { color: #82685a !important; }
a.evernote-icon:hover { color: #3bab27 !important; }
a.skype-icon:hover { color: #00b0f6 !important; }
a.paypal-icon:hover { color: #0d3967 !important; }
a.soundcloud-icon:hover { color: #e9702b !important; }
a.behance-icon:hover { color: #0066ff !important; }
a.rss-icon:hover { color: #f79638 !important; }	

.table-bordered { 
	border: 1px solid #b6b6b6; 
}

.table-bordered th { 
	background-color: #8463a9;
	color: #fff;
}
 
.table-bordered td { border-left: 1px solid #b6b6b6; }

.table-striped tbody tr:nth-child(even) td,
.table-striped tbody tr:nth-child(even) th { background-color: #dceff2; }	

@media (max-width: 480px) {
	
	tr { border-top: 1px solid #b6b6b6; }
  
}

.tabs-menu { 
	border-bottom: 1px solid #c4c4c4;
}

.tabs-menu li a { 
	border: 1px solid #909090;	
	color: #333;
}

.tabs-menu li:first-child a { border-left: 1px solid #909090; }

.tabs-menu li.active a {
	border-color: #F57F26;
	background-color: #F57F26;
	color: #791900; 
}

@media (max-width: 767px) {

.sm-text-center{text-align:center;}
	.tabs-menu li a { 
		border: 1px solid #e7e7e7;
	}
	
	.tabs-menu li:first-child a { border-top: 1px solid #e7e7e7; }
	.tabs-menu li:first-child a { border-left: 1px solid #e7e7e7; }
	
	.tabs-menu li.active a {  
		background-color: #F57F26;
		color: #791900; 
	}
  
}

.testimonial blockquote {  
	background: url(../themes/capitolkids/assets/images/bg-testimonial.png) no-repeat top left; 
}

.testimonial a { color: #555; }

.testimonial h5 span { color: #999; }

.testimonial.bordered { 
	border: 1px solid #c0c0c0; 
}

.testimonial-2 blockquote {  
	background: url(../themes/capitolkids/assets/images/bg-testimonial.png) no-repeat top left; 
}

.testimonial-2.bordered {
	border: 1px solid #c0c0c0; 
}

.widget a { color: #2b2b2b; }

.widget-title {
	border-bottom: 1px solid #cccccc;
	display:none;
}

.widget-title i {
	background-color: #F57F26;
	color: #fff;
}

#header-top .widget-title,
#header-top .widget a,
#footer .widget-title,
#footer .widget a { color: #fff;}

#footer .widget-title {
	border-bottom-color: rgba(255, 255, 255, 0.5);
}

#footer .widget-title i {
	background-color: transparent;
}

#searchsubmit {
	background: url(../themes/capitolkids/assets/images/bg-search.png) no-repeat center center;
}

.widget_recent_entries ul li {
	border-bottom: 1px solid #cccccc;
}

.widget_recent_entries ul li .post-date a { color: #F57F26; }
#footer .widget_recent_entries ul li .post-date a { color: #fff; }

#footer .widget_recent_entries ul li { border-bottom-color: rgba(255, 255, 255, 0.5); }

.widget_pages ul li {
	border-bottom: 1px solid #cccccc;
} 

#footer .widget_pages ul li { border-bottom-color: rgba(255, 255, 255, 0.5); }

.widget_archive ul li {
	border-bottom: 1px solid #cccccc; 
} 

#footer .widget_archive ul li { border-bottom-color: rgba(255, 255, 255, 0.5); }	

.widget_categories ul li {
	border-bottom: 1px solid #cccccc;
}

#footer .widget_categories ul li { border-bottom-color: rgba(255, 255, 255, 0.5); }	

.widget_meta ul li {
	border-bottom: 1px solid #cccccc;
}

#footer .widget_meta ul li { border-bottom-color: rgba(255, 255, 255, 0.5); }	

.widget_nav_menu ul li {
	border-bottom: 1px solid #cccccc; 
}

#footer .widget_nav_menu ul li { border-bottom-color: rgba(255, 255, 255, 0.5); }		

.ewf_widget_navigation ul li {
	border-bottom: 1px solid #cccccc; 
} 

#footer .ewf_widget_navigation ul li { border-bottom-color: rgba(255, 255, 255, 0.5); }

.comments-title i {
	background-color: #F57F26;
	color: #fff;
}

.commentlist .vcard img.photo {
	border: 8px solid #F57F26;
}

.commentlist .vcard img.avatar {}
.commentlist .vcard cite.fn a.url { color: #F57F26; }

.commentlist .comment-meta a { color: #2b2b2b; }

#commentform #submit {
	background-color: #8463a9;
	color: #fff;
}

#commentform #submit:hover { background-color: #3292a2; }

	#wrap { background-color: #fff; }

#header-top {
	background-color: #462b6a;
	color: #fff;
}

#header-top .textwidget p{font-size:18px;}

.sf-menu a {
	color: #2b2b2b;   
}

.sf-menu a:hover { color: #F57F26; }

.sf-menu li.current > a {
	background-color: #F57F26;
	color: #ffffff;
}

.sf-menu li.current:before {
	border-left: 10px solid transparent; 
	border-right: 10px solid transparent; 
	border-top: 10px solid #F57F26; 
}

.sf-menu ul {
	background-color: #fff;
	border: 1px solid #cecece; 	
}

.sf-menu ul > li {
	border-bottom: 1px solid #cecece;
}

.sf-menu ul > li:before {
	color: #F57F26;
}

.sf-arrows .sf-with-ul:after {
	border: 5px solid transparent;
	border-top-color: rgba(0, 0, 0, 0.5);
}

.sf-arrows ul .sf-with-ul:after {
	border-color: transparent;
	border-left-color: rgba(0, 0, 0, 0.5);
}
		
#mobile-menu {
	border-bottom: 1px solid #efefef;
}

#mobile-menu li a {
	border-top: 1px solid #efefef;
	background-color: #8463a9;
	color: #fff;
}

#mobile-menu .mobile-menu-submenu-arrow {
	border-left: 1px solid #efefef;
	color: #fff;
}

#mobile-menu .mobile-menu-submenu-arrow:hover { background-color: #75c5cc; }		

#page-header {
	background-color: #f3f3f3;
}

#page-header i {
	background-color: #8463a9;
	color: #fff;
}

#footer { color: #fff; }

#footer h1,
#footer h2,
#footer h3,
#footer h4,
#footer h5,
#footer h6 { color: #fff; }

#footer-top {
	background: #a795c7; 
}

#footer-middle { 
	background: #f57f26; 
	font-size:16px;
}

#footer-bottom {
	background-color: #462b6a; 
}

.footer-logo{max-width:220px; margin:0px auto;}

.team-member-preview {
	border: 20px solid #F57F26;
}

.services {
	border-bottom: 5px solid #F57F26;
}

.services-overlay:before {
	border-bottom: 70px solid #45a9bb;
	border-left: 150px solid rgba(0, 0, 0, 0);
	border-right: 150px solid rgba(0, 0, 0, 0);
}

.services-overlay h4 {
	color: #fff;
}

.line-chart-legend li:before {
	color: #ef8468;
}

.line-chart-legend li.first:before { color: #ef8468; }
.line-chart-legend li.second:before { color: #fa9c83; }
.line-chart-legend li.third:before { color: #fccdc0; }

.portfolio-filter ul li a { 
	color: #2b2b2b;
}

.portfolio-filter ul li a:hover,
.portfolio-filter ul li a.active { 
	background-color: #F57F26;
	color: #fff;
}

.portfolio-item { 
	border-bottom: 1px solid #d2d2d2;
}

.portfolio-item-overlay {
	border: 15px solid #F57F26;
}

.portfolio-item-overlay-actions .portfolio-item-zoom,
.portfolio-item-overlay-actions .portfolio-item-link {
	background-color: #8463a9;
}

.portfolio-item-overlay-actions .portfolio-item-zoom i,
.portfolio-item-overlay-actions .portfolio-item-link i {
	color: #fff; 
}

.portfolio-item-overlay-actions .portfolio-item-zoom:hover,
.portfolio-item-overlay-actions .portfolio-item-link:hover { background-color: #FF891D; } 

.portfolio-item-description a { color: #2b2b2b; }
.portfolio-item-description i { color: #F57F26; }

.portfolio-item-overlay .portfolio-item-description h4 { color: #fff; }

.pagination a { 
	border: 1px solid #F57F26; 
	color: #F57F26;
}

.pagination li.current a,
.pagination li a:hover { 
	color: #fff; 
	background-color: #F57F26;
}

.blog-post-title a { color: #2b2b2b; }
		
.blog-post .date {
	border: 5px solid #8463a9;
	background-color: #64cbc0;
	color: #5a3c7e;
}

.blog-post .date a { color: #fff; }

.recent-posts { 
	border-bottom: 1px solid #c4c4c4;
}

.blog-post-comment-form input[type="submit"] {
	background: #FF891D url(../themes/capitolkids/assets/images/bg-check.png) no-repeat center center;
}

.blog-post-comment-form input[type="submit"]:hover { background-color: #dd775c; }

label.validation-error { 
	color: #b55454; 
}

input.validation-error,
textarea.validation-error,
select.validation-error { border: 1px solid #e1a1a1; }

@media (min-width: 768px) and (max-width: 979px) {
	
	.services-overlay:before {
		border-left: 112.5px solid rgba(0, 0, 0, 0);
		border-right: 112.5px solid rgba(0, 0, 0, 0);
	}

}

@media (max-width: 767px) {

	body { 
		background-color: #fff; 
	}

	#header { border-top: 3px solid #8463a9; }	
	
	.services-overlay {
		background-color: #8463a9; 
	}

}

.bx-wrapper .bx-loading {
	background: url(../themes/capitolkids/assets/js/bxslider/images/bx_loader.gif) center center no-repeat #fff;
}

.bx-wrapper .bx-pager {
	color: #666;
}

.bx-wrapper .bx-pager.bx-default-pager a {
	background: #bfbfbf;
}

.bx-wrapper .bx-pager.bx-default-pager a:hover,
.bx-wrapper .bx-pager.bx-default-pager a.active {
	background: #8463a9;
}

#testimonial-slider .bx-wrapper .bx-pager.bx-default-pager a { background: #8463a9; }
#testimonial-slider .bx-wrapper .bx-pager.bx-default-pager a:hover,
#testimonial-slider .bx-wrapper .bx-pager.bx-default-pager a.active {
	background: #F57F26;
}

.bx-wrapper .bx-prev {
	background: url(../themes/capitolkids/assets/js/bxslider/images/prev.png) no-repeat center center;
}

.bx-wrapper .bx-next {
	background: url(../themes/capitolkids/assets/js/bxslider/images/next.png) no-repeat center center;
}

.bx-wrapper .bx-controls-direction a {
	background-color: rgba(255, 255, 255, 0.5);
}

.bx-wrapper .bx-controls-auto .bx-start {
	background: url(../themes/capitolkids/assets/js/bxslider/images/controls.png) -86px -11px no-repeat;
}

.bx-wrapper .bx-controls-auto .bx-stop {
	background: url(../themes/capitolkids/assets/js/bxslider/images/controls.png) -86px -44px no-repeat;
}

.bx-wrapper .bx-caption {
	background: rgba(80, 80, 80, 0.75);
}

.bx-wrapper .bx-caption span {
	color: #fff;
}
.slidetext {
	background-color: rgba(0, 0, 0, 0.5);
	color: #aeb0b3;
}

.slidetext h2, 
.slidetext h3 {
	color: #ffffff;
}

.slidetext a, 
.slidetext h2 a, 
.slidetext h3 a {
	color: #ffffff;
}

.caption { color: #fff; }

.caption a.btn { 
	color: #fff;
	border-color: #fff;
}

.caption a.btn:hover { color: #494949; }

.caption.icons {  
	border: 15px solid rgba(255, 255, 255, 0.5);
}

.caption.icons i {
	background-color: #fff;
	color: #f98c6f;
}

.tp-leftarrow.default {
	background: rgba(255, 255, 255, 0.5) url(../themes/capitolkids/assets/js/revolutionslider/assets/prev.png) no-repeat center center;	
}

.tp-rightarrow.default {
	background: rgba(255, 255, 255, 0.5) url(../themes/capitolkids/assets/js/revolutionslider/assets/next.png) no-repeat center center;
}

.tp-bullets.simplebullets.round .bullet {
    background: #8463a9;
}

.tp-bullets.simplebullets.round .bullet.selected,
.tp-bullets.simplebullets.round .bullet:hover { background: #F57F26; }
/*-----------------------------------------------------------------------------

	-	Revolution Slider 1.5.3 -

		Screen Stylesheet

version:   	2.1
date:      	09/18/11
last update: 06.12.2012
author:		themepunch
email:     	info@themepunch.com
website:   	http://www.themepunch.com
-----------------------------------------------------------------------------*/


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

	-	Revolution Slider 2.0 Captions -

		Screen Stylesheet

version:   	1.4.5
date:      	09/18/11
last update: 06.12.2012
author:		themepunch
email:     	info@themepunch.com
website:   	http://www.themepunch.com
-----------------------------------------------------------------------------*/



/*************************
	-	CAPTIONS	-
**************************/

.tp-hide-revslider,.tp-caption.tp-hidden-caption	{	visibility:hidden !important; display:none !important;}

.tp-caption { z-index:1;}
.tp-caption.big_white{
			position: absolute;
			color: #fff;
			text-shadow: none;
			font-weight: 800;
			font-size: 20px;
			line-height: 20px;
			font-family: 'Open Sans', sans;
			padding: 3px 4px;
			padding-top: 1px;
			margin: 0px;
			border-width: 0px;
			border-style: none;
			background-color:#000;
			letter-spacing: 0px;
		}

.tp-caption.big_orange{
			position: absolute;
			color: #fff;
			text-shadow: none;
			font-weight: 700;
			font-size: 36px;
			line-height: 36px;
			font-family: Arial;
			padding: 0px 4px;
			margin: 0px;
			border-width: 0px;
			border-style: none;
			background-color:#fb7354;
			letter-spacing: -1.5px;
		}

.tp-caption.big_black{
			position: absolute;
			color: #000;
			text-shadow: none;
			font-weight: 800;
			font-size: 36px;
			line-height: 36px;
			font-family: 'Open Sans', sans;
			padding: 0px 4px;
			margin: 0px;
			border-width: 0px;
			border-style: none;
			background-color:#fff;
			letter-spacing: -1.5px;
		}

.tp-caption.medium_grey{
			position: absolute;
			color: #fff;
			text-shadow: none;
			font-weight: 700;
			font-size: 20px;
			line-height: 20px;
			font-family: Arial;
			padding: 2px 4px;
			margin: 0px;
			border-width: 0px;
			border-style: none;
			background-color:#888;
			white-space:nowrap;
			text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);
		}

.tp-caption.small_text{
			position: absolute;
			color: #fff;
			text-shadow: none;
			font-weight: 700;
			font-size: 14px;
			line-height: 20px;
			font-family: Arial;
			margin: 0px;
			border-width: 0px;
			border-style: none;
			white-space:nowrap;
			text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);
		}

.tp-caption.medium_text{
			position: absolute;
			color: #fff;
			text-shadow: none;
			font-weight: 300;
			font-size: 20px;
			line-height: 20px;
			font-family: 'Open Sans', sans;
			margin: 0px;
			border-width: 0px;
			border-style: none;
			white-space:nowrap;
			text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);
		}

.tp-caption.large_text{
			position: absolute;
			color: #fff;
			text-shadow: none;
			font-weight: 800;
			font-size: 36px;
			line-height: 36px;
			font-family: 'Open Sans', sans;
			margin: 0px;
			border-width: 0px;
			border-style: none;
			white-space:nowrap;
			text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);
		}
.tp-caption.large_black_text{
			position: absolute;
			color: #000;
			text-shadow: none;
			font-weight: 300;
			font-size: 42px;
			line-height: 42px;
			font-family: 'Open Sans', sans;
			margin: 0px;
			border-width: 0px;
			border-style: none;
			white-space:nowrap;
		}

.tp-caption.very_large_text{
			position: absolute;
			color: #fff;
			text-shadow: none;
			font-weight: 800;
			font-size: 60px;
			line-height: 60px;
			font-family: 'Open Sans', sans;
			margin: 0px;
			border-width: 0px;
			border-style: none;
			white-space:nowrap;
			text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);
			letter-spacing: 0px;
		}
.tp-caption.very_large_black_text{
			position: absolute;
			color: #000;
			text-shadow: none;
			font-weight: 800;
			font-size: 72px;
			line-height: 72px;
			font-family: 'Open Sans', sans;
			margin: 0px;
			border-width: 0px;
			border-style: none;
			white-space:nowrap;
		}
.tp-caption.bold_red_text{
			position: absolute;
			color: #d31e00;
			text-shadow: none;
			font-weight: 800;
			font-size: 20px;
			line-height: 20px;
			font-family: 'Open Sans', sans;
			margin: 0px;
			border-width: 0px;
			border-style: none;
			white-space:nowrap;
		}
.tp-caption.bold_brown_text{
			position: absolute;
			color: #a04606;
			text-shadow: none;
			font-weight: 800;
			font-size: 20px;
			line-height: 20px;
			font-family: 'Open Sans', sans;
			margin: 0px;
			border-width: 0px;
			border-style: none;
			white-space:nowrap;
		}
    .tp-caption.bold_green_text{
			position: absolute;
			color: #5b9830;
			text-shadow: none;
			font-weight: 800;
			font-size: 20px;
			line-height: 20px;
			font-family: 'Open Sans', sans;
			margin: 0px;
			border-width: 0px;
			border-style: none;
			white-space:nowrap;
		}

.tp-caption.very_big_white{
			position: absolute;
			color: #fff;
			text-shadow: none;
			font-weight: 800;
			font-size: 36px;
			line-height: 36px;
			font-family: 'Open Sans', sans;
			margin: 0px;
			border-width: 0px;
			border-style: none;
			white-space:nowrap;
			padding: 3px 4px;
			padding-top: 1px;
			background-color:#7e8e96;
					}

.tp-caption.very_big_black{
			position: absolute;
			color: #000;
			text-shadow: none;
			font-weight: 700;
			font-size: 60px;
			line-height: 60px;
			font-family: Arial;
			margin: 0px;
			border-width: 0px;
			border-style: none;
			white-space:nowrap;
			padding: 0px 4px;
			padding-top: 1px;
			background-color:#fff;
					}
					
					
.tp-caption.modern_medium_fat{
			position: absolute; 
			color: #000; 
			text-shadow: none; 
			font-weight: 800; 
			font-size: 24px; 
			line-height: 20px; 
			font-family: 'Open Sans', sans-serif; 
			margin: 0px; 
			border-width: 0px; 
			border-style: none; 
			white-space:nowrap;		
		}
.tp-caption.modern_medium_fat_white{
			position: absolute; 
			color: #fff; 
			text-shadow: none; 
			font-weight: 800; 
			font-size: 24px; 
			line-height: 20px; 
			font-family: 'Open Sans', sans-serif; 
			margin: 0px; 
			border-width: 0px; 
			border-style: none; 
			white-space:nowrap;		
		}
.tp-caption.modern_medium_light{
			position: absolute; 
			color: #000; 
			text-shadow: none; 
			font-weight: 300; 
			font-size: 24px; 
			line-height: 20px; 
			font-family: 'Open Sans', sans-serif; 
			margin: 0px; 
			border-width: 0px; 
			border-style: none; 
			white-space:nowrap;		
		}
.tp-caption.modern_big_bluebg{
			position: absolute; 
			color: #fff; 
			text-shadow: none; 
			font-weight: 800; 
			font-size: 30px; 
			line-height: 36px; 
			font-family: 'Open Sans', sans-serif; 
			padding: 3px 10px; 
			margin: 0px; 
			border-width: 0px; 
			border-style: none; 
			background-color:#4e5b6c;	
			letter-spacing: 0;										
		}
.tp-caption.modern_big_redbg{
			position: absolute; 
			color: #fff; 
			text-shadow: none; 
			font-weight: 300; 
			font-size: 30px; 
			line-height: 36px; 
			font-family: 'Open Sans', sans-serif; 
			padding: 3px 10px; 
  			padding-top: 1px;
			margin: 0px; 
			border-width: 0px; 
			border-style: none; 
			background-color:#de543e;	
			letter-spacing: 0;										
		}
.tp-caption.modern_small_text_dark{
			position: absolute; 
			color: #555; 
			text-shadow: none; 
			font-size: 14px; 
			line-height: 22px; 
			font-family: Arial; 
			margin: 0px; 
			border-width: 0px; 
			border-style: none; 
			white-space:nowrap;		
		}

					
					
					

.tp-caption.boxshadow{
		-moz-box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.5);
		-webkit-box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.5);
		box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.5);
	}

.tp-caption.black{
		color: #000;
		text-shadow: none;
  font-weight: 300;
			font-size: 19px;
			line-height: 19px;
			font-family: 'Open Sans', sans;
	}

.tp-caption.noshadow {
		text-shadow: none;
	}

.tp-caption a {
	color: #ff7302; text-shadow: none;	-webkit-transition: all 0.2s ease-out; -moz-transition: all 0.2s ease-out; -o-transition: all 0.2s ease-out; -ms-transition: all 0.2s ease-out;
}

.tp-caption a:hover {
	color: #ffa902;
}


.tp_inner_padding	{	box-sizing:border-box;
						-webkit-box-sizing:border-box;
						-moz-box-sizing:border-box;
						max-height:none !important;	}


.tp-caption .frontcorner		{
										width: 0;
										height: 0;
										border-left: 40px solid transparent;
										border-right: 0px solid transparent;
										border-top: 40px solid #00A8FF;
										position: absolute;left:-40px;top:0px;
									}

.tp-caption .backcorner		{
										width: 0;
										height: 0;
										border-left: 0px solid transparent;
										border-right: 40px solid transparent;
										border-bottom: 40px solid #00A8FF;
										position: absolute;right:0px;top:0px;
									}

.tp-caption .frontcornertop		{
										width: 0;
										height: 0;
										border-left: 40px solid transparent;
										border-right: 0px solid transparent;
										border-bottom: 40px solid #00A8FF;
										position: absolute;left:-40px;top:0px;
									}

.tp-caption .backcornertop		{
										width: 0;
										height: 0;
										border-left: 0px solid transparent;
										border-right: 40px solid transparent;
										border-top: 40px solid #00A8FF;
										position: absolute;right:0px;top:0px;
									}


/******************************
	-	BUTTONS	-
*******************************/

.button				{	padding:6px 13px 5px; border-radius: 3px; -moz-border-radius: 3px; -webkit-border-radius: 3px; height:30px;
						cursor:pointer;
						color:#fff !important; text-shadow:0px 1px 1px rgba(0, 0, 0, 0.6) !important; font-size:15px; line-height:45px !important;
						background:url(../themes/capitolkids/assets/javascript/revolutionslider/images/gradient/g30.png) repeat-x top; font-family: arial, sans-serif; font-weight: bold; letter-spacing: -1px;
					}

.button.big			{	color:#fff; text-shadow:0px 1px 1px rgba(0, 0, 0, 0.6); font-weight:bold; padding:9px 20px; font-size:19px;  line-height:57px !important; background:url(../themes/capitolkids/assets/javascript/revolutionslider/images/gradient/g40.png) repeat-x top;}


.purchase:hover,
.button:hover,
.button.big:hover		{	background-position:bottom, 15px 11px;}



	@media only screen and (min-width: 768px) and (max-width: 959px) {

	 }



	@media only screen and (min-width: 480px) and (max-width: 767px) {
		.button	{	padding:4px 8px 3px; line-height:25px !important; font-size:11px !important;font-weight:normal;	}
		a.button { -webkit-transition: none; -moz-transition: none; -o-transition: none; -ms-transition: none;	 }


	}

    @media only screen and (min-width: 0px) and (max-width: 479px) {
		.button	{	padding:2px 5px 2px; line-height:20px !important; font-size:10px !important;}
		a.button { -webkit-transition: none; -moz-transition: none; -o-transition: none; -ms-transition: none;	 }
	}





/*	BUTTON COLORS	*/



.button.green, .button:hover.green,
.purchase.green, .purchase:hover.green			{ background-color:#21a117; -webkit-box-shadow:  0px 3px 0px 0px #104d0b;        -moz-box-shadow:   0px 3px 0px 0px #104d0b;        box-shadow:   0px 3px 0px 0px #104d0b;  }


.button.blue, .button:hover.blue,
.purchase.blue, .purchase:hover.blue			{ background-color:#1d78cb; -webkit-box-shadow:  0px 3px 0px 0px #0f3e68;        -moz-box-shadow:   0px 3px 0px 0px #0f3e68;        box-shadow:   0px 3px 0px 0px #0f3e68;}


.button.red, .button:hover.red,
.purchase.red, .purchase:hover.red				{ background-color:#cb1d1d; -webkit-box-shadow:  0px 3px 0px 0px #7c1212;        -moz-box-shadow:   0px 3px 0px 0px #7c1212;        box-shadow:   0px 3px 0px 0px #7c1212;}

.button.orange, .button:hover.orange,
.purchase.orange, .purchase:hover.orange		{ background-color:#ff7700; -webkit-box-shadow:  0px 3px 0px 0px #a34c00;        -moz-box-shadow:   0px 3px 0px 0px #a34c00;        box-shadow:   0px 3px 0px 0px #a34c00;}

.button.darkgrey,.button.grey,
.button:hover.darkgrey,.button:hover.grey,
.purchase.darkgrey, .purchase:hover.darkgrey	{ background-color:#555; -webkit-box-shadow:  0px 3px 0px 0px #222;        -moz-box-shadow:   0px 3px 0px 0px #222;        box-shadow:   0px 3px 0px 0px #222;}

.button.lightgrey, .button:hover.lightgrey,
.purchase.lightgrey, .purchase:hover.lightgrey	{ background-color:#888; -webkit-box-shadow:  0px 3px 0px 0px #555;        -moz-box-shadow:   0px 3px 0px 0px #555;        box-shadow:   0px 3px 0px 0px #555;}



/****************************************************************

	-	SET THE ANIMATION EVEN MORE SMOOTHER ON ANDROID   -

******************************************************************/

.tp-simpleresponsive .slotholder *,
.tp-simpleresponsive img			{ -webkit-transform: translateZ(0);
										  -webkit-backface-visibility: hidden;
										  -webkit-perspective: 1000;
									}


/************************************************
	  - SOME CAPTION MODIFICATION AT START  -
*************************************************/
.tp-simpleresponsive .caption,
.tp-simpleresponsive .tp-caption {
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";	-moz-opacity: 0;	-khtml-opacity: 0;	opacity: 0; position:absolute; visibility: hidden;

}

.tp-simpleresponsive img	{	max-width:none;}



/******************************
	-	IE8 HACKS	-
*******************************/
.noFilterClass {
	filter:none !important;
}


/******************************
	-	SHADOWS		-
******************************/
.tp-bannershadow  {
		position:absolute;

		margin-left:auto;
		margin-right:auto;
		-moz-user-select: none;
        -khtml-user-select: none;
        -webkit-user-select: none;
        -o-user-select: none;
	}

.tp-bannershadow.tp-shadow1 {	background:url(../themes/capitolkids/assets/javascript/revolutionslider/assets/shadow1.png) no-repeat; background-size:100%; width:890px; height:60px; bottom:-60px;}
.tp-bannershadow.tp-shadow2 {	background:url(../themes/capitolkids/assets/javascript/revolutionslider/assets/shadow2.png) no-repeat; background-size:100%; width:890px; height:60px;bottom:-60px;}
.tp-bannershadow.tp-shadow3 {	background:url(../themes/capitolkids/assets/javascript/revolutionslider/assets/shadow3.png) no-repeat; background-size:100%; width:890px; height:60px;bottom:-60px;}


/********************************
	-	FULLSCREEN VIDEO	-
*********************************/
.caption.fullscreenvideo {	left:0px; top:0px; position:absolute;width:100%;height:100%;}
.caption.fullscreenvideo iframe	{ width:100% !important; height:100% !important;}

.tp-caption.fullscreenvideo {	left:0px; top:0px; position:absolute;width:100%;height:100%;}
.tp-caption.fullscreenvideo iframe	{ width:100% !important; height:100% !important;}

/************************
	-	NAVIGATION	-
*************************/

/** BULLETS **/

.tpclear		{	clear:both;}


.tp-bullets								{	z-index:1000; position:absolute;
												-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
												-moz-opacity: 1;
												-khtml-opacity: 1;
												opacity: 1;
												-webkit-transition: opacity 0.2s ease-out; -moz-transition: opacity 0.2s ease-out; -o-transition: opacity 0.2s ease-out; -ms-transition: opacity 0.2s ease-out;
											}
.tp-bullets.hidebullets					{
												-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
												-moz-opacity: 0;
												-khtml-opacity: 0;
												opacity: 0;
											}


.tp-bullets.simplebullets.navbar						{ 	border:1px solid #666; border-bottom:1px solid #444; background:url(../themes/capitolkids/assets/javascript/revolutionslider/assets/boxed_bgtile.png); height:40px; padding:0px 10px; -webkit-border-radius: 5px; -moz-border-radius: 5px; border-radius: 5px ;}

.tp-bullets.simplebullets.navbar-old					{ 	 background:url(../themes/capitolkids/assets/javascript/revolutionslider/assets/navigdots_bgtile.png); height:35px; padding:0px 10px; -webkit-border-radius: 5px; -moz-border-radius: 5px; border-radius: 5px ;}


.tp-bullets.simplebullets.round .bullet					{	cursor:pointer; position:relative;	background:url(../themes/capitolkids/assets/javascript/revolutionslider/assets/bullet.png) no-Repeat top left;	width:20px;	height:20px;  margin-right:0px; float:left; margin-top:-10px; margin-left:3px;}
.tp-bullets.simplebullets.round .bullet.last			{	margin-right:3px;}

.tp-bullets.simplebullets.round-old .bullet				{	cursor:pointer; position:relative;	background:url(../themes/capitolkids/assets/javascript/revolutionslider/assets/bullets.png) no-Repeat bottom left;	width:23px;	height:23px;  margin-right:0px; float:left; margin-top:-12px;}
.tp-bullets.simplebullets.round-old .bullet.last		{	margin-right:0px;}


/**	SQUARE BULLETS **/
.tp-bullets.simplebullets.square .bullet				{	cursor:pointer; position:relative;	background:url(../themes/capitolkids/assets/javascript/revolutionslider/assets/bullets2.png) no-Repeat bottom left;	width:19px;	height:19px;  margin-right:0px; float:left; margin-top:-10px;}
.tp-bullets.simplebullets.square .bullet.last			{	margin-right:0px;}


/**	SQUARE BULLETS **/
.tp-bullets.simplebullets.square-old .bullet			{	cursor:pointer; position:relative;	background:url(../themes/capitolkids/assets/javascript/revolutionslider/assets/bullets2.png) no-Repeat bottom left;	width:19px;	height:19px;  margin-right:0px; float:left; margin-top:-10px;}
.tp-bullets.simplebullets.square-old .bullet.last		{	margin-right:0px;}


/** navbar NAVIGATION VERSION **/
.tp-bullets.simplebullets.navbar .bullet			{	cursor:pointer; position:relative;	background:url(../themes/capitolkids/assets/javascript/revolutionslider/assets/bullet_boxed.png) no-Repeat top left;	width:18px;	height:19px;   margin-right:5px; float:left; margin-top:10px;}

.tp-bullets.simplebullets.navbar .bullet.first		{	margin-left:0px !important;}
.tp-bullets.simplebullets.navbar .bullet.last		{	margin-right:0px !important;}



/** navbar NAVIGATION VERSION **/
.tp-bullets.simplebullets.navbar-old .bullet			{	cursor:pointer; position:relative;	background:url(../themes/capitolkids/assets/javascript/revolutionslider/assets/navigdots.png) no-Repeat bottom left;	width:15px;	height:15px;  margin-left:5px !important; margin-right:5px !important;float:left; margin-top:10px;}
.tp-bullets.simplebullets.navbar-old .bullet.first		{	margin-left:0px !important;}
.tp-bullets.simplebullets.navbar-old .bullet.last		{	margin-right:0px !important;}


.tp-bullets.simplebullets .bullet:hover,
.tp-bullets.simplebullets .bullet.selected				{	background-position:top left; }

.tp-bullets.simplebullets.round .bullet:hover,
.tp-bullets.simplebullets.round .bullet.selected,
.tp-bullets.simplebullets.navbar .bullet:hover,
.tp-bullets.simplebullets.navbar .bullet.selected		{	background-position:bottom left; }



/*************************************
	-	TP ARROWS 	-
**************************************/
.tparrows												{	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
															-moz-opacity: 1;
															-khtml-opacity: 1;
															opacity: 1;
															-webkit-transition: opacity 0.2s ease-out; -moz-transition: opacity 0.2s ease-out; -o-transition: opacity 0.2s ease-out; -ms-transition: opacity 0.2s ease-out;

														}
.tparrows.hidearrows									{
															-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
															-moz-opacity: 0;
															-khtml-opacity: 0;
															opacity: 0;
														}
.tp-leftarrow											{	z-index:100;cursor:pointer; position:relative;	background:url(../themes/capitolkids/assets/javascript/revolutionslider/assets/large_left.png) no-Repeat top left;	width:40px;	height:40px;   }
.tp-rightarrow											{	z-index:100;cursor:pointer; position:relative;	background:url(../themes/capitolkids/assets/javascript/revolutionslider/assets/large_right.png) no-Repeat top left;	width:40px;	height:40px;   }


.tp-leftarrow.round										{	z-index:100;cursor:pointer; position:relative;	background:url(../themes/capitolkids/assets/javascript/revolutionslider/assets/small_left.png) no-Repeat top left;	width:19px;	height:14px;  margin-right:0px; float:left; margin-top:-7px;	}
.tp-rightarrow.round									{	z-index:100;cursor:pointer; position:relative;	background:url(../themes/capitolkids/assets/javascript/revolutionslider/assets/small_right.png) no-Repeat top left;	width:19px;	height:14px;  margin-right:0px; float:left;	margin-top:-7px;}


.tp-leftarrow.round-old									{	z-index:100;cursor:pointer; position:relative;	background:url(../themes/capitolkids/assets/javascript/revolutionslider/assets/arrow_left.png) no-Repeat top left;	width:26px;	height:26px;  margin-right:0px; float:left; margin-top:-13px;	}
.tp-rightarrow.round-old								{	z-index:100;cursor:pointer; position:relative;	background:url(../themes/capitolkids/assets/javascript/revolutionslider/assets/arrow_right.png) no-Repeat top left;	width:26px;	height:26px;  margin-right:0px; float:left;	margin-top:-13px;}


.tp-leftarrow.navbar									{	z-index:100;cursor:pointer; position:relative;	background:url(../themes/capitolkids/assets/javascript/revolutionslider/assets/small_left_boxed.png) no-Repeat top left;	width:20px;	height:15px;   float:left;	margin-right:6px; margin-top:12px;}
.tp-rightarrow.navbar									{	z-index:100;cursor:pointer; position:relative;	background:url(../themes/capitolkids/assets/javascript/revolutionslider/assets/small_right_boxed.png) no-Repeat top left;	width:20px;	height:15px;   float:left;	margin-left:6px; margin-top:12px;}


.tp-leftarrow.navbar-old								{	z-index:100;cursor:pointer; position:relative;	background:url(../themes/capitolkids/assets/javascript/revolutionslider/assets/arrowleft.png) no-Repeat top left;		width:9px;	height:16px;   float:left;	margin-right:6px; margin-top:10px;}
.tp-rightarrow.navbar-old								{	z-index:100;cursor:pointer; position:relative;	background:url(../themes/capitolkids/assets/javascript/revolutionslider/assets/arrowright.png) no-Repeat top left;	width:9px;	height:16px;   float:left;	margin-left:6px; margin-top:10px;}

.tp-leftarrow.navbar-old.thumbswitharrow				{	margin-right:10px; }
.tp-rightarrow.navbar-old.thumbswitharrow				{	margin-left:0px; }

.tp-leftarrow.square									{	z-index:100;cursor:pointer; position:relative;	background:url(../themes/capitolkids/assets/javascript/revolutionslider/assets/arrow_left2.png) no-Repeat top left;	width:12px;	height:17px;   float:left;	margin-right:0px; margin-top:-9px;}
.tp-rightarrow.square									{	z-index:100;cursor:pointer; position:relative;	background:url(../themes/capitolkids/assets/javascript/revolutionslider/assets/arrow_right2.png) no-Repeat top left;	width:12px;	height:17px;   float:left;	margin-left:0px; margin-top:-9px;}


.tp-leftarrow.square-old								{	z-index:100;cursor:pointer; position:relative;	background:url(../themes/capitolkids/assets/javascript/revolutionslider/assets/arrow_left2.png) no-Repeat top left;	width:12px;	height:17px;   float:left;	margin-right:0px; margin-top:-9px;}
.tp-rightarrow.square-old								{	z-index:100;cursor:pointer; position:relative;	background:url(../themes/capitolkids/assets/javascript/revolutionslider/assets/arrow_right2.png) no-Repeat top left;	width:12px;	height:17px;   float:left;	margin-left:0px; margin-top:-9px;}


.tp-leftarrow.default									{	z-index:100;cursor:pointer; position:relative;	background:url(../themes/capitolkids/assets/javascript/revolutionslider/assets/large_left.png) no-Repeat 0 0;	width:40px;	height:40px;

														}
.tp-rightarrow.default									{	z-index:100;cursor:pointer; position:relative;	background:url(../themes/capitolkids/assets/javascript/revolutionslider/assets/large_right.png) no-Repeat 0 0;	width:40px;	height:40px;

														}




.tp-leftarrow:hover,
.tp-rightarrow:hover 									{	background-position:bottom left; }






/****************************************************************************************************
	-	TP THUMBS 	-
*****************************************************************************************************

 - tp-thumbs & tp-mask Width is the width of the basic Thumb Container (500px basic settings)

 - .bullet width & height is the dimension of a simple Thumbnail (basic 100px x 50px)

 *****************************************************************************************************/


.tp-bullets.tp-thumbs						{	z-index:1000; position:absolute; padding:3px;background-color:#fff;
												width:500px;height:50px; 			/* THE DIMENSIONS OF THE THUMB CONTAINER */
												margin-top:-50px;
											}


.fullwidthbanner-container .tp-thumbs		{  padding:3px;}

.tp-bullets.tp-thumbs .tp-mask				{	width:500px; height:50px;  			/* THE DIMENSIONS OF THE THUMB CONTAINER */
												overflow:hidden; position:relative;}


.tp-bullets.tp-thumbs .tp-mask .tp-thumbcontainer	{	width:5000px; position:absolute;}

.tp-bullets.tp-thumbs .bullet				{   width:100px; height:50px; 			/* THE DIMENSION OF A SINGLE THUMB */
												cursor:pointer; overflow:hidden;background:none;margin:0;float:left;
												-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
												/*filter: alpha(opacity=50);	*/
												-moz-opacity: 0.5;
												-khtml-opacity: 0.5;
												opacity: 0.5;

												-webkit-transition: all 0.2s ease-out; -moz-transition: all 0.2s ease-out; -o-transition: all 0.2s ease-out; -ms-transition: all 0.2s ease-out;
											}


.tp-bullets.tp-thumbs .bullet:hover,
.tp-bullets.tp-thumbs .bullet.selected		{ 	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";

												-moz-opacity: 1;
												-khtml-opacity: 1;
												opacity: 1;
											}
.tp-thumbs img								{	width:100%; }


/************************************
		-	TP BANNER TIMER		-
*************************************/
.tp-bannertimer								{	width:100%; height:10px; background:url(../themes/capitolkids/assets/javascript/revolutionslider/assets/timer.png);position:absolute; z-index:200;top:0px;}
.tp-bannertimer.tp-bottom					{	bottom:0px;height:5px; top:auto;}




/***************************************
	-	RESPONSIVE SETTINGS 	-
****************************************/


	@media only screen and (min-width: 768px) and (max-width: 959px) {

	 }



	@media only screen and (min-width: 480px) and (max-width: 767px) {
			.responsive .tp-bullets.tp-thumbs				{	width:300px !important; height:30px !important;}
			.responsive .tp-bullets.tp-thumbs .tp-mask		{	width:300px !important; height:30px !important;}
			.responsive .tp-bullets.tp-thumbs .bullet		{	width:60px !important;height:30px !important;}

	}

    @media only screen and (min-width: 0px) and (max-width: 479px) {
				.responsive .tp-bullets	{	display:none}
				.responsive .tparrows	{	display:none;}
	}





/*********************************************

	-	BASIC SETTINGS FOR THE BANNER	-

***********************************************/

 .tp-simpleresponsive img {
		-moz-user-select: none;
        -khtml-user-select: none;
        -webkit-user-select: none;
        -o-user-select: none;
}



.tp-simpleresponsive a{	text-decoration:none;}

.tp-simpleresponsive ul {
	list-style:none;
	padding:0;
	margin:0;
}

.tp-simpleresponsive >ul >li{
	list-stye:none;
	position:absolute;
	visibility:hidden;
}
/*  CAPTION SLIDELINK   **/
.caption.slidelink a div,
.tp-caption.slidelink a div {	width:3000px; height:1500px;  background:url(../themes/capitolkids/assets/javascript/revolutionslider/assets/coloredbg.png) repeat;}

.tp-loader 	{	background:url(../themes/capitolkids/assets/javascript/revolutionslider/assets/loader.gif) no-repeat 10px 10px; background-color:#fff;  margin:-22px -22px; top:50%; left:50%; z-index:10000; position:absolute;width:44px;height:44px;
				border-radius: 3px;
				-moz-border-radius: 3px;
				-webkit-border-radius: 3px;
			}


.tp-transparentimg {	content:"url(../themes/capitolkids/assets/javascript/revolutionslider/assets/transparent.png)"}
.tp-3d				{	-webkit-transform-style: preserve-3d;
						 -webkit-transform-origin: 50% 50%;
					}


.fullwidthbanner-container {
    max-height: 480px !important;
    overflow: hidden;
    padding: 0;
    position: relative;
    width: 100% !important;
}

.fullwidthbanner-container ul { list-style: none; }

.caption {
    color: #fff;
}

.caption-shadow{
    background-color: rgba(0,0,0,0.1);
    padding: 0.2em;
    xtext-shadow: 0px 0px 5px #000;
}

.caption.title {
	font-size: 36px;
	line-height: 54px;
	font-weight: 300;
}

.caption.text{

}

.caption a.btn { 
	color: #fff;
	border-color: #fff;
}

.caption a.btn:hover { color: #494949; }

.caption.icons {  
	border: 15px solid rgba(255, 255, 255, 0.5);
	border-radius: 50%;
}

.caption.icons i {
	display: block;
	width: 90px;
	height: 90px;
	border-radius: 50%;
	background-color: #fff;
	color: #f98c6f;
	font-size: 40px;
	line-height: 90px;
	text-align: center;
}

.tp-leftarrow.default {
	width: 60px;
	height: 60px;
	background: rgba(255, 255, 255, 0.5) url(../themes/capitolkids/assets/javascript/revolutionslider/assets/prev.png) no-repeat center center;	
}

.tp-rightarrow.default {
	width: 60px;
	height: 60px;
	background: rgba(255, 255, 255, 0.5) url(../themes/capitolkids/assets/javascript/revolutionslider/assets/next.png) no-repeat center center;
}

.tp-bullets { bottom: 50px !important; }

.tp-bullets.simplebullets.round .bullet {
	width: 11px;
	height: 11px;
	border-radius: 50%;
	margin: -10px 5px 0 5px;
    background: #45aabb;
}

.tp-bullets.simplebullets.round .bullet.selected,
.tp-bullets.simplebullets.round .bullet:hover { background: #f98b6e; }

@media (min-width: 768px) and (max-width: 979px) {
	
	.fullwidthbanner-container,
	.fullwidthbanner-container .fullwidthabnner { max-height: 390px !important; }
	
}

@media (max-width: 767px) {
	
	.fullwidthbanner-container,
	.fullwidthbanner-container .fullwidthabnner { max-height: 200px !important; }
	
	.tp-leftarrow.default,
	.tp-rightarrow.default { display: none; }
	
	.tp-bullets { bottom: 20px !important; }
	
	.caption a.btn.btn-large { 
		padding: 3px 10px;
		font-size: 10px;
	}
	
	.caption.icons i {
		width: 40px;
		height: 40px;
		font-size: 18px;
		line-height: 40px;
	}
		
}

@media only screen and (min-width: 480px) and (max-width: 767px) {
	
	.fullwidthbanner-container,
	.fullwidthbanner-container .fullwidthabnner { max-height: 245px !important; }
	
}



/* ==========================================================================
   #RESET AND LAYOUT
   ========================================================================== */

	.bx-wrapper {
		position: relative;
		margin-bottom: 30px;
	}
	
	.bx-wrapper img {
		display: block;
		max-width: 100%;
	}
	
	#testimonial-slider .bx-wrapper { margin-bottom: 0; }

/* ==========================================================================
   #THEME
   ========================================================================== */

	.bx-wrapper .bx-viewport {}
	
	.bx-wrapper .bx-pager,
	.bx-wrapper .bx-controls-auto {
		position: absolute;
		bottom: -40px;
		width: 100%;
	}
	
	#testimonial-slider .bx-wrapper .bx-pager,
	#testimonial-slider .bx-wrapper .bx-controls-auto { bottom: -20px; }
	
	#testimonial-slider-2 .bx-wrapper .bx-pager,
	#testimonial-slider-2 .bx-wrapper .bx-controls-auto { bottom: 0; }

/* #LOADER
   ========================================================================== */

	.bx-wrapper .bx-loading {
		position: absolute;
		z-index: 2000;
		top: 0;
		left: 0;
		width: 100%;
		min-height: 50px;
		height: 100%;
		background: url(../themes/capitolkids/assets/javascript/bxslider/images/bx_loader.gif) center center no-repeat #fff;
	}

/* #PAGER
   ========================================================================== */

	.bx-wrapper .bx-pager {
		color: #666;
		text-align: center;
	}
	
	.bx-wrapper .bx-pager .bx-pager-item,
	.bx-wrapper .bx-controls-auto .bx-controls-auto-item {
		display: inline-block;
	}
	
	.bx-wrapper .bx-pager.bx-default-pager a {
		display: block;
		width: 8px;
		height: 8px;
		-webkit-border-radius: 5px;
		   -moz-border-radius: 5px;
				border-radius: 5px;
		outline: 0;
		margin: 0 5px;
		background: #bfbfbf;
		text-indent: -9999px;
	}
	
	.bx-wrapper .bx-pager.bx-default-pager a:hover,
	.bx-wrapper .bx-pager.bx-default-pager a.active {
		background: #45aabb;
	}
	
	#testimonial-slider .bx-wrapper .bx-pager.bx-default-pager a { background: #45aabb; }
	#testimonial-slider .bx-wrapper .bx-pager.bx-default-pager a:hover,
	#testimonial-slider .bx-wrapper .bx-pager.bx-default-pager a.active {
		background: #f98b6e;
	}

/* #DIRECTION CONTROLS (NEXT / PREV
   ========================================================================== */

	.bx-wrapper .bx-prev {
		left: 0;
		background: url(../themes/capitolkids/assets/javascript/bxslider/images/prev.png) no-repeat center center;
	}
	
	.bx-wrapper .bx-next {
		right: 0;
		background: url(../themes/capitolkids/assets/javascript/bxslider/images/next.png) no-repeat center center;
	}
	
	.bx-wrapper .bx-prev:hover {
		opacity: 1;
	}
	
	.bx-wrapper .bx-next:hover {
		opacity: 1;
	}
	
	.bx-wrapper .bx-controls-direction a {
		position: absolute;
		z-index: 9999;
		top: 50%;
		width: 47px;
		height: 47px;
		outline: 0;
		margin-top: -16px;
		background-color: rgba(255, 255, 255, 0.5);
		text-indent: -9999px;
		opacity: 0.3;
	}
	
	.bx-wrapper .bx-controls-direction a.disabled {
		display: none;
	}

/* #AUTO CONTROLS (START / STOP)
   ========================================================================== */

	.bx-wrapper .bx-controls-auto {
		text-align: center;
	}
	
	.bx-wrapper .bx-controls-auto .bx-start {
		display: block;
		width: 10px;
		height: 11px;
		outline: 0;
		margin: 0 3px;
		text-indent: -9999px;
		background: url(../themes/capitolkids/assets/javascript/bxslider/images/controls.png) -86px -11px no-repeat;
	}
	
	.bx-wrapper .bx-controls-auto .bx-start:hover,
	.bx-wrapper .bx-controls-auto .bx-start.active {
		background-position: -86px 0;
	}
	
	.bx-wrapper .bx-controls-auto .bx-stop {
		display: block;
		width: 9px;
		height: 11px;
		outline: 0;
		margin: 0 3px;
		text-indent: -9999px;
		background: url(../themes/capitolkids/assets/javascript/bxslider/images/controls.png) -86px -44px no-repeat;
	}
	
	.bx-wrapper .bx-controls-auto .bx-stop:hover,
	.bx-wrapper .bx-controls-auto .bx-stop.active {
		background-position: -86px -33px;
	}

/* #PAGER WITH AUTO-CONTROLS HYBRID LAYOUT
   ========================================================================== */

	.bx-wrapper .bx-controls.bx-has-controls-auto.bx-has-pager .bx-pager {
		width: 80%;
		text-align: left;	
	}
	
	.bx-wrapper .bx-controls.bx-has-controls-auto.bx-has-pager .bx-controls-auto {
		right: 0;
		width: 35px;
	}

/* #IMAGE CAPTIONS
   ========================================================================== */

	.bx-wrapper .bx-caption {
		position: absolute;
		bottom: 0;
		left: 0;
		width: 100%;
		background: rgba(80, 80, 80, 0.75);
	}
	
	.bx-wrapper .bx-caption span {
		display: block;
		padding: 10px;
		color: #fff;
		font-family: Arial;
		font-size: 13px;
	}

/* #SLIDE TEXT
   ========================================================================== */

	.slidetext {
		position: absolute;
		bottom:90px;
		left: 120px;
		width: 250px;
		padding: 25px;
		background-color: rgba(0, 0, 0, 0.5);
		color: #aeb0b3;
	}
	
	.slidetext h2, 
	.slidetext h3 {
		color: #ffffff;
	}
	
	.slidetext a, 
	.slidetext h2 a, 
	.slidetext h3 a {
		color: #ffffff;
		text-decoration: none;
	}
	
	#client-logos-slider { margin: 50px 0; }
	
	
	@media (min-width: 768px) and (max-width: 979px) {
	
		
	
	}
	
	@media (max-width: 767px) {
	
		.slidetext { display: none; }
		
		.bx-wrapper { margin-bottom: 60px; }
	
	}
.mfp-bg{ top:0; left:0; width:100%; height:100%; z-index:1042; overflow:hidden; position:fixed; background:#0b0b0b; opacity:0.8; filter:alpha(opacity=80)}.mfp-wrap{ top:0; left:0; width:100%; height:100%; z-index:1043; position:fixed; outline:none !important; -webkit-backface-visibility:hidden}.mfp-container{ text-align:center; position:absolute; width:100%; height:100%; left:0; top:0; padding:0 8px; -webkit-box-sizing:border-box; -moz-box-sizing:border-box; box-sizing:border-box}.mfp-container:before{ content:''; display:inline-block; height:100%; vertical-align:middle}.mfp-align-top .mfp-container:before{ display:none}.mfp-content{ position:relative; display:inline-block; vertical-align:middle; margin:0 auto; text-align:left; z-index:1045}.mfp-inline-holder .mfp-content,.mfp-ajax-holder .mfp-content{ width:100%; cursor:auto}.mfp-ajax-cur{ cursor:progress}.mfp-zoom-out-cur,.mfp-zoom-out-cur .mfp-image-holder .mfp-close{ cursor:-moz-zoom-out; cursor:-webkit-zoom-out; cursor:zoom-out}.mfp-zoom{ cursor:pointer; cursor:-webkit-zoom-in; cursor:-moz-zoom-in; cursor:zoom-in}.mfp-auto-cursor .mfp-content{ cursor:auto}.mfp-close,.mfp-arrow,.mfp-preloader,.mfp-counter{ -webkit-user-select:none; -moz-user-select:none; user-select:none}.mfp-loading.mfp-figure{ display:none}.mfp-hide{ display:none !important}.mfp-preloader{ color:#ccc; position:absolute; top:50%; width:auto; text-align:center; margin-top:-0.8em; left:8px; right:8px; z-index:1044} .mfp-preloader a{ color:#ccc} .mfp-preloader a:hover{ color:white}.mfp-s-ready .mfp-preloader{ display:none}.mfp-s-error .mfp-content{ display:none}button.mfp-close,button.mfp-arrow{ overflow:visible; cursor:pointer; background:transparent; border:0; -webkit-appearance:none; display:block; outline:none; padding:0; z-index:1046; -webkit-box-shadow:none; box-shadow:none}button::-moz-focus-inner{ padding:0; border:0}.mfp-close{ width:44px; height:44px; line-height:44px; position:absolute; right:0; top:0; text-decoration:none; text-align:center; opacity:0.65; filter:alpha(opacity=65); padding:0 0 18px 10px; color:white; font-style:normal; font-size:28px; font-family:Arial,Baskerville,monospace} .mfp-close:hover,.mfp-close:focus{ opacity:1; filter:alpha(opacity=100)} .mfp-close:active{ top:1px}.mfp-close-btn-in .mfp-close{ color:#333}.mfp-image-holder .mfp-close,.mfp-iframe-holder .mfp-close{ color:white; right:-6px; text-align:right; padding-right:6px; width:100%}.mfp-counter{ position:absolute; top:0; right:0; color:#ccc; font-size:12px; line-height:18px}.mfp-arrow{ position:absolute; opacity:0.65; filter:alpha(opacity=65); margin:0; top:50%; margin-top:-55px; padding:0; width:90px; height:110px; -webkit-tap-highlight-color:rgba(0,0,0,0)} .mfp-arrow:active{ margin-top:-54px} .mfp-arrow:hover,.mfp-arrow:focus{ opacity:1; filter:alpha(opacity=100)} .mfp-arrow:before,.mfp-arrow:after,.mfp-arrow .mfp-b,.mfp-arrow .mfp-a{ content:''; display:block; width:0; height:0; position:absolute; left:0; top:0; margin-top:35px; margin-left:35px; border:medium inset transparent} .mfp-arrow:after,.mfp-arrow .mfp-a{ border-top-width:13px; border-bottom-width:13px; top:8px} .mfp-arrow:before,.mfp-arrow .mfp-b{ border-top-width:21px; border-bottom-width:21px; opacity:0.7}.mfp-arrow-left{ left:0} .mfp-arrow-left:after,.mfp-arrow-left .mfp-a{ border-right:17px solid white; margin-left:31px} .mfp-arrow-left:before,.mfp-arrow-left .mfp-b{ margin-left:25px; border-right:27px solid #3f3f3f}.mfp-arrow-right{ right:0} .mfp-arrow-right:after,.mfp-arrow-right .mfp-a{ border-left:17px solid white; margin-left:39px} .mfp-arrow-right:before,.mfp-arrow-right .mfp-b{ border-left:27px solid #3f3f3f}.mfp-iframe-holder{ padding-top:40px; padding-bottom:40px} .mfp-iframe-holder .mfp-content{ line-height:0; width:100%; max-width:900px} .mfp-iframe-holder .mfp-close{ top:-40px}.mfp-iframe-scaler{ width:100%; height:0; overflow:hidden; padding-top:56.25%} .mfp-iframe-scaler iframe{ position:absolute; display:block; top:0; left:0; width:100%; height:100%; box-shadow:0 0 8px rgba(0,0,0,0.6); background:black}img.mfp-img{ width:auto; max-width:100%; height:auto; display:block; line-height:0; -webkit-box-sizing:border-box; -moz-box-sizing:border-box; box-sizing:border-box; padding:40px 0 40px; margin:0 auto}.mfp-figure{ line-height:0} .mfp-figure:after{ content:''; position:absolute; left:0; top:40px; bottom:40px; display:block; right:0; width:auto; height:auto; z-index:-1; box-shadow:0 0 8px rgba(0,0,0,0.6); background:#444} .mfp-figure small{ color:#bdbdbd; display:block; font-size:12px; line-height:14px} .mfp-figure figure{ margin:0}.mfp-bottom-bar{ margin-top:-36px; position:absolute; top:100%; left:0; width:100%; cursor:auto}.mfp-title{ text-align:left; line-height:18px; color:#f3f3f3; word-wrap:break-word; padding-right:36px}.mfp-image-holder .mfp-content{ max-width:100%}.mfp-gallery .mfp-image-holder .mfp-figure{ cursor:pointer}@media screen and (max-width:800px) and (orientation:landscape),screen and (max-height:300px){  .mfp-img-mobile .mfp-image-holder{ padding-left:0; padding-right:0} .mfp-img-mobile img.mfp-img{ padding:0} .mfp-img-mobile .mfp-figure:after{ top:0; bottom:0} .mfp-img-mobile .mfp-figure small{ display:inline; margin-left:5px} .mfp-img-mobile .mfp-bottom-bar{ background:rgba(0,0,0,0.6); bottom:0; margin:0; top:auto; padding:3px 5px; position:fixed; -webkit-box-sizing:border-box; -moz-box-sizing:border-box; box-sizing:border-box} .mfp-img-mobile .mfp-bottom-bar:empty{ padding:0} .mfp-img-mobile .mfp-counter{ right:5px; top:3px} .mfp-img-mobile .mfp-close{ top:0; right:0; width:35px; height:35px; line-height:35px; background:rgba(0,0,0,0.6); position:fixed; text-align:center; padding:0}}@media all and (max-width:900px){ .mfp-arrow{ -webkit-transform:scale(0.75); transform:scale(0.75)} .mfp-arrow-left{ -webkit-transform-origin:0; transform-origin:0} .mfp-arrow-right{ -webkit-transform-origin:100%; transform-origin:100%} .mfp-container{ padding-left:6px; padding-right:6px}}.mfp-ie7 .mfp-img{ padding:0}.mfp-ie7 .mfp-bottom-bar{ width:600px; left:50%; margin-left:-300px; margin-top:5px; padding-bottom:5px}.mfp-ie7 .mfp-container{ padding:0}.mfp-ie7 .mfp-content{ padding-top:44px}.mfp-ie7 .mfp-close{ top:0; right:0; padding-top:0}
/* Font Awesome - v4.0.3 - The iconic font designed for Bootstrap
 * http://fontawesome.io
 */
@font-face{font-family:'FontAwesome';src:url('../themes/capitolkids/assets/css/fontawesome/font/fontawesome-webfont.eot?v=4.0.3');src:url('../themes/capitolkids/assets/css/fontawesome/font/fontawesome-webfont.eot?#iefix&v=4.0.3') format('embedded-opentype'),url('../themes/capitolkids/assets/css/fontawesome/font/fontawesome-webfont.woff?v=4.0.3') format('woff'),url('../themes/capitolkids/assets/css/fontawesome/font/fontawesome-webfont.ttf?v=4.0.3') format('truetype'),url('../themes/capitolkids/assets/css/fontawesome/font/fontawesome-webfont.svg?v=4.0.3#fontawesomeregular') format('svg');font-weight:normal;font-style:normal}.fa{display:inline-block;font-family:FontAwesome;font-style:normal;font-weight:normal;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.fa-lg{font-size:1.3333333333333333em;line-height:.75em;vertical-align:-15%}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-fw{width:1.2857142857142858em;text-align:center}.fa-ul{padding-left:0;margin-left:2.142857142857143em;list-style-type:none}.fa-ul>li{position:relative}.fa-li{position:absolute;left:-2.142857142857143em;width:2.142857142857143em;top:.14285714285714285em;text-align:center}.fa-li.fa-lg{left:-1.8571428571428572em}.fa-border{padding:.2em .25em .15em;border:solid .08em #eee;border-radius:.1em}.pull-right{float:right}.pull-left{float:left}.fa.pull-left{margin-right:.3em}.fa.pull-right{margin-left:.3em}.fa-spin{-webkit-animation:spin 2s infinite linear;-moz-animation:spin 2s infinite linear;-o-animation:spin 2s infinite linear;animation:spin 2s infinite linear}@-moz-keyframes spin{0%{-moz-transform:rotate(0deg)}100%{-moz-transform:rotate(359deg)}}@-webkit-keyframes spin{0%{-webkit-transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg)}}@-o-keyframes spin{0%{-o-transform:rotate(0deg)}100%{-o-transform:rotate(359deg)}}@-ms-keyframes spin{0%{-ms-transform:rotate(0deg)}100%{-ms-transform:rotate(359deg)}}@keyframes spin{0%{transform:rotate(0deg)}100%{transform:rotate(359deg)}}.fa-rotate-90{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=1);-webkit-transform:rotate(90deg);-moz-transform:rotate(90deg);-ms-transform:rotate(90deg);-o-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=2);-webkit-transform:rotate(180deg);-moz-transform:rotate(180deg);-ms-transform:rotate(180deg);-o-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=3);-webkit-transform:rotate(270deg);-moz-transform:rotate(270deg);-ms-transform:rotate(270deg);-o-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=0,mirror=1);-webkit-transform:scale(-1,1);-moz-transform:scale(-1,1);-ms-transform:scale(-1,1);-o-transform:scale(-1,1);transform:scale(-1,1)}.fa-flip-vertical{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=2,mirror=1);-webkit-transform:scale(1,-1);-moz-transform:scale(1,-1);-ms-transform:scale(1,-1);-o-transform:scale(1,-1);transform:scale(1,-1)}.fa-stack{position:relative;display:inline-block;width:2em;height:2em;line-height:2em;vertical-align:middle}.fa-stack-1x,.fa-stack-2x{position:absolute;left:0;width:100%;text-align:center}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:#fff}.fa-glass:before{content:"\f000"}.fa-music:before{content:"\f001"}.fa-search:before{content:"\f002"}.fa-envelope-o:before{content:"\f003"}.fa-heart:before{content:"\f004"}.fa-star:before{content:"\f005"}.fa-star-o:before{content:"\f006"}.fa-user:before{content:"\f007"}.fa-film:before{content:"\f008"}.fa-th-large:before{content:"\f009"}.fa-th:before{content:"\f00a"}.fa-th-list:before{content:"\f00b"}.fa-check:before{content:"\f00c"}.fa-times:before{content:"\f00d"}.fa-search-plus:before{content:"\f00e"}.fa-search-minus:before{content:"\f010"}.fa-power-off:before{content:"\f011"}.fa-signal:before{content:"\f012"}.fa-gear:before,.fa-cog:before{content:"\f013"}.fa-trash-o:before{content:"\f014"}.fa-home:before{content:"\f015"}.fa-file-o:before{content:"\f016"}.fa-clock-o:before{content:"\f017"}.fa-road:before{content:"\f018"}.fa-download:before{content:"\f019"}.fa-arrow-circle-o-down:before{content:"\f01a"}.fa-arrow-circle-o-up:before{content:"\f01b"}.fa-inbox:before{content:"\f01c"}.fa-play-circle-o:before{content:"\f01d"}.fa-rotate-right:before,.fa-repeat:before{content:"\f01e"}.fa-refresh:before{content:"\f021"}.fa-list-alt:before{content:"\f022"}.fa-lock:before{content:"\f023"}.fa-flag:before{content:"\f024"}.fa-headphones:before{content:"\f025"}.fa-volume-off:before{content:"\f026"}.fa-volume-down:before{content:"\f027"}.fa-volume-up:before{content:"\f028"}.fa-qrcode:before{content:"\f029"}.fa-barcode:before{content:"\f02a"}.fa-tag:before{content:"\f02b"}.fa-tags:before{content:"\f02c"}.fa-book:before{content:"\f02d"}.fa-bookmark:before{content:"\f02e"}.fa-print:before{content:"\f02f"}.fa-camera:before{content:"\f030"}.fa-font:before{content:"\f031"}.fa-bold:before{content:"\f032"}.fa-italic:before{content:"\f033"}.fa-text-height:before{content:"\f034"}.fa-text-width:before{content:"\f035"}.fa-align-left:before{content:"\f036"}.fa-align-center:before{content:"\f037"}.fa-align-right:before{content:"\f038"}.fa-align-justify:before{content:"\f039"}.fa-list:before{content:"\f03a"}.fa-dedent:before,.fa-outdent:before{content:"\f03b"}.fa-indent:before{content:"\f03c"}.fa-video-camera:before{content:"\f03d"}.fa-picture-o:before{content:"\f03e"}.fa-pencil:before{content:"\f040"}.fa-map-marker:before{content:"\f041"}.fa-adjust:before{content:"\f042"}.fa-tint:before{content:"\f043"}.fa-edit:before,.fa-pencil-square-o:before{content:"\f044"}.fa-share-square-o:before{content:"\f045"}.fa-check-square-o:before{content:"\f046"}.fa-arrows:before{content:"\f047"}.fa-step-backward:before{content:"\f048"}.fa-fast-backward:before{content:"\f049"}.fa-backward:before{content:"\f04a"}.fa-play:before{content:"\f04b"}.fa-pause:before{content:"\f04c"}.fa-stop:before{content:"\f04d"}.fa-forward:before{content:"\f04e"}.fa-fast-forward:before{content:"\f050"}.fa-step-forward:before{content:"\f051"}.fa-eject:before{content:"\f052"}.fa-chevron-left:before{content:"\f053"}.fa-chevron-right:before{content:"\f054"}.fa-plus-circle:before{content:"\f055"}.fa-minus-circle:before{content:"\f056"}.fa-times-circle:before{content:"\f057"}.fa-check-circle:before{content:"\f058"}.fa-question-circle:before{content:"\f059"}.fa-info-circle:before{content:"\f05a"}.fa-crosshairs:before{content:"\f05b"}.fa-times-circle-o:before{content:"\f05c"}.fa-check-circle-o:before{content:"\f05d"}.fa-ban:before{content:"\f05e"}.fa-arrow-left:before{content:"\f060"}.fa-arrow-right:before{content:"\f061"}.fa-arrow-up:before{content:"\f062"}.fa-arrow-down:before{content:"\f063"}.fa-mail-forward:before,.fa-share:before{content:"\f064"}.fa-expand:before{content:"\f065"}.fa-compress:before{content:"\f066"}.fa-plus:before{content:"\f067"}.fa-minus:before{content:"\f068"}.fa-asterisk:before{content:"\f069"}.fa-exclamation-circle:before{content:"\f06a"}.fa-gift:before{content:"\f06b"}.fa-leaf:before{content:"\f06c"}.fa-fire:before{content:"\f06d"}.fa-eye:before{content:"\f06e"}.fa-eye-slash:before{content:"\f070"}.fa-warning:before,.fa-exclamation-triangle:before{content:"\f071"}.fa-plane:before{content:"\f072"}.fa-calendar:before{content:"\f073"}.fa-random:before{content:"\f074"}.fa-comment:before{content:"\f075"}.fa-magnet:before{content:"\f076"}.fa-chevron-up:before{content:"\f077"}.fa-chevron-down:before{content:"\f078"}.fa-retweet:before{content:"\f079"}.fa-shopping-cart:before{content:"\f07a"}.fa-folder:before{content:"\f07b"}.fa-folder-open:before{content:"\f07c"}.fa-arrows-v:before{content:"\f07d"}.fa-arrows-h:before{content:"\f07e"}.fa-bar-chart-o:before{content:"\f080"}.fa-twitter-square:before{content:"\f081"}.fa-facebook-square:before{content:"\f082"}.fa-camera-retro:before{content:"\f083"}.fa-key:before{content:"\f084"}.fa-gears:before,.fa-cogs:before{content:"\f085"}.fa-comments:before{content:"\f086"}.fa-thumbs-o-up:before{content:"\f087"}.fa-thumbs-o-down:before{content:"\f088"}.fa-star-half:before{content:"\f089"}.fa-heart-o:before{content:"\f08a"}.fa-sign-out:before{content:"\f08b"}.fa-linkedin-square:before{content:"\f08c"}.fa-thumb-tack:before{content:"\f08d"}.fa-external-link:before{content:"\f08e"}.fa-sign-in:before{content:"\f090"}.fa-trophy:before{content:"\f091"}.fa-github-square:before{content:"\f092"}.fa-upload:before{content:"\f093"}.fa-lemon-o:before{content:"\f094"}.fa-phone:before{content:"\f095"}.fa-square-o:before{content:"\f096"}.fa-bookmark-o:before{content:"\f097"}.fa-phone-square:before{content:"\f098"}.fa-twitter:before{content:"\f099"}.fa-facebook:before{content:"\f09a"}.fa-github:before{content:"\f09b"}.fa-unlock:before{content:"\f09c"}.fa-credit-card:before{content:"\f09d"}.fa-rss:before{content:"\f09e"}.fa-hdd-o:before{content:"\f0a0"}.fa-bullhorn:before{content:"\f0a1"}.fa-bell:before{content:"\f0f3"}.fa-certificate:before{content:"\f0a3"}.fa-hand-o-right:before{content:"\f0a4"}.fa-hand-o-left:before{content:"\f0a5"}.fa-hand-o-up:before{content:"\f0a6"}.fa-hand-o-down:before{content:"\f0a7"}.fa-arrow-circle-left:before{content:"\f0a8"}.fa-arrow-circle-right:before{content:"\f0a9"}.fa-arrow-circle-up:before{content:"\f0aa"}.fa-arrow-circle-down:before{content:"\f0ab"}.fa-globe:before{content:"\f0ac"}.fa-wrench:before{content:"\f0ad"}.fa-tasks:before{content:"\f0ae"}.fa-filter:before{content:"\f0b0"}.fa-briefcase:before{content:"\f0b1"}.fa-arrows-alt:before{content:"\f0b2"}.fa-group:before,.fa-users:before{content:"\f0c0"}.fa-chain:before,.fa-link:before{content:"\f0c1"}.fa-cloud:before{content:"\f0c2"}.fa-flask:before{content:"\f0c3"}.fa-cut:before,.fa-scissors:before{content:"\f0c4"}.fa-copy:before,.fa-files-o:before{content:"\f0c5"}.fa-paperclip:before{content:"\f0c6"}.fa-save:before,.fa-floppy-o:before{content:"\f0c7"}.fa-square:before{content:"\f0c8"}.fa-bars:before{content:"\f0c9"}.fa-list-ul:before{content:"\f0ca"}.fa-list-ol:before{content:"\f0cb"}.fa-strikethrough:before{content:"\f0cc"}.fa-underline:before{content:"\f0cd"}.fa-table:before{content:"\f0ce"}.fa-magic:before{content:"\f0d0"}.fa-truck:before{content:"\f0d1"}.fa-pinterest:before{content:"\f0d2"}.fa-pinterest-square:before{content:"\f0d3"}.fa-google-plus-square:before{content:"\f0d4"}.fa-google-plus:before{content:"\f0d5"}.fa-money:before{content:"\f0d6"}.fa-caret-down:before{content:"\f0d7"}.fa-caret-up:before{content:"\f0d8"}.fa-caret-left:before{content:"\f0d9"}.fa-caret-right:before{content:"\f0da"}.fa-columns:before{content:"\f0db"}.fa-unsorted:before,.fa-sort:before{content:"\f0dc"}.fa-sort-down:before,.fa-sort-asc:before{content:"\f0dd"}.fa-sort-up:before,.fa-sort-desc:before{content:"\f0de"}.fa-envelope:before{content:"\f0e0"}.fa-linkedin:before{content:"\f0e1"}.fa-rotate-left:before,.fa-undo:before{content:"\f0e2"}.fa-legal:before,.fa-gavel:before{content:"\f0e3"}.fa-dashboard:before,.fa-tachometer:before{content:"\f0e4"}.fa-comment-o:before{content:"\f0e5"}.fa-comments-o:before{content:"\f0e6"}.fa-flash:before,.fa-bolt:before{content:"\f0e7"}.fa-sitemap:before{content:"\f0e8"}.fa-umbrella:before{content:"\f0e9"}.fa-paste:before,.fa-clipboard:before{content:"\f0ea"}.fa-lightbulb-o:before{content:"\f0eb"}.fa-exchange:before{content:"\f0ec"}.fa-cloud-download:before{content:"\f0ed"}.fa-cloud-upload:before{content:"\f0ee"}.fa-user-md:before{content:"\f0f0"}.fa-stethoscope:before{content:"\f0f1"}.fa-suitcase:before{content:"\f0f2"}.fa-bell-o:before{content:"\f0a2"}.fa-coffee:before{content:"\f0f4"}.fa-cutlery:before{content:"\f0f5"}.fa-file-text-o:before{content:"\f0f6"}.fa-building-o:before{content:"\f0f7"}.fa-hospital-o:before{content:"\f0f8"}.fa-ambulance:before{content:"\f0f9"}.fa-medkit:before{content:"\f0fa"}.fa-fighter-jet:before{content:"\f0fb"}.fa-beer:before{content:"\f0fc"}.fa-h-square:before{content:"\f0fd"}.fa-plus-square:before{content:"\f0fe"}.fa-angle-double-left:before{content:"\f100"}.fa-angle-double-right:before{content:"\f101"}.fa-angle-double-up:before{content:"\f102"}.fa-angle-double-down:before{content:"\f103"}.fa-angle-left:before{content:"\f104"}.fa-angle-right:before{content:"\f105"}.fa-angle-up:before{content:"\f106"}.fa-angle-down:before{content:"\f107"}.fa-desktop:before{content:"\f108"}.fa-laptop:before{content:"\f109"}.fa-tablet:before{content:"\f10a"}.fa-mobile-phone:before,.fa-mobile:before{content:"\f10b"}.fa-circle-o:before{content:"\f10c"}.fa-quote-left:before{content:"\f10d"}.fa-quote-right:before{content:"\f10e"}.fa-spinner:before{content:"\f110"}.fa-circle:before{content:"\f111"}.fa-mail-reply:before,.fa-reply:before{content:"\f112"}.fa-github-alt:before{content:"\f113"}.fa-folder-o:before{content:"\f114"}.fa-folder-open-o:before{content:"\f115"}.fa-smile-o:before{content:"\f118"}.fa-frown-o:before{content:"\f119"}.fa-meh-o:before{content:"\f11a"}.fa-gamepad:before{content:"\f11b"}.fa-keyboard-o:before{content:"\f11c"}.fa-flag-o:before{content:"\f11d"}.fa-flag-checkered:before{content:"\f11e"}.fa-terminal:before{content:"\f120"}.fa-code:before{content:"\f121"}.fa-reply-all:before{content:"\f122"}.fa-mail-reply-all:before{content:"\f122"}.fa-star-half-empty:before,.fa-star-half-full:before,.fa-star-half-o:before{content:"\f123"}.fa-location-arrow:before{content:"\f124"}.fa-crop:before{content:"\f125"}.fa-code-fork:before{content:"\f126"}.fa-unlink:before,.fa-chain-broken:before{content:"\f127"}.fa-question:before{content:"\f128"}.fa-info:before{content:"\f129"}.fa-exclamation:before{content:"\f12a"}.fa-superscript:before{content:"\f12b"}.fa-subscript:before{content:"\f12c"}.fa-eraser:before{content:"\f12d"}.fa-puzzle-piece:before{content:"\f12e"}.fa-microphone:before{content:"\f130"}.fa-microphone-slash:before{content:"\f131"}.fa-shield:before{content:"\f132"}.fa-calendar-o:before{content:"\f133"}.fa-fire-extinguisher:before{content:"\f134"}.fa-rocket:before{content:"\f135"}.fa-maxcdn:before{content:"\f136"}.fa-chevron-circle-left:before{content:"\f137"}.fa-chevron-circle-right:before{content:"\f138"}.fa-chevron-circle-up:before{content:"\f139"}.fa-chevron-circle-down:before{content:"\f13a"}.fa-html5:before{content:"\f13b"}.fa-css3:before{content:"\f13c"}.fa-anchor:before{content:"\f13d"}.fa-unlock-alt:before{content:"\f13e"}.fa-bullseye:before{content:"\f140"}.fa-ellipsis-h:before{content:"\f141"}.fa-ellipsis-v:before{content:"\f142"}.fa-rss-square:before{content:"\f143"}.fa-play-circle:before{content:"\f144"}.fa-ticket:before{content:"\f145"}.fa-minus-square:before{content:"\f146"}.fa-minus-square-o:before{content:"\f147"}.fa-level-up:before{content:"\f148"}.fa-level-down:before{content:"\f149"}.fa-check-square:before{content:"\f14a"}.fa-pencil-square:before{content:"\f14b"}.fa-external-link-square:before{content:"\f14c"}.fa-share-square:before{content:"\f14d"}.fa-compass:before{content:"\f14e"}.fa-toggle-down:before,.fa-caret-square-o-down:before{content:"\f150"}.fa-toggle-up:before,.fa-caret-square-o-up:before{content:"\f151"}.fa-toggle-right:before,.fa-caret-square-o-right:before{content:"\f152"}.fa-euro:before,.fa-eur:before{content:"\f153"}.fa-gbp:before{content:"\f154"}.fa-dollar:before,.fa-usd:before{content:"\f155"}.fa-rupee:before,.fa-inr:before{content:"\f156"}.fa-cny:before,.fa-rmb:before,.fa-yen:before,.fa-jpy:before{content:"\f157"}.fa-ruble:before,.fa-rouble:before,.fa-rub:before{content:"\f158"}.fa-won:before,.fa-krw:before{content:"\f159"}.fa-bitcoin:before,.fa-btc:before{content:"\f15a"}.fa-file:before{content:"\f15b"}.fa-file-text:before{content:"\f15c"}.fa-sort-alpha-asc:before{content:"\f15d"}.fa-sort-alpha-desc:before{content:"\f15e"}.fa-sort-amount-asc:before{content:"\f160"}.fa-sort-amount-desc:before{content:"\f161"}.fa-sort-numeric-asc:before{content:"\f162"}.fa-sort-numeric-desc:before{content:"\f163"}.fa-thumbs-up:before{content:"\f164"}.fa-thumbs-down:before{content:"\f165"}.fa-youtube-square:before{content:"\f166"}.fa-youtube:before{content:"\f167"}.fa-xing:before{content:"\f168"}.fa-xing-square:before{content:"\f169"}.fa-youtube-play:before{content:"\f16a"}.fa-dropbox:before{content:"\f16b"}.fa-stack-overflow:before{content:"\f16c"}.fa-instagram:before{content:"\f16d"}.fa-flickr:before{content:"\f16e"}.fa-adn:before{content:"\f170"}.fa-bitbucket:before{content:"\f171"}.fa-bitbucket-square:before{content:"\f172"}.fa-tumblr:before{content:"\f173"}.fa-tumblr-square:before{content:"\f174"}.fa-long-arrow-down:before{content:"\f175"}.fa-long-arrow-up:before{content:"\f176"}.fa-long-arrow-left:before{content:"\f177"}.fa-long-arrow-right:before{content:"\f178"}.fa-apple:before{content:"\f179"}.fa-windows:before{content:"\f17a"}.fa-android:before{content:"\f17b"}.fa-linux:before{content:"\f17c"}.fa-dribbble:before{content:"\f17d"}.fa-skype:before{content:"\f17e"}.fa-foursquare:before{content:"\f180"}.fa-trello:before{content:"\f181"}.fa-female:before{content:"\f182"}.fa-male:before{content:"\f183"}.fa-gittip:before{content:"\f184"}.fa-sun-o:before{content:"\f185"}.fa-moon-o:before{content:"\f186"}.fa-archive:before{content:"\f187"}.fa-bug:before{content:"\f188"}.fa-vk:before{content:"\f189"}.fa-weibo:before{content:"\f18a"}.fa-renren:before{content:"\f18b"}.fa-pagelines:before{content:"\f18c"}.fa-stack-exchange:before{content:"\f18d"}.fa-arrow-circle-o-right:before{content:"\f18e"}.fa-arrow-circle-o-left:before{content:"\f190"}.fa-toggle-left:before,.fa-caret-square-o-left:before{content:"\f191"}.fa-dot-circle-o:before{content:"\f192"}.fa-wheelchair:before{content:"\f193"}.fa-vimeo-square:before{content:"\f194"}.fa-turkish-lira:before,.fa-try:before{content:"\f195"}.fa-plus-square-o:before{content:"\f196"}
@font-face {
	font-family: 'iconfontcustom';
	src:url('../themes/capitolkids/assets/css/iconfontcustom/fonts/iconfontcustom.eot?jzaet');
	src:url('../themes/capitolkids/assets/css/iconfontcustom/fonts/iconfontcustom.eot?#iefixjzaet') format('embedded-opentype'),
		url('../themes/capitolkids/assets/css/iconfontcustom/fonts/iconfontcustom.woff?jzaet') format('woff'),
		url('../themes/capitolkids/assets/css/iconfontcustom/fonts/iconfontcustom.ttf?jzaet') format('truetype'),
		url('../themes/capitolkids/assets/css/iconfontcustom/fonts/iconfontcustom.svg?jzaet#iconfontcustom') format('svg');
	font-weight: normal;
	font-style: normal;
}

[class^="ifc-"], [class*=" ifc-"] {
	font-family: 'iconfontcustom';
	speak: none;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;

	/* Better Font Rendering =========== */
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.ifc-zoom_out:before {
	content: "\e600";
}
.ifc-zoom_in:before {
	content: "\e601";
}
.ifc-zip:before {
	content: "\e602";
}
.ifc-xls:before {
	content: "\e608";
}
.ifc-xlarge_icons:before {
	content: "\e609";
}
.ifc-workstation:before {
	content: "\e60a";
}
.ifc-workflow:before {
	content: "\e60b";
}
.ifc-word:before {
	content: "\e60f";
}
.ifc-windows_client:before {
	content: "\e616";
}
.ifc-wifi_logo:before {
	content: "\e619";
}
.ifc-wifi_direct:before {
	content: "\e61a";
}
.ifc-wifi:before {
	content: "\e61b";
}
.ifc-whole_hand:before {
	content: "\e61c";
}
.ifc-week_view:before {
	content: "\e625";
}
.ifc-wedding_rings:before {
	content: "\e626";
}
.ifc-wedding_photo:before {
	content: "\e627";
}
.ifc-wedding_day:before {
	content: "\e628";
}
.ifc-web_shield:before {
	content: "\e62b";
}
.ifc-web_camera:before {
	content: "\e62c";
}
.ifc-waypoint_map:before {
	content: "\e62d";
}
.ifc-waxing_gibbous:before {
	content: "\e62e";
}
.ifc-waxing_crescent:before {
	content: "\e62f";
}
.ifc-wav:before {
	content: "\e630";
}
.ifc-water:before {
	content: "\e636";
}
.ifc-watch:before {
	content: "\e637";
}
.ifc-washing_machine:before {
	content: "\e638";
}
.ifc-warning_shield:before {
	content: "\e639";
}
.ifc-waning_gibbous:before {
	content: "\e63b";
}
.ifc-waning_crescent:before {
	content: "\e63c";
}
.ifc-wallet:before {
	content: "\e63e";
}
.ifc-wacom_tablet:before {
	content: "\e644";
}
.ifc-vpn:before {
	content: "\e645";
}
.ifc-volleyball:before {
	content: "\e648";
}
.ifc-voip_gateway:before {
	content: "\e649";
}
.ifc-vkontakte:before {
	content: "\e64c";
}
.ifc-visa:before {
	content: "\e64e";
}
.ifc-virtual_mashine:before {
	content: "\e64f";
}
.ifc-virtual_machine:before {
	content: "\e650";
}
.ifc-video_camera:before {
	content: "\e655";
}
.ifc-vector:before {
	content: "\e659";
}
.ifc-variable:before {
	content: "\e65a";
}
.ifc-user_male4:before {
	content: "\e65e";
}
.ifc-user_male3:before {
	content: "\e65f";
}
.ifc-user_male2:before {
	content: "\e660";
}
.ifc-user_male:before {
	content: "\e661";
}
.ifc-user_female4:before {
	content: "\e662";
}
.ifc-user_female3:before {
	content: "\e663";
}
.ifc-user_female2:before {
	content: "\e664";
}
.ifc-user_female:before {
	content: "\e665";
}
.ifc-USD:before {
	content: "\e666";
}
.ifc-uppercase:before {
	content: "\e667";
}
.ifc-upload2_filled:before {
	content: "\e668";
}
.ifc-upload2:before {
	content: "\e669";
}
.ifc-upload_filled:before {
	content: "\e66a";
}
.ifc-upload:before {
	content: "\e66b";
}
.ifc-update:before {
	content: "\e66c";
}
.ifc-up4:before {
	content: "\e66d";
}
.ifc-up3:before {
	content: "\e66e";
}
.ifc-up2:before {
	content: "\e66f";
}
.ifc-up_right:before {
	content: "\e670";
}
.ifc-up_left:before {
	content: "\e671";
}
.ifc-up:before {
	content: "\e672";
}
.ifc-unlock:before {
	content: "\e673";
}
.ifc-unicast:before {
	content: "\e675";
}
.ifc-undo:before {
	content: "\e676";
}
.ifc-underline:before {
	content: "\e679";
}
.ifc-umbrella_filled:before {
	content: "\e67a";
}
.ifc-umbrella:before {
	content: "\e67b";
}
.ifc-type:before {
	content: "\e67c";
}
.ifc-txt:before {
	content: "\e67d";
}
.ifc-two_smartphones:before {
	content: "\e67e";
}
.ifc-twitter:before {
	content: "\e681";
}
.ifc-tv_show:before {
	content: "\e682";
}
.ifc-tv:before {
	content: "\e683";
}
.ifc-tumbler:before {
	content: "\e685";
}
.ifc-ttf:before {
	content: "\e687";
}
.ifc-trophy:before {
	content: "\e68a";
}
.ifc-treasury_map:before {
	content: "\e695";
}
.ifc-trash2:before {
	content: "\e696";
}
.ifc-trash:before {
	content: "\e697";
}
.ifc-transistor:before {
	content: "\e698";
}
.ifc-torah:before {
	content: "\e6a3";
}
.ifc-toolbox:before {
	content: "\e6a6";
}
.ifc-tones:before {
	content: "\e6a9";
}
.ifc-today:before {
	content: "\e6ad";
}
.ifc-timezone-12:before {
	content: "\e6af";
}
.ifc-timezone-11:before {
	content: "\e6b0";
}
.ifc-timezone-10:before {
	content: "\e6b1";
}
.ifc-timezone-9:before {
	content: "\e6b2";
}
.ifc-timezone-8:before {
	content: "\e6b3";
}
.ifc-timezone-7:before {
	content: "\e6b4";
}
.ifc-timezone-6:before {
	content: "\e6b5";
}
.ifc-timezone-5:before {
	content: "\e6b6";
}
.ifc-timezone-4:before {
	content: "\e6b7";
}
.ifc-timezone-3:before {
	content: "\e6b8";
}
.ifc-timezone-2:before {
	content: "\e6b9";
}
.ifc-timezone-1:before {
	content: "\e6ba";
}
.ifc-timezone_utc:before {
	content: "\e6bb";
}
.ifc-timezone_12:before {
	content: "\e6bc";
}
.ifc-timezone_11:before {
	content: "\e6bd";
}
.ifc-timezone_10:before {
	content: "\e6be";
}
.ifc-timezone_9:before {
	content: "\e6bf";
}
.ifc-timezone_8:before {
	content: "\e6c0";
}
.ifc-timezone_7:before {
	content: "\e6c1";
}
.ifc-timezone_6:before {
	content: "\e6c2";
}
.ifc-timezone_5:before {
	content: "\e6c3";
}
.ifc-timezone_4:before {
	content: "\e6c4";
}
.ifc-timezone_3:before {
	content: "\e6c5";
}
.ifc-timezone_2:before {
	content: "\e6c6";
}
.ifc-timezone_1:before {
	content: "\e6c7";
}
.ifc-timezone:before {
	content: "\e6c8";
}
.ifc-timer:before {
	content: "\e6c9";
}
.ifc-tif:before {
	content: "\e6cb";
}
.ifc-thumb_up:before {
	content: "\e6cd";
}
.ifc-thumb_down:before {
	content: "\e6ce";
}
.ifc-this_way_up:before {
	content: "\e6d2";
}
.ifc-text_color:before {
	content: "\e6d5";
}
.ifc-temperature:before {
	content: "\e6db";
}
.ifc-tea:before {
	content: "\e6de";
}
.ifc-tar:before {
	content: "\e6e1";
}
.ifc-talk:before {
	content: "\e6e6";
}
.ifc-tails:before {
	content: "\e6e7";
}
.ifc-table:before {
	content: "\e6ea";
}
.ifc-switch_camera_filled:before {
	content: "\e6f2";
}
.ifc-switch_camera:before {
	content: "\e6f3";
}
.ifc-switch:before {
	content: "\e6f4";
}
.ifc-swipe_up:before {
	content: "\e6f6";
}
.ifc-swipe_right:before {
	content: "\e6f7";
}
.ifc-swipe_left:before {
	content: "\e6f8";
}
.ifc-swipe_down:before {
	content: "\e6f9";
}
.ifc-swimming:before {
	content: "\e6fa";
}
.ifc-surface:before {
	content: "\e6ff";
}
.ifc-sun:before {
	content: "\e700";
}
.ifc-summer:before {
	content: "\e701";
}
.ifc-student:before {
	content: "\e705";
}
.ifc-strikethrough:before {
	content: "\e708";
}
.ifc-storm:before {
	content: "\e70b";
}
.ifc-stopwatch:before {
	content: "\e70c";
}
.ifc-stepper_motor:before {
	content: "\e70f";
}
.ifc-stack_of_photos:before {
	content: "\e717";
}
.ifc-stack:before {
	content: "\e718";
}
.ifc-ssd:before {
	content: "\e719";
}
.ifc-speedometer:before {
	content: "\e722";
}
.ifc-speech_bubble:before {
	content: "\e724";
}
.ifc-south_direction:before {
	content: "\e729";
}
.ifc-smartphone_tablet:before {
	content: "\e733";
}
.ifc-small_lens:before {
	content: "\e735";
}
.ifc-small_icons:before {
	content: "\e736";
}
.ifc-slr_small_lens:before {
	content: "\e739";
}
.ifc-slr_large_lens:before {
	content: "\e73b";
}
.ifc-slr_camera2_filled:before {
	content: "\e73c";
}
.ifc-slr_camera2:before {
	content: "\e73d";
}
.ifc-slr_camera_body:before {
	content: "\e740";
}
.ifc-slr_camera:before {
	content: "\e741";
}
.ifc-slr_back_side:before {
	content: "\e743";
}
.ifc-sling_here:before {
	content: "\e744";
}
.ifc-sleet:before {
	content: "\e745";
}
.ifc-slave:before {
	content: "\e749";
}
.ifc-skype:before {
	content: "\e74a";
}
.ifc-skip_to_start:before {
	content: "\e74c";
}
.ifc-shuffle:before {
	content: "\e752";
}
.ifc-shopping_cart_loaded:before {
	content: "\e759";
}
.ifc-shopping_cart_empty:before {
	content: "\e75a";
}
.ifc-shopping_basket:before {
	content: "\e75b";
}
.ifc-shop:before {
	content: "\e75c";
}
.ifc-shield:before {
	content: "\e761";
}
.ifc-shared:before {
	content: "\e766";
}
.ifc-settings3:before {
	content: "\e767";
}
.ifc-settings2:before {
	content: "\e769";
}
.ifc-settings:before {
	content: "\e76b";
}
.ifc-server:before {
	content: "\e76c";
}
.ifc-sent:before {
	content: "\e76d";
}
.ifc-sensor:before {
	content: "\e76e";
}
.ifc-sell:before {
	content: "\e76f";
}
.ifc-SEK:before {
	content: "\e771";
}
.ifc-security_ssl:before {
	content: "\e772";
}
.ifc-security_checked:before {
	content: "\e773";
}
.ifc-security_aes:before {
	content: "\e774";
}
.ifc-search:before {
	content: "\e775";
}
.ifc-sea_waves:before {
	content: "\e777";
}
.ifc-scrolling:before {
	content: "\e77a";
}
.ifc-screwdriver:before {
	content: "\e77b";
}
.ifc-scales_of_Balance:before {
	content: "\e783";
}
.ifc-sale:before {
	content: "\e78c";
}
.ifc-sagittarius:before {
	content: "\e78f";
}
.ifc-safari:before {
	content: "\e791";
}
.ifc-sad:before {
	content: "\e792";
}
.ifc-running_rabbit:before {
	content: "\e793";
}
.ifc-running:before {
	content: "\e794";
}
.ifc-run_command:before {
	content: "\e795";
}
.ifc-rugby:before {
	content: "\e796";
}
.ifc-rucksach:before {
	content: "\e797";
}
.ifc-rss:before {
	content: "\e798";
}
.ifc-router:before {
	content: "\e79a";
}
.ifc-rotation_cw:before {
	content: "\e79b";
}
.ifc-rotation_ccw:before {
	content: "\e79c";
}
.ifc-rotate_to_portrait:before {
	content: "\e79d";
}
.ifc-rotate_to_landscape:before {
	content: "\e79e";
}
.ifc-rotate_camera:before {
	content: "\e7a0";
}
.ifc-rook:before {
	content: "\e7a2";
}
.ifc-right3:before {
	content: "\e7ab";
}
.ifc-right2:before {
	content: "\e7ac";
}
.ifc-right_click:before {
	content: "\e7af";
}
.ifc-right:before {
	content: "\e7b0";
}
.ifc-rfid_tag:before {
	content: "\e7b2";
}
.ifc-rfid_signal:before {
	content: "\e7b3";
}
.ifc-rfid_sensor:before {
	content: "\e7b4";
}
.ifc-rewind:before {
	content: "\e7b5";
}
.ifc-resize:before {
	content: "\e7ba";
}
.ifc-replay:before {
	content: "\e7bc";
}
.ifc-repeat:before {
	content: "\e7bd";
}
.ifc-rename:before {
	content: "\e7be";
}
.ifc-remove_user:before {
	content: "\e7bf";
}
.ifc-remove_image:before {
	content: "\e7c1";
}
.ifc-remote_working:before {
	content: "\e7c2";
}
.ifc-reload:before {
	content: "\e7c3";
}
.ifc-relay:before {
	content: "\e7c4";
}
.ifc-register_editor:before {
	content: "\e7c6";
}
.ifc-redo:before {
	content: "\e7c8";
}
.ifc-red_hat:before {
	content: "\e7c9";
}
.ifc-recycle_sign_filled:before {
	content: "\e7cb";
}
.ifc-recycle_sign:before {
	content: "\e7cc";
}
.ifc-read_message:before {
	content: "\e7ce";
}
.ifc-rar:before {
	content: "\e7d0";
}
.ifc-radio_tower:before {
	content: "\e7d3";
}
.ifc-radar_plot:before {
	content: "\e7d6";
}
.ifc-rack:before {
	content: "\e7d7";
}
.ifc-quote:before {
	content: "\e7d9";
}
.ifc-puzzle:before {
	content: "\e7e1";
}
.ifc-put_out:before {
	content: "\e7e2";
}
.ifc-put_in_motion:before {
	content: "\e7e3";
}
.ifc-put_in:before {
	content: "\e7e4";
}
.ifc-publisher:before {
	content: "\e7e7";
}
.ifc-psd:before {
	content: "\e7ea";
}
.ifc-processor:before {
	content: "\e7ec";
}
.ifc-private2:before {
	content: "\e7ed";
}
.ifc-print:before {
	content: "\e7ef";
}
.ifc-price_tag_usd:before {
	content: "\e7f0";
}
.ifc-price_tag_pound:before {
	content: "\e7f1";
}
.ifc-price_tag_euro:before {
	content: "\e7f2";
}
.ifc-price_tag:before {
	content: "\e7f3";
}
.ifc-pressure:before {
	content: "\e7f5";
}
.ifc-presentation:before {
	content: "\e7f7";
}
.ifc-power_point:before {
	content: "\e7fa";
}
.ifc-positive_dynamic:before {
	content: "\e7fd";
}
.ifc-portrait_mode:before {
	content: "\e7fe";
}
.ifc-popular_topic:before {
	content: "\e7ff";
}
.ifc-polyline:before {
	content: "\e800";
}
.ifc-polygone:before {
	content: "\e801";
}
.ifc-polygon:before {
	content: "\e802";
}
.ifc-poll_topic:before {
	content: "\e803";
}
.ifc-png:before {
	content: "\e806";
}
.ifc-plus:before {
	content: "\e807";
}
.ifc-plugin:before {
	content: "\e809";
}
.ifc-pliers:before {
	content: "\e80a";
}
.ifc-play:before {
	content: "\e80b";
}
.ifc-plasmid:before {
	content: "\e80c";
}
.ifc-piston:before {
	content: "\e811";
}
.ifc-pinterest:before {
	content: "\e813";
}
.ifc-pinch:before {
	content: "\e815";
}
.ifc-pin:before {
	content: "\e818";
}
.ifc-pill:before {
	content: "\e819";
}
.ifc-pie_chart:before {
	content: "\e81b";
}
.ifc-picture:before {
	content: "\e81d";
}
.ifc-pickup:before {
	content: "\e81e";
}
.ifc-photo:before {
	content: "\e821";
}
.ifc-phone2:before {
	content: "\e823";
}
.ifc-phone1:before {
	content: "\e824";
}
.ifc-perforator:before {
	content: "\e825";
}
.ifc-pencil_sharpener:before {
	content: "\e826";
}
.ifc-pen:before {
	content: "\e827";
}
.ifc-pdf:before {
	content: "\e82a";
}
.ifc-pawn:before {
	content: "\e82b";
}
.ifc-pause:before {
	content: "\e82c";
}
.ifc-password:before {
	content: "\e82e";
}
.ifc-passenger:before {
	content: "\e82f";
}
.ifc-paper_clip:before {
	content: "\e834";
}
.ifc-paper_clamp:before {
	content: "\e835";
}
.ifc-panorama:before {
	content: "\e837";
}
.ifc-paint_bucket:before {
	content: "\e839";
}
.ifc-paint_basket:before {
	content: "\e83a";
}
.ifc-pain_brush:before {
	content: "\e83b";
}
.ifc-overhead_crane:before {
	content: "\e83e";
}
.ifc-outlook:before {
	content: "\e83f";
}
.ifc-outline:before {
	content: "\e840";
}
.ifc-outgoing_data:before {
	content: "\e841";
}
.ifc-otf:before {
	content: "\e842";
}
.ifc-osm:before {
	content: "\e843";
}
.ifc-origami:before {
	content: "\e844";
}
.ifc-opera:before {
	content: "\e845";
}
.ifc-opened_folder:before {
	content: "\e847";
}
.ifc-open_in_browser:before {
	content: "\e848";
}
.ifc-online:before {
	content: "\e849";
}
.ifc-one_note:before {
	content: "\e84a";
}
.ifc-one_finger:before {
	content: "\e84b";
}
.ifc-old_time_camera:before {
	content: "\e84d";
}
.ifc-ogg:before {
	content: "\e84e";
}
.ifc-office_lamp:before {
	content: "\e84f";
}
.ifc-numerical_sorting_21:before {
	content: "\e853";
}
.ifc-north_direction:before {
	content: "\e856";
}
.ifc-night_vision:before {
	content: "\e85b";
}
.ifc-new_moon:before {
	content: "\e85f";
}
.ifc-neutral_decision:before {
	content: "\e860";
}
.ifc-negative_dynamic:before {
	content: "\e862";
}
.ifc-near_me:before {
	content: "\e865";
}
.ifc-nas:before {
	content: "\e866";
}
.ifc-mute:before {
	content: "\e86a";
}
.ifc-musical:before {
	content: "\e86c";
}
.ifc-music_video:before {
	content: "\e86d";
}
.ifc-music_record:before {
	content: "\e86e";
}
.ifc-music:before {
	content: "\e870";
}
.ifc-multiple_smartphones:before {
	content: "\e873";
}
.ifc-multiple_inputs:before {
	content: "\e874";
}
.ifc-multiple_devices:before {
	content: "\e875";
}
.ifc-multiple_cameras:before {
	content: "\e876";
}
.ifc-multicast:before {
	content: "\e877";
}
.ifc-mpg:before {
	content: "\e878";
}
.ifc-mp3:before {
	content: "\e879";
}
.ifc-movie:before {
	content: "\e87a";
}
.ifc-moved_topic:before {
	content: "\e87b";
}
.ifc-move_by_trolley:before {
	content: "\e87c";
}
.ifc-mov:before {
	content: "\e87d";
}
.ifc-mouse_trap:before {
	content: "\e87f";
}
.ifc-mouse:before {
	content: "\e880";
}
.ifc-month_view:before {
	content: "\e888";
}
.ifc-money_box:before {
	content: "\e889";
}
.ifc-money_bag:before {
	content: "\e88a";
}
.ifc-money:before {
	content: "\e88b";
}
.ifc-mobile_home:before {
	content: "\e88d";
}
.ifc-minus:before {
	content: "\e891";
}
.ifc-mind_map:before {
	content: "\e892";
}
.ifc-micro2:before {
	content: "\e899";
}
.ifc-micro:before {
	content: "\e89a";
}
.ifc-message:before {
	content: "\e89c";
}
.ifc-mess_tin:before {
	content: "\e89d";
}
.ifc-menu:before {
	content: "\e89e";
}
.ifc-memory_module:before {
	content: "\e8a0";
}
.ifc-megaphone2:before {
	content: "\e8a2";
}
.ifc-megaphone:before {
	content: "\e8a4";
}
.ifc-medium_volume:before {
	content: "\e8a6";
}
.ifc-medium_icons:before {
	content: "\e8a7";
}
.ifc-medium_battery:before {
	content: "\e8a8";
}
.ifc-math:before {
	content: "\e8ab";
}
.ifc-matches:before {
	content: "\e8ac";
}
.ifc-mastercard:before {
	content: "\e8ad";
}
.ifc-map_marker:before {
	content: "\e8b3";
}
.ifc-map_editing:before {
	content: "\e8b4";
}
.ifc-map:before {
	content: "\e8b5";
}
.ifc-male:before {
	content: "\e8b7";
}
.ifc-magnet:before {
	content: "\e8b9";
}
.ifc-mac_client:before {
	content: "\e8bb";
}
.ifc-luggage_trolley:before {
	content: "\e8bd";
}
.ifc-lowercase:before {
	content: "\e8be";
}
.ifc-low_volume:before {
	content: "\e8bf";
}
.ifc-low_battery:before {
	content: "\e8c0";
}
.ifc-lol:before {
	content: "\e8c2";
}
.ifc-log_cabine:before {
	content: "\e8c3";
}
.ifc-lock_portrait:before {
	content: "\e8c4";
}
.ifc-lock_landscape:before {
	content: "\e8c5";
}
.ifc-lock:before {
	content: "\e8c7";
}
.ifc-livingroom:before {
	content: "\e8c8";
}
.ifc-little_snow:before {
	content: "\e8c9";
}
.ifc-little_rain:before {
	content: "\e8ca";
}
.ifc-literature:before {
	content: "\e8cb";
}
.ifc-list:before {
	content: "\e8cd";
}
.ifc-linux_client:before {
	content: "\e8ce";
}
.ifc-linkedin:before {
	content: "\e8cf";
}
.ifc-link:before {
	content: "\e8d1";
}
.ifc-line_width:before {
	content: "\e8d2";
}
.ifc-line_chart:before {
	content: "\e8d3";
}
.ifc-line:before {
	content: "\e8d4";
}
.ifc-like:before {
	content: "\e8d5";
}
.ifc-lift_cart_here:before {
	content: "\e8d7";
}
.ifc-libra:before {
	content: "\e8d8";
}
.ifc-left3:before {
	content: "\e8dc";
}
.ifc-left2:before {
	content: "\e8dd";
}
.ifc-left_click:before {
	content: "\e8e0";
}
.ifc-left:before {
	content: "\e8e1";
}
.ifc-lcd:before {
	content: "\e8e4";
}
.ifc-layers:before {
	content: "\e8e5";
}
.ifc-last_quarter:before {
	content: "\e8e7";
}
.ifc-laser_beam:before {
	content: "\e8e8";
}
.ifc-large_lens:before {
	content: "\e8ea";
}
.ifc-large_icons:before {
	content: "\e8eb";
}
.ifc-laptop:before {
	content: "\e8ec";
}
.ifc-lantern:before {
	content: "\e8ed";
}
.ifc-lamp:before {
	content: "\e8f0";
}
.ifc-knight:before {
	content: "\e8f3";
}
.ifc-knife:before {
	content: "\e8f4";
}
.ifc-kmz:before {
	content: "\e8f5";
}
.ifc-kml:before {
	content: "\e8f6";
}
.ifc-king:before {
	content: "\e8f9";
}
.ifc-keyboard:before {
	content: "\e8fa";
}
.ifc-key:before {
	content: "\e8fc";
}
.ifc-keep_dry:before {
	content: "\e8fe";
}
.ifc-jpg:before {
	content: "\e902";
}
.ifc-joystick:before {
	content: "\e904";
}
.ifc-jingle_bell:before {
	content: "\e906";
}
.ifc-jcb:before {
	content: "\e907";
}
.ifc-java_coffee_cup_logo:before {
	content: "\e909";
}
.ifc-iphone:before {
	content: "\e90f";
}
.ifc-ipad:before {
	content: "\e910";
}
.ifc-ip_address:before {
	content: "\e911";
}
.ifc-invisible:before {
	content: "\e912";
}
.ifc-internet_explorer:before {
	content: "\e913";
}
.ifc-internal:before {
	content: "\e914";
}
.ifc-integrated_webcam:before {
	content: "\e916";
}
.ifc-integrated_circuit:before {
	content: "\e917";
}
.ifc-instagram:before {
	content: "\e918";
}
.ifc-infrared_beam_sensor:before {
	content: "\e919";
}
.ifc-infrared_beam_sending:before {
	content: "\e91a";
}
.ifc-infrared:before {
	content: "\e91b";
}
.ifc-informatics:before {
	content: "\e91c";
}
.ifc-info:before {
	content: "\e91e";
}
.ifc-increase_font:before {
	content: "\e91f";
}
.ifc-incoming_data:before {
	content: "\e920";
}
.ifc-incendiary_grenade:before {
	content: "\e921";
}
.ifc-inbox:before {
	content: "\e922";
}
.ifc-in_love:before {
	content: "\e923";
}
.ifc-import:before {
	content: "\e924";
}
.ifc-idea:before {
	content: "\e926";
}
.ifc-icq:before {
	content: "\e927";
}
.ifc-hydroelectric:before {
	content: "\e928";
}
.ifc-humidity:before {
	content: "\e929";
}
.ifc-humburger:before {
	content: "\e92a";
}
.ifc-human_footprints:before {
	content: "\e92b";
}
.ifc-hub:before {
	content: "\e92c";
}
.ifc-html:before {
	content: "\e92d";
}
.ifc-hot_dog:before {
	content: "\e92e";
}
.ifc-hot_chocolate:before {
	content: "\e92f";
}
.ifc-horseshoe:before {
	content: "\e930";
}
.ifc-home:before {
	content: "\e936";
}
.ifc-history:before {
	content: "\e938";
}
.ifc-high_volume:before {
	content: "\e939";
}
.ifc-high_battery:before {
	content: "\e93a";
}
.ifc-hex_burner:before {
	content: "\e93b";
}
.ifc-herald_trumpet:before {
	content: "\e93c";
}
.ifc-help2:before {
	content: "\e93e";
}
.ifc-help:before {
	content: "\e940";
}
.ifc-helicopter:before {
	content: "\e942";
}
.ifc-heat_map:before {
	content: "\e944";
}
.ifc-heart_monitor:before {
	content: "\e946";
}
.ifc-headset:before {
	content: "\e949";
}
.ifc-headphones:before {
	content: "\e94a";
}
.ifc-handle_with_care:before {
	content: "\e952";
}
.ifc-hand_planting:before {
	content: "\e953";
}
.ifc-hand_palm_scan:before {
	content: "\e954";
}
.ifc-hand:before {
	content: "\e956";
}
.ifc-hammer:before {
	content: "\e957";
}
.ifc-group:before {
	content: "\e95f";
}
.ifc-grass:before {
	content: "\e963";
}
.ifc-gpx:before {
	content: "\e965";
}
.ifc-gps_receiving:before {
	content: "\e966";
}
.ifc-gps_disconnected:before {
	content: "\e967";
}
.ifc-google_plus:before {
	content: "\e969";
}
.ifc-good_decision:before {
	content: "\e96a";
}
.ifc-gis:before {
	content: "\e96e";
}
.ifc-gift:before {
	content: "\e970";
}
.ifc-gif:before {
	content: "\e971";
}
.ifc-geocaching:before {
	content: "\e977";
}
.ifc-geo_fence:before {
	content: "\e978";
}
.ifc-generic_text:before {
	content: "\e979";
}
.ifc-generic_sorting2:before {
	content: "\e97a";
}
.ifc-generic_sorting:before {
	content: "\e97b";
}
.ifc-genealogy:before {
	content: "\e97c";
}
.ifc-genderqueer:before {
	content: "\e97d";
}
.ifc-GBP:before {
	content: "\e981";
}
.ifc-gas2:before {
	content: "\e983";
}
.ifc-gantt_chart:before {
	content: "\e989";
}
.ifc-gallery:before {
	content: "\e98b";
}
.ifc-gaiters:before {
	content: "\e98c";
}
.ifc-fully_charged_battery:before {
	content: "\e98d";
}
.ifc-full_moon:before {
	content: "\e98e";
}
.ifc-fridge:before {
	content: "\e990";
}
.ifc-french_fries:before {
	content: "\e992";
}
.ifc-four_fingers:before {
	content: "\e995";
}
.ifc-forward2:before {
	content: "\e996";
}
.ifc-forward:before {
	content: "\e997";
}
.ifc-fork_truck:before {
	content: "\e999";
}
.ifc-fork:before {
	content: "\e99a";
}
.ifc-football2:before {
	content: "\e99c";
}
.ifc-football:before {
	content: "\e99d";
}
.ifc-food:before {
	content: "\e99e";
}
.ifc-folder:before {
	content: "\e9a0";
}
.ifc-fog_night:before {
	content: "\e9a1";
}
.ifc-fog_day:before {
	content: "\e9a2";
}
.ifc-flv:before {
	content: "\e9a3";
}
.ifc-flow_chart:before {
	content: "\e9a5";
}
.ifc-flip_vertical:before {
	content: "\e9a7";
}
.ifc-flip_horizontal:before {
	content: "\e9a8";
}
.ifc-flip_flops:before {
	content: "\e9a9";
}
.ifc-flash_light:before {
	content: "\e9ab";
}
.ifc-flag2:before {
	content: "\e9ad";
}
.ifc-flag:before {
	content: "\e9af";
}
.ifc-first_quarter:before {
	content: "\e9b1";
}
.ifc-firefox:before {
	content: "\e9b5";
}
.ifc-find_user:before {
	content: "\e9ba";
}
.ifc-filter:before {
	content: "\e9bb";
}
.ifc-film_reel:before {
	content: "\e9bd";
}
.ifc-filled_box:before {
	content: "\e9be";
}
.ifc-fb2:before {
	content: "\e9c1";
}
.ifc-fast_forward:before {
	content: "\e9c2";
}
.ifc-fantasy:before {
	content: "\e9c4";
}
.ifc-facebook:before {
	content: "\e9c8";
}
.ifc-external_link:before {
	content: "\e9ca";
}
.ifc-external:before {
	content: "\e9cb";
}
.ifc-export:before {
	content: "\e9cc";
}
.ifc-expensive:before {
	content: "\e9ce";
}
.ifc-expand:before {
	content: "\e9cf";
}
.ifc-exit:before {
	content: "\e9d0";
}
.ifc-exe:before {
	content: "\e9d1";
}
.ifc-excel:before {
	content: "\e9d2";
}
.ifc-EUR:before {
	content: "\e9d3";
}
.ifc-error:before {
	content: "\e9d4";
}
.ifc-eraser:before {
	content: "\e9d6";
}
.ifc-epub:before {
	content: "\e9d7";
}
.ifc-eps:before {
	content: "\e9d8";
}
.ifc-enter:before {
	content: "\e9d9";
}
.ifc-engineering:before {
	content: "\e9da";
}
.ifc-end:before {
	content: "\e9de";
}
.ifc-email:before {
	content: "\e9e0";
}
.ifc-ellipse:before {
	content: "\e9e1";
}
.ifc-electronics:before {
	content: "\e9e2";
}
.ifc-eggs:before {
	content: "\e9e6";
}
.ifc-edit_user:before {
	content: "\e9e7";
}
.ifc-edit_image:before {
	content: "\e9e9";
}
.ifc-edit:before {
	content: "\e9ea";
}
.ifc-east_direction:before {
	content: "\e9eb";
}
.ifc-earth_element:before {
	content: "\e9ec";
}
.ifc-dribbble:before {
	content: "\e9f1";
}
.ifc-drafting_compass:before {
	content: "\e9f3";
}
.ifc-downpour:before {
	content: "\e9f4";
}
.ifc-download2_filled:before {
	content: "\e9f5";
}
.ifc-download2:before {
	content: "\e9f6";
}
.ifc-download_filled:before {
	content: "\e9f7";
}
.ifc-download:before {
	content: "\e9f8";
}
.ifc-down4:before {
	content: "\e9f9";
}
.ifc-down2:before {
	content: "\e9fa";
}
.ifc-down_right:before {
	content: "\e9fb";
}
.ifc-down_left:before {
	content: "\e9fc";
}
.ifc-down:before {
	content: "\e9fd";
}
.ifc-double_tap:before {
	content: "\e9fe";
}
.ifc-donut_chart:before {
	content: "\e9ff";
}
.ifc-domain:before {
	content: "\ea00";
}
.ifc-documentary:before {
	content: "\ea04";
}
.ifc-document:before {
	content: "\ea06";
}
.ifc-doctor_suitecase:before {
	content: "\ea07";
}
.ifc-doctor:before {
	content: "\ea08";
}
.ifc-doc:before {
	content: "\ea09";
}
.ifc-do_not_tilt:before {
	content: "\ea0a";
}
.ifc-do_not_stack:before {
	content: "\ea0b";
}
.ifc-do_not_expose_to_sunlight:before {
	content: "\ea0c";
}
.ifc-do_not_drop:before {
	content: "\ea0d";
}
.ifc-dna_helix:before {
	content: "\ea0e";
}
.ifc-directions:before {
	content: "\ea14";
}
.ifc-diamonds:before {
	content: "\ea18";
}
.ifc-dharmacakra:before {
	content: "\ea19";
}
.ifc-design:before {
	content: "\ea1e";
}
.ifc-delete_sign:before {
	content: "\ea21";
}
.ifc-delete_shield:before {
	content: "\ea22";
}
.ifc-delete_message:before {
	content: "\ea23";
}
.ifc-define_location:before {
	content: "\ea25";
}
.ifc-decrease_font:before {
	content: "\ea26";
}
.ifc-day_view:before {
	content: "\ea2a";
}
.ifc-date_to:before {
	content: "\ea2b";
}
.ifc-date_from:before {
	content: "\ea2c";
}
.ifc-database_protection:before {
	content: "\ea2e";
}
.ifc-database_encryption:before {
	content: "\ea2f";
}
.ifc-database_backup:before {
	content: "\ea30";
}
.ifc-database:before {
	content: "\ea31";
}
.ifc-data_in_both_directions:before {
	content: "\ea32";
}
.ifc-cymbals:before {
	content: "\ea33";
}
.ifc-cut:before {
	content: "\ea35";
}
.ifc-currency:before {
	content: "\ea36";
}
.ifc-csv:before {
	content: "\ea37";
}
.ifc-css:before {
	content: "\ea38";
}
.ifc-crystal_ball:before {
	content: "\ea3a";
}
.ifc-crop:before {
	content: "\ea40";
}
.ifc-creek:before {
	content: "\ea43";
}
.ifc-coral:before {
	content: "\ea4b";
}
.ifc-copy_link:before {
	content: "\ea4c";
}
.ifc-copy:before {
	content: "\ea4d";
}
.ifc-control_panel:before {
	content: "\ea53";
}
.ifc-content:before {
	content: "\ea54";
}
.ifc-contacts:before {
	content: "\ea55";
}
.ifc-contact_card:before {
	content: "\ea56";
}
.ifc-construction_worker:before {
	content: "\ea57";
}
.ifc-console:before {
	content: "\ea58";
}
.ifc-connected_no_data:before {
	content: "\ea59";
}
.ifc-compost_heap:before {
	content: "\ea5d";
}
.ifc-compass2:before {
	content: "\ea5e";
}
.ifc-compas:before {
	content: "\ea5f";
}
.ifc-command_line:before {
	content: "\ea61";
}
.ifc-combo_chart:before {
	content: "\ea64";
}
.ifc-comb:before {
	content: "\ea65";
}
.ifc-color_dropper:before {
	content: "\ea66";
}
.ifc-collect:before {
	content: "\ea67";
}
.ifc-collapse:before {
	content: "\ea68";
}
.ifc-coffee:before {
	content: "\ea6c";
}
.ifc-code:before {
	content: "\ea6d";
}
.ifc-coctail:before {
	content: "\ea6e";
}
.ifc-clouds:before {
	content: "\ea73";
}
.ifc-cloud_storage:before {
	content: "\ea74";
}
.ifc-close_up_mode:before {
	content: "\ea76";
}
.ifc-close:before {
	content: "\ea77";
}
.ifc-clock:before {
	content: "\ea78";
}
.ifc-clipperboard:before {
	content: "\ea7a";
}
.ifc-clear_shopping_cart:before {
	content: "\ea7f";
}
.ifc-circuit:before {
	content: "\ea82";
}
.ifc-chrome:before {
	content: "\ea83";
}
.ifc-christmas_star:before {
	content: "\ea85";
}
.ifc-christmas_gift:before {
	content: "\ea8e";
}
.ifc-chisel_tip_marker:before {
	content: "\ea95";
}
.ifc-child_new_post:before {
	content: "\ea98";
}
.ifc-checkmark:before {
	content: "\ea9f";
}
.ifc-checked_user:before {
	content: "\eaa0";
}
.ifc-cheap:before {
	content: "\eaa1";
}
.ifc-charge_battery:before {
	content: "\eaa2";
}
.ifc-change_user:before {
	content: "\eaa3";
}
.ifc-centre_of_gravity:before {
	content: "\eaa7";
}
.ifc-center_direction:before {
	content: "\eaa8";
}
.ifc-cash_receiving:before {
	content: "\eaab";
}
.ifc-carabiner:before {
	content: "\eab2";
}
.ifc-car_battery:before {
	content: "\eab3";
}
.ifc-capacitor:before {
	content: "\eab5";
}
.ifc-cannon:before {
	content: "\eab6";
}
.ifc-cancel:before {
	content: "\eab9";
}
.ifc-camping_tent:before {
	content: "\eaba";
}
.ifc-camera_identification:before {
	content: "\eabe";
}
.ifc-camera_addon_identification:before {
	content: "\eabf";
}
.ifc-camera_addon:before {
	content: "\eac0";
}
.ifc-camcoder_pro:before {
	content: "\eac2";
}
.ifc-camcoder:before {
	content: "\eac4";
}
.ifc-calendar:before {
	content: "\eac5";
}
.ifc-CAD:before {
	content: "\eac6";
}
.ifc-cable_release:before {
	content: "\eac7";
}
.ifc-business:before {
	content: "\eac9";
}
.ifc-bus:before {
	content: "\eaca";
}
.ifc-bungalow:before {
	content: "\eacb";
}
.ifc-bunch_ingredients:before {
	content: "\eacc";
}
.ifc-broadcasting:before {
	content: "\ead3";
}
.ifc-briefcase:before {
	content: "\ead5";
}
.ifc-brandenburg_gate:before {
	content: "\ead8";
}
.ifc-brain_filled:before {
	content: "\ead9";
}
.ifc-brain:before {
	content: "\eada";
}
.ifc-box2:before {
	content: "\eadc";
}
.ifc-box:before {
	content: "\eadd";
}
.ifc-border_color:before {
	content: "\eadf";
}
.ifc-bookmark:before {
	content: "\eae2";
}
.ifc-blur:before {
	content: "\eae6";
}
.ifc-bluetooth2:before {
	content: "\eae8";
}
.ifc-bluetooth:before {
	content: "\eae9";
}
.ifc-birthday_cake:before {
	content: "\eaea";
}
.ifc-birthday:before {
	content: "\eaeb";
}
.ifc-biotech:before {
	content: "\eaec";
}
.ifc-barbers_scissors:before {
	content: "\eb01";
}
.ifc-bar_chart:before {
	content: "\eb05";
}
.ifc-banknotes:before {
	content: "\eb06";
}
.ifc-bandage:before {
	content: "\eb07";
}
.ifc-ball_point_pen:before {
	content: "\eb08";
}
.ifc-bad_decision:before {
	content: "\eb09";
}
.ifc-background_color:before {
	content: "\eb0a";
}
.ifc-back:before {
	content: "\eb0c";
}
.ifc-avi:before {
	content: "\eb11";
}
.ifc-average:before {
	content: "\eb12";
}
.ifc-audio_wave2:before {
	content: "\eb15";
}
.ifc-audio_wave:before {
	content: "\eb16";
}
.ifc-asc:before {
	content: "\eb19";
}
.ifc-armchair:before {
	content: "\eb1a";
}
.ifc-area_chart:before {
	content: "\eb1c";
}
.ifc-archive:before {
	content: "\eb1e";
}
.ifc-aquarius:before {
	content: "\eb1f";
}
.ifc-application_shield:before {
	content: "\eb20";
}
.ifc-apartment:before {
	content: "\eb21";
}
.ifc-antiseptic_cream:before {
	content: "\eb23";
}
.ifc-android_os:before {
	content: "\eb27";
}
.ifc-ancore:before {
	content: "\eb28";
}
.ifc-anchor:before {
	content: "\eb29";
}
.ifc-ammo_tin:before {
	content: "\eb2a";
}
.ifc-amex:before {
	content: "\eb2b";
}
.ifc-ambulance:before {
	content: "\eb2c";
}
.ifc-alphabetical_sorting_za:before {
	content: "\eb2d";
}
.ifc-alphabetical_sorting_az:before {
	content: "\eb2e";
}
.ifc-align_right:before {
	content: "\eb2f";
}
.ifc-align_left:before {
	content: "\eb30";
}
.ifc-align_justify:before {
	content: "\eb31";
}
.ifc-align_center:before {
	content: "\eb32";
}
.ifc-alarm_clock:before {
	content: "\eb33";
}
.ifc-airplane_take_off:before {
	content: "\eb34";
}
.ifc-airplane:before {
	content: "\eb37";
}
.ifc-ai:before {
	content: "\eb39";
}
.ifc-age:before {
	content: "\eb3a";
}
.ifc-adventures:before {
	content: "\eb3b";
}
.ifc-adobe_photoshop:before {
	content: "\eb3c";
}
.ifc-adobe_indesign:before {
	content: "\eb3d";
}
.ifc-adobe_illustrator:before {
	content: "\eb3e";
}
.ifc-adobe_flash:before {
	content: "\eb3f";
}
.ifc-adobe_fireworks:before {
	content: "\eb40";
}
.ifc-adobe_dreamweaver:before {
	content: "\eb41";
}
.ifc-adobe_bridge:before {
	content: "\eb42";
}
.ifc-administrative_tools:before {
	content: "\eb43";
}
.ifc-add_user:before {
	content: "\eb44";
}
.ifc-add_image:before {
	content: "\eb46";
}
.ifc-add_database:before {
	content: "\eb47";
}
.ifc-zip2:before {
	content: "\eb49";
}
.ifc-f_tap:before {
	content: "\eb4a";
}
.ifc-f_swipe_up:before {
	content: "\eb4b";
}
.ifc-f_swipe_right:before {
	content: "\eb4c";
}
.ifc-f_swipe_left:before {
	content: "\eb4d";
}
.ifc-f_swipe_down:before {
	content: "\eb4e";
}
.ifc-f_double_tap:before {
	content: "\eb4f";
}

/* Animate.css - Just-add-water CSS animations 
 * http://daneden.github.io/animate.css/
 */
@charset "UTF-8";.animated{-webkit-animation-duration:1s;animation-duration:1s;-webkit-animation-fill-mode:both;animation-fill-mode:both}.animated.hinge{-webkit-animation-duration:2s;animation-duration:2s}@-webkit-keyframes bounce{0%,20%,50%,80%,100%{-webkit-transform:translateY(0);transform:translateY(0)}40%{-webkit-transform:translateY(-30px);transform:translateY(-30px)}60%{-webkit-transform:translateY(-15px);transform:translateY(-15px)}}@keyframes bounce{0%,20%,50%,80%,100%{-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0)}40%{-webkit-transform:translateY(-30px);-ms-transform:translateY(-30px);transform:translateY(-30px)}60%{-webkit-transform:translateY(-15px);-ms-transform:translateY(-15px);transform:translateY(-15px)}}.bounce{-webkit-animation-name:bounce;animation-name:bounce}@-webkit-keyframes flash{0%,50%,100%{opacity:1}25%,75%{opacity:0}}@keyframes flash{0%,50%,100%{opacity:1}25%,75%{opacity:0}}.flash{-webkit-animation-name:flash;animation-name:flash}@-webkit-keyframes pulse{0%{-webkit-transform:scale(1);transform:scale(1)}50%{-webkit-transform:scale(1.1);transform:scale(1.1)}100%{-webkit-transform:scale(1);transform:scale(1)}}@keyframes pulse{0%{-webkit-transform:scale(1);-ms-transform:scale(1);transform:scale(1)}50%{-webkit-transform:scale(1.1);-ms-transform:scale(1.1);transform:scale(1.1)}100%{-webkit-transform:scale(1);-ms-transform:scale(1);transform:scale(1)}}.pulse{-webkit-animation-name:pulse;animation-name:pulse}@-webkit-keyframes shake{0%,100%{-webkit-transform:translateX(0);transform:translateX(0)}10%,30%,50%,70%,90%{-webkit-transform:translateX(-10px);transform:translateX(-10px)}20%,40%,60%,80%{-webkit-transform:translateX(10px);transform:translateX(10px)}}@keyframes shake{0%,100%{-webkit-transform:translateX(0);-ms-transform:translateX(0);transform:translateX(0)}10%,30%,50%,70%,90%{-webkit-transform:translateX(-10px);-ms-transform:translateX(-10px);transform:translateX(-10px)}20%,40%,60%,80%{-webkit-transform:translateX(10px);-ms-transform:translateX(10px);transform:translateX(10px)}}.shake{-webkit-animation-name:shake;animation-name:shake}@-webkit-keyframes swing{20%{-webkit-transform:rotate(15deg);transform:rotate(15deg)}40%{-webkit-transform:rotate(-10deg);transform:rotate(-10deg)}60%{-webkit-transform:rotate(5deg);transform:rotate(5deg)}80%{-webkit-transform:rotate(-5deg);transform:rotate(-5deg)}100%{-webkit-transform:rotate(0);transform:rotate(0)}}@keyframes swing{20%{-webkit-transform:rotate(15deg);-ms-transform:rotate(15deg);transform:rotate(15deg)}40%{-webkit-transform:rotate(-10deg);-ms-transform:rotate(-10deg);transform:rotate(-10deg)}60%{-webkit-transform:rotate(5deg);-ms-transform:rotate(5deg);transform:rotate(5deg)}80%{-webkit-transform:rotate(-5deg);-ms-transform:rotate(-5deg);transform:rotate(-5deg)}100%{-webkit-transform:rotate(0);-ms-transform:rotate(0);transform:rotate(0)}}.swing{-webkit-transform-origin:top center;-ms-transform-origin:top center;transform-origin:top center;-webkit-animation-name:swing;animation-name:swing}@-webkit-keyframes tada{0%{-webkit-transform:scale(1);transform:scale(1)}10%,20%{-webkit-transform:scale(.9)rotate(-3deg);transform:scale(.9)rotate(-3deg)}30%,50%,70%,90%{-webkit-transform:scale(1.1)rotate(3deg);transform:scale(1.1)rotate(3deg)}40%,60%,80%{-webkit-transform:scale(1.1)rotate(-3deg);transform:scale(1.1)rotate(-3deg)}100%{-webkit-transform:scale(1)rotate(0);transform:scale(1)rotate(0)}}@keyframes tada{0%{-webkit-transform:scale(1);-ms-transform:scale(1);transform:scale(1)}10%,20%{-webkit-transform:scale(.9)rotate(-3deg);-ms-transform:scale(.9)rotate(-3deg);transform:scale(.9)rotate(-3deg)}30%,50%,70%,90%{-webkit-transform:scale(1.1)rotate(3deg);-ms-transform:scale(1.1)rotate(3deg);transform:scale(1.1)rotate(3deg)}40%,60%,80%{-webkit-transform:scale(1.1)rotate(-3deg);-ms-transform:scale(1.1)rotate(-3deg);transform:scale(1.1)rotate(-3deg)}100%{-webkit-transform:scale(1)rotate(0);-ms-transform:scale(1)rotate(0);transform:scale(1)rotate(0)}}.tada{-webkit-animation-name:tada;animation-name:tada}@-webkit-keyframes wobble{0%{-webkit-transform:translateX(0%);transform:translateX(0%)}15%{-webkit-transform:translateX(-25%)rotate(-5deg);transform:translateX(-25%)rotate(-5deg)}30%{-webkit-transform:translateX(20%)rotate(3deg);transform:translateX(20%)rotate(3deg)}45%{-webkit-transform:translateX(-15%)rotate(-3deg);transform:translateX(-15%)rotate(-3deg)}60%{-webkit-transform:translateX(10%)rotate(2deg);transform:translateX(10%)rotate(2deg)}75%{-webkit-transform:translateX(-5%)rotate(-1deg);transform:translateX(-5%)rotate(-1deg)}100%{-webkit-transform:translateX(0%);transform:translateX(0%)}}@keyframes wobble{0%{-webkit-transform:translateX(0%);-ms-transform:translateX(0%);transform:translateX(0%)}15%{-webkit-transform:translateX(-25%)rotate(-5deg);-ms-transform:translateX(-25%)rotate(-5deg);transform:translateX(-25%)rotate(-5deg)}30%{-webkit-transform:translateX(20%)rotate(3deg);-ms-transform:translateX(20%)rotate(3deg);transform:translateX(20%)rotate(3deg)}45%{-webkit-transform:translateX(-15%)rotate(-3deg);-ms-transform:translateX(-15%)rotate(-3deg);transform:translateX(-15%)rotate(-3deg)}60%{-webkit-transform:translateX(10%)rotate(2deg);-ms-transform:translateX(10%)rotate(2deg);transform:translateX(10%)rotate(2deg)}75%{-webkit-transform:translateX(-5%)rotate(-1deg);-ms-transform:translateX(-5%)rotate(-1deg);transform:translateX(-5%)rotate(-1deg)}100%{-webkit-transform:translateX(0%);-ms-transform:translateX(0%);transform:translateX(0%)}}.wobble{-webkit-animation-name:wobble;animation-name:wobble}@-webkit-keyframes bounceIn{0%{opacity:0;-webkit-transform:scale(.3);transform:scale(.3)}50%{opacity:1;-webkit-transform:scale(1.05);transform:scale(1.05)}70%{-webkit-transform:scale(.9);transform:scale(.9)}100%{-webkit-transform:scale(1);transform:scale(1)}}@keyframes bounceIn{0%{opacity:0;-webkit-transform:scale(.3);-ms-transform:scale(.3);transform:scale(.3)}50%{opacity:1;-webkit-transform:scale(1.05);-ms-transform:scale(1.05);transform:scale(1.05)}70%{-webkit-transform:scale(.9);-ms-transform:scale(.9);transform:scale(.9)}100%{-webkit-transform:scale(1);-ms-transform:scale(1);transform:scale(1)}}.bounceIn{-webkit-animation-name:bounceIn;animation-name:bounceIn}@-webkit-keyframes bounceInDown{0%{opacity:0;-webkit-transform:translateY(-2000px);transform:translateY(-2000px)}60%{opacity:1;-webkit-transform:translateY(30px);transform:translateY(30px)}80%{-webkit-transform:translateY(-10px);transform:translateY(-10px)}100%{-webkit-transform:translateY(0);transform:translateY(0)}}@keyframes bounceInDown{0%{opacity:0;-webkit-transform:translateY(-2000px);-ms-transform:translateY(-2000px);transform:translateY(-2000px)}60%{opacity:1;-webkit-transform:translateY(30px);-ms-transform:translateY(30px);transform:translateY(30px)}80%{-webkit-transform:translateY(-10px);-ms-transform:translateY(-10px);transform:translateY(-10px)}100%{-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0)}}.bounceInDown{-webkit-animation-name:bounceInDown;animation-name:bounceInDown}@-webkit-keyframes bounceInLeft{0%{opacity:0;-webkit-transform:translateX(-2000px);transform:translateX(-2000px)}60%{opacity:1;-webkit-transform:translateX(30px);transform:translateX(30px)}80%{-webkit-transform:translateX(-10px);transform:translateX(-10px)}100%{-webkit-transform:translateX(0);transform:translateX(0)}}@keyframes bounceInLeft{0%{opacity:0;-webkit-transform:translateX(-2000px);-ms-transform:translateX(-2000px);transform:translateX(-2000px)}60%{opacity:1;-webkit-transform:translateX(30px);-ms-transform:translateX(30px);transform:translateX(30px)}80%{-webkit-transform:translateX(-10px);-ms-transform:translateX(-10px);transform:translateX(-10px)}100%{-webkit-transform:translateX(0);-ms-transform:translateX(0);transform:translateX(0)}}.bounceInLeft{-webkit-animation-name:bounceInLeft;animation-name:bounceInLeft}@-webkit-keyframes bounceInRight{0%{opacity:0;-webkit-transform:translateX(2000px);transform:translateX(2000px)}60%{opacity:1;-webkit-transform:translateX(-30px);transform:translateX(-30px)}80%{-webkit-transform:translateX(10px);transform:translateX(10px)}100%{-webkit-transform:translateX(0);transform:translateX(0)}}@keyframes bounceInRight{0%{opacity:0;-webkit-transform:translateX(2000px);-ms-transform:translateX(2000px);transform:translateX(2000px)}60%{opacity:1;-webkit-transform:translateX(-30px);-ms-transform:translateX(-30px);transform:translateX(-30px)}80%{-webkit-transform:translateX(10px);-ms-transform:translateX(10px);transform:translateX(10px)}100%{-webkit-transform:translateX(0);-ms-transform:translateX(0);transform:translateX(0)}}.bounceInRight{-webkit-animation-name:bounceInRight;animation-name:bounceInRight}@-webkit-keyframes bounceInUp{0%{opacity:0;-webkit-transform:translateY(2000px);transform:translateY(2000px)}60%{opacity:1;-webkit-transform:translateY(-30px);transform:translateY(-30px)}80%{-webkit-transform:translateY(10px);transform:translateY(10px)}100%{-webkit-transform:translateY(0);transform:translateY(0)}}@keyframes bounceInUp{0%{opacity:0;-webkit-transform:translateY(2000px);-ms-transform:translateY(2000px);transform:translateY(2000px)}60%{opacity:1;-webkit-transform:translateY(-30px);-ms-transform:translateY(-30px);transform:translateY(-30px)}80%{-webkit-transform:translateY(10px);-ms-transform:translateY(10px);transform:translateY(10px)}100%{-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0)}}.bounceInUp{-webkit-animation-name:bounceInUp;animation-name:bounceInUp}@-webkit-keyframes bounceOut{0%{-webkit-transform:scale(1);transform:scale(1)}25%{-webkit-transform:scale(.95);transform:scale(.95)}50%{opacity:1;-webkit-transform:scale(1.1);transform:scale(1.1)}100%{opacity:0;-webkit-transform:scale(.3);transform:scale(.3)}}@keyframes bounceOut{0%{-webkit-transform:scale(1);-ms-transform:scale(1);transform:scale(1)}25%{-webkit-transform:scale(.95);-ms-transform:scale(.95);transform:scale(.95)}50%{opacity:1;-webkit-transform:scale(1.1);-ms-transform:scale(1.1);transform:scale(1.1)}100%{opacity:0;-webkit-transform:scale(.3);-ms-transform:scale(.3);transform:scale(.3)}}.bounceOut{-webkit-animation-name:bounceOut;animation-name:bounceOut}@-webkit-keyframes bounceOutDown{0%{-webkit-transform:translateY(0);transform:translateY(0)}20%{opacity:1;-webkit-transform:translateY(-20px);transform:translateY(-20px)}100%{opacity:0;-webkit-transform:translateY(2000px);transform:translateY(2000px)}}@keyframes bounceOutDown{0%{-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0)}20%{opacity:1;-webkit-transform:translateY(-20px);-ms-transform:translateY(-20px);transform:translateY(-20px)}100%{opacity:0;-webkit-transform:translateY(2000px);-ms-transform:translateY(2000px);transform:translateY(2000px)}}.bounceOutDown{-webkit-animation-name:bounceOutDown;animation-name:bounceOutDown}@-webkit-keyframes bounceOutLeft{0%{-webkit-transform:translateX(0);transform:translateX(0)}20%{opacity:1;-webkit-transform:translateX(20px);transform:translateX(20px)}100%{opacity:0;-webkit-transform:translateX(-2000px);transform:translateX(-2000px)}}@keyframes bounceOutLeft{0%{-webkit-transform:translateX(0);-ms-transform:translateX(0);transform:translateX(0)}20%{opacity:1;-webkit-transform:translateX(20px);-ms-transform:translateX(20px);transform:translateX(20px)}100%{opacity:0;-webkit-transform:translateX(-2000px);-ms-transform:translateX(-2000px);transform:translateX(-2000px)}}.bounceOutLeft{-webkit-animation-name:bounceOutLeft;animation-name:bounceOutLeft}@-webkit-keyframes bounceOutRight{0%{-webkit-transform:translateX(0);transform:translateX(0)}20%{opacity:1;-webkit-transform:translateX(-20px);transform:translateX(-20px)}100%{opacity:0;-webkit-transform:translateX(2000px);transform:translateX(2000px)}}@keyframes bounceOutRight{0%{-webkit-transform:translateX(0);-ms-transform:translateX(0);transform:translateX(0)}20%{opacity:1;-webkit-transform:translateX(-20px);-ms-transform:translateX(-20px);transform:translateX(-20px)}100%{opacity:0;-webkit-transform:translateX(2000px);-ms-transform:translateX(2000px);transform:translateX(2000px)}}.bounceOutRight{-webkit-animation-name:bounceOutRight;animation-name:bounceOutRight}@-webkit-keyframes bounceOutUp{0%{-webkit-transform:translateY(0);transform:translateY(0)}20%{opacity:1;-webkit-transform:translateY(20px);transform:translateY(20px)}100%{opacity:0;-webkit-transform:translateY(-2000px);transform:translateY(-2000px)}}@keyframes bounceOutUp{0%{-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0)}20%{opacity:1;-webkit-transform:translateY(20px);-ms-transform:translateY(20px);transform:translateY(20px)}100%{opacity:0;-webkit-transform:translateY(-2000px);-ms-transform:translateY(-2000px);transform:translateY(-2000px)}}.bounceOutUp{-webkit-animation-name:bounceOutUp;animation-name:bounceOutUp}@-webkit-keyframes fadeIn{0%{opacity:0}100%{opacity:1}}@keyframes fadeIn{0%{opacity:0}100%{opacity:1}}.fadeIn{-webkit-animation-name:fadeIn;animation-name:fadeIn}@-webkit-keyframes fadeInDown{0%{opacity:0;-webkit-transform:translateY(-20px);transform:translateY(-20px)}100%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}}@keyframes fadeInDown{0%{opacity:0;-webkit-transform:translateY(-20px);-ms-transform:translateY(-20px);transform:translateY(-20px)}100%{opacity:1;-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0)}}.fadeInDown{-webkit-animation-name:fadeInDown;animation-name:fadeInDown}@-webkit-keyframes fadeInDownBig{0%{opacity:0;-webkit-transform:translateY(-2000px);transform:translateY(-2000px)}100%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}}@keyframes fadeInDownBig{0%{opacity:0;-webkit-transform:translateY(-2000px);-ms-transform:translateY(-2000px);transform:translateY(-2000px)}100%{opacity:1;-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0)}}.fadeInDownBig{-webkit-animation-name:fadeInDownBig;animation-name:fadeInDownBig}@-webkit-keyframes fadeInLeft{0%{opacity:0;-webkit-transform:translateX(-20px);transform:translateX(-20px)}100%{opacity:1;-webkit-transform:translateX(0);transform:translateX(0)}}@keyframes fadeInLeft{0%{opacity:0;-webkit-transform:translateX(-20px);-ms-transform:translateX(-20px);transform:translateX(-20px)}100%{opacity:1;-webkit-transform:translateX(0);-ms-transform:translateX(0);transform:translateX(0)}}.fadeInLeft{-webkit-animation-name:fadeInLeft;animation-name:fadeInLeft}@-webkit-keyframes fadeInLeftBig{0%{opacity:0;-webkit-transform:translateX(-2000px);transform:translateX(-2000px)}100%{opacity:1;-webkit-transform:translateX(0);transform:translateX(0)}}@keyframes fadeInLeftBig{0%{opacity:0;-webkit-transform:translateX(-2000px);-ms-transform:translateX(-2000px);transform:translateX(-2000px)}100%{opacity:1;-webkit-transform:translateX(0);-ms-transform:translateX(0);transform:translateX(0)}}.fadeInLeftBig{-webkit-animation-name:fadeInLeftBig;animation-name:fadeInLeftBig}@-webkit-keyframes fadeInRight{0%{opacity:0;-webkit-transform:translateX(20px);transform:translateX(20px)}100%{opacity:1;-webkit-transform:translateX(0);transform:translateX(0)}}@keyframes fadeInRight{0%{opacity:0;-webkit-transform:translateX(20px);-ms-transform:translateX(20px);transform:translateX(20px)}100%{opacity:1;-webkit-transform:translateX(0);-ms-transform:translateX(0);transform:translateX(0)}}.fadeInRight{-webkit-animation-name:fadeInRight;animation-name:fadeInRight}@-webkit-keyframes fadeInRightBig{0%{opacity:0;-webkit-transform:translateX(2000px);transform:translateX(2000px)}100%{opacity:1;-webkit-transform:translateX(0);transform:translateX(0)}}@keyframes fadeInRightBig{0%{opacity:0;-webkit-transform:translateX(2000px);-ms-transform:translateX(2000px);transform:translateX(2000px)}100%{opacity:1;-webkit-transform:translateX(0);-ms-transform:translateX(0);transform:translateX(0)}}.fadeInRightBig{-webkit-animation-name:fadeInRightBig;animation-name:fadeInRightBig}@-webkit-keyframes fadeInUp{0%{opacity:0;-webkit-transform:translateY(20px);transform:translateY(20px)}100%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}}@keyframes fadeInUp{0%{opacity:0;-webkit-transform:translateY(20px);-ms-transform:translateY(20px);transform:translateY(20px)}100%{opacity:1;-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0)}}.fadeInUp{-webkit-animation-name:fadeInUp;animation-name:fadeInUp}@-webkit-keyframes fadeInUpBig{0%{opacity:0;-webkit-transform:translateY(2000px);transform:translateY(2000px)}100%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}}@keyframes fadeInUpBig{0%{opacity:0;-webkit-transform:translateY(2000px);-ms-transform:translateY(2000px);transform:translateY(2000px)}100%{opacity:1;-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0)}}.fadeInUpBig{-webkit-animation-name:fadeInUpBig;animation-name:fadeInUpBig}@-webkit-keyframes fadeOut{0%{opacity:1}100%{opacity:0}}@keyframes fadeOut{0%{opacity:1}100%{opacity:0}}.fadeOut{-webkit-animation-name:fadeOut;animation-name:fadeOut}@-webkit-keyframes fadeOutDown{0%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}100%{opacity:0;-webkit-transform:translateY(20px);transform:translateY(20px)}}@keyframes fadeOutDown{0%{opacity:1;-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0)}100%{opacity:0;-webkit-transform:translateY(20px);-ms-transform:translateY(20px);transform:translateY(20px)}}.fadeOutDown{-webkit-animation-name:fadeOutDown;animation-name:fadeOutDown}@-webkit-keyframes fadeOutDownBig{0%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}100%{opacity:0;-webkit-transform:translateY(2000px);transform:translateY(2000px)}}@keyframes fadeOutDownBig{0%{opacity:1;-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0)}100%{opacity:0;-webkit-transform:translateY(2000px);-ms-transform:translateY(2000px);transform:translateY(2000px)}}.fadeOutDownBig{-webkit-animation-name:fadeOutDownBig;animation-name:fadeOutDownBig}@-webkit-keyframes fadeOutLeft{0%{opacity:1;-webkit-transform:translateX(0);transform:translateX(0)}100%{opacity:0;-webkit-transform:translateX(-20px);transform:translateX(-20px)}}@keyframes fadeOutLeft{0%{opacity:1;-webkit-transform:translateX(0);-ms-transform:translateX(0);transform:translateX(0)}100%{opacity:0;-webkit-transform:translateX(-20px);-ms-transform:translateX(-20px);transform:translateX(-20px)}}.fadeOutLeft{-webkit-animation-name:fadeOutLeft;animation-name:fadeOutLeft}@-webkit-keyframes fadeOutLeftBig{0%{opacity:1;-webkit-transform:translateX(0);transform:translateX(0)}100%{opacity:0;-webkit-transform:translateX(-2000px);transform:translateX(-2000px)}}@keyframes fadeOutLeftBig{0%{opacity:1;-webkit-transform:translateX(0);-ms-transform:translateX(0);transform:translateX(0)}100%{opacity:0;-webkit-transform:translateX(-2000px);-ms-transform:translateX(-2000px);transform:translateX(-2000px)}}.fadeOutLeftBig{-webkit-animation-name:fadeOutLeftBig;animation-name:fadeOutLeftBig}@-webkit-keyframes fadeOutRight{0%{opacity:1;-webkit-transform:translateX(0);transform:translateX(0)}100%{opacity:0;-webkit-transform:translateX(20px);transform:translateX(20px)}}@keyframes fadeOutRight{0%{opacity:1;-webkit-transform:translateX(0);-ms-transform:translateX(0);transform:translateX(0)}100%{opacity:0;-webkit-transform:translateX(20px);-ms-transform:translateX(20px);transform:translateX(20px)}}.fadeOutRight{-webkit-animation-name:fadeOutRight;animation-name:fadeOutRight}@-webkit-keyframes fadeOutRightBig{0%{opacity:1;-webkit-transform:translateX(0);transform:translateX(0)}100%{opacity:0;-webkit-transform:translateX(2000px);transform:translateX(2000px)}}@keyframes fadeOutRightBig{0%{opacity:1;-webkit-transform:translateX(0);-ms-transform:translateX(0);transform:translateX(0)}100%{opacity:0;-webkit-transform:translateX(2000px);-ms-transform:translateX(2000px);transform:translateX(2000px)}}.fadeOutRightBig{-webkit-animation-name:fadeOutRightBig;animation-name:fadeOutRightBig}@-webkit-keyframes fadeOutUp{0%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}100%{opacity:0;-webkit-transform:translateY(-20px);transform:translateY(-20px)}}@keyframes fadeOutUp{0%{opacity:1;-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0)}100%{opacity:0;-webkit-transform:translateY(-20px);-ms-transform:translateY(-20px);transform:translateY(-20px)}}.fadeOutUp{-webkit-animation-name:fadeOutUp;animation-name:fadeOutUp}@-webkit-keyframes fadeOutUpBig{0%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}100%{opacity:0;-webkit-transform:translateY(-2000px);transform:translateY(-2000px)}}@keyframes fadeOutUpBig{0%{opacity:1;-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0)}100%{opacity:0;-webkit-transform:translateY(-2000px);-ms-transform:translateY(-2000px);transform:translateY(-2000px)}}.fadeOutUpBig{-webkit-animation-name:fadeOutUpBig;animation-name:fadeOutUpBig}@-webkit-keyframes flip{0%{-webkit-transform:perspective(400px)translateZ(0)rotateY(0)scale(1);transform:perspective(400px)translateZ(0)rotateY(0)scale(1)}0%,40%{-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}40%{-webkit-transform:perspective(400px)translateZ(150px)rotateY(170deg)scale(1);transform:perspective(400px)translateZ(150px)rotateY(170deg)scale(1)}50%{-webkit-transform:perspective(400px)translateZ(150px)rotateY(190deg)scale(1);transform:perspective(400px)translateZ(150px)rotateY(190deg)scale(1);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}80%{-webkit-transform:perspective(400px)translateZ(0)rotateY(360deg)scale(.95);transform:perspective(400px)translateZ(0)rotateY(360deg)scale(.95)}80%,100%{-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}100%{-webkit-transform:perspective(400px)translateZ(0)rotateY(360deg)scale(1);transform:perspective(400px)translateZ(0)rotateY(360deg)scale(1)}}@keyframes flip{0%{-webkit-transform:perspective(400px)translateZ(0)rotateY(0)scale(1);-ms-transform:perspective(400px)translateZ(0)rotateY(0)scale(1);transform:perspective(400px)translateZ(0)rotateY(0)scale(1)}0%,40%{-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}40%{-webkit-transform:perspective(400px)translateZ(150px)rotateY(170deg)scale(1);-ms-transform:perspective(400px)translateZ(150px)rotateY(170deg)scale(1);transform:perspective(400px)translateZ(150px)rotateY(170deg)scale(1)}50%{-webkit-transform:perspective(400px)translateZ(150px)rotateY(190deg)scale(1);-ms-transform:perspective(400px)translateZ(150px)rotateY(190deg)scale(1);transform:perspective(400px)translateZ(150px)rotateY(190deg)scale(1);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}80%{-webkit-transform:perspective(400px)translateZ(0)rotateY(360deg)scale(.95);-ms-transform:perspective(400px)translateZ(0)rotateY(360deg)scale(.95);transform:perspective(400px)translateZ(0)rotateY(360deg)scale(.95)}80%,100%{-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}100%{-webkit-transform:perspective(400px)translateZ(0)rotateY(360deg)scale(1);-ms-transform:perspective(400px)translateZ(0)rotateY(360deg)scale(1);transform:perspective(400px)translateZ(0)rotateY(360deg)scale(1)}}.animated.flip{-webkit-backface-visibility:visible;-ms-backface-visibility:visible;backface-visibility:visible;-webkit-animation-name:flip;animation-name:flip}@-webkit-keyframes flipInX{0%{-webkit-transform:perspective(400px)rotateX(90deg);transform:perspective(400px)rotateX(90deg);opacity:0}40%{-webkit-transform:perspective(400px)rotateX(-10deg);transform:perspective(400px)rotateX(-10deg)}70%{-webkit-transform:perspective(400px)rotateX(10deg);transform:perspective(400px)rotateX(10deg)}100%{-webkit-transform:perspective(400px)rotateX(0);transform:perspective(400px)rotateX(0);opacity:1}}@keyframes flipInX{0%{-webkit-transform:perspective(400px)rotateX(90deg);-ms-transform:perspective(400px)rotateX(90deg);transform:perspective(400px)rotateX(90deg);opacity:0}40%{-webkit-transform:perspective(400px)rotateX(-10deg);-ms-transform:perspective(400px)rotateX(-10deg);transform:perspective(400px)rotateX(-10deg)}70%{-webkit-transform:perspective(400px)rotateX(10deg);-ms-transform:perspective(400px)rotateX(10deg);transform:perspective(400px)rotateX(10deg)}100%{-webkit-transform:perspective(400px)rotateX(0);-ms-transform:perspective(400px)rotateX(0);transform:perspective(400px)rotateX(0);opacity:1}}.flipInX{-webkit-backface-visibility:visible!important;-ms-backface-visibility:visible!important;backface-visibility:visible!important;-webkit-animation-name:flipInX;animation-name:flipInX}@-webkit-keyframes flipInY{0%{-webkit-transform:perspective(400px)rotateY(90deg);transform:perspective(400px)rotateY(90deg);opacity:0}40%{-webkit-transform:perspective(400px)rotateY(-10deg);transform:perspective(400px)rotateY(-10deg)}70%{-webkit-transform:perspective(400px)rotateY(10deg);transform:perspective(400px)rotateY(10deg)}100%{-webkit-transform:perspective(400px)rotateY(0);transform:perspective(400px)rotateY(0);opacity:1}}@keyframes flipInY{0%{-webkit-transform:perspective(400px)rotateY(90deg);-ms-transform:perspective(400px)rotateY(90deg);transform:perspective(400px)rotateY(90deg);opacity:0}40%{-webkit-transform:perspective(400px)rotateY(-10deg);-ms-transform:perspective(400px)rotateY(-10deg);transform:perspective(400px)rotateY(-10deg)}70%{-webkit-transform:perspective(400px)rotateY(10deg);-ms-transform:perspective(400px)rotateY(10deg);transform:perspective(400px)rotateY(10deg)}100%{-webkit-transform:perspective(400px)rotateY(0);-ms-transform:perspective(400px)rotateY(0);transform:perspective(400px)rotateY(0);opacity:1}}.flipInY{-webkit-backface-visibility:visible!important;-ms-backface-visibility:visible!important;backface-visibility:visible!important;-webkit-animation-name:flipInY;animation-name:flipInY}@-webkit-keyframes flipOutX{0%{-webkit-transform:perspective(400px)rotateX(0);transform:perspective(400px)rotateX(0);opacity:1}100%{-webkit-transform:perspective(400px)rotateX(90deg);transform:perspective(400px)rotateX(90deg);opacity:0}}@keyframes flipOutX{0%{-webkit-transform:perspective(400px)rotateX(0);-ms-transform:perspective(400px)rotateX(0);transform:perspective(400px)rotateX(0);opacity:1}100%{-webkit-transform:perspective(400px)rotateX(90deg);-ms-transform:perspective(400px)rotateX(90deg);transform:perspective(400px)rotateX(90deg);opacity:0}}.flipOutX{-webkit-animation-name:flipOutX;animation-name:flipOutX;-webkit-backface-visibility:visible!important;-ms-backface-visibility:visible!important;backface-visibility:visible!important}@-webkit-keyframes flipOutY{0%{-webkit-transform:perspective(400px)rotateY(0);transform:perspective(400px)rotateY(0);opacity:1}100%{-webkit-transform:perspective(400px)rotateY(90deg);transform:perspective(400px)rotateY(90deg);opacity:0}}@keyframes flipOutY{0%{-webkit-transform:perspective(400px)rotateY(0);-ms-transform:perspective(400px)rotateY(0);transform:perspective(400px)rotateY(0);opacity:1}100%{-webkit-transform:perspective(400px)rotateY(90deg);-ms-transform:perspective(400px)rotateY(90deg);transform:perspective(400px)rotateY(90deg);opacity:0}}.flipOutY{-webkit-backface-visibility:visible!important;-ms-backface-visibility:visible!important;backface-visibility:visible!important;-webkit-animation-name:flipOutY;animation-name:flipOutY}@-webkit-keyframes lightSpeedIn{0%{-webkit-transform:translateX(100%)skewX(-30deg);transform:translateX(100%)skewX(-30deg);opacity:0}60%{-webkit-transform:translateX(-20%)skewX(30deg);transform:translateX(-20%)skewX(30deg);opacity:1}80%{-webkit-transform:translateX(0%)skewX(-15deg);transform:translateX(0%)skewX(-15deg);opacity:1}100%{-webkit-transform:translateX(0%)skewX(0);transform:translateX(0%)skewX(0);opacity:1}}@keyframes lightSpeedIn{0%{-webkit-transform:translateX(100%)skewX(-30deg);-ms-transform:translateX(100%)skewX(-30deg);transform:translateX(100%)skewX(-30deg);opacity:0}60%{-webkit-transform:translateX(-20%)skewX(30deg);-ms-transform:translateX(-20%)skewX(30deg);transform:translateX(-20%)skewX(30deg);opacity:1}80%{-webkit-transform:translateX(0%)skewX(-15deg);-ms-transform:translateX(0%)skewX(-15deg);transform:translateX(0%)skewX(-15deg);opacity:1}100%{-webkit-transform:translateX(0%)skewX(0);-ms-transform:translateX(0%)skewX(0);transform:translateX(0%)skewX(0);opacity:1}}.lightSpeedIn{-webkit-animation-name:lightSpeedIn;animation-name:lightSpeedIn;-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}@-webkit-keyframes lightSpeedOut{0%{-webkit-transform:translateX(0%)skewX(0);transform:translateX(0%)skewX(0);opacity:1}100%{-webkit-transform:translateX(100%)skewX(-30deg);transform:translateX(100%)skewX(-30deg);opacity:0}}@keyframes lightSpeedOut{0%{-webkit-transform:translateX(0%)skewX(0);-ms-transform:translateX(0%)skewX(0);transform:translateX(0%)skewX(0);opacity:1}100%{-webkit-transform:translateX(100%)skewX(-30deg);-ms-transform:translateX(100%)skewX(-30deg);transform:translateX(100%)skewX(-30deg);opacity:0}}.lightSpeedOut{-webkit-animation-name:lightSpeedOut;animation-name:lightSpeedOut;-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}@-webkit-keyframes rotateIn{0%{-webkit-transform:rotate(-200deg);transform:rotate(-200deg);opacity:0}0%,100%{-webkit-transform-origin:center center;transform-origin:center center}100%{-webkit-transform:rotate(0);transform:rotate(0);opacity:1}}@keyframes rotateIn{0%{-webkit-transform:rotate(-200deg);-ms-transform:rotate(-200deg);transform:rotate(-200deg);opacity:0}0%,100%{-webkit-transform-origin:center center;-ms-transform-origin:center center;transform-origin:center center}100%{-webkit-transform:rotate(0);-ms-transform:rotate(0);transform:rotate(0);opacity:1}}.rotateIn{-webkit-animation-name:rotateIn;animation-name:rotateIn}@-webkit-keyframes rotateInDownLeft{0%{-webkit-transform:rotate(-90deg);transform:rotate(-90deg);opacity:0}0%,100%{-webkit-transform-origin:left bottom;transform-origin:left bottom}100%{-webkit-transform:rotate(0);transform:rotate(0);opacity:1}}@keyframes rotateInDownLeft{0%{-webkit-transform:rotate(-90deg);-ms-transform:rotate(-90deg);transform:rotate(-90deg);opacity:0}0%,100%{-webkit-transform-origin:left bottom;-ms-transform-origin:left bottom;transform-origin:left bottom}100%{-webkit-transform:rotate(0);-ms-transform:rotate(0);transform:rotate(0);opacity:1}}.rotateInDownLeft{-webkit-animation-name:rotateInDownLeft;animation-name:rotateInDownLeft}@-webkit-keyframes rotateInDownRight{0%{-webkit-transform:rotate(90deg);transform:rotate(90deg);opacity:0}0%,100%{-webkit-transform-origin:right bottom;transform-origin:right bottom}100%{-webkit-transform:rotate(0);transform:rotate(0);opacity:1}}@keyframes rotateInDownRight{0%{-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg);opacity:0}0%,100%{-webkit-transform-origin:right bottom;-ms-transform-origin:right bottom;transform-origin:right bottom}100%{-webkit-transform:rotate(0);-ms-transform:rotate(0);transform:rotate(0);opacity:1}}.rotateInDownRight{-webkit-animation-name:rotateInDownRight;animation-name:rotateInDownRight}@-webkit-keyframes rotateInUpLeft{0%{-webkit-transform:rotate(90deg);transform:rotate(90deg);opacity:0}0%,100%{-webkit-transform-origin:left bottom;transform-origin:left bottom}100%{-webkit-transform:rotate(0);transform:rotate(0);opacity:1}}@keyframes rotateInUpLeft{0%{-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg);opacity:0}0%,100%{-webkit-transform-origin:left bottom;-ms-transform-origin:left bottom;transform-origin:left bottom}100%{-webkit-transform:rotate(0);-ms-transform:rotate(0);transform:rotate(0);opacity:1}}.rotateInUpLeft{-webkit-animation-name:rotateInUpLeft;animation-name:rotateInUpLeft}@-webkit-keyframes rotateInUpRight{0%{-webkit-transform:rotate(-90deg);transform:rotate(-90deg);opacity:0}0%,100%{-webkit-transform-origin:right bottom;transform-origin:right bottom}100%{-webkit-transform:rotate(0);transform:rotate(0);opacity:1}}@keyframes rotateInUpRight{0%{-webkit-transform:rotate(-90deg);-ms-transform:rotate(-90deg);transform:rotate(-90deg);opacity:0}0%,100%{-webkit-transform-origin:right bottom;-ms-transform-origin:right bottom;transform-origin:right bottom}100%{-webkit-transform:rotate(0);-ms-transform:rotate(0);transform:rotate(0);opacity:1}}.rotateInUpRight{-webkit-animation-name:rotateInUpRight;animation-name:rotateInUpRight}@-webkit-keyframes rotateOut{0%{-webkit-transform:rotate(0);transform:rotate(0);opacity:1}0%,100%{-webkit-transform-origin:center center;transform-origin:center center}100%{-webkit-transform:rotate(200deg);transform:rotate(200deg);opacity:0}}@keyframes rotateOut{0%{-webkit-transform:rotate(0);-ms-transform:rotate(0);transform:rotate(0);opacity:1}0%,100%{-webkit-transform-origin:center center;-ms-transform-origin:center center;transform-origin:center center}100%{-webkit-transform:rotate(200deg);-ms-transform:rotate(200deg);transform:rotate(200deg);opacity:0}}.rotateOut{-webkit-animation-name:rotateOut;animation-name:rotateOut}@-webkit-keyframes rotateOutDownLeft{0%{-webkit-transform:rotate(0);transform:rotate(0);opacity:1}0%,100%{-webkit-transform-origin:left bottom;transform-origin:left bottom}100%{-webkit-transform:rotate(90deg);transform:rotate(90deg);opacity:0}}@keyframes rotateOutDownLeft{0%{-webkit-transform:rotate(0);-ms-transform:rotate(0);transform:rotate(0);opacity:1}0%,100%{-webkit-transform-origin:left bottom;-ms-transform-origin:left bottom;transform-origin:left bottom}100%{-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg);opacity:0}}.rotateOutDownLeft{-webkit-animation-name:rotateOutDownLeft;animation-name:rotateOutDownLeft}@-webkit-keyframes rotateOutDownRight{0%{-webkit-transform:rotate(0);transform:rotate(0);opacity:1}0%,100%{-webkit-transform-origin:right bottom;transform-origin:right bottom}100%{-webkit-transform:rotate(-90deg);transform:rotate(-90deg);opacity:0}}@keyframes rotateOutDownRight{0%{-webkit-transform:rotate(0);-ms-transform:rotate(0);transform:rotate(0);opacity:1}0%,100%{-webkit-transform-origin:right bottom;-ms-transform-origin:right bottom;transform-origin:right bottom}100%{-webkit-transform:rotate(-90deg);-ms-transform:rotate(-90deg);transform:rotate(-90deg);opacity:0}}.rotateOutDownRight{-webkit-animation-name:rotateOutDownRight;animation-name:rotateOutDownRight}@-webkit-keyframes rotateOutUpLeft{0%{-webkit-transform:rotate(0);transform:rotate(0);opacity:1}0%,100%{-webkit-transform-origin:left bottom;transform-origin:left bottom}100%{-webkit-transform:rotate(-90deg);transform:rotate(-90deg);opacity:0}}@keyframes rotateOutUpLeft{0%{-webkit-transform:rotate(0);-ms-transform:rotate(0);transform:rotate(0);opacity:1}0%,100%{-webkit-transform-origin:left bottom;-ms-transform-origin:left bottom;transform-origin:left bottom}100%{-webkit-transform:rotate(-90deg);-ms-transform:rotate(-90deg);transform:rotate(-90deg);opacity:0}}.rotateOutUpLeft{-webkit-animation-name:rotateOutUpLeft;animation-name:rotateOutUpLeft}@-webkit-keyframes rotateOutUpRight{0%{-webkit-transform:rotate(0);transform:rotate(0);opacity:1}0%,100%{-webkit-transform-origin:right bottom;transform-origin:right bottom}100%{-webkit-transform:rotate(90deg);transform:rotate(90deg);opacity:0}}@keyframes rotateOutUpRight{0%{-webkit-transform:rotate(0);-ms-transform:rotate(0);transform:rotate(0);opacity:1}0%,100%{-webkit-transform-origin:right bottom;-ms-transform-origin:right bottom;transform-origin:right bottom}100%{-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg);opacity:0}}.rotateOutUpRight{-webkit-animation-name:rotateOutUpRight;animation-name:rotateOutUpRight}@-webkit-keyframes slideInDown{0%{opacity:0;-webkit-transform:translateY(-2000px);transform:translateY(-2000px)}100%{-webkit-transform:translateY(0);transform:translateY(0)}}@keyframes slideInDown{0%{opacity:0;-webkit-transform:translateY(-2000px);-ms-transform:translateY(-2000px);transform:translateY(-2000px)}100%{-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0)}}.slideInDown{-webkit-animation-name:slideInDown;animation-name:slideInDown}@-webkit-keyframes slideInLeft{0%{opacity:0;-webkit-transform:translateX(-2000px);transform:translateX(-2000px)}100%{-webkit-transform:translateX(0);transform:translateX(0)}}@keyframes slideInLeft{0%{opacity:0;-webkit-transform:translateX(-2000px);-ms-transform:translateX(-2000px);transform:translateX(-2000px)}100%{-webkit-transform:translateX(0);-ms-transform:translateX(0);transform:translateX(0)}}.slideInLeft{-webkit-animation-name:slideInLeft;animation-name:slideInLeft}@-webkit-keyframes slideInRight{0%{opacity:0;-webkit-transform:translateX(2000px);transform:translateX(2000px)}100%{-webkit-transform:translateX(0);transform:translateX(0)}}@keyframes slideInRight{0%{opacity:0;-webkit-transform:translateX(2000px);-ms-transform:translateX(2000px);transform:translateX(2000px)}100%{-webkit-transform:translateX(0);-ms-transform:translateX(0);transform:translateX(0)}}.slideInRight{-webkit-animation-name:slideInRight;animation-name:slideInRight}@-webkit-keyframes slideOutLeft{0%{-webkit-transform:translateX(0);transform:translateX(0)}100%{opacity:0;-webkit-transform:translateX(-2000px);transform:translateX(-2000px)}}@keyframes slideOutLeft{0%{-webkit-transform:translateX(0);-ms-transform:translateX(0);transform:translateX(0)}100%{opacity:0;-webkit-transform:translateX(-2000px);-ms-transform:translateX(-2000px);transform:translateX(-2000px)}}.slideOutLeft{-webkit-animation-name:slideOutLeft;animation-name:slideOutLeft}@-webkit-keyframes slideOutRight{0%{-webkit-transform:translateX(0);transform:translateX(0)}100%{opacity:0;-webkit-transform:translateX(2000px);transform:translateX(2000px)}}@keyframes slideOutRight{0%{-webkit-transform:translateX(0);-ms-transform:translateX(0);transform:translateX(0)}100%{opacity:0;-webkit-transform:translateX(2000px);-ms-transform:translateX(2000px);transform:translateX(2000px)}}.slideOutRight{-webkit-animation-name:slideOutRight;animation-name:slideOutRight}@-webkit-keyframes slideOutUp{0%{-webkit-transform:translateY(0);transform:translateY(0)}100%{opacity:0;-webkit-transform:translateY(-2000px);transform:translateY(-2000px)}}@keyframes slideOutUp{0%{-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0)}100%{opacity:0;-webkit-transform:translateY(-2000px);-ms-transform:translateY(-2000px);transform:translateY(-2000px)}}.slideOutUp{-webkit-animation-name:slideOutUp;animation-name:slideOutUp}@-webkit-keyframes hinge{0%{-webkit-transform:rotate(0);transform:rotate(0)}0%,20%,60%{-webkit-transform-origin:top left;transform-origin:top left;-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}20%,60%{-webkit-transform:rotate(80deg);transform:rotate(80deg)}40%{-webkit-transform:rotate(60deg);transform:rotate(60deg)}40%,80%{-webkit-transform-origin:top left;transform-origin:top left;-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}80%{-webkit-transform:rotate(60deg)translateY(0);transform:rotate(60deg)translateY(0);opacity:1}100%{-webkit-transform:translateY(700px);transform:translateY(700px);opacity:0}}@keyframes hinge{0%{-webkit-transform:rotate(0);-ms-transform:rotate(0);transform:rotate(0)}0%,20%,60%{-webkit-transform-origin:top left;-ms-transform-origin:top left;transform-origin:top left;-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}20%,60%{-webkit-transform:rotate(80deg);-ms-transform:rotate(80deg);transform:rotate(80deg)}40%{-webkit-transform:rotate(60deg);-ms-transform:rotate(60deg);transform:rotate(60deg)}40%,80%{-webkit-transform-origin:top left;-ms-transform-origin:top left;transform-origin:top left;-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}80%{-webkit-transform:rotate(60deg)translateY(0);-ms-transform:rotate(60deg)translateY(0);transform:rotate(60deg)translateY(0);opacity:1}100%{-webkit-transform:translateY(700px);-ms-transform:translateY(700px);transform:translateY(700px);opacity:0}}.hinge{-webkit-animation-name:hinge;animation-name:hinge}@-webkit-keyframes rollIn{0%{opacity:0;-webkit-transform:translateX(-100%)rotate(-120deg);transform:translateX(-100%)rotate(-120deg)}100%{opacity:1;-webkit-transform:translateX(0)rotate(0);transform:translateX(0)rotate(0)}}@keyframes rollIn{0%{opacity:0;-webkit-transform:translateX(-100%)rotate(-120deg);-ms-transform:translateX(-100%)rotate(-120deg);transform:translateX(-100%)rotate(-120deg)}100%{opacity:1;-webkit-transform:translateX(0)rotate(0);-ms-transform:translateX(0)rotate(0);transform:translateX(0)rotate(0)}}.rollIn{-webkit-animation-name:rollIn;animation-name:rollIn}@-webkit-keyframes rollOut{0%{opacity:1;-webkit-transform:translateX(0)rotate(0);transform:translateX(0)rotate(0)}100%{opacity:0;-webkit-transform:translateX(100%)rotate(120deg);transform:translateX(100%)rotate(120deg)}}@keyframes rollOut{0%{opacity:1;-webkit-transform:translateX(0)rotate(0);-ms-transform:translateX(0)rotate(0);transform:translateX(0)rotate(0)}100%{opacity:0;-webkit-transform:translateX(100%)rotate(120deg);-ms-transform:translateX(100%)rotate(120deg);transform:translateX(100%)rotate(120deg)}}.rollOut{-webkit-animation-name:rollOut;animation-name:rollOut}