/*
Theme Name: AMinstitute
Theme URI: http://underscores.me/
Author: Underscores.me
Author URI: http://underscores.me/
Description: Description
Version: 1.0-wpcom
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: aminstitute
Tags:

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.

 AMinstitute is based on Underscores http://underscores.me/, (C) 2012-2014 Automattic, Inc.

Resetting and rebuilding styles have been helped along thanks to the fine work of
Eric Meyer http://meyerweb.com/eric/tools/css/reset/index.html
along with Nicolas Gallagher and Jonathan Neal http://necolas.github.com/normalize.css/
and Blueprint http://www.blueprintcss.org/
*/

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
1.0 Reset
2.0 Typography
3.0 Elements
4.0 Forms
5.0 Navigation
	5.1 Links
	5.2 Menus
6.0 Accessibility
7.0 Alignments
8.0 Clearings
9.0 Widgets
10.0 Content
	10.1 Posts and pages
	10.2 Asides
	10.3 Comments
11.0 Infinite scroll
12.0 Media
	12.1 Captions
	12.2 Galleries
--------------------------------------------------------------*/

/*--------------------------------------------------------------
1.0 Reset
--------------------------------------------------------------*/
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, font, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
	border: 0;
	font-family: inherit;
	font-size: 100%;
	font-style: inherit;
	font-weight: inherit;
	margin: 0;
	outline: 0;
	padding: 0;
	vertical-align: baseline;
}

html {
	font-size: 62.5%; /* Corrects text resizing oddly in IE6/7 when body font-size is set using em units http://clagnut.com/blog/348/#c790 */
	overflow-y: scroll; /* Keeps page centered in all browsers regardless of content height */
	-webkit-text-size-adjust: 100%; /* Prevents iOS text size adjust after orientation change, without disabling user zoom */
	-ms-text-size-adjust:     100%; /* www.456bereastreet.com/archive/201012/controlling_text_size_in_safari_for_ios_without_disabling_user_zoom/ */
}

*,
*:before,
*:after { /* apply a natural box layout model to all elements; see http://www.paulirish.com/2012/box-sizing-border-box-ftw/ */
	-webkit-box-sizing: border-box; /* Not needed for modern webkit but still used by Blackberry Browser 7.0; see http://caniuse.com/#search=box-sizing */
	-moz-box-sizing:    border-box; /* Still needed for Firefox 28; see http://caniuse.com/#search=box-sizing */
	box-sizing:         border-box;
}

body {
	background: #fff; /* Fallback for when there is no custom background color defined. */
}

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

ol,
ul {
	list-style: none;
}

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

caption,
th,
td {
	font-weight: normal;
	text-align: left;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
	content: "";
}

blockquote,
q {
	quotes: "" "";
}

a:focus {
	outline: thin dotted;
}

a:hover,
a:active {
	outline: 0;
}

a img {
	border: 0;
}

/*--------------------------------------------------------------
2.0 Typography
--------------------------------------------------------------*/
body,
button,
input,
select,
textarea {
	color: #404040;
	font-family: 'Droid Sans', sans-serif;
	font-size: 14px;
	line-height: 24px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	clear: both;
}

.entry-content h2 {
	font-family: "Open Sans",sans-serif;
    font-size: 30px;
    font-weight: 300;
    line-height: 34px;
}

.entry-content h3 {
	font-family: Georgia,sans-serif;
    font-size: 24px;
    font-weight: bold;
    margin: 0 0 10px;
}

.entry-content h4 {
	font-family: Georgia,sans-serif;
    font-size: 18px;
    font-weight: bold;
}

p {
	margin-bottom: 1.5em;
}

p.small, .amlive-speakers ul li {
	font-size:13px !important;
	font-family: "Open Sans",sans-serif !important;
	line-height:20px !important;
	margin:0 !important;
}

.amlive-speakers p {margin:25px 0 0 0;}


b,
strong {
	font-weight: bold;
}

dfn,
cite,
em,
i {
	font-style: italic;
}

blockquote {
	margin: 0 1.5em;
}

address {
	margin: 0 0 1.5em;
}

pre {
	background: #eee;
	font-family: "Courier 10 Pitch", Courier, monospace;
	font-size: 15px;
	font-size: 1.5rem;
	line-height: 1.6;
	margin-bottom: 1.6em;
	max-width: 100%;
	overflow: auto;
	padding: 1.6em;
}

code,
kbd,
tt,
var {
	font: 15px Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
}

abbr,
acronym {
	border-bottom: 1px dotted #666;
	cursor: help;
}

mark,
ins {
	background: #fff9c0;
	text-decoration: none;
}

sup,
sub {
	font-size: 75%;
	height: 0;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}

sup {
	bottom: 1ex;
}

sub {
	top: .5ex;
}

small {
	font-size: 75%;
}

big {
	font-size: 125%;
}

/*--------------------------------------------------------------
3.0 Elements
--------------------------------------------------------------*/
hr {
	background-color: #ccc;
	border: 0;
	height: 1px;
	margin-bottom: 1.5em;
}

ul,
ol {
	margin: 0 0 1.5em 3em;
}

ul {
	list-style: disc;
}

ol {
	list-style: decimal;
}

li > ul,
li > ol {
	margin-bottom: 0;
	margin-left: 1.5em;
}

dt {
	font-weight: bold;
}

dd {
	margin: 0 1.5em 1.5em;
}

img {
	height: auto; /* Make sure images are scaled correctly. */
	max-width: 100%; /* Adhere to container width. */
}

figure {
	margin: 0;
}

table {
	margin: 0 0 1.5em;
	width: 100%;
}

th {
	font-weight: bold;
}

/*--------------------------------------------------------------
4.0 Forms
--------------------------------------------------------------*/
button,
input,
select,
textarea {
	font-size: 100%; /* Corrects font size not being inherited in all browsers */
	margin: 0; /* Addresses margins set differently in IE6/7, F3/4, S5, Chrome */
	vertical-align: baseline; /* Improves appearance and consistency in all browsers */
}

