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

	Theme Name: Kudos
	Theme URI: http://meetmighty.com/themes/kudos/
	Description: Kudos, a fun WordPress, BuddyPress, bbPress theme.
	
	Author: MeetMighty
	Author URI: http://meetmighty.com/
	
	Version: 1.0
	
	Tags: buddypress, two-columns, threaded-comments, translation-ready, rtl-language-support, custom-menu

	License: GNU General Public License version 3.0
	License URI: http://www.gnu.org/licenses/gpl-3.0.html
	
-------------------------------------------------------------------


TABLE OF CONTENTS
 
    0. RESET
    1. GLOBAL
    	- 1.1. BUTTON
    	- 1.2. COLORBOX
    2. HEADER
        - 2.1. LOGO
        - 2.2. LOGIN
        - 2.3. NAV
        - 2.4. DROPDOWN
    3. BILLBOARD
    4. CONTENT
        - 4.1. PAGINATION
        - 4.2. AUTHOR INFO
        - 4.3. RELATED POSTS
        - 4.4. COMMENTS
        - 4.5. RESPOND FORM
    5. BUDDYPRESS
    	- 5.1. DIRECTORY
    	- 5.2. PROFILE
    	- 5.3. ACTIVITY
    	- 5.4. PLUGIN: BP ALBUM
    	- 5.5. PLUGIN: ACHIEVEMENTS
    6. SIDEBARS
    	- 6.1. SIDEBAR BLOG & SIDEBAR PAGE
    	- 6.2. SIDEBAR HOME & SIDEBAR FOOTER
    7. WIDGETS
    	- 7.1. WIDGET MEMBERS
    	- 7.2. WIDGET SEARCH
    	- 7.3. WIDGET TABBED ARCHIVE
    	- 7.4. WIDGET TABBED POSTS
    	- 7.5. WIDGET TWITTER
    	- 7.6. WIDGET ENEWS
    	- 7.7. WIDGET FLICKR
    	- 7.8. WIDGET GROUPS
    	- 7.9. WIDGET RECENT POSTS
    8. FOOTER
        - 8.1. COPYRIGHT
        - 8.2. LINKS
    9. PAGE TEMPLATES
    	- 9.1. ARCHIVES
    	- 9.2. FULL WIDTH
    	- 9.3. IMAGE GALLERY
    	- 9.4. SIDEBAR LFET
    	- 9.5. SITEMAP
    10. SHORTCODES
    	- 10.1. COLUMNS
	11. COLOR STYLES
		- 11.1. GREEN
		- 11.2. ORANGE
		- 11.3. RED
		- 11.4. BROWN
		- 11.5. YELLOW
		- 11.6. GRAY
		- 11.7. MAGENTO
		- 11.8. PURPLE
		- 11.9. CYAN
    12. BROWSER HACKS
    	- 12.1. IE9
		- 12.2. IE8
		- 12.3. IE7
		- 12.4. FIREFOX
   
------------------------------------------------ */



/*-------------------------------------
   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, 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 { 
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-size: 100%;
	vertical-align: baseline;
	background: transparent;
	}
	
section, article, aside, 
footer, header, nav, hgroup {
  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;
	}
	
:focus {
	outline: 0;
	}
	
ins { 
	text-decoration: none;
	}
	
del {
	text-decoration: line-through;
	}
	
table {
	border-collapse: collapse;
	border-spacing: 0;
	}




/*-------------------------------------
   1. LAYOUT & STRUCTURE
-------------------------------------*/

body {
	font-family: "Lato", "Myriad Pro", Helvetica, Arial, sans-serif;
	font-size: 16px;
	line-height: 23px;
	font-weight: 400;
	color: #555555;
	background-color: #f2f2f2;
	}
	
@-webkit-keyframes fadeDown {
	0% {
		opacity: 0;
		-webkit-transform: translateY(-3px);
	}
	100% {
		opacity: 1;
		-webkit-transform: translateY(0);
	}
}

@-moz-keyframes fadeDown {
	0% {
		opacity: 0;
		-moz-transform: translateY(-3px);
	}
	100% {
		opacity: 1;
		-moz-transform: translateY(0);
	}
}

@-ms-keyframes fadeDown {
	0% {
		opacity: 0;
		-ms-transform: translateY(-3px);
	}
	100% {
		opacity: 1;
		-ms-transform: translateY(0);
	}
}

@-o-keyframes fadeDown {
	0% {
		opacity: 0;
		-o-transform: translateY(-3px);
	}
	100% {
		opacity: 1;
		-o-transform: translateY(0);
	}
}

@keyframes fadeDown {
	0% {
		opacity: 0;
		transform: translateY(-3px);
	}
	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

.fadeDown {
	-webkit-animation:fadeDown 300ms ease;
	   -moz-animation:fadeDown 300ms ease;
	    -ms-animation:fadeDown 300ms ease;
	     -o-animation:fadeDown 300ms ease;
	        animation:fadeDown 300ms ease;
}

a {
	color: #397ed5;
	font-weight: 400;
	text-decoration: none;
	-webkit-transition: all 0.1s linear;
	-moz-transition: all 0.1s linear;
	-o-transition: all 0.1s linear;
	transition: all 0.1s linear;
	}
	
a:hover {
	color: #222222;
	}
	
::selection { 
	background: #397ed5;
	color: #FFF;
	}

#content hr {
	background-color: rgba(0,0,0,0.075);
	border: 0;
	height: 3px;
	margin: 5% 0;
	}

.btn {
	color: #fff;
	font-size: 12px;
	line-height: 12px;
	letter-spacing: 2px;
	text-transform: uppercase;
	background-color: #222;
	border-radius: 3px;
	padding: 12px 15px;
	display: inline-block;
	-webkit-transition: all 0.1s linear;
	-moz-transition: all 0.1s linear;
	-o-transition: all 0.1s linear;
	transition: all 0.1s linear;
	}

.btn:hover {
	color: #222;
	background-color: #fff;
	}

.entry-content .btn {
	color: #fff !important;
	background-color: #397ed5;
	}

.entry-content .btn:hover {
	color: #222 !important;
	background-color: #ddd;
	}
	
input, textarea, button {
	font-size: 100%;
	line-height: 1.5em;
	color: #444;
	}

.alignleft { float: left; }

.alignright { float: right; }

.aligncenter {
	margin-left: auto;
	margin-right: auto;
	display: block;
	clear: both;
	}

header, main, footer, aside, section,
.clearfix {
	*zoom: 1;
	}

header:before, main:before, footer:before, aside:before, section:before,
header:after, main:after, footer:after, aside:after, section:after,
.clearfix:before,
.clearfix:after {
	display: table;
	content: "";
	line-height:0;
	}

header:after, main:after, footer:after, aside:after, section:after,
.clearfix:after {
	clear:both;
	}

.full-width {
	width: 980px !important;
	}

.wrap {
	width: 980px;
	margin: 0 auto;
	padding: 0 10px;
	}

/*-------------------------------------
   2. HEADER
-------------------------------------*/

#header {
	background-color: #397ed5;
	padding: 50px 0;
	}

