/*
Theme Name: Jump Start
Theme URI: http://www.wpjumpstart.com
Description: The Theme Blvd WordPress theme framework packed into a Parent theme framework.
Author: Theme Blvd
Author URI: http://www.themeblvd.com
Version: 1.2.4
License: GPL2
License URI: http://www.gnu.org/licenses/gpl-2.0.html
*/

/* =Primary Design and Structure
----------------------------------------------- */

/**
 * Most of these styles will most likely be overridden
 * These are meant to be as simple as possible in order
 * to setup a quick boxed layout.
 */

#container {
	/*background: #ffffff;
	margin: 0 auto;
	max-width: 1000px; /* 30 + 940 + 30 = 1,000px */
}

/* =Global Elements and Typography
-------------------------------------------------------------- */

html,
body {
	/* color: #666666; */
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-size: 13px;
	line-height: 1.5;
}
h1, h2, h3, h4, h5, h6 {
	/*font-weight: bold;*/
	line-height: 1.1;
	margin-top: 10px;
	margin-bottom: 10px;
}
h1 {
	font-size: 27px;
}
h2 {
	font-size: 24px;
}
h3 {
	font-size: 18px;
}
h4 {
	font-size: 14px;
}
h5 {
	font-size: 13px;
}
h6 {
	font-size: 11px;
	color: #999999;
	text-transform: uppercase;
}
a {
	color: #2a9ed4;
	text-decoration: none;
}
a:hover,
.tb-text-logo:hover,
.entry-title a:hover,
a:focus,
.tb-text-logo:focus,
.entry-title a:focus {
	color: #1a5a78;
	text-decoration: none;
}
p,
pre {
	margin-bottom: 1.38em;
}

/* =Content
----------------------------------------------- */

article {
	margin-bottom: 40px;
}

/* Titles */
.entry-title {
	margin: 0 0 10px 0;
}
.entry-title-with-meta {
	margin: 0;
}
.entry-title a {
	color: inherit;
	text-decoration: none;
}

/* Meta */
.entry-meta {
	color: #999999;
	font-size: 11px; /* Fallback for older browsers */
	font-size: .85rem;
	font-weight: bold;
	margin: 5px 2px 15px 2px;
}
.entry-meta .fa {
	padding-right: 5px;
}
.entry-meta .sep {
	color: #cccccc;
	font-weight: normal;
	padding: 0 7px;
}

/* Images */
img {
	max-width: 100%;
	height: auto;
}
img[class*="wp-image-"] {
	/* Style all inserted wp images. */
}
img.size-full {
	max-width: 100%;
	width: auto; /* Prevent stretching of full-size images in IE8 */
}
.entry-content img.wp-smiley {
	border: none;
	margin-bottom: 0;
	margin-top: 0;
	padding: 0;
}

/* =Top
-------------------------------------------------------------- */

#top {
	position: relative;
	padding: 0 30px;
}
#header_content {
	padding: 20px 0;
}

/* Text Logo */
.header_logo_text {
	padding: 0 15px;
}
.header_logo_text .tb-text-logo {
	font-size: 30px; /* Fallback for older browsers */
	font-size: 2.3rem;
	margin: 0;
}
.header_logo_text .tb-text-logo a {
	color: inherit;
}
.header_logo_text .tagline {
	color: #888888;
	font-style: italic;
	font-size: 13px; /* Fallback for older browsers */
	font-size: 1rem;
}

/* Primary Navigation */
#access {
	background-color: #fbfbfb;
	background-image: -moz-linear-gradient(top, #ffffff, #f5f5f5);
	background-image: -ms-linear-gradient(top, #ffffff, #f5f5f5);
	background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), to(#f5f5f5));
	background-image: -webkit-linear-gradient(top, #ffffff, #f5f5f5);
	background-image: -o-linear-gradient(top, #ffffff, #f5f5f5);
	background-image: linear-gradient(top, #ffffff, #f5f5f5);
	background-repeat: repeat-x;
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#f5f5f5', GradientType=0);
	border: 1px solid #dddddd;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
}

/* Level 1-3 */
#primary-menu li a {
	color: #666666;
}
#primary-menu li a .sf-sub-indicator {
	color: #999999; /* Because we're using fontawesome for the icons, we can change the color here. */
}

/* Level 1 only */
#primary-menu > li {
	border-right: solid 1px #dddddd;
}
#primary-menu > li > a {
	line-height: 40px; /* Shapes the HEIGHT of the 1st level anchors */
	padding: 0 20px;
}
#primary-menu > li:first-child > a {
	/* Round left corners of first anchor */
	-webkit-border-top-left-radius: 3px;
	-webkit-border-bottom-left-radius: 3px;
	-moz-border-radius-topleft: 3px;
	-moz-border-radius-bottomleft: 3px;
	border-top-left-radius: 3px;
	border-bottom-left-radius: 3px;
}
#primary-menu > li.current_page_item > a {
	/* Style current active menu item on 1st level */
	background: #ffffff;
}
#primary-menu > li.current-menu-ancestor > a {
	/* Style current parent menu item present on 1st level */
}
#primary-menu > li > a.sf-with-ul {
	/* If a top-level menu item has a dropdown, reduce its right padding. */
	padding-right: 12px;
}
#primary-menu > [class^="menu-icon-"] > a {
	/* If a top-level menu item has a an icon, reduce its left
	padding. You can add icons to main menu by adding class "menu-icon-{whatever}" */
	padding-left: 12px;
}
#primary-menu > li > a:hover {
	background: #f2f2f2;
}