input[type="button"],
input[type="reset"]{
	border: 1px solid;
	border-color: #ccc #ccc #bbb;
	border-radius: 3px;
	background: #e6e6e6;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5), inset 0 15px 17px rgba(255, 255, 255, 0.5), inset 0 -5px 12px rgba(0, 0, 0, 0.05);
	color: rgba(0, 0, 0, .8);
	cursor: pointer; /* Improves usability and consistency of cursor style between image-type 'input' and others */
	-webkit-appearance: button; /* Corrects inability to style clickable 'input' types in iOS */
	font-size: 12px;
	font-size: 1.2rem;
	line-height: 1;
	padding: .6em 1em .4em;
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.8);
}

input[type="button"]:hover,
input[type="reset"]:hover{
	border-color: #ccc #bbb #aaa;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8), inset 0 15px 17px rgba(255, 255, 255, 0.8), inset 0 -5px 12px rgba(0, 0, 0, 0.02);
}

input[type="button"]:focus,
input[type="reset"]:focus,
input[type="button"]:active,
input[type="reset"]:active {
	border-color: #aaa #bbb #bbb;
	box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.5), inset 0 2px 5px rgba(0, 0, 0, 0.15);
}

input[type="checkbox"],
input[type="radio"] {
	padding: 0; /* Addresses excess padding in IE8/9 */
}

input[type="search"] {
	-webkit-appearance: textfield; /* Addresses appearance set to searchfield in S5, Chrome */
	-webkit-box-sizing: content-box; /* Addresses box sizing set to border-box in S5, Chrome (include -moz to future-proof) */
	-moz-box-sizing:    content-box;
	box-sizing:         content-box;
	width:100%;
}

input[type="search"]::-webkit-search-decoration { /* Corrects inner padding displayed oddly in S5, Chrome on OSX */
	-webkit-appearance: none;
}

input::-moz-focus-inner { /* Corrects inner padding and border displayed oddly in FF3/4 www.sitepen.com/blog/2008/05/14/the-devils-in-the-details-fixing-dojos-toolbar-buttons/ */
	border: 0;
	padding: 0;
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
textarea {
	color: #666;
	border: 1px solid #ccc;
	border-radius: 3px;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
textarea:focus {
	color: #111;
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"] {
	padding: 3px;
}

textarea {
	overflow: auto; /* Removes default vertical scrollbar in IE6/7/8/9 */
	padding-left: 3px;
	vertical-align: top; /* Improves readability and alignment in all browsers */
	width: 100%;
}

/*--------------------------------------------------------------
5.0 Navigation
--------------------------------------------------------------*/
/*--------------------------------------------------------------
5.1 Links
--------------------------------------------------------------*/
a {
	color: royalblue;
}

a:visited {
	color: purple;
}

a:hover,
a:focus,
a:active {
	color: midnightblue;
}

/*--------------------------------------------------------------
5.2 Menus
--------------------------------------------------------------*/
.main-navigation {
	clear: both;
	display: block;
	float: left;
	width: 100%;
	background:#1a9bf1;
}

.main-navigation .menu-menu-1-container,
.main-navigation .menu-main-menu-container {
	width:1000px;
	margin:auto;
}

.main-navigation ul {
	list-style: none;
	margin: 0;
	padding-left: 0;
}

.main-navigation li {
	float: left;
	position: relative;
}

.main-navigation a {
	display: block;
	text-decoration: none;
	background:#186ba4;
	padding:3px 15px;
	margin:10px 3px;
	color:#fff;
	border-radius:3px;
	text-transform:uppercase;
	font-size:12px;
	transition: all 0.5s ease;
}

.main-navigation ul ul {
	box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
	float: left;
	position: absolute;
	top: 1.5em;
	left: -999em;
	z-index: 99999;
}

.main-navigation ul ul ul {
	left: -999em;
	top: 0;
}

.main-navigation ul ul a {
	width: 200px;
}

.main-navigation ul ul li {

}

.main-navigation li:hover > a {
	background:#f57c2a;
}

.main-navigation ul ul :hover > a {
}

.main-navigation ul ul a:hover {
}

.main-navigation ul li:hover > ul {
	left: auto;
}

.main-navigation ul ul li:hover > ul {
	left: 100%;
}

.main-navigation .current_page_item > a,
.main-navigation .current-menu-item > a,
.main-navigation .current_page_ancestor > a {
	background:#f57c2a;
}

/* Small menu */
.menu-toggle {
	display: none;
}

@media screen and (max-width: 600px) {
	.menu-toggle,
	.main-navigation.toggled .nav-menu {
		display: block;
	}

	.main-navigation ul {
		display: none;
	}
}

.site-main .comment-navigation,
.site-main .paging-navigation,
.site-main .post-navigation {
	margin: 0 0 1.5em;
	overflow: hidden;
}

.comment-navigation .nav-previous,
.paging-navigation .nav-previous,
.post-navigation .nav-previous {
	float: left;
	width: 50%;
}

.comment-navigation .nav-next,
.paging-navigation .nav-next,
.post-navigation .nav-next {
	float: right;
	text-align: right;
	width: 50%;
}

/*--------------------------------------------------------------
6.0 Accessibility
--------------------------------------------------------------*/
/* Text meant only for screen readers */
.screen-reader-text {
	clip: rect(1px, 1px, 1px, 1px);
	position: absolute !important;
	height: 1px;
	width: 1px;
	overflow: hidden;
}

.screen-reader-text:hover,
.screen-reader-text:active,
.screen-reader-text:focus {
	background-color: #f1f1f1;
	border-radius: 3px;
	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	clip: auto !important;
	color: #21759b;
	display: block;
	font-size: 14px;
	font-weight: bold;
	height: auto;
	left: 5px;
	line-height: normal;
	padding: 15px 23px 14px;
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 100000; /* Above WP toolbar */
}

/*--------------------------------------------------------------
7.0 Alignments
--------------------------------------------------------------*/
.alignleft {
	display: inline;
	float: left;
	margin-right: 1.5em;
}

.alignright {
	display: inline;
	float: right;
	margin-left: 1.5em;
}

.aligncenter {
	clear: both;
	display: block;
	margin: 0 auto;
}

/*--------------------------------------------------------------
8.0 Clearings
--------------------------------------------------------------*/
.clear:before,
.clear:after,
.entry-content:before,
.entry-content:after,
.comment-content:before,
.comment-content:after,
.site-header:before,
.site-header:after,
.site-content:before,
.site-content:after,
.site-footer:before,
.site-footer:after {
	content: "";
	display: table;
}

.clear:after,
.entry-content:after,
.comment-content:after,
.site-header:after,
.site-content:after,
.site-footer:after {
	clear: both;
}

/*--------------------------------------------------------------
9.0 Widgets
--------------------------------------------------------------*/
.widget {
	margin: 0 0 1.5em;
}

/* Make sure select elements fit in widgets */
.widget select {
	max-width: 100%;
}

/* Search widget */
.widget_search .search-submit {
	display: none;
}

/*--------------------------------------------------------------
10.0 Content
--------------------------------------------------------------*/
/*--------------------------------------------------------------
10.1 Posts and pages
--------------------------------------------------------------*/
.sticky {
	display: block;
}

.hentry {
	margin: 0 0 1.5em;
}

.byline,
.updated:not(.published) {
	display: none;
}

.single .byline,
.group-blog .byline {
	display: inline;
}

.page-content,
.entry-content,
.entry-summary {
	margin: 1.5em 0 0;
}

.page-links {
	clear: both;
	margin: 0 0 1.5em;
}

/*--------------------------------------------------------------
10.2 Asides
--------------------------------------------------------------*/
.blog .format-aside .entry-title,
.archive .format-aside .entry-title {
	display: none;
}

/*--------------------------------------------------------------
10.3 Comments
--------------------------------------------------------------*/
.comment-content a {
	word-wrap: break-word;
}

.bypostauthor {
	display: block;
}

/*--------------------------------------------------------------
11.0 Infinite scroll
--------------------------------------------------------------*/
/* Globally hidden elements when Infinite Scroll is supported and in use. */
.infinite-scroll .paging-navigation, /* Older / Newer Posts Navigation (always hidden) */
.infinite-scroll.neverending .site-footer { /* Theme Footer (when set to scrolling) */
	display: none;
}

/* When Infinite Scroll has reached its end we need to re-display elements that were hidden (via .neverending) before */
.infinity-end.neverending .site-footer {
	display: block;
}

/*--------------------------------------------------------------
12.0 Media
--------------------------------------------------------------*/
.page-content img.wp-smiley,
.entry-content img.wp-smiley,
.comment-content img.wp-smiley {
	border: none;
	margin-bottom: 0;
	margin-top: 0;
	padding: 0;
}

/* Make sure embeds and iframes fit their containers */
embed,
iframe,
object {
	max-width: 100%;
}

/*--------------------------------------------------------------
12.1 Captions
--------------------------------------------------------------*/
.wp-caption {
	margin-bottom: 1.5em;
	max-width: 100%;
	font-family:'Droid Sans', sans-serif;
	font-size:10px;
	border:1px solid #ddd;
	padding:10px;
	line-height:16px;
	color:#aaa;
	background:#fafafa;
}

.wp-caption img[class*="wp-image-"] {
	display: block;
	margin: 0 auto;
}

.wp-caption-text {
	text-align: center;
	word-wrap: break-word;
}

.wp-caption .wp-caption-text {
	margin: 0.8075em 0;
}

/*--------------------------------------------------------------
12.2 Galleries
--------------------------------------------------------------*/
.gallery {
	margin-bottom: 1.5em;
}

.gallery-item {
	display: inline-block;
	text-align: center;
	vertical-align: top;
	width: 100%;
}

.gallery-columns-2 .gallery-item {
	max-width: 50%;
}

.gallery-columns-3 .gallery-item {
	max-width: 33.33%;
}

.gallery-columns-4 .gallery-item {
	max-width: 25%;
}

.gallery-columns-5 .gallery-item {
	max-width: 20%;
}

.gallery-columns-6 .gallery-item {
	max-width: 16.66%;
}

.gallery-columns-7 .gallery-item {
	max-width: 14.28%;
}

.gallery-columns-8 .gallery-item {
	max-width: 12.5%;
}

.gallery-columns-9 .gallery-item {
	max-width: 11.11%;
}

.gallery-caption {
	display: block;
}

/***CUSTOM***/
#page {
	width:100%;
}

.clear {clear:both;}

#headertop {
	background:#222222;
	padding:5px 0;
}