#header h1, h2, h3, h4, h5, h6 {
	font-weight: 300;
	}	

body.page-template-template-homepage-php #header {
	margin-bottom: 0;
	}

/* Logo */

#header .logo {
	float: left;
	}

#header .logo a {
	display: table-cell;
	vertical-align: middle;
	}
	
#header .logo a.plain {
	color: #FFF;
	font-size: 30px;
	font-weight: 700;
	float: left;
	padding-bottom: 7px;
	text-decoration: none;
	border-bottom: 2px solid rgba(0,0,0,0);
	-webkit-transition: all 0.1s linear;
	-moz-transition: all 0.1s linear;
	-o-transition: all 0.1s linear;
	transition: all 0.1s linear;
	}
	
#header .logo a.plain:hover {
	border-bottom: 2px solid rgba(0,0,0,0.25);
	text-decoration: none;
	}


/* Navigation */


#header #nav {
	margin-top: 5px;
	}

#header #nav,
#header #nav li {
	line-height: 15px;
	}

#header #nav li {
	position: relative;
	}

#header #nav li:first-child a {
	margin-left: 0;
	}

#header #nav li a {
	color: #fff;
	font-size: 15px;
	font-weight: 700;
	padding-bottom: 5px;
	text-transform: uppercase;
	letter-spacing: 2px;
	display: inline-block;
	border-bottom: 2px solid transparent;
	}

#header #nav li a:hover,
#header #nav li.current_page_item a,
#header #nav li.current-menu-parent a,
#header #nav li.current_page_parent a {
	border-bottom: 2px solid rgba(0,0,0,0.25);
	text-decoration: none;
	}

#header #nav li.menu-item-has-children a,
#header #nav li.menu-item-has-children a:hover {
	margin-bottom: 8px;
	}


/* Navigation > Dropdown Menus */

#header #nav .sub-menu,
#header #nav .children {
	display: none;
	padding: 0;
	position: absolute;
	left: -9px;
	z-index: 99999;
	border-radius: 2px;
	background: #222;
	box-shadow: 0px 0px 5px rgba(0,0,0,0.25);
	}

#header #nav li:hover > ul,
#header #nav ul li:hover > ul {
	display: inline-block;
	-webkit-animation: fadeDown 250ms ease;
	-moz-animation: fadeDown 250ms ease;
	-ms-animation: fadeDown 250ms ease;
	-o-animation: fadeDown 250ms ease;
	animation: fadeDown 250ms ease;
	}

#header #nav .sub-menu ul,
#header #nav .children ul {
	left: 99.75%;
	top: 0;
	}

#header #nav ul li,
#header #nav ul ul li {
	margin-left: 0;
	border-top: 1px solid rgba(255,255,255,0.05);
	}

#header #nav ul li:first-child,
#header #nav ul ul li:first-child {
	border-top: none;
	margin-left: 0;
	}

#header #nav ul a,
#header #nav ul ul a {
	color: rgba(255,255,255,0.5);
	border-bottom: none;
	font-size: 14px;
	font-weight: 400;
	letter-spacing: 0;
	line-height: 18px;
	text-transform: none;
	text-align: left;
	padding: 10px;
	display: inline-block;
	min-width: 125px;
	margin-bottom: 0 !important;
	margin-left: 0;
	}

#header #nav ul a:hover,
#header #nav ul ul a:hover {
	color: rgba(255,255,255,1);
	border-bottom: none;
	}

#header #nav li.current_page_item ul a, 
#header #nav li.current-menu-parent ul a,
#header #nav li.current_page_parent ul a {
	color: rgba(255,255,255,0.5);
	border-bottom: none;
	}

#header #nav li.current_page_item ul a:hover, 
#header #nav li.current-menu-parent ul a:hover,
#header #nav li.current_page_parent ul a:hover {
	color: rgba(255,255,255,1);
	}


/* Social Media Navigation */

ul.social-media-nav {
	float: right;
	margin-left: 20px;
	position: relative;
	top: -3px;
	}

ul.social-media-nav li {
	float: left;
	line-height: 34px;
	margin-left: 10px;
	}

ul.social-media-nav li a {
	display: inline-block;
	line-height: 0;
	letter-spacing: 0;
	padding: 6px;
	background-color: #222;
	-webkit-border-radius: 50px;
	-moz-border-radius: 50px;
	-o-border-radius: 50px;
	border-radius: 50px;
	-webkit-transition: all 0.1s linear;
	-moz-transition: all 0.1s linear;
	-o-transition: all 0.1s linear;
	transition: all 0.1s linear;
	}

ul.social-media-nav li a:hover {
	background-color: #fff;
	}

ul.social-media-nav li i {
	font-size: 18px;
	color: #fff;
	width: 18px;
	height: 18px;
	text-align: center;
	letter-spacing: 0;
	position: relative;
	-webkit-transition: all 0.1s linear;
	-moz-transition: all 0.1s linear;
	-o-transition: all 0.1s linear;
	transition: all 0.1s linear;
	}

ul.social-media-nav li a:hover i {
	color: #222;
	}

ul.social-media-nav li i.fa-twitter {
	right: -1px;
	}



/*-------------------------------------
   3. SUB-HEADER
-------------------------------------*/

#sub-header {
	background-color: #f2f2f2;
	padding: 40px 0 50px 0;
	margin-bottom: 60px;
	}
	

/* Page Heading */

#sub-header h1 {
	color: rgba(0,0,0,1);
	font-size: 42px;
	font-weight: 300;
	line-height: 52px;
	width: 85%;
	}

#sub-header h2 {
	color: rgba(0,0,0,0.6);
	font-size: 20px;
	font-weight: normal;
	line-height: 31px;
	margin: 10px 0 15px 0;
	width: 75%;
	}



/*-------------------------------------
   3. CONTENT
-------------------------------------*/

#content {
	width: 640px;
	float: left;
	}

#content.full-width {
	width: 980px;
	float: none;
	}

/* Article */

#content article {
	margin-bottom: 75px;
	}

#content article.sticky {
	background: #fffef5;
	border-bottom: solid 3px #f6f3d4;
	padding: 25px;
	}


/* Article > Header */

#content .entry-header {
	margin-bottom: 25px;
	}

#content .entry-header .entry-title {
	color: #222222;
	font-weight: normal;
	font-size: 30px;
	line-height: 40px;
	margin-bottom: 5px;
	}

#content .entry-header .entry-image {
	line-height: 0;
	display: block;
	margin-bottom: 30px;
	}

#content .entry-header .entry-image img {
	border-radius: 4px;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
	}


/* Article > Responsive Images */

#content article .entry-header .entry-image img {
	max-width: 100% !important;
	height: auto;
	}

#content .entry-header h2.entry-title a {
	text-decoration: none;
	color: #222222;
	}

#content h2.entry-title a:hover {
	color: #397ed5;
	}


/* Article > Comments Meta */

#content .entry-meta,
#content .entry-comments-meta,
#content .entry-meta a {
	color: #777;
	font-size: 12px;
	font-weight: normal;
	font-style: italic;
	margin-bottom: 0;
	}

#content .entry-meta a {
	color: #444;
	}