/* Level 2 and 3 */
#primary-menu ul {
	background: #ffffff;
	border: 1px solid #dddddd;
	width: 200px; /* Width of dropdown menus */
}
#primary-menu li li a {
	padding: 7px 10px;
}
#primary-menu li li a:hover,
#primary-menu li li a:focus {
	background: #f2f2f2;
}
#primary-menu li li.nav-header {
	color: #888888; /* Slightly lighter color than links */
	font-size: .9em; /* Font size is 90% of everything else to componsate for being bold and uppercase */
	font-weight: bold;
	padding: 7px 10px;
	text-transform: uppercase;
}
#primary-menu li li.divider {
	background-color: #dddddd; /* Color of deviders */
	border-bottom: none; /* Override Bootstrap's default 1px white bottom border */
}

/* Level 2 only */
#primary-menu > li > ul {
	border-top: none;
	margin-left: -1px; /* Shifts dropdowns to the left 1px so they line up with left borders. */
	margin-top: 1px;
}

/* Level 3 only */
#primary-menu ul ul {
	left: 200px; /* Matches width of dropdown menus */
}

/* Make sure graphic nav shows when expanding window back from tablet size */
@media (min-width: 980px) {
	#access {
		height: auto !important;
		overflow: visible !important;
	}
}

/* =Featured (above)
-------------------------------------------------------------- */

#featured {
	padding: 10px 30px;
}

/* =Main
-------------------------------------------------------------- */

#main {
	padding: 20px 30px;
}

/* =Featured (below)
-------------------------------------------------------------- */

#featured_below {
	padding: 10px 30px;
}

/* =Posts (general)
----------------------------------------------- */

/* No style mods */

/* =Page
----------------------------------------------- */

/* No style mods */

/* =Post List
----------------------------------------------- */

/* No style mods */

/* =Post Grid
----------------------------------------------- */

.post_grid .entry-title {
	font-size: 15px; /* Fallback for older browsers */
	font-size: 1.15rem;
	line-height: 1.5em;
}

/* =Comments
----------------------------------------------- */

/* Comment List */
#comments li {
	margin: 5px 0;
}
#comments-title {
	padding: 0 10px;
}
#comments .commentlist {
	margin-bottom: 30px;
}
#comments .comment-body {
	border: 1px solid #dddddd;
	padding: 15px;
	padding-left: 83px;
	position: relative;
}
#comments .comment-body .avatar {
	position: absolute;
	top: 15px;
	left: 15px;
}
#comments .comment-author {
	line-height: 100%;
}
#comments .comment-body .says {
	display: none;
}
#comments .comment-body .comment-meta {
	margin-bottom: 10px;
}
#comments .comment-body .comment-meta a {
	color: #9e9e9e;
	font-family: Georgia, serif;
	font-size: 11px; /* Fallback for older browsers */
	font-size: .85rem;
	font-style: italic;
}
#comments .comment-body .fn {
	display: block;
	font-style: normal;
	font-weight: bold;
	margin-top: 5px;
}
#comments .comment-body p {
	margin-bottom: 30px;
}
#comments .comment-body .reply a {
	position: absolute;
	right: 5px;
	bottom: 5px;
}
#comments .comment-body .reply a:hover,
#comments .comment-body .reply a:focus {
	background: #dddddd;
}

/* Admin Comment */
#comments .bypostauthor > .comment-body,
#comments .bypostauthor > .comment-body .reply a {
	/* None in this theme */
}
#comments .bypostauthor > .comment-body .reply a:hover {
	/* None in this theme */
}

/* Top Level */
#comments ol {
	list-style: none;
	padding: 0;
}

/* Children */
#comments ul.children {
	border-left: 1px solid #e9e9e9;
	list-style: none;
	margin: 10px 0 10px 15px;
	padding: 10px 0 10px 20px;
}

/* Comment Form */
.comment-form-wrapper {
	margin-bottom: 30px;
}
#reply-title {
	margin: 10px 0;
}
#commentform input.form-control {
	display: inline-block;
	margin-right: 10px;
	width: 40%;
}
#commentform textarea {
	width: 98%;
}
#commentform label {
	display: inline-block;
}
#commentform .form-submit {
	margin: 10px 0;
}
#commentform .form-allowed-tags {
	display: none;
}

/* =Widgets
----------------------------------------------- */

.widget ul {
	list-style: none;
	padding-left: 0;
}
.widget ul li {
	padding: 3px 0;
}

/* Widgets in columns element and fixed sidebars */
.fixed-sidebar .widget {
	margin: 0 0 30px 0;
}

/* Collapsible Widget Areas */
.widget-area-collapsible .widget {
	padding: 10px 0;
}