#headertop .widget {
	width:1000px;
	margin:auto;
}

#headertop .widget ul {
	margin:0;
	float:right;
}

#headertop .widget li {
	float:left;
	display:block;
	padding:0 0 0 20px;
}

#headertop .widget li a {
	color:#fff;
	text-decoration:none;
}

#headertop .widget li a:hover {
	text-decoration:underline;
}

header.site-header {
	width:1000px;
	margin:10px auto 0;
}

.site-branding h1.site-title {
	width:43%;
	float:left;
}

.site-branding .social {
	float:right;
	padding:25px 0 0;
}

.site-branding .social .widget {
	margin:0 0 5px 0;
}

.header-ads {
	float:left;
	margin:0;
}

.header-ads .widget {margin:0 !important;}

#learntop {
	background:#f5f5f5;
	border-bottom:1px solid #ccc;
}

#learntop .wrap {
	width:1000px;
	margin:auto;
	padding:40px 0;
}

#learntop .wrap .left {
	float:left;
	width:67%;
}

#learntop .wrap .left h1 {
	font-family:'Exo', sans-serif;
	color:#3a3939;
	font-size:50px;
	font-weight:800;
	line-height:50px;
	text-align:right;
}

#learntop .wrap .left p {
	text-align:right;
	margin:15px 0 0;
	font-size:16px;
}

#learntop .wrap a.btn-learnmore, a.btn-learnmore-page,
form.af-form-wrapper-write input[type="submit"] {
	float:right;
	background:url(images/learnmore-lrg.jpg);
	font-family:'Exo', sans-serif;
	color:#fff;
	border-radius:10px;
	font-size:36px;
	text-align:center;
	font-weight:800;
	text-transform:uppercase;
	padding:23px 28px;
	margin:20px 0 0;
	box-shadow:2px 2px 2px 0px #aaa;
	text-decoration:none;
	transition: all 0.5s ease;
}

a.btn-learnmore-page {
	color: #fff !important;
    display: block;
    float: none;
    height: 70px;
    margin: 20px auto;
    padding: 20px;
    text-decoration: none !important;
    width: 30%;
}

#learntop .wrap a.btn-learnmore:hover,
a.btn-learnmore-page:hover, form.af-form-wrapper-write input[type="submit"]:hover {
	background:url(images/learnmore-lrg-hover.jpg);
}