#content .entry-meta a:hover {
	color: #397ed5;
	}


/* Article > Content */

#content .entry-content a {
	color: #397ed5;
	}

#content .entry-content a.more {
	display: block;
	margin-top: 20px;
	color: #397ed5;
	font-weight: bold;
	}

#content .entry-content a.more::after {
	content: ' →';
	}

#content .entry-content pre,
#content .entry-content ul,
#content .entry-content ol,
#content .entry-content dl,
#content .entry-content dd,
#content .entry-content address,
#content .entry-content table,
#content .entry-content fieldset,
#content .entry-content form,
#content .entry-content blockquote {
	margin-bottom: 35px;
	}

#content .entry-content ul ul,
#content .entry-content ul ul ul,
#content .entry-content ol ol,
#content .entry-content ol ol ol {
	margin-bottom: 0;
	}


.single-post #content .entry-content ul li,
.single-post #content .entry-content ol li {
	line-height: 28px;
	padding-left: 15px;
	list-style-position: inside;
	}

.single-post #content .entry-content ul li {
	list-style-type: disc;
	}

.single-post #content .entry-content ul ul li {
	list-style-type: circle;
	}

.single-post #content .entry-content ul ul ul li {
	list-style-type: square;
	}

.single-post #content .entry-content ol li {
	list-style-type: decimal;
	}

.single-post #content .entry-content ol ol li {
	list-style-type: decimal-leading-zero;
	}

.single-post #content .entry-content ol ol ol li {
	list-style-type: lower-roman;
	}

#content .entry-content blockquote {
	background-color: #f7f7f7;
	font-style: italic;
	padding: 30px 30px 10px;
	margin-left: 3px;
	border-bottom: 3px solid #eee;
	}

#content .entry-content blockquote cite {
	font-size: 15px;
	}

#content .entry-content blockquote p {
	margin-bottom: 15px;
	}

#content .entry-content .pull-left,
#content .entry-content .pull-right {
	font-style: italic;
	padding: 30px 30px 20px;
	background: #f4f4f4;
	width: 33%;
	border-bottom: 3px solid #eee;
	}

#content .entry-content .pull-left {
	float: left;
	padding-bottom: 35px !important;
	margin: 0 40px 20px 0;
	}

#content .entry-content .pull-right {
	float: right;
	padding-bottom: 45px !important;
	margin: 0 0 20px 60px;
	}

#content .entry-content h1, h2, h3, h4, h5, h6 {
	margin-bottom: 25px;
	font-weight: 400;
	color: #222222;
	}

#content .entry-content h1 { font-size: 36px; line-height: 44px; }
#content .entry-content h2 { font-size: 28px; line-height: 32px; }
#content .entry-content h3 { font-size: 21px; line-height: 28px; }
#content .entry-content h4 { font-size: 17px; line-height: 23px; }
#content .entry-content h5 { font-size: 15px; line-height: 20px; }
#content .entry-content h6 { font-size: 13px; line-height: 17px; }

#content .entry-content pre {
	font-size: 15px;
	line-height: 21px;
	background: #F4F4F4;
	padding: 20px;
	max-width: 100%;
	overflow: scroll;
	margin-bottom: 40px;
	}

#content .entry-content table {
	background: #fafafa;
	min-width: 100%;
	border-bottom: 3px solid #f4f4f4;
	}

#content .entry-content table thead {
	background: #f4f4f4;
	margin-bottom: 8px;
	text-align: left;
	}

#content .entry-content table th,
#content .entry-content table tbody td {
	padding: 8px;
	}

#content .entry-content table .even td {
	background-color: #fff;
	}

#content .entry-content .highlight {
	background: #fff198;
	padding: 0 3px;
	border-radius: 3px;
	}

#content .entry-content sup {
	font-size: smaller;
	vertical-align: super;
	}

#content .entry-content sub {
	font-size: smaller;
	vertical-align: sub;
	}

#content .entry-content ins { 
    text-decoration: underline;
}

#content .entry-content dl {
    display: block;
    margin-top: 1em;
    margin-bottom: 1em;
    margin-left: 0;
    margin-right: 0;
}

#content .entry-content dd { 
    display: block;
    margin-left: 40px;
}


/* Article > Content > WordPress Classes */

.alignnone {
    margin: 5px 20px 20px 0;
    max-width: 100%;
    width: auto;
    height: auto;	}

.aligncenter,
div.aligncenter {
    display: block;
    margin: 5px auto 35px auto;
    max-width: 100%;
    height: auto;
	}

.alignright {
    float:right;
    margin: 5px 0 20px 20px;
    max-width: 100%;
    height: auto;
	}

.alignleft {
    float: left;
    margin: 5px 20px 20px 0;
    max-width: 100%;
    height: auto;
	}

.aligncenter {
    display: block;
    margin: 5px auto 5px auto;
    max-width: 100%;
    width: auto;
    height: auto;
	}

a img.alignright {
    float: right;
    margin: 5px 0 20px 20px;
	}

a img.alignnone {
    margin: 5px 20px 20px 0;
	}

a img.alignleft {
    float: left;
    margin: 5px 20px 20px 0;
	}

a img.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto
	}

.wp-caption {
    background: #F4F4F4;
    border: 1px solid #EFEFEF;
    max-width: 96%; /* Image does not overflow the content area */
    padding: 5px 3px 10px;
    text-align: center;
	}

.wp-caption.alignnone {
    margin: 5px 20px 20px 0;
	}

.wp-caption.alignleft {
    margin: 5px 20px 20px 0;
	}

.wp-caption.alignright {
    margin: 5px 0 20px 20px;
	}

.wp-caption img {
    border: 0 none;
    height: auto;
    margin: 0;
    max-width: 98.5%;
    padding: 0;
    width: auto;
	}

.wp-caption p.wp-caption-text {
    font-size: 11px;
    line-height: 17px;
    margin: 0 !important;
    padding: 0;
	}


/* Article > Content > WordPress Gallery */

.gallery {
	margin: 0 auto 18px;
	}

.gallery .gallery-item {
	float: left;
	margin-top: 0;
	text-align: center;
	width: 33%;
	}

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

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

.gallery img,
#gallery-1 img {
	border: 1px solid #EFEFEF !important;
	background: #F4F4F4; 
	padding: 8px;
	line-height: 0;
	}

.gallery img:hover {
	background: white;
	}

.gallery-columns-2 .attachment-medium {
	max-width: 92%;
	height: auto;
	}

.gallery-columns-4 .attachment-thumbnail {
	max-width: 84%;
	height: auto;
	}

.gallery .gallery-caption {
	color: #888;
	font-size: 12px;
	margin: 0 0 12px;
	}

.gallery dl,
.gallery dt {
	margin: 0;
	}

.gallery br+br {
	display: none;
	}


/* Entry Links */

#content .entry-footer {
	margin-bottom: 5px;
	}

#content .entry-footer .entry-meta {
	font-size: 14px;
	line-height: 27px;
	}


/* Author Bio */

#content .author-bio {
	border: 3px solid rgba(0,0,0,0.075);
	border-left: 0;
	border-right: 0;
	padding: 50px 0;
	margin-bottom: 65px;
	}