/* =Bottom
----------------------------------------------- */

#bottom {
	padding: 10px 30px;
}

/* Footer Columns */
#footer_content {
	border-top: 1px solid #eeeeee;
	border-bottom: 1px solid #eeeeee;
	padding: 30px 5px;
}

/* Copyright */
#footer_sub_content {
	color: #888888;
	font-size: 11px; /* Fallback for older browsers */
	font-size: .85rem;
	padding: 20px;
	text-align: center;
}
#footer_sub_content .footer-nav ul {
	margin: 0;
}
#footer_sub_content .footer-nav li {
	display: inline-block;
	list-style: none;
	padding: 0 5px;
}

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

/* General Elements */
.element {
	/* Style all elements in custom layouts. */
}
.element-columns {
	/* Style the "Columns" element. */
}
.element-content {
	/* Style the "Content" element. */
}
.element-divider {
	/* Style the "Divider" element. */
}
.element-headline {
	/* Style the "Headline" element. */
}
.element-post_grid_paginated {
	/* Style the "Post Grid (paginated)" element. */
}
.element-post_grid {
	/* Style the "Post Grid" element. */
}
.element-post_grid_slider {
	/* Style the "Post Grid Slider" element. */
}
.element-post_list_paginated {
	/* Style the "Post List (paginated)" element. */
}
.element-post_list {
	/* Style the "Post List" element. */
}
.element-post_list_slider {
	/* Style the "Post List Slider" element. */
}
.element-slider {
	/* Style the "Slider" element. */
}
.element-slogan {
	/* Style the "Slogan" element. */
}
.element-tabs {
	/* Style the "Tabs" element. */
}
.element-tweet {
	/* Style the "Tweet" element. */
}

/* Elements by location */
#featured .element {
	/* Style elements of a custom layout
	in the featured area ABOVE the content. */
}
#main .element {
	/* Style elements of a custom layout
	in the main content area. */
}
#featured_below .element {
	/* Style elements of a custom layout
	in the featured area BELOW the content. */
}

/* =Small Desktops
------------------------------------------------- */

@media (max-width: 1000px) {

	/* Primary Structure
	#container {
		max-width: 960px;
	}
	*/

}

/* =Optimized for Tablets
------------------------------------------------- */

@media (max-width: 992px) {

	/* Primary Structure
	#container {
		max-width: 748px;
	}
	*/
	#top,
	#featured,
	#main,
	#featured_below,
	#bottom {
		padding-right: 20px;
		padding-left: 20px;
	}

	/* Header */
	#branding {
		border-bottom: 1px solid #eeeeee;
	}
	#branding .header_logo {
		float: none;
		text-align: center;
	}

	/* Primary Navigation */
	
	.btn-navbar {
		border: 1px solid #eeeeee;
		border-bottom: none;
		-webkit-border-top-left-radius: 3px;
		-webkit-border-top-right-radius: 3px;
		-moz-border-radius-topleft: 3px;
		-moz-border-radius-topright: 3px;
		border-top-left-radius: 3px;
		border-top-right-radius: 3px;
		color: #666666;
		display: inline-block;
		outline: none;
		margin-left: 5px;
		padding: 4px 10px;
	}

}

/* =Optimized for Mobile Devices
------------------------------------------------- */

@media (max-width: 767px) {

	/* Primary Structure
	#container {
		max-width: 480px;
	}
	*/

	/* Typography */
	h1 {
		font-size: 24px; /* Fallback for older browsers */
		font-size: 1.85rem;
		line-height: 1.3em;
	}

	/* Builder - Slogan */
	.element-slogan .tb-slogan {
		display: -webkit-box;
		display: -ms-flexbox;
		display: -webkit-flex;
		display: flex;
		-webkit-box-orient: vertical;
		-webkit-flex-direction: column;
		-ms-flex-direction: column;
		box-orient: vertical;
	}
	.element-slogan .tb-slogan .slogan-text {
		display: block;
		font-size: 17px; /* Fallback for older browsers */
		font-size: 1.3rem;
		text-align: center;
		-webkit-box-ordinal-group: 1;
		-ms-flex-order: 1;
		-webkit-order: 1;
		order: 1;
		margin-bottom: 20px;
	}
	.element-slogan .tb-slogan .btn-large {
		display: block;
		float: none;
		-webkit-box-ordinal-group: 2;
		-ms-flex-order: 2;
		-webkit-order: 2;
		order: 2;
	}
	.firefox .element-slogan .tb-slogan {
		display: block;
	}

	/* Builder - Divider */
	.divider-shadow {
		background-size:100%;
	}

	/* Posts */
	.attachment-small {
		width: 40%;
	}

	/* Comments */
	#comments {
		font-size: 11px; /* Fallback for older browsers */
		font-size: .85rem;
	}
	#comments .comment-body {
		padding: 2px 10px;
	}
	#comments .comment-author,
	#comments .comment-meta {
		padding-left: 35px;
	}
	#comments .comment-body .avatar {
		top: 5px;
		left: 5px;
		width: 30px;
		height: 30px;
	}
}

div.slider-text
{
	min-height:280px;
}
}