#umbrella {
	background:url(images/diag.png) repeat;
	border-bottom:1px solid #ccc;
}

#umbrella .wrap {
	width:1000px;
	margin:auto;
	padding:30px 0;
}

#umbrella .wrap .box {
	border-radius:5px;
	border:1px solid #ccc;
	padding:20px;
	background:#fff;
	width:23%;
	float:left;
	margin:0 26px 0 0;
}

#umbrella .wrap .last {margin:0 0 0 0;}

#umbrella .wrap .box img {
	display:block;
	margin:auto;
}

#umbrella .wrap .box h2 {
	font-family:'Exo', sans-serif;
	font-size:20px;
	font-weight:600;
	text-align:center;
	margin:10px 0;
}

#umbrella .wrap .box h2 span {
	font-family: 'Arvo', serif;
	text-transform:uppercase;
	font-size:32px;
	font-weight:700;
	letter-spacing:-2px;
	line-height:30px;
}

#umbrella .wrap .box h2 span.club {color:#f57c2a;}
#umbrella .wrap .box h2 span.events {color:#d52626;}
#umbrella .wrap .box h2 span.podcast {color:#501e81;}
#umbrella .wrap .box h2 span.academy {color:#59b563;}

#umbrella .wrap .box p {
	font-size:13px;
	text-align:center;
	color:#aaa;
	line-height:20px;
}

#umbrella .wrap .box a.learnmore-blue {
	background:#186ba4;
	text-align:center;
	border-radius:3px;
	padding:3px 10px;
	display:block;
	margin:auto;
	width:70%;
	color:#fff;
	text-decoration:none;
	font-size:12px;
	transition: all 0.5s ease;
}

#umbrella .wrap .box a.learnmore-blue:hover {
	background:#1a9bf1;
	box-shadow: 0 0 5px 0 #555;
}

#wrapper {
	width:1100px;
	margin:auto;	
	border-right:1px solid #ccc;
	border-left:1px solid #ccc;
}

#primary {
	width:72%;
	float:left;
	padding:20px;
	border-right:1px solid #ccc;
}

#secondary {
	width:28%;
	float:right;
	padding:20px 0;
}

article.post, article.page {
	border-bottom: 1px dashed #ccc;
    margin: 20px 0 40px;
    padding: 0 0 50px;
}

h1.entry-title a, h1.entry-title, h1.page-title {
	font-size:32px;
	font-weight:700;
	color:#222;
	text-decoration:none;
	letter-spacing:-1px;
	line-height: 42px;
	transition: all 0.5s ease;
}

h1.page-title {
	padding:20px 0 30px;
	border-bottom:1px dashed #ccc;
	margin:0 0 30px;
}

h1.page-title span {font-weight:normal;}
h1.page-title span:before {content:" '";}
h1.page-title span:after {content:"' ";}

.searchpage article {
	border-bottom:1px dashed #ccc;
	padding:0 0 40px;
	margin:0 0 40px;
}

h1.entry-title a:hover {
	color:#1a9bf1;
}

.entry-meta, .entry-footer {
	font-size:14px;
	font-family: "Open Sans",sans-serif;
	text-transform:uppercase;
}

.entry-content p a {
	color:#f7931e;
	text-decoration:underline;
	transition: all 0.5s ease;
	font-weight:700;
	text-transform: uppercase;
}

.entry-content p a:hover {
	text-decoration:none;
	color:#1a9bf1;
}

.entry-footer span {margin:0 10px 0 0;}
.entry-footer span a {
	background:#f7931e;
	padding:5px 10px;
	color:#fff;
	text-transform:uppercase;
}
.entry-footer span a:hover {background:#1a9bf1;color:#fff !important;}

.entry-meta a, .entry-footer a {
	color:#f7931e;
	font-weight:bold;
	text-decoration:none;
	transition: all 0.5s ease;
}

.entry-meta a:hover, .entry-footer a:hover {
	color:#1a9bf1;
}

a.authorphoto-avatar img{
	border: 6px solid #fff;
    border-radius: 100px;
    box-shadow: 0 0 0 1px #ccc;
    float: left;
    height: 100px;
    margin: -35px 0 0 -108px;
    width: 100px;
	transition: all 0.5s ease;
}

a img.authorphoto-avatar:hover {
	 box-shadow: 0 0 5px 5px #ccc;
}

.addthis_toolbox {
	border-top:1px solid #ccc;
	border-bottom:1px solid #ccc;
	padding:10px 0 5px;
	margin-bottom:30px !important;
}

.excerpt {
	padding-bottom:50px;
	margin-bottom:50px;
	border-bottom:1px dashed #ccc;
}

.excerpt .read-more, .searchpage article .entry-summary p a.read-more {
	background:#1a9bf1;
	color: #fff;
    display: block;
    float: right;
    font-size: 12px;
    padding: 5px 10px;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    width: 90px;
	margin:50px 0 20px;
}

.excerpt .read-more:hover,
 .searchpage article .entry-summary p a.read-more {background:#f7931e;}

#secondary .widget h1.widget-title {
	font-family:'Exo', sans-serif;
	font-size:24px;
	font-weight:800;
	border-bottom:1px solid #ccc;
	padding:10px;
}

#secondary .widget {
	margin:20px 0 30px 0;
}

#secondary .widget ul {
	margin:0;
	list-style:none;
}

#secondary .widget ul li a {
	border-bottom:1px dashed #ddd;
	display:block;
	padding:5px 10px;
	text-decoration:none;
	color:#f57c2a;
	font-size:13px;
	transition: all 0.5s ease;
	font-family: "Droid Sans",sans-serif;
}

#secondary .widget ul li a:hover {
	color:#1a9af1;
	margin-left:5px;
}

#secondary .widget  .textwidget {margin-top:15px;}