#content .author-bio h3 {
	color: #222222;
	font-size: 21px;
	font-weight: 400;
	line-height: 25px;
	margin-bottom: 35px;
	}

#content .author-bio .avatar {
	border-radius: 3px;
	width: 64px;
	height: 64px;
	margin: 5px 25px 25px 0;
	float: left;
	}

#content .author-bio .author-name {
	font-size: 16px;
	margin-bottom: 5px;
	}

#content .author-bio .author-description {
	margin-bottom: 5px;
	}


/* Comments */

#content .entry-comments {
	border-bottom: 3px solid rgba(0,0,0,0.075);
	padding-bottom: 35px;
	margin-bottom: 50px;
	}

#content #comments h3,
#content #reply-title,
#content #author-title {
	color: #222222;
	font-size: 21px;
	font-weight: 400;
	line-height: 25px;
	margin-bottom: 35px;
	}
	
#content #comment-title {
	margin-bottom: 40px !important;
	}	

#content #reply-title small {
	margin-left: 10px;
	}

#content #comments .comments-closed {
	margin-bottom: 50px;
	}

#content #comments .comment .bypostauthor {
	overflow: auto;
	}

#content #comments .comment article {
	margin-bottom: 30px;
	}

#content #comments .comment .avatar {
	border-radius: 3px;
	margin: 10px 25px 0 0;
	width: 64px;
	height: 64px;
	float: left;
	}

#content #comments .comment-author,
#content #comments .comment-content,
#content #comments .comment-reply {
	float: right;
	width: 550px;
	}
	
#content #comments .vcard {
	margin-bottom: 5px;
	}

#content #comments .comment-author cite,
#content #comments .comment-author cite a {
	color: #262626;
	}
	
#content #comments .comment-author cite {
	margin-right: 10px;
	}
	
#content #comments time {
	color: #777;
	font-size: 13px;
	margin-right: 10px;	
	}
	
#content #comments .comment-content p {
	margin-bottom: 10px;
	}

#content #comments .comment-reply {
	font-size: 13px;
	}

/* Threaded comments */
#content #comments ol .children {
	margin-left: 90px;
	}

#content #comments .children .avatar {
	float: left;
	width: 24px;
	height: 24px;
	margin: 5px 15px 0 0 !important;
	}

#content #comments .children .comment-author,
#content #comments .children .comment-content,
#content #comments .children .comment-reply {
	float: right;
	width: 510px;
	}
	
#content #comments .children .comment-content {
	width: 510px;
	}
	
#content #comments .children .children .avatar {
	float: left;
	width: 24px;
	height: 24px;
	margin: 5px 15px 0 0 !important;
	}

#content #comments .children .children .comment-author,
#content #comments .children .children .comment-content,
#content #comments .children .children .comment-reply {
	float: right;
	width: 420px;
	}
	
#content #comments .children .children .comment-content {
	width: 460px;
	}
	

/* Reply form in comments */

#content #comments ol #respond {
	margin-left: 90px;
	}

#content #comments ol .children #respond {
	margin-left: 40px;
	}


/* Respond */

#content #respond {
	margin-bottom: 65px;
	}

#content #respond p {
	margin-bottom: 25px;
	}

#content #respond label, 
#content #respond p.logged-in-as {
	color: #262626;
	line-height: 50px;
	}

#content #respond p.logged-in-as {
	line-height: 24px !important;
	}
	
#content #respond label .required {
	display: none;
	}

#content #respond input[type="text"],
#content #respond textarea {
	float: left;
	margin-right: 20px;
	font-size: 13px;
	line-height: 26px;
	padding: 5px 8px;
	height: 39px;
	width: 57%;
	border-radius: 5px;
	border: 1px solid #f4f4f4;
	background-color: #f4f4f4;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
	}

#content #respond textarea {
	width: 82%;
	min-height: 115px; 
	float: none;
	}

#content #respond textarea:focus,
#content #respond input[type="text"]:focus {
	border: 1px solid #CCC;
	}

#content #respond .form-submit {
	margin-bottom: 0;
	}

#content #respond .form-submit input[type="submit"] {
	color: #fff;
	border: none;
	font-size: 12px;
	line-height: 12px;
	letter-spacing: 2px;
	text-transform: uppercase;
	background-color: #397ed5;
	border-radius: 3px;
	padding: 12px 15px;
	-webkit-transition: all 0.1s linear;
	-moz-transition: all 0.1s linear;
	-o-transition: all 0.1s linear;
	transition: all 0.1s linear;
	}

#content #respond .form-submit input[type="submit"]:hover {
	color: #222222;
	background-color: #ddd;
	cursor: pointer;
	}


/* Pagination */

#content .pagination {
	margin-bottom: 50px;
	}

#content .pagination .prev {
	float: left;
	}

#content .pagination .next {
	float: right;
	}


/* Flexslider */

.flexslider { 
	margin: 0 0 30px 0;
	padding: 0;
	position: relative;
	}

.flexslider .slides > li {
	display: none; 
	-webkit-backface-visibility: hidden;
	width: 50%;
	}

.flexslider .slides img {
	border-radius: 4px;
	width: 100%;
	display: block;
	}

.flex-pauseplay span {
	text-transform: capitalize;
	}

.slides:after {
	content: "."; 
	display: block; 
	clear: both; 
	visibility: hidden; 
	line-height: 0; 
	height: 0;
	}

html[xmlns] .format-gallery .slides {
	display: block;
	}

* html .format-gallery .slides {
	height: 1%;
	}

.no-js .slides > li:first-child {
	display: block;
	}

.flex-control-paging {
	display: none;
	}

.flex-direction-nav {
	position: absolute;
	width: 640px;
	bottom: 55%;
	}

.flex-direction-nav a {
	color: #FFF;
	background-color: #222222;
	display: block;
	padding: 10px 15px;
	position: absolute;
	border-bottom: 0;
	-webkit-transition: background-color .1s linear;
	-moz-transition: background-color .1s linear;
	-o-transition: background-color .1s linear;
	-ms-transition: background-color .1s linear;
	transition: background-color .1s linear;
	}

.flex-direction-nav a:hover {
	color: rgba(255,255,255,1);
	background-color: #3b5b9a;
	border-bottom: 0;
	}

.flex-direction-nav .flex-prev {
	left: 0px;
	border-top-right-radius: 4px;
	border-bottom-right-radius: 4px;
	}

.flex-direction-nav .flex-next {
	right: 0px;
	border-top-left-radius: 4px;
	border-bottom-left-radius: 4px;
	}


/* Article > Post Format > Link */

#content article.format-link .entry-header .entry-image {
	margin-bottom: 0;
	}

#content article.format-link .entry-header .entry-image img {
	border-radius: 4px;
	border-bottom-right-radius: 0;
	border-bottom-left-radius: 0;
	}

#content article.format-link .entry-link {
	background: #f5f5f5;
	padding: 30px 30px 40px 30px;
	margin-bottom: 55px;
	border-bottom-right-radius: 4px;
	border-bottom-left-radius: 4px;
	}

#content article.format-link .entry-link i {
	float: right;
	position: relative;
	top: 15px;
	font-size: 44px;
	color: rgba(0,0,0,0.08);
	}

#content article.format-link .entry-link h3 {
	font-size: 26px;
	line-height: 40px;
	margin-bottom: 0;
	}

#content article.format-link .entry-link h3 a {
	color: #222222;
	}

#content article.format-link .entry-link h3 a:hover {
	text-decoration: none;
	}

#content article.format-link .entry-link p {
	font-style: italic;
	color: #777;
	line-height: 23px;
	margin-bottom: 0px;
	}


/* Post Format > Quote */

#content article.format-quote .entry-header .entry-image {
	margin-bottom: 0;
	}

#content article.format-quote .entry-header .entry-image img {
	border-radius: 4px;
	border-bottom-right-radius: 0;
	border-bottom-left-radius: 0;
	}

#content article.format-quote .entry-quote {
	color: #222222;
	font-size: 21px;
	font-style: italic;
	line-height: 40px;
	padding: 40px 50px 25px 40px;
	background: #f5f5f5;
	margin-bottom: 55px;
	border-bottom-right-radius: 4px;
	border-bottom-left-radius: 4px;
	}

#content article.format-quote .entry-quote p {
	margin-bottom: 35px;
	}

#content article.format-quote .entry-quote cite {
	color: #222222;
	font-size: 14px;
	font-weight: 700;
	font-style: normal;
	letter-spacing: 2px;
	line-height: 14px;
	text-transform: uppercase;
	display: block;
	}


/* Article > Post Format > Audio */

.mejs-time-loaded {
	background: #484848 !important;
	}

.mejs-time-current {
	background: #397ed5 !important;
	}

/* eliminate the yellow border around the play button during playback */
.mejs-controls .mejs-button button:focus {
	outline: none !important;
	}

.mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-current {
	background: #397ed5 !important;
	}

.mejs-container .mejs-controls .mejs-time {
	padding-top: 9px !important;
	}

.mejs-container .mejs-controls .mejs-time span {
	color: #BBB !important;
	text-shadow: 1px 1px 0px rgba(0,0,0,.6);
	}

#content article.format-audio .entry-image img {
	border-radius: 4px;
	border-bottom-right-radius: 0;
	border-bottom-left-radius: 0;
	}

#content article.format-audio .mejs-container,
#content article.format-audio .mejs-controls {
	border-bottom-left-radius: 4px;
	border-bottom-right-radius: 4px;
	}


/* Sidebar */

#sidebar {
	float: right;
	width: 335px;
	}



/*-------------------------------------
   6. SIDEBARS
-------------------------------------*/

/*-- SIDEBAR BLOG & SIDEBAR PAGE --*/

#sidebar {
	width: 300px;
	float: right;
	}

/*-- SIDEBAR HOME & SIDEBAR FOOTER --*/

#sidebar-footer {
	background-color: #f2f2f2;
	}

#sidebar-footer,
#sidebar-home {
	padding: 50px 0;
	clear: both;
	overflow: hidden;
	}

#sidebar-footer .widget,
#sidebar-home .widget {
	width: 300px;
	margin-right: 40px;
	float: left;
	}

#sidebar-footer .widget.last,
#sidebar-home .widget.last {
	margin-right: 0;
	}

#sidebar-footer .widget:nth-child(3n),
#sidebar-home .widget:nth-child(3n) {
	margin-right: 0;
	}



/*-------------------------------------
   7. WIDGETS
-------------------------------------*/

/* Widgets */

.widget {
	float: left;
	width: 100%;
	font-size: 13px;
	line-height: 21px;
	}

#sidebar .widget {
	margin-bottom: 50px;
	}

.widget-title {
	color: #222222;
	font-size: 16px;
	font-weight: 400;
	line-height: 18px;
	margin-bottom: 25px;
	}


/* Recent Posts Widget */

.widget_recent_entries li {
	position: relative;
	margin-bottom: 15px;
	padding-left: 25px;
	}

.widget_recent_entries li:before {
	color: #bbb;
	font-size: 14px;
	font-family: "FontAwesome";
	content: "\f0f6";
	position: absolute;
	top: 1px;
	left: 0;
	-webkit-font-smoothing: antialiased;
	}

.widget_recent_entries li a {
	color: #404040;
	}

.widget_recent_entries li span {
	color: #777;
	font-size: 12px;
	font-style: italic;
	line-height: 25px;
	display: block;
	}


/* Categories Widget */

.widget_archive li,
.widget_categories li {
	color: #888;
	margin-bottom: 4px;
	position: relative;
	}

.widget_archive li:before,
.widget_categories li:before {
	color: #bbb;
	font-family: "FontAwesome";
	content: "\f105";
	position: absolute;
	top: 0;
	left: 0;
	}

.widget_archive li a,
.widget_categories li a {
	font-weight: normal;
	padding-right: 3px;
	margin-left: 12px;
	}


/* Recent Comments Widget */

.widget_recent_comments li {
	margin-bottom: 15px;
	}


/* Search Form / Widget */

.search-form {
	padding: 0;
	margin: 0;
	}

.search-form .search-input {
	color: #777;
	line-height: 17px;
	background-color: #f3f3f3;
	border: none;
	border-radius: 3px;
	border-top-right-radius: 0px;
	border-bottom-right-radius: 0px;
	padding: 7px;
	margin: 0px;
	width: 260px;
	height: 40px;
	float: left;
	-webkit-appearance: none;
	}

.search-form .search-submit {
	line-height: 19px;
	border-top-left-radius: 0;
	border-bottom-left-radius: 0;
	margin: 0px;
	padding: 10px 13px 10px 14px;
	height: 40px;
	float: left;
	border: none;
	}

.search-form .search-submit:hover {
	cursor: pointer;
	background-color: rgba(0,0,0,0.2);
	}


/* Calendar */

#calendar_wrap {
	border: 1px solid #DDD;
	border-radius: 4px;
	}

.widget_calendar #wp-calendar {
	width: 100%;
	}

.widget_calendar caption {
	font-size: 18px;
	font-style: italic;
	color: #777;
	background: #F4F4F4;
	padding: 5px 0 8px 0;
	margin-bottom: 10px;
	border-bottom: 1px solid #DDD;
	}

.widget_calendar th,
.widget_calendar td {
	text-align: center;
	}

.widget_calendar #today {
	background: #F4F4F4;
	border-radius: 4px;
	}

.widget_calendar #prev,
.widget_calendar #next {
	padding: 5px 0;
	}


/* RSS Widget */

.widget_rss ul li {
	margin-bottom: 15px;
	}

.widget_rss ul li span.rss-date {
	display: block;
	font-style: italic;
	color: #777;
	}


/* Text Widget */

.textwidget p {
	margin-bottom: 15px;
	}

.textwidget img {
	max-width: 100%;
	height: auto;
	}

.textwidget a img {
	border-bottom: none !important;
	}

.textwidget a:hover img {
	border-bottom: none !important;
	}

.textwidget form select,
.textwidget form input,
.textwidget form textarea {
	max-width: 97%;
	}


/* Nav Widget */