a.bannerads img {border:2px solid #eee;}
a.bannerads img:hover {border:2px solid #aaa;box-shadpw:0 0 5px 5px #aaa;}

.af-form-wrapper {
	background:url(images/jointhousands.jpg) no-repeat;
	width:280px;
	height:400px;
	margin:auto;
	padding:230px 0 0;
}

form.af-form-wrapper .af-form {
	width:90%;
	margin:auto;
}

form.af-form-wrapper .af-form input[type="text"] {
	width:100%;
	margin-bottom:10px;
}

form.af-form-wrapper .af-form input[type="submit"] {
	background: url("images/learnmore-lrg.jpg") repeat scroll 0 0 rgba(0, 0, 0, 0);
    border-radius: 10px;
    color: #fff;
    float: right;
    font-family: "Exo",sans-serif;
    font-size: 16px;
    font-weight: 800;
    margin: 10px 0 0;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.5s ease 0s;
	text-shadow:0;
	border:0;
	cursor:pointer;
}

form.af-form-wrapper .af-form input[type="submit"]:hover {
	box-shadow:0 0 5px 0px #333;
}

.paging-navigation {
	padding:20px;
	background:#f0f0f0;
}

.nav-previous a, .nav-next a {
	background:#1a9bf1;
	font-family:'Droid Sans',sans-serif;
	color:#fff;
	text-transform:uppercase;
	padding:10px 25px;
	display:block;
	width:75%;
	text-decoration:none;
	font-weight:800;
	transition: ease 0.5s all;
}

.nav-previous a:hover, .nav-next a:hover {
	background:#f7931e;
}

.nav-next a {float:right;}
.nav-previous a {float:left;}

img.roundphoto {
	border-radius:100px;
	border:6px solid #fff;
	box-shadow:0 0 5px 0 #aaa;
}

a.creative, a.jthorn, a.indie, a.advantage {
	background:url(http://authormarketinginstitute.com/wp-content/uploads/2014/10/benefactsite.jpg);
	display:block;
	margin:auto;
}

a.creative {width:308px;height:131px;}
a.creative:hover {background-position:top right;}

a.jthorn {width:308px;height:131px;background-position:0 -134px;}
a.jthorn:hover {background-position:308px -134px;}

a.indie {width:308px;height:95px;background-position:0 -265px;}
a.indie:hover {background-position:308px -265px;}

a.advantage {width:308px;height:120px;background-position:0 120px;}
a.advantage:hover {background-position:308px 120px;}

a.benefact img {
    display: block;
    margin: 20px auto;
	padding-bottom:20px;
    transition: all 0.5s ease 0s;
    border-bottom:1px dashed #ccc;
	filter: url("data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\'><filter id=\'grayscale\'><feColorMatrix type=\'matrix\' values=\'1 0 0 0 0, 0 1 0 0 0, 0 0 1 0 0, 0 0 0 1 0\'/></filter></svg>#grayscale");
    opacity: 1;
}

a.benefact img:hover {
	filter: url("data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\'><filter id=\'grayscale\'><feColorMatrix type=\'matrix\' values=\'0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0\'/></filter></svg>#grayscale");
}

.landingpage h1.entry-title {
	text-align:center;
	color:#1a9bf1;
	text-transform:uppercase;
	font-size:68px;
	line-height:78px;
}

.landingpage h1.header {
	font-family: "Open Sans",sans-serif;
    font-size: 50px;
    font-weight: 300;
    line-height: 60px;
    margin: 0 0 20px;
	text-align:center;
}

.landingpage .entry-content p {
	font-size:18px;
	line-height:32px;
}

.landingpage .emailbox form {
	width:100%;
}

.landingpage .emailbox form input[type="text"] {
	width:90%;
	font-size:24px;
	padding:20px;
	color:#ddd;
	margin:0 10px 0 0;
	font-family: "Open Sans",sans-serif;
	border:30px solid #f0f0f0;
	margin:auto;
	display:block;
}

a.accessbtn {width:70% !important;}

.landingpage .emailbox form input[type="submit"] {
	cursor:pointer;
	font-weight:bold;
	width:60% !important;
	margin:0 auto !important;
	text-transform:uppercase;
	font-size:46px !important;
}

.landingpage a.watchvideo, a.accessbtn,
.landingpage .emailbox form input[type="submit"] {
	font-size:50px;
	color:#fff !important;
	text-align:center;
	padding:40px 20px;
	display:block;
	width:50%;
	text-decoration:none !important;
	margin:40px auto;
	-moz-box-shadow:inset 0px 1px 0px 0px #f29c93;
	-webkit-box-shadow:inset 0px 1px 0px 0px #f29c93;
	box-shadow:inset 0px 1px 0px 0px #f29c93;
	background-color:#c44a2e;
	-webkit-border-top-left-radius:6px;
	-moz-border-radius-topleft:6px;
	border-top-left-radius:6px;
	-webkit-border-top-right-radius:6px;
	-moz-border-radius-topright:6px;
	border-top-right-radius:6px;
	-webkit-border-bottom-right-radius:6px;
	-moz-border-radius-bottomright:6px;
	border-bottom-right-radius:6px;
	-webkit-border-bottom-left-radius:6px;
	-moz-border-radius-bottomleft:6px;
	border-bottom-left-radius:6px;
	border:1px solid #d83526;
	text-shadow:1px 1px 0px #b23e35;
}

.landingpage a.watchvideo:hover, a.accessbtn:hover,
.landingpage .emailbox form input[type="submit"]:hover {
	background-color:#b73125;
	color:#fff;
}

.post-page h1.entry-title,
.post-page h1.entry-title a {
	font-family: "Open Sans",sans-serif;
    font-size: 50px;
    font-weight: 300;
    line-height: 60px;
    margin: 0 0 20px;
}

.post-page p, .post-page li {
	font-size:18px;
	line-height:30px;
	font-family:Georgia, sans-serif;
}

.post-page p strong {
	/*font-family: "Open Sans",sans-serif;
    font-size: 30px;*/
    font-weight: bold;
    line-height: 40px;
}

.courseslist {
	padding:20px 0;
	border-top:1px dashed #ddd;
}

.courseslist a img.alignleft {
	float:left;
	margin:0 10px 0 0;
	border:3px solid #fff;
	transition: all 0.5s ease;
}

.courseslist a img.alignleft:hover {
	box-shadow: 0 0 5px 0 #aaa;
}

.courseslist .text {
	float:left;
	width:55%;
}

.courseslist .text h3 {margin-top:5px;}

.courseslist .text h3 a {
	font-family: "Exo",sans-serif;
	color:#1a9bf1;
	font-size:26px;
	text-decoration:none;
	font-weight:800;
	transition: all 0.5s ease;
}

.courseslist .text h3 a:hover {color:#f7931e;}

h2.itunesreview {
	font-family: "Exo",sans-serif;
	color:#fff;
	background:#ccc;
	padding:10px;
	margin-bottom:10px;
	font-size:20px;
}

.reviews {
	padding-bottom:30px;
	margin-bottom:30px;
	box-shadow: 0 10px 10px -10px #ccc;
}

.reviews strong {font-size:18px;}

.reviews p, .reviews p strong {
	font-family:Georgia, sans-serif;
	font-size:15px;
	line-height:24px;
	font-style:italic;
}

.reviews div span.rating-star {
	background: url(images/rating_star.png) no-repeat scroll 0 0 / 100% auto rgba(0, 0, 0, 0);
    display: block;
    float: left;
    height: 11px;
    margin-right: 2px;
    width: 11px;
}

footer.site-footer {
	background:#222121;
	width:100%;
}

footer.site-footer .site-info {
	width:1000px;
	margin:auto;
	padding:30px 0;
}

footer.site-footer .site-info .widget {
	float:left;
	width:23%;
	margin:0 26px 0 0;
}

footer.site-footer .site-info .widget:last-child {
	margin:0 !important;
}

footer.site-footer .site-info .widget h3 {
	color:#fff;
	font-family:'Exo', sans-serif;
	font-weight:600;
	text-transform:uppercase;
}

footer.site-footer .site-info .widget ul {
	margin:0;
	list-style:none;
}

footer.site-footer .site-info .widget ul li a {
	color:#585858;
	font-size:13px;
	display:block;
	text-decoration:none;
	transition: all 0.5s ease;
}

footer.site-footer .site-info .widget ul li a:hover {
	color:#fff;
}

footer.site-footer p a {
	color:#fff;
	transition: all 0.5s ease;
	text-decoration:none;
}

footer.site-footer p a:hover {
	text-decoration:underline;
}

footer.site-footer .site-info .widget .textwidget {
	color:#585858;
	font-size:13px;
}

@media only screen 
and (min-width : 768px) 
and (max-width : 1124px) {
	#page, #headertop, #headertop .widget,
	.main-navigation .menu-menu-1-container,
	.main-navigation .menu-main-menu-container,
	#learntop, #learntop .wrap, header.site-header,
	#wrapper, #umbrella .wrap, .site-footer,
	.site-info {
		width:auto !important;
	}
	
	#headertop .widget {padding: 0 20px;}
	header.site-header {padding:20px;}
	
	.header-ads {float:none !important;}
	
	#learntop .wrap {padding:40px;}
	#learntop .wrap .left {width:55%;}
	#learntop .wrap .left h1 {font-size:40px;}
	#learntop .wrap a.btn-learnmore {width:38%;font-size:29px;margin-top:30px;}
	
	#umbrella .wrap .box {margin:30px 10px;width:22%;}
	#umbrella .wrap .first {margin-left:25px;}
	#umbrella .wrap .box h2 span {font-size:20px;}
	
	#primary, #secondary, #wrapper {border-left:0;border-right:0;width:100%;}
	
	.authorphoto-avatar {display:none;}
	
	.site-footer {padding:20px 30px;}
	.site-footer .site-info .widget {width:22% !important;}
}

/**iphone5 iphone6 nexus**/
@media only screen 
and (min-width : 568px)
and (min-width : 375px)
and (min-width : 384px)
and (min-width : 414px) {
	.header-ads {float:none !important;clear:both;}
	.header-ads img {display:block;margin:auto;}
	.header-ads a img {display:block;margin:auto;}
}

@media only screen 
and (min-width : 1024px) {
	.site-branding h1.site-title {width:41%;}
	.header-ads img, .header-ads a img {float:left;margin-top:15px;}
	.header-ads {clear:none !important;}
}

/* @media only screen 
and (min-width : 768px) {
	.site-branding h1.site-title {display: block !important; float: left !important;
		margin: auto !important;width: 50% !important;}
	.header-ads {float:none !important;clear:none !important;margin-top:0;}
} */

/**iphone6 portrait**/
@media only screen 
and (min-width : 375px) {
	.header-ads {float:none !important;clear:both;}
	.header-ads img, .header-ads a img{display:block;margin:auto;}
}

@media only screen 
and (min-width : 762px) 
and (max-width : 955px) {
	#umbrella .wrap .box {width:43%;margin:20px 20px 20px 20px;}
	#umbrella .wrap {padding:30px;}
}

@media only screen 
and (min-width : 480px) 
and (max-width : 768px) {
	#page, #headertop, #headertop .widget,
	.main-navigation .menu-menu-1-container,
	.main-navigation .menu-main-menu-container,
	#learntop, #learntop .wrap, header.site-header,
	#wrapper, #umbrella .wrap, .site-footer,
	.site-info {
		width:auto !important;
	}
	
	.main-navigation {padding:10px;}
	
	.site-branding h1.site-title {float:none;margin:auto;display:block;width:100%;}
	.site-branding h1.site-title a img {margin:auto;display:block;}
	.social {margin:auto;floaT:none !important;width:45%;display:block;}
	.social input {width:100%;}
	.smw_right {text-align:center;float:none !important;}
	
	#headertop .widget {padding: 0 20px;}
	header.site-header {padding:20px;}
	
	#learntop .wrap {padding:40px;}
	#learntop .wrap .left {width:100%;clear:both;float:none;margin-bottom:30px;}
	#learntop .wrap .left h1 {font-size:50px;text-align:center;}
	#learntop .wrap .left p {text-align:center;font-size:24px;line-height:30px;}
	#learntop .wrap a.btn-learnmore {width:70%;font-size:29px;margin:auto;display:block;float:none;}

	#umbrella .wrap .box {width:100%;margin:10px 0;}
	#umbrella .wrap {padding:20px;}
	
	#primary, #secondary, #wrapper {border-left:0;border-right:0;width:100%;}
	
	.authorphoto-avatar {display:none;}
	
	.site-info {padding:0 !important;}
	.site-footer {padding:20px 30px;}
	.site-footer .site-info .widget {width:42% !important;margin-bottom:30px !important;}
}

@media only screen 
and (min-width : 480px) 
and (max-width : 599px) {
	.menu-toggle, .main-navigation.toggled .nav-menu {
		background: none repeat scroll 0 0 #186ba4;
		border-radius: 3px;
		color: #fff;
		display: block;
		font-size: 12px;
		margin: 10px 3px;
		padding: 3px 15px;
		text-decoration: none;
		text-transform: uppercase;
		transition: all 0.5s ease 0s;
		border:0;
		cursor:pointer;
	}
}

@media only screen 
and (min-width : 320px) 
and (max-width : 480px) {
	#page, #headertop, #headertop .widget,
	.main-navigation .menu-menu-1-container,
	.main-navigation .menu-main-menu-container,
	#learntop, #learntop .wrap, header.site-header,
	#wrapper, #umbrella .wrap, .site-footer,
	.site-info {
		width:auto !important;
	}
	
	.main-navigation {padding:10px;}
	.menu-toggle, .main-navigation.toggled .nav-menu {
		background: none repeat scroll 0 0 #186ba4;
		border-radius: 3px;
		color: #fff;
		display: block;
		font-size: 12px;
		margin: 10px 3px;
		padding: 3px 15px;
		text-decoration: none;
		text-transform: uppercase;
		transition: all 0.5s ease 0s;
		border:0;
		cursor:pointer;
	}
	
	#headertop .widget {padding: 0 20px;}
	header.site-header {padding:20px;}
	
	.site-branding h1.site-title {float:none;margin:auto;display:block;width:100%;}
	.site-branding h1.site-title a img {margin:auto;display:block;width:100%;}
	.social {margin:auto;floaT:none !important;width:80%;display:block;}
	.social input {width:100%;}
	.smw_right {text-align:center;float:none !important;}
	
	#learntop .wrap {padding:40px;}
	#learntop .wrap .left {width:100%;clear:both;float:none;margin-bottom:30px;}
	#learntop .wrap .left h1 {font-size:50px;text-align:center;}
	#learntop .wrap .left p {text-align:center;font-size:24px;line-height:30px;}
	#learntop .wrap a.btn-learnmore {padding:15px 20px;width:90%;font-size:24px;margin:auto;display:block;float:none;}

	#umbrella .wrap .box {width:100%;margin:10px 0;}
	#umbrella .wrap {padding:20px;}
	
	#primary, #secondary, #wrapper {border-left:0;border-right:0;width:100%;}
	
	.authorphoto-avatar {display:none;}
	
	.site-info {padding:0 !important;}
	.site-footer {padding:20px 30px;}
	.site-footer .site-info .widget {width:100% !important;margin-bottom:30px !important;}
}


form.af-form-wrapper-write {
	background:#eee;
	padding:20px;
	width:55%;
	margin:auto;
}

form.af-form-wrapper-write input[type="text"] {
	font-size:18px;
	padding:15px;
	float:left;
	width:70%;
}

form.af-form-wrapper-write input[type="submit"] {
	font-size: 24px;
	padding: 14px 28px;
	float:left;
	margin:0 0 0 10px;
	cursor:pointer;
	border:0;
}

.amlivetraining h1 {
	color: #f04923;
    font-family: "Oswald",sans-serif;
    font-size: 40px;
    font-weight: 700;
	text-transform:uppercase;
	text-align:center;
	line-height: 50px;
	margin-bottom:40px;
}

#featured-virtual {
    background: url("http://authormarketinglive.com/wp-content/themes/amlive/images/featured-bg-virtual.jpg") repeat scroll 0 0 rgba(0, 0, 0, 0) !important;
    height: 550px !important;
}

#featured-virtual .right {
    float: right;
    padding: 30px 0;
    width: 60%;
}

#featured-virtual .right h2,
#featured-virtual h2 {
    box-shadow: 0 0 0 0;
    color: #fff;
    font-size: 46px;
    margin-bottom: 20px;
    padding-top: 50px;
    text-align: center;
    text-shadow: 2px 2px #000;
	font-family: "Oswald",sans-serif;
	text-transform:uppercase;
	line-height:56px;
}

#featured-virtual h1 {
	text-align:center;
	text-align: center;
    text-shadow: 2px 2px #000;
	font-family: "Oswald",sans-serif;
	font-size: 100px;
	color:#fff;
	text-transform:uppercase;
	line-height:100px;
	padding-top:50px;
}
#featured-virtual h2  {font-size:60px;line-height:60px;padding-top:0 !important;}