.widget_nav_menu ul ul {
	margin-left: 20px;
	}


/* Recent Tweet Widget */

.mighty_tweet_widget ul li {
	color: #444;
	font-style: italic;
	position: relative;
	padding-left: 28px;
	margin-bottom: 25px;
	}

.mighty_tweet_widget ul li:before {
	color: #bbb;
	font-size: 19px;
	font-style: normal;
	font-family: "FontAwesome";
	content: "\f099";
	position: absolute;
	top: 1px;
	left: 0;
	-webkit-font-smoothing: antialiased;
	}

#sidebar-footer .mighty_tweet_widget ul li:last-child {
	margin-bottom: 0;
	}

.mighty_tweet_widget .twitter-time-stamp {
	color: #888;
	font-size: 11px;
	font-weight: 700;
	line-height: 34px;
	text-transform: uppercase;
	display: block;
	font-style: normal;
	}

.mighty_tweet_widget .twitter-time-stamp:hover {
	border-bottom: none;
	}


/* Dribbble Widget */

.mighty_dribbble_widget li {
	line-height: 0;
	margin-bottom: 15px;
	}

.mighty_dribbble_widget li a {
	line-height: 0;
	border-bottom: none;
	display: block;
	}

.mighty_dribbble_widget li a:hover {
	border-bottom: none;
	}

.mighty_dribbble_widget a img {
	width: 300px;
	height: auto;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
	}

.mighty_dribbble_widget li a:hover img {
	opacity: 0.85;
	}

.mighty_dribbble_widget p {
	padding-top: 10px;
	}


/* Instagram & Flickr Widgets */

.mighty_instagram_widget,
.mighty_flickr_widget {
	padding-bottom: 10px;
	}

.mighty_instagram_widget ul,
.mighty_flickr_widget ul {
	float: left;
	}

.mighty_instagram_widget li,
.mighty_flickr_widget li {
	line-height: 0;
	margin: 0 13px 15px 0;
	float: left;
	}

.mighty_instagram_widget li:nth-of-type(4n),
.mighty_flickr_widget li:nth-of-type(4n) {
	margin-right: 0;
	}

.mighty_instagram_widget li a,
.mighty_flickr_widget a {
	line-height: 0;
	border-bottom: none;
	display: block;
	}

.mighty_instagram_widget li a img,
.mighty_flickr_widget li a img {
	border-radius: 2px;
	width: 65px;
	height: 65px;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
	}

.mighty_instagram_widget li a:hover img,
.mighty_flickr_widget li a:hover img {
	opacity: 0.85;
	}

.mighty_instagram_widget p {
	margin-bottom: 0;
	}


/* Featured Video Widget */

.mighty_video_widget .vid {
	width: 100%;
	}

.mighty_video_widget .desc {
	color: #888;
	font-size: 14px;
	font-style: italic;
	display: block;
	margin-top: 15px;
	}


/* Social Links */

.mighty_social_widget {
	padding-bottom: 18px;
	}

.mighty_social_widget ul {
	float: left;
	}

.mighty_social_widget li {
	float: left;
	line-height: 0;
	margin: 0 15px 20px 0;
	}

.mighty_social_widget li:nth-child(5n) {
	margin-right: 0;
	}

.mighty_social_widget a {
	float: left;
	padding: 13px;
	height: 17px;
	width: 17px;
	border-radius: 30px;
	color: #777;
	font-size: 18px;
	line-height: 18px;
	text-align: center;
	background: -moz-linear-gradient(top, rgba(0,0,0,0) 70%, rgba(0,0,0,0.05) 100%);
	background: -webkit-linear-gradient(top, rgba(0,0,0,0) 70%,rgba(0,0,0,0.05) 100%);
	background: -ms-linear-gradient(top, rgba(0,0,0,0) 70%,rgba(0,0,0,0.05) 100%);
	background-color: #fdfdfd;
	box-shadow: 0px 1px 1px 1px rgba(0,0,0,0.125);
	}

.mighty_social_widget a:hover {
	color: #406098;
	background: -moz-linear-gradient(top, rgba(0,0,0,0.02) 30%, rgba(0,0,0,0.0) 100%);
	background: -webkit-linear-gradient(top, rgba(0,0,0,0.02) 30%,rgba(0,0,0,0.0) 100%);
	background: -ms-linear-gradient(top, rgba(0,0,0,0.02) 30%,rgba(0,0,0,0.0) 100%);
	}

/*-- 7.1 WIDGET MEMBERS --*/

/** This code resets a few widget styles carried over from /buddypress/css/style.css **/

.widget ul.item-list li {
	border-bottom: none !important;
	border-top: none !important;
	padding: 0 !important;
	position: relative;
	}

.widget ul.item-list li img.avatar {
	margin-right: 0 !important;
	}

.widget #members-dir-list ul.item-list,
.widget #groups-dir-list ul.item-list,
.widget #member-list li,
.widget ul#topic-post-list,
.widget ul#groups-list,
.widget ul#friend-list,
.widget ul#members-list {
	border-top: none !important;
	}

/** End Reset **/


.widget_bp_core_members_widget h3 {
	float: left;
	}

.widget_bp_core_members_widget .item-options {
	float: right;
	}

.widget_bp_core_members_widget .item-options a {
	color: #777;
	font-size: 11px;
	}

.widget_bp_core_members_widget .item-options a.selected {
	color: #406098;
	}

.widget_bp_core_members_widget #members-list,
.widget_bp_core_recently_active_widget .avatar-block,
.widget_bp_core_whos_online_widget .avatar-block {
	clear: both;
	margin: 0;
	overflow: hidden;
	margin-bottom: -15px;
	}

.widget_bp_core_members_widget #members-list li,
.widget_bp_core_recently_active_widget .item-avatar,
.widget_bp_core_whos_online_widget .item-avatar {
	list-style: none;
	display: inline-block;
	float: left;
	}

.widget_bp_core_members_widget #members-list li .item {
	display: none;
	}

.widget_bp_core_members_widget #members-list li .item-avatar,
.widget_bp_core_recently_active_widget .item-avatar,
.widget_bp_core_whos_online_widget .item-avatar {
	margin: 0 18px 15px 0;
	}

.widget_bp_core_members_widget #members-list li .item-avatar img,
.widget_bp_core_recently_active_widget .item-avatar img,
.widget_bp_core_whos_online_widget .item-avatar img,
.widget_bp_groups_widget img {
	width: 35px;
	height: 35px;
	}

.widget_bp_core_members_widget #members-list li.last .item-avatar,
.widget_bp_core_recently_active_widget .item-avatar.last,
.widget_bp_core_whos_online_widget .item-avatar.last {
	margin-right: 0;
	}

.widget_bp_core_members_widget #members-list li:last-child .item-avatar {
	margin-right: 0;
	}

.widget_bp_core_members_widget li:nth-child(6n) .item-avatar,
.widget_bp_core_recently_active_widget .item-avatar:nth-child(6n),
.widget_bp_core_whos_online_widget .item-avatar:nth-child(6n) {
	margin-right: 0 !important;
	}


/*-- 7.8 WIDGET GROUPS --*/

.widget_bp_groups_widget h3 {
	float: left;
	}

.widget_bp_groups_widget .item-options {
	float: right;
	}

.widget_bp_groups_widget .item-options a {
	color: #777;
	font-size: 11px;
	}

.widget_bp_groups_widget .item-options a.selected {
	color: #406098;
	}

.widget_bp_groups_widget #groups-list {
	clear: both;
	margin: 0;
	overflow: hidden;
	margin-bottom: -15px;
	}

.widget_bp_groups_widget #groups-list li {
	list-style: none;
	display: inline-block;
	float: left;
	}

.widget_bp_groups_widget #groups-list li .item {
	display: none;
	}

.widget_bp_groups_widget #groups-list li .item-avatar {
	margin: 0 18px 15px 0;
	float: left;
	}

.widget_bp_groups_widget #groups-list li.last .item-avatar {
	margin-right: 0;
	}

.widget_bp_groups_widget #groups-list li:last-child .item-avatar {
	margin-right: 0 !important;
	}

.widget_bp_groups_widget li:nth-child(6n) .item-avatar {
	margin-right: 0 !important;
	}


/*-- 7.9 LOGIN --*/

.widget_bp_core_login_widget {
	background-color: #f4f4f4;
	padding: 25px;
	}

.widget_bp_core_login_widget h3 {
	display: none;
	}

.widget_bp_core_login_widget .bp-login-widget-user-avatar {
	float: left;
	margin-right: 20px;
	}

.widget_bp_core_login_widget .standard-form label,
.widget_bp_core_login_widget .standard-form span.label {
	margin: 0 0 10px 0; 
	}

.widget_bp_core_login_widget .standard-form input[type=text],
.widget_bp_core_login_widget .standard-form input[type=password],
.widget_bp_core_login_widget .forgetmenot {
	margin-bottom: 15px;
	}

.widget_bp_core_login_widget .standard-form input[type=submit] {
	margin-right: 15px;
	}



/*-------------------------------------
   8. FOOTER
-------------------------------------*/

#footer {
	font-size: 14px;
	color: #777;
	margin: 35px 0;
	}

#footer .copyright {
	float: left;
	}

#footer ul {
	float: right;
	}

#footer li {
	float: left;
	list-style: none;
	margin-left: 30px;
	}

#footer li a {
	color: #262626;
	font-weight: bold;
	-webkit-transition: all 0.1s linear;
	-moz-transition: all 0.1s linear;
	-o-transition: all 0.1s linear;
	transition: all 0.1s linear;
	}

#footer li a:hover {
	color: #397ed5;
	}



/*-------------------------------------
   9. PAGE TEMPLATES
-------------------------------------*/

.error404 #content span.big {
	font-size: 52px;
	}

.error404 #content .search-form {
	height: 41px;
	clear: both;
	}


/*-- 9.1. HOMEPAGE --*/

/* Homepage */

body.page-template-template-homepage-php #header {
	padding: 50px 0 0 0;
	}

body.page-template-template-homepage-php #sub-header {
	padding: 0;
	line-height: 0;
	}

body.page-template-template-homepage-php #header-top {
	margin-bottom: 50px;
	}

body.page-template-template-homepage-php h2 {
	color: #222;
	font-size: 30px;
	line-height: 1em;
	margin-right: 30px;
	}

body.page-template-template-homepage-php span.meta {
	color: #7f7f7f;
	font-size: 18px;
	font-weight: 400;
	line-height: 1em;
	position: relative;
	top: -3px;
	}
	
body.page-template-template-homepage-php a span {
	font-size: 80%;
	font-weight: 600;
	color: #51a0c7;
	}

body.page-template-template-homepage-php a.link {
	font-size: 14px;
	font-weight: 600;
	}

body.page-template-template-homepage-php #members h2,
body.page-template-template-homepage-php #blog-posts h2 {
	color: #fff;
	display: inline-block;
	font-weight: normal;
	}

body.page-template-template-homepage-php #members span.meta {
	color: #919191;
	}

body.page-template-template-homepage-php #blog-posts span.meta {
	color: #757575;
	}

body.page-template-template-homepage-php #members,
body.page-template-template-homepage-php #blog-posts {
	background-color: #222;
	}
		
body.page-template-template-homepage-php #members {
	padding: 50px 0 75px 0;
	}
	
body.page-template-template-homepage-php #groups {
	padding: 50px 0 25px;
	}
	
body.page-template-template-homepage-php #blog-posts {
	padding: 50px 0 60px;
	}
	
body.page-template-template-homepage-php #members ul {
	margin-top: 35px;
	width: 1006px;
	overflow: hidden;
	}
		
body.page-template-template-homepage-php #members ul li {
	display: inline-block;
	border-radius: 4px;
	margin-right: 22.5px;
	margin-bottom: 25px;
	height: 100px;
	vertical-align: middle;
	width: 100px;
	}
	
body.page-template-template-homepage-php #members ul li img {
	border-radius: 4px;
	width: 100px;
	height: 100px;
	-webkit-transition: all 0.1s linear;
	-moz-transition: all 0.1s linear;
	-o-transition: all 0.1s linear;
	transition: all 0.1s linear;
	}

body.page-template-template-homepage-php #members ul li:hover img {
	opacity: 0.7;
	}
		
body.page-template-template-homepage-php #groups h2 {
	margin-bottom: 55px;
	display: inline-block;
	font-weight: normal;
	}
	
body.page-template-template-homepage-php #groups .column {
	float: left;
	width: 470px;
	margin: 0 40px 55px 0;
	}
	
body.page-template-template-homepage-php #groups .column:nth-child(odd) {
	margin: 0 0 50px 0;
	}
	
body.page-template-template-homepage-php #blog-posts article {
	float: left;
	width: 300px;
	margin: 38px 40px 0 0;
	}

body.page-template-template-homepage-php #blog-posts article:nth-child(6) {
	margin-right: 0;
	}

body.page-template-template-homepage-php #groups .frame,
body.page-template-template-homepage-php #blog-posts .post .post-img {
	width: 300px;
	position: relative;
	border-radius: 4px;
	margin-bottom: 25px;
	}

body.page-template-template-homepage-php #groups .frame {
	width: 150px;
	float: left;
	margin-right: 30px;
	margin-bottom: 0 !important;
	}
	
body.page-template-template-homepage-php #groups .frame img {
	border-top-right-radius: 4px;
	border-top-left-radius: 4px;
	}


body.page-template-template-homepage-php #groups .meta-count {
	background-color: black;
	border-bottom-left-radius: 4px;
	border-bottom-right-radius: 4px;
	margin-top: -12px;
	position: relative;
	z-index: 1;
	}

body.page-template-template-homepage-php #groups .meta-count a {
	width: 150px;
	display: inline-block;
	text-align: center;
	color: #fff !important;
	}

body.page-template-template-homepage-php #blog-posts h2 {
	margin-bottom: 20px;
	font-weight: normal;
	}

body.page-template-template-homepage-php #groups .meta-count,
body.page-template-template-homepage-php #blog-posts .meta-count {
	color: #FFF;
	-webkit-transition: all 0.1s linear;
	-moz-transition: all 0.1s linear;
	-o-transition: all 0.1s linear;
	transition: all 0.1s linear;
	}