#featured-virtual .right h3 {
    color: #fff;
    font-size: 23px;
    text-align: center;
	font-family: "Open Sans",sans-serif;
}
#featured-virtual .right a.access {
	background: none repeat scroll 0 0 #001d31;
    color: #fff;
    display: block;
    font-family: "Oswald",sans-serif;
    font-size: 32px;
    margin: 20px auto 0;
    padding: 20px 30px;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    width: 62%;
	transition: all 0.5s ease;
}
#featured-virtual .right a.access:hover {
	background:#f04923;
}

.testimonials {
    box-shadow: 0 10px 15px -15px #ccc;
    margin-bottom: 80px;
    padding-bottom: 30px;
	font-family: "Open Sans",sans-serif;
    font-size: 18px;
    font-weight: 300;
}
.testimonials p.name {
    color: #0066b3;
    font-size: 32px;
    font-weight: bold;
    letter-spacing: -3px;
    text-align: right;
    text-transform: uppercase;
}
p.sessiontitle {
    font-size: 30px;
    letter-spacing: -1px;
    line-height: 40px;
}
p.sessiontitle strong {
    color: #f04923;
}
p.sessiontitle em {
    font-family: Georgia,sans-serif;
}
img.imgroundleft {
    border-radius: 100px;
    box-shadow: 0 0 25px 0 #aaa;
    float: left;
}
.fitcontent {
    margin: 40px auto 30px;
}
.speaker, .container {
    margin: 30px 0 50px;
}
.speakerphoto {
    float: left;
    margin-bottom: 40px;
    min-height: 290px;
    padding: 0 45px;
    width: 325px;
}
.speakerphoto img {
    border-radius: 100px;
    box-shadow: 0 0 10px 0 #555;
    display: block;
    filter: url("data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\'><filter id=\'grayscale\'><feColorMatrix type=\'matrix\' values=\'1 0 0 0 0, 0 1 0 0 0, 0 0 1 0 0, 0 0 0 1 0\'/></filter></svg>#grayscale");
    height: 150px;
    margin: 0 auto 20px;
    opacity: 1;
    transition: all 0.5s ease 0s;
    width: 150px;
}
.speakerphoto img:hover {
    filter: url("data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\'><filter id=\'grayscale\'><feColorMatrix type=\'matrix\' values=\'0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0\'/></filter></svg>#grayscale");
}
.speakerphoto h5 {
    color: #0066b3;
    font-family: "Open Sans",sans-serif;
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 -5px !important;
    text-align: center;
}
.speakerphoto p.company {
    color: #666666;
    font-family: "Open Sans",serif;
    font-size: 13px;
    line-height: 20px;
    margin: 10px 0 0;
    text-align: center;
	font-weight:bold;
}
.speakerphoto p.company a {
    background: none repeat scroll 0 0 #f04923;
    border-radius: 5px;
    color: #fff;
    font-family: "Open Sans",sans-serif;
    font-size: 10px;
    padding: 5px 10px;
}
.speakerphoto p.company a:hover {
    background: none repeat scroll 0 0 #0066b3;
}
.amlivetraining .widget {
    background: none repeat scroll 0 0 #f04923;
    border-radius: 200px;
    float: left;
    height: 250px;
    margin: 20px 19px 0 0;
    text-align: center;
    transition: all 0.5s ease 0s;
    width: 250px;
}
.amlivetraining #text-5 {
    margin-right: 0 !important;
}
.amlivetraining .widget:hover {
    background: none repeat scroll 0 0 #0066b3;
    box-shadow: 0 0 15px 10px #ccc;
}
.amlivetraining .widget h3 {
    color: #fff;
    font-family: "Oswald",sans-serif;
    font-size: 30px;
    padding: 50px 0 0;
	margin:0;
	line-height:30px;
    text-transform: uppercase;
}
.amlivetraining .widget .textwidget {
    color: #fff;
    font-family: "Open Sans",sans-serif;
    font-weight: 300;
    padding: 10px 20px 0;
    text-align: center;
}
.speaker, .container {
    margin: 30px 0 50px;
    padding: 0 40px;
}
p.sessiontitle {
    font-size: 30px !important;
    letter-spacing: -1px;
    line-height: 40px;
}
p.sessiontitle strong {
    color: #f04923;
}
p.sessiontitle em {
    font-family: Georgia,sans-serif;
}
.speaker h2 {
    box-shadow: 0 10px 30px -20px #cccccc;
    color: #f04923;
    font-family: "Oswald",sans-serif;
    font-size: 40px;
    font-weight: 700;
    letter-spacing: 0;
    margin-bottom: 40px;
    padding: 10px 0;
    text-align: center;
    text-transform: uppercase;
}

a.goback {
	background:#f57c2a;
	padding:20px 30px;
	font-size:34px;
	color:#fff;
	text-align:center;
	width:40%;
	margin:30px auto;
	display:block;
	text-decoration:none;
	font-family: "Exo",sans-serif;
	transition: all 0.5s ease;
}

a.goback:hover {background:#000;color:#fff;}

#romance .top {
	background:url(images/romance-bg.jpg)no-repeat center center scroll; 
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	padding: 0 0 270px;  
}

#romance .top .topwrap {
	width:1100px;
	margin:auto;
	padding: 0;
}

#romance .top .topwrap .left {
	float:left;
	width:65%;
}

#romance .top .topwrap .left h1 {
	color: #fff;
    font-family: "Exo",sans-serif;
    font-size: 68px;
    font-weight: 900;
    line-height: 60px;
    text-shadow: 1px 1px 5px #999;
    text-transform: uppercase;
	padding:40px 0 0;
}

#romance .top .left h2 {
	color: #fff;
    font-size: 20px;
    font-weight: 400;
    line-height: 30px;
    padding: 10px 0 0;
    text-shadow: 1px 1px 5px #999;
    width: 88%;
}

#romance .fact {
	background:#e53b3b;
	padding:50px;
	color:#fff;
}

#romance .fact .factwrap,
#romance .romancewrap {
	width:1200px;
	margin:auto;
}