body.page-template-template-homepage-php #blog-posts .post .post-img img {
	border-radius: 4px;
	-webkit-transition: all 0.1s linear;
	-moz-transition: all 0.1s linear;
	-o-transition: all 0.1s linear;
	transition: all 0.1s linear;
	}

body.page-template-template-homepage-php #blog-posts .post .post-img:hover img {
	opacity: 0.7
	}

body.page-template-template-homepage-php #blog-posts .meta-count i {
	color: #777;
	margin-right: 10px;
	}

body.page-template-template-homepage-php #groups .meta-count a,
body.page-template-template-homepage-php #blog-posts .meta-count a {
	color: #397ed5;
	text-transform: uppercase;
	font-size: 11px;
	line-height: 34px;
	font-weight: 700;
	letter-spacing: 1px;
	}

body.page-template-template-homepage-php #groups .meta-count a:hover {
	color: #397ed5 !important;
	}

body.page-template-template-homepage-php #blog-posts .meta-count a:hover {
	color: #777 !important;
	}
	
body.page-template-template-homepage-php #groups h3,
body.page-template-template-homepage-php #blog-posts .post h2.post-title {
	font-size: 22px;
	color: #fff;
	margin-bottom: 15px;
	letter-spacing: normal;
	line-height: 32px;
	}

body.page-template-template-homepage-php #groups h3 {
	margin: 5px 0 10px;
	}

body.page-template-template-homepage-php #groups h3 a {
	color: #222222;
	}

body.page-template-template-homepage-php #blog-posts .post h2.post-title a {
	color: #fff;
	font-weight: 300;
	}

body.page-template-template-homepage-php #groups h3 a:hover,
body.page-template-template-homepage-php #blog-posts .post h2.post-title a:hover {
	color: #397ed5;
	}
	
body.page-template-template-homepage-php #groups p {
	margin-bottom: 12px;
	}

body.page-template-template-homepage-php #blog-posts .post p {
	margin-bottom: 10px;
	color: #888;
	font-weight: 300;
	}

body.page-template-template-homepage-php #groups .column a.view-link {
	color: #397ed5;
	text-transform: uppercase;
	font-size: 12px;
	line-height: 32px;
	font-weight: 700;
	letter-spacing: 1px;
	}

body.page-template-template-homepage-php #groups .column a.view-link:hover {
	color: #222;
	}


/*-- 9.2. FULL WIDTH --*/

.page-template-template-full-width-php #main {
	width: auto;
	}


/*-- 9.3. CONTACT --*/

.page-template-template-contact-php #contact-form {
	padding: 35px;
	background-color: #f4f4f4;
	border-radius: 4px;
	}

.page-template-template-contact-php #contact-form input[type="text"],
.page-template-template-contact-php #contact-form textarea {
	line-height: 26px;
	padding: 5px 8px;
	border: 1px solid #CCC;
	border-radius: 4px;
	box-shadow: inset 0 5px 5px -5px rgba(0,0,0,0.16);
	width: 96.5%;
	}

.page-template-template-contact-php #contact-form form,
.page-template-template-contact-php #contact-form ul {
	margin-bottom: 0;
	}

.page-template-template-contact-php #contact-form li {
	margin-bottom: 15px;
	}

.page-template-template-contact-php #contact-form label {
	font-weight: bold;
	display: block;
	margin-bottom: 5px;
	}

.page-template-template-contact-php #contact-form input[type="text"],
.page-template-template-contact-php #contact-form textarea {
	font-size: 15px;
	line-height: 25px;
	}

.page-template-template-contact-php #contact-form input[type="submit"] {
	text-shadow: none;
	border: none;
	}

.page-template-template-contact-php #contact-form input[type="submit"]:hover {
	cursor: pointer;
	}

.page-template-template-contact-php #contact-form p {
	color: #cb2020;
	font-style: italic;
	margin-bottom: 25px;
	}

body.page-template-template-contact-php #contact-form p.success {
	color: #339933;
	margin-bottom: 0px;
	}


/*-- 9.4. ARCHIVES --*/

.page-template-template-archives-php .archive-list ul li {
	color: #888;
	position: relative;
	padding-left: 15px;
	}

.page-template-template-archives-php .archive-list ul li:before {
	color: #bbb;
	font-family: "FontAwesome";
	content: "\f105";
	position: absolute;
	top: 1px;
	left: 0;
	}

.page-template-template-archives-php .archive-list .month {
	float: left;
	margin-right: 40px;
	width: 300px;
	}

.page-template-template-archives-php .archive-list .subject {
	float: left;
	width: 300px;
	}



/*-------------------------------------
   11. BBPRESS
-------------------------------------*/

body.bbpress #content article {
	margin-bottom: 0;
	}

#bbpress-forums ul.bbp-lead-topic,
#bbpress-forums ul.bbp-topics,
#bbpress-forums ul.bbp-forums,
#bbpress-forums ul.bbp-replies,
#bbpress-forums ul.bbp-search-results {
	border: 1px solid #ddd;
	}

#bbpress-forums div.bbp-forum-content,
#bbpress-forums div.bbp-topic-content,
#bbpress-forums div.bbp-reply-content {
	padding-right: 40px;
	}

#bbpress-forums div.bbp-the-content-wrapper textarea.bbp-the-content {
	border: 1px solid #d9d8d8;
	border-top: none;
	}

#bbpress-forums div.bbp-breadcrumb p, #bbpress-forums div.bbp-topic-tags p {
	margin-bottom: 15px;
	}

#bbpress-forums div.bbp-the-content-wrapper div.quicktags-toolbar {
	border: 1px solid #d9d8d8;
	}

#bbpress-forums .bbp-form {
	background-color: #f3f3f3;
	border: 1px solid #ddd !important;
	}



/*-------------------------------------
   12. BROWSER HACKS
-------------------------------------*/

/*-- 12.1. IE9 --*/

#ie9 .groups #group-topic-count-top {
	padding-top: 17px !important;
	}


/*-- 12.2. IE8 --*/

#ie8 #header .fields {
	padding-bottom: 1px !important;
	}

#ie8 #header .fields .user-login,
#ie8 #header .fields .user-pass {
	line-height: 27px;
	}

#ie8 .groups #group-topic-count-top {
	padding-top: 17px !important;
	}


/*-- 12.3. IE7 --*/

#ie7 #header .fields {
	width: 290px;
	}

#ie7 #header .fields .user-login,
#ie7 #header .fields .user-pass {
	line-height: 27px;
	}

#ie7 .clear {
	height: 0 !important;
	}

#ie7 .widget-enews .field {
	width: 150px;
	}

#ie7 .groups #group-topic-count-top {
	padding-top: 17px !important;
	}

#ie7 .sub-menu {
	margin-top: 42px !important;
	margin-left: -65px !important;
	}

#ie7 #activity-stream {
	margin-top: -40px;
	}

/*-- 12.4. SAFARI --*/

.search-form .search-input:not(*:root) {
	width: 255px;
	}