#romance .romancewrap {padding:140px 0 0;}

#romance .fact .factwrap h1,
#romance .fact .factwrap h2,
#romance .romancewrap h1 {
	font-family:'Open Sans', sans-serif;
	font-size:36px;
	line-height:40px;
	text-align:center;
	font-weight:700;
	text-transform:uppercase;
}

#romance .fact .factwrap h2 {
	font-size:20px;
	line-height:26px;
}

#romance .fact .factwrap p {
	margin-top:40px;
	text-align:center;
}

#romance .romancewrap h1 {
	font-family: 'Exo', sans-serif;
	font-size:46px;
	line-height:50px;
	font-weight:800;
	margin-bottom:80px;
}

#romance .romancewrap .powerpack h2 {
	font-size:40px;
	font-weight:700;
	line-height:50px;
	margin-bottom:10px;
	margin-top:50px;
	text-transform:uppercase;
	font-family:'Armata', sans-serif;
	letter-spacing:-2px;
}

#romance .romancewrap .powerpack {
	margin-bottom:80px;
}

#romance .romancewrap .powerpack .left {
	width:50%;
	float:right;
}

#romance .romancewrap .powerpack .right {
	width:50%;
	float:left;
}

#romance .romancewrap .powerpack h3 {
	font-size:24px;
	font-family:'Open Sans', sans-serif;
	line-height:34px;
	font-weight:300;
	color:#888;
}

#romance .romancewrap .powerpack p {
	font-family:'Open Sans', sans-serif;
	font-weight:300;
	color:#888;
}

a.romance-btn {
	background: none repeat scroll 0 0 #ff47c1;
    color: #fff !important;
    display: block;
    font-family: "Exo",sans-serif;
    font-size: 50px;
    font-weight: 800 !important;
    margin: 80px auto;
    padding: 20px 40px;
    text-align: center;
    width: 50%;
	line-height:50px;
	text-decoration:none !important;
	transition: ease 0.5s all;
}

a.romance-btn:hover {background:#e53b3b;}

ol.romance-list, ul.romance-list {
	font-family: "Open Sans",sans-serif;
	color:#888;
}

ol.romance-list li, ul.romance-list li {
	margin:5px 0;
	font-weight:100;
}