﻿@import 'fonts/stylesheet.css';
/*@import url("https://fonts.googleapis.com/css?family=Lato:300,400,700,900");*/
@import url("https://fonts.googleapis.com/css?family=Oxygen:300,400,700");
@import url("https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css");

html, * {
	box-sizing: border-box;
}

:before, :after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

html, body {
  
}

body {
	margin: 0;
	font-family: 'Roboto', sans-serif;
	color: #5b5b5b;
	height: 100%;
}

a {
	color: #0984c4;
	text-decoration: none;
	-o-transition:.5s;
	-ms-transition:.5s;
	-moz-transition:.5s;
	-webkit-transition:.5s;
	transition:.5s;
}

a:hover {
	color: #0877b0
}

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

textarea {
	font-family: 'Roboto', sans-serif;
}

h1, h2, h3, h4, h5, h6 {
	font-family: 'Oxygen', sans-serif;
	font-weight: 500;
	margin: 0;
}

h3 {
	font-size: 26px;
	line-height: 1.2em;
}

h3.plain-title {
	font-family: 'Roboto', sans-serif;
	font-weight: bold;
}

h4 {
	font-size: 22px;
	font-weight: 400;
}

fieldset {
	margin: 15px 0 0 0;
}

select {
	max-width: 300px;
}

.wrapper {
	width: 92%;
	max-width: 1200px;
	margin: 0 auto;
	position: relative;
}

.clr, .clearfix {
	clear: both;
}

.page-title {
	color: #fff;
	padding: 12px 0;
	margin: 0 0 30px 0;
	background: #0985c4; /* Old browsers */
	background: -moz-linear-gradient(top, #0985c4 0%, #1db1d7 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(top, #0985c4 0%,#1db1d7 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to bottom, #0985c4 0%,#1db1d7 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0985c4', endColorstr='#1db1d7',GradientType=0 ); /* IE6-9 */
}

.page-title h1 {
	margin: 0;
	font-family: 'Oxygen', sans-serif;
	font-weight: 700;
	font-size: 28px;
	line-height: 1.2em;
}

.helper {
	color: #878787;
	font-size: 12px;
	margin: 5px 0 0 0;
}

.helper.error {
	color: #f44336;
}

label {
    display: inline-block;
    max-width: 100%;
    margin-bottom: 5px;
    font-weight: bold;
    font-size: 12px;
}

.form-group {
	margin: 0 0 15px 0;
}

.form-input {
	border: 1px solid #c0c0c0;
	font-size: 16px;
	padding: 10px;
	width: 100%;
	font-family: 'Roboto', sans-serif;	
}

.btn {
	border: 0;
	font-size: 16px;
	text-align: center;
	margin: 10px 0;
	cursor: pointer;
	padding: 12px;
	min-width: 200px;
	font-family: 'Roboto', sans-serif;
	text-decoration: none;
	-o-transition:.5s;
	-ms-transition:.5s;
	-moz-transition:.5s;
	-webkit-transition:.5s;
	transition:.5s;

}

.btn-sm {
	font-size: 13px;
	margin: 10px 0;
	padding: 8px 16px;
	min-width: auto;
}


.btn-primary {
	background: #0984c4;
	color: #fff;
	
}

.btn-primary:hover {
	background: #0877b0;
	color: #fff;
}
	
.btn-danger {
	background: #eb003b;
	color: #fff;
	
}

.profile-avatar-wrapper {
	position: relative;
	width: 120px;
	height: 120px;
	float: left;
	margin-bottom: 20px;
	z-index: 4;
	top: -80px;
}

.profile-avatar {
/*
	width: 120px;
	height: 120px;
	float: left;
	position: absolute;
	margin-right: 15px;
margin-bottom: 20px;
top: -110px;
	z-index: 99;
*/
	position: relative;
	border-radius: 50%;
	overflow: hidden;
	-webkit-box-shadow: 1px 1px 2px 1px rgba(0,0,0,0.47); 
	-moz-box-shadow: 1px 1px 2px 1px rgba(0,0,0,0.47); 
	box-shadow: 1px 1px 2px 1px rgba(0,0,0,0.47);
}

.profile-avatar img {
	height: 100%;
	width: auto;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	display: block;
}

#settings-update-frm, #edit-profile-wrapper {
	max-width: 500px;
}

.table-bordered {
    border: 1px solid #ddd;
}
.table {
    width: 100%;
    max-width: 100%;
    margin-bottom: 20px;
}
table {
    background-color: transparent;
}
table {
    border-spacing: 0;
    border-collapse: collapse;
}
th, td {
	font-size: 14px;
}


#filter-members {
	text-align: right; 
}

#filter-members-init, #filter-members-prof {
	display: inline-block;
	vertical-align: middle;
	margin-left: 15px;
}


.page-overlay {
	position: fixed;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	background: rgba(0,0,0,.7);
	display: block;
	z-index: 997;
}

.page-loading {
	position: absolute;
	top: 50%;
	left: 50%;
	height: 50px;
	width: 50px;
	color: #fff;
	display: block;
	margin-top: -25px;
	margin-left: -25px;
	z-index: 998; 
} 

.page-alert {
	position: fixed;
	top: 50%;
	min-height: 50px;
	min-width: 250px;
	color: #fff;
	display: block;
	margin-top: -25px;
	z-index: 998;
	background: #fff;
	text-align: center;
	max-width: 500px;
	width: 90%;
	left: 50%;
	transform: translate(-50%, 0);
	padding: 15px;
}

.page-alert.success {
	color: #4CAF50;
	border: 2px solid #4CAF50;
}

.div-overlay {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	background: rgba(255,255,255, .5);
	display: block;
	z-index: 98;
}

.div-loading {
	position: absolute;
	top: 50%;
	left: 50%;
	height: 100px;
	width: 250px;
	color: #0984c4;
	display: block;
	margin-top: -50px;
	margin-left: -125px;
	z-index: 97; 
	text-align: center;
}

.modal {
	width: 90%;
	max-width: 700px;
	position: fixed;
	/*top: 10%;*/
	top: -100%;
	left: 0;
	right: 0;
	background: #fff;
	margin: 0 auto;
	z-index: 999;
	opacity: 0;
}

.modal-header {
	background: #0985c4; /* Old browsers */
	background: -moz-linear-gradient(top, #0985c4 0%, #1db1d7 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(top, #0985c4 0%,#1db1d7 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to bottom, #0985c4 0%,#1db1d7 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0985c4', endColorstr='#1db1d7',GradientType=0 ); /* IE6-9 */
}

.modal-header .close {
	background-color: transparent;
	float: right;
	cursor: pointer;
	border: 0;
	color: #fff;
	padding: 10px;
	font-size: 18px;
}

.modal-header h4 {
	font-family: 'Oxygen', sans-serif;
	font-weight: 700;
	color: #fff;
	padding: 8px;
	font-size: 22px;
}

.modal-body {
	padding: 20px;
}

.modal-body .btn {
	font-size: 14px;
}

.alert {
	padding: 10px;
	margin: 15px 0;
}

.alert a {
	color: #fff;
	text-decoration: underline;
}

.alert-success {
	color: #fff !important;
	background-color: #4CAF50 !important;
}

.alert-danger, .alert-error {
	color: #fff !important;
	background-color: #f44336 !important;
}

#outer {
	width: 100%;
	height: 100%;
	/*
	overflow-x: hidden;
	
  	margin-bottom: -130px;
	padding-bottom: 130px;
	*/
}

#header {
	background: #fff;
	color: #1196cc;
	height: 70px;
	width: 100%;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 99;
	-webkit-box-shadow: 0px 1px 3px 0px rgba(0,0,0,0.6);
	-moz-box-shadow: 0px 1px 3px 0px rgba(0,0,0,0.6);
	box-shadow: 0px 1px 3px 0px rgba(0,0,0,0.6);
}

#logo {
	font-family: 'Oxygen', sans-serif;
	width: 250px;
	float: left;
	font-size: 42px;
	margin: 8px 0 0 0;
}

#logo a {
	color: #fff;
}

#logo a:hover {
	color: #fff;
}

#top-nav {
	width: calc(100% - 255px);
	float: right;
	text-align: right;
	margin: 15px 0 0 0;
	font-size: 14px;
}

#top-nav ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

#top-nav ul li {
	display: inline-block;
}

#top-nav ul li a {
	color: #1196cc;
	display: block;
	padding: 10px 20px;
}

#top-nav ul li a:hover, #top-nav ul li.active a {
	color: #108bbd;
}

#mobile-nav {
	display: none;
}

#banner {
	background: #4e4e4e;
	height: 664px;
	width: 100%;
	margin: 70px 0 0 0;
	text-align: center;
	position:  relative;
	z-index: 2;
	overflow: hidden;
}

/* #banner-img {
	width: 2200px;
	position: absolute;
	z-index: 1;
	top: 0;
	left: 50%;
	margin-left: -1100px;
} */

#banner-img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

#banner-img img {
  width: 100%;
  height: 100%;
  /* object-fit: cover; */
  display: block;
}


#banner-inner {
	position: absolute;
	color: #fff;
	width: 92%;
	max-width: 700px;
	text-align: center;
	left: 0;
	right: 0;
	margin: 100px auto 0 auto;
	z-index: 2;
}

#banner-inner .banner-links {
	
}

#banner-inner .banner-links ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

#banner-inner .banner-links ul li {
	margin: 0 0 10px 0;
}

#banner-inner .banner-links ul li a {
	background-color: #ef004f;
	border: none;
	color: white;
	padding: 15px 32px;
	text-align: center;
	text-decoration: none;
	display: inline-block;
	font-size: 20px;
	margin: 4px 2px;
	cursor: pointer;
}

#banner-inner .banner-links ul li a:hover {
    -webkit-box-shadow: 0px 0px 19px 0px rgba(255,255,255,1);
    -moz-box-shadow: 0px 0px 19px 0px rgba(255,255,255,1);
    box-shadow: 0px 0px 19px 0px rgba(255,255,255,1);
}



#banner-inner h2 {
	font-size: 32px;
}

#content {
	background: url('../images/content_bg.jpg') center 70px no-repeat;
	padding: 60px 0 0 0;
	height: 100%;
}

.home #content {
	background: url('../images/content_bg.jpg') center top  no-repeat;
	padding: 60px 0 0 0;
	height: 100%;
}

#inner-content {
	margin: 70px 0 0 0;
}

.members-count {
	text-align: center;
	padding: 60px 0;
}


.members-count .svg-inline--fa {
	font-size: 82px;
	color: #0984c4;
}

.members-count h3 {
	font-family: 'Roboto', sans-serif;
	font-weight: 700;
	font-size: 48px;
	margin: 0;
	line-height: 1em;
}

.members-count p {
	margin: 0;
	color: #999999;
}

#find-profile {
	width: 100%;
	height: 100px;
	/*background: url('../images/fp_bg.jpg') repeat-x;*/
	background: #0985c4; /* Old browsers */
	background: -moz-linear-gradient(top, #0985c4 0%, #1db1d7 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(top, #0985c4 0%,#1db1d7 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to bottom, #0985c4 0%,#1db1d7 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0985c4', endColorstr='#1db1d7',GradientType=0 ); /* IE6-9 */
}

#find-profile-inner {
	/*background: url('../images/fp_icon.png') top right no-repeat;*/
	font-family: 'Oxygen', sans-serif;
	font-size: 62px;
	padding: 8px 0 0 0;
	color: #fff;
	max-width: 700px;
	margin: 0 auto;
	text-align: center;
}

#cp-form, #login-form, #new-password-form, #lost-password-form, #register-form {
	margin: 30px auto 0 auto;
	max-width: 600px;
}

#group-ad-form, #group-link-form {
	max-width: 600px
}

.sendClaimProfile {
	background: #0984c4;
	color: #fff;
	font-size: 26px;
	border: 0;
	text-align: center;
	margin: 0 0 15px 0;
	cursor: pointer;
	font-family: 'Oxygen', sans-serif;
	width: 100%;
	padding: 12px;
}

#claim-form {
	max-width: 500px;
	margin: 0 auto;
}

.push, #footer {
	height: 120px; 
}

#footer {
	text-align: center;
	font-size: 13px;
	color: #5b5b5b;
	margin: 30px 0;
	/*position: fixed;*/
	bottom: 0;
	left: 0;
	width: 100%;
}

#footer a {
	color: #5b5b5b;
}

#footer a:hover {
	color: #434343;
}

#foot-social {
	margin: 0 0 15px 0;
}

#foot-social a {
	font-size: 42px;
	color: #1db2d7;
	margin: 0 5px;
}

#foot-social a:hover {
	color: #1ba4c6;
}

#foot-links {
	margin: 15px 0 0 0;
}

/* Alums Page */
.alums-list {
	
	
}

.alums-page-list-left {
	display: inline-block;
	width: 70%;
	vertical-align: middle;
	font-family: 'Oxygen', sans-serif;
	font-weight: 700;
	font-size: 20px;
}

.alums-page-list-left img {
	vertical-align: middle;
	max-width: 120px; 
	height: auto;
	margin-right: 15px;
}

.group-avatar {
	height: 120px; 
	width: 120px; 
	display: inline-block; 
	border-radius: 50%; 
	background: #1ba4c6; 
	color: #fff; 
	line-height: 3em; 
	text-align: center; 
	font-size: 38px;
	margin-right: 15px;
}

.alums-page-list-right {
	display: inline-block;
	width: 30%;
	vertical-align: middle;
	text-align: center;
	font-family: 'Oxygen', sans-serif;
	font-weight: 700;
}


/* Alum page */
.alum-banner {
	height: 302px;
	background-repeat: no-repeat;
	width: 100%;
	position: relative;
	top: 70px;
	z-index:2;
	background-size: cover;
    background-position: center center;
}

#alum-content {
	padding: 10px 0 10px 0;
}

#alum-header {
	position: relative;
}

.alum-img {
	position: absolute; 
	top: -70px; 
	z-index: 4; 
	background: #fff; 
	border-radius: 50%; 
	height: 110px; 
	width: 110px; 
	overflow: hidden; 
	text-align: center;
	-webkit-box-shadow: 1px 1px 2px 1px rgba(0,0,0,0.47); 
	-moz-box-shadow: 1px 1px 2px 1px rgba(0,0,0,0.47); 
	box-shadow: 1px 1px 2px 1px rgba(0,0,0,0.47);
}

.alum-img img {
	width: auto; height: 100px;
}

.alum-title {
	position: absolute; 
	z-index: 4; 
	color: #fff; 
	top: -50px; 
	left: 130px;
	text-shadow: 1px 1px 1px rgba(0, 0, 0, 1);
}


#alum-desc {
	padding: 60px 0 0 0;
}

#alum-desc {
	font-size: 18px;
	margin-bottom: 35px;
}

#desc-edit {
	display: block; 
	margin-top: 15px;
	float: right;
}

#alum-content-full .widget-links {
	margin: 15px 0 0 0;
	font-size: 12px;
}


.alum-section-title {
	background: #eb003b;
	color: #fff;
	padding: 10px 0;
	margin-top: 60px;
	margin-bottom: 30px;
}

.alum-section-title .wrapper:after {
	/*
	background: #fff;
	border: 5px solid #eb003b;
	color: #eb003b;
	border-radius: 50%;
	height: 80px;
	width: 80px;
	position: absolute;
	right: 0;
	top: -30px;
	font-size: 52px;
	text-align: center;
	line-height: 77px;
	box-sizing: content-box;
	*/
}

#recent-post-section .wrapper:after { 
	/*font-family: FontAwesome;
    content: "\f040";*/
}

.alum-page-blog-post-body {
	
}

.alum-page-blog-post {
	padding: 10px 0;
	border-bottom: 1px solid #999;
}

.blog-post-left {
	width: 100px;
	float: left;
}

.blog-post-left .profile-avatar{
	height: 80px;
	width: 80px;
}


.blog-post-right {
	width: calc(100% - 100px);
	float: right;

}

.ap-blog-meta {
	font-size: 11px;
	color: #999;
}

#blogFormContainer {
	border-top: 1px solid #ccc; 
	margin: 30px auto;
	padding: 30px 0; 
	display: none;
}

#blogFormContainer textarea {
	height: 150px;
}

#compFormContainer {
	border-top: 1px solid #ccc; 
	margin: 30px auto;
	padding: 30px 0; 
	display: none;
}

.c_caption {
	display: block;
	text-align: center;
	margin: 5px 0;
	font-size: 13px;
}

#photos-section .wrapper:after { 
	/*font-family: FontAwesome;
    content: "\f03e";*/
}


.ap-photos {
	list-style: none;
	margin: 0 -1%;
	padding: 0;
}

.ap-photos li {
	display: inline-block;
	width: 31.3%;
	margin: 10px 1%;
}

#members-section .wrapper:after { 
	/*
	font-family: FontAwesome;
    content: "\f0c0";
	*/
}

#member_map {
	/*width: 100%;
	float: none;
	*/
	width: 49%;
	float: left;
	margin-top: 40px;
}

#member_chart {
	width: 49%;
	float: right;
	position: relative;
	/*display: none;*/
}
#member_chart_inner {
	display: none;
}

#member_cal {
	width: 49%;
	float: right;

}

#member_percent {
	display: none;
}


.labelPercentage {
  font-size: x-large;
}
 
.labelText {
  font-size: small;
  color: #CCCCCC;
}
 
.labelContainer {
  display: block;
  text-align: center;
  width: 100px;
  font-family: Helvetica;
}

.chart {
  position: relative;
  width: 250px;
  height: 250px;
  top: 50%;
  left: 50%;
  margin: 0px 0 0 -125px;
}

.doughnutTip {
  position: absolute;
  min-width: 30px;
  max-width: 300px;
  padding: 5px 15px;
  border-radius: 1px;
  background: rgba(0, 0, 0, 0.8);
  color: #ddd;
  font-size: 17px;
  text-shadow: 0 1px 0 #000;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.3;
  letter-spacing: .06em;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
  pointer-events: none;
}
.doughnutTip::after {
  position: absolute;
  left: 50%;
  bottom: -6px;
  content: "";
  height: 0;
  margin: 0 0 0 -6px;
  border-right: 5px solid transparent;
  border-left: 5px solid transparent;
  border-top: 6px solid rgba(0, 0, 0, 0.7);
  line-height: 0;
}

.doughnutSummary {
  position: absolute;
  top: 50%;
  left: 50%;
  color: #5b5b5b;
  text-align: center;
  cursor: default;
}

.doughnutSummaryTitle {
  position: absolute;
  top: 50%;
  width: 100%;
  margin-top: -47%;
  font-size: 18px;
  letter-spacing: .06em;
  line-height: 1.2em;
}

.doughnutSummaryNumber {
  position: absolute;
  top: 50%;
  width: 100%;
  margin-top: -10%;
  font-size: 44px;
}

.chart path:hover {
  opacity: 0.65;
}

.tp-selector h5 {
	cursor: pointer;
}

.tp-selections {
	position: absolute;
	top: 25px;
	border: 1px solid #0984c4;
	width: 100%;
	display: none;
	z-index: 9;
}

.tp-selections ul {
	background: #fff;
	list-style: none;
	padding: 0;
	margin: 0;
	max-height: 200px;
	overflow-y: auto;
}

.tp-selections ul li {
	font-size: 13px;
	padding: 5px;
	cursor: pointer;
	border-bottom: 1px solid #0984c4;
}

.tp-selections ul li:hover {
	color: #fff;
	background: #0984c4;
}

.tp-selections ul li.active {
	background: #f1f1f1;
}

.tp-selections ul li.active:hover {
	color: #5b5b5b;
}

.tp-selections ul li:last-child {
	border-bottom: 0;
}

.tp-selections:after, .tp-selections:before {
	bottom: 100%;
	left: 50%;
	border: solid transparent;
	content: " ";
	height: 0;
	width: 0;
	position: absolute;
	pointer-events: none;
}

.tp-selections:after {
	border-color: rgba(255, 255, 255, 0);
	border-bottom-color: #fff;
	border-width: 5px;
	margin-left: -5px;
}
.tp-selections:before {
	border-color: rgba(51, 122, 183, 0);
	border-bottom-color: #0984c4;
	border-width: 6px;
	margin-left: -6px;
}


#sl123 {
	width: 49%;
	float: left;
	position: relative;
}


#sr123 {
	width: 49%;
	float: right;
	position: relative;
}

#sr123 h5 {
	text-align: right;
}

#tp-block {
	max-width: 300px;
	margin: 10px auto;
}

#tp-block h5 {
	font-weight: 600;
}
#top-p {
	list-style: none;
	margin: 10px 0 0 0;
	padding: 0;
}

#top-p li {
	border-bottom: 1px solid #e1e1e1;
	padding: 10px
}

.tp-c {
	display: inline-block;
	vertical-align: middle;
	width: 150px;
	font-size: 13px;
}

.tp-p {
	font-weight: 600;
	font-family: 'Oxygen', sans-serif;
	display: inline-block;
	vertical-align: middle;
	font-size: 26px;
	width: calc(100% - 150px);
	text-align: right;
}


#members_table_wrapper, #loc-members-table-wrapper {
    margin-top: 20px;
	overflow-x: auto;
}

#members_table_length, #members_table_filter {
    font-size: 12px;
}

#members_table tr:nth-child(2n), #loc-members-table tr:nth-child(2n) {
    background: #fafafa;
}

#members_table_info, #members_table_paginate {
	font-size: 12px;
	margin-top: 10px;
}


#loc-members-table td {
	padding: 8px 10px;
}

#loc-members-table th {
	padding: 10px 18px;
	border-bottom: 1px solid #111;
}
	
#loc-members-count {
	font-size: 12px;
	color: #999;
	margin: 0 0 20px 0;
} 

.group-content {
	padding-top: 42px;
	position: relative;
}

.group-content-actions {
	position: absolute;
	top: 5px;
	right: 0;
}

.back-button {
	font-size: 13px;
	padding: 10px 0;
	display: block;
	color: #0984c4;
	cursor: pointer;
}

#group-links {
	list-style: none; 
	padding: 0; 
	margin: 0;
}

#group-links li {
	font-size: 13px;
	margin-bottom: 12px;
}

#group-links .svg-inline--fa {
	font-size: 26px; 
	margin-right: 6px;
	vertical-align: middle;
}

#us_map {
	width: 100%; 
	height: 280px;
}

#promo-section .wrapper::after {
	/*font-family: FontAwesome;
    content: "\f086";*/
}

.alum-page-ad {
	width: 23%;
	display: inline-block;
	vertical-align: top;
	margin-right: 2%;
	margin-bottom: 15px;
	text-align: center;
}

.alum-page-ad img {
	max-width: 80%;
	height: auto;
	margin: 0 auto;
}

.group-content-search {
    width: 100%;
    text-align: right;
    margin: 10px 0 15px 0;
    padding: 0;
    border-bottom: 1px solid #f1f1f1;
    font-size: 14px;
}

.search-left {
    float: left;
    font-size: 12px;
    color: #666;
    margin: 14px 0 0 0;
}

.group-content-search input, .group-content-search select {
	padding: 4px 8px;
}

.group-content-search .btn {
	padding: 5px 16px;
}

.alum-page-job-post h3 {
	color: #333;
	font-size: 20px;
}

.alum-page-job-post p {
	font-size: 14px;
}

.alum-page-job-post {
	border-bottom: 1px solid #e1e1e1;
	padding-bottom: 10px;
	margin-bottom: 10px;
	margin-right: 20px;
}


.ap-job-meta {																										
	font-size: 11px;
	color: #999;
}	

.pw3 {
	width: 32%; 
	float: left;
}

.pw3:nth-child(2), .pw3:nth-child(3) {
    padding-left: 1%; 
    border-left: 1px solid #e1e1e1;
}

.pw3 h4 {
	margin: 0 0 10px 0;
}

#jobs-section .wrapper:after {
	/*font-family: FontAwesome;
    content: "\f0b1";*/
}

.job-post {
	margin: 20px 0 10px 0;
	padding: 20px 0;
	border-bottom: 1px solid #f1f1f1;
}

.job-post h3 {
	font-size: 32px;
}

#group-blog .ap-blog-meta, #group-blog-post .ap-blog-meta {
	margin: 0 0 15px 0;
}

.blog-post {
	margin: 20px 0 10px 0;
	padding: 15px 0;
	border-bottom: 1px solid #ccc;
}

.blog-post h3 {
	font-size: 32px;
}

#group-jobs  {
	
}

#submitEventFrm {
	max-width: 350px;
	margin: 0 auto;
}

.ajax-navigation {
	border: 0;
}

.ajax-navigation:hover {
	background: transparent;
}

.alum-calendar th {
	background: #0984c4;
	color: #fff;
	font-size: 12px;
	padding: 8px;
}

.alum-calendar td {
	font-size: 12px;
	height: 35px;
	border: 1px solid #ddd;
	padding: 8px;
	line-height: 1.42857143;
	vertical-align: top;
}

.alum-calendar td.today-cell {
	background: #fafafa;
}

.alum-calendar .day-cell {
	float: right;
	margin: -2px -2px 0 0;
}

.alum-calendar .event-cell {
	background: #f0f6ff;
}

.add-event-cell {
	position: relative;
	bottom: 0;
	right: 0;
	float: left;
	text-align: right;
	width: 20px;
	margin-top: -15px;
	left: -10px;
	cursor:pointer;
	display: none;
}

.full-calendar th {
	background: #0984c4;
	color: #fff;
}

.full-calendar td {
	font-size: 12px;
	height: 95px;
	padding: 21px 8px 8px 8px !important;
}

.full-calendar td:hover .add-event-cell{
	display: block;
}
.full-calendar td.today-cell {
	background: #fafafa;
}

.full-calendar .day-cell {
	float: right;
	margin: -12px -4px 0 0;
	font-weight: bold;
}

.full-calendar .event-cell {
	font-size: 11px;
	padding: 5px 0;
	border-bottom: #ccc dashed 1px;
}

	.full-calendar .event-cell:last-child {
		border-bottom: 0;
	}

.full-calendar .event-cell .event-title-cell {
	font-weight: bold;
}

#submitBlogFrm {
	max-width: 600px;
}

#submitBlogFrm .btn {
	display: inline-block;
	width: 49%;
	min-width: auto;
}

#group-photos {
	list-style: none;
	margin: 0 -1%;
	padding: 0;
}

#group-photos li {
	display: inline-block;
	width: 18%;
	margin: 1%;
	vertical-align: top;
	text-align: center;
}

#group-photos li a {
	display: block;
}

.photo-caption {
	padding: 5px;
	text-align: center;
	display:block;
	font-size: 12px;
}

#group-photos li img {
	-webkit-box-shadow: 1px 1px 2px 1px rgba(0,0,0,0.47); 
	-moz-box-shadow: 1px 1px 2px 1px rgba(0,0,0,0.47); 
	box-shadow: 1px 1px 2px 1px rgba(0,0,0,0.47);
}

.deletePhoto, .deleteAd, .editPhoto {
	font-size: 12px !important;
	padding: 3px 6px !important;
	margin-top: 0 !important;
	
}

#group-photos .btn{
	margin: 0 2px;
	display: inline-block !important;
	min-width: auto;
}

.selectPhotoBtn {
	 margin: 0 !important;
}


/*

.content-box {
	margin: 10px 0 30px 0;
}

#alum-left {
	width:75%; 
	float: left; 
	margin-top: 60px; 
	padding-right: 30px;
}

.content-box#recent-posts {
	-webkit-box-shadow: 0px 1px 2px 0px rgba(0,0,0,0.75);
	-moz-box-shadow: 0px 1px 2px 0px rgba(0,0,0,0.75);
	box-shadow: 0px 1px 2px 0px rgba(0,0,0,0.75);
}
#alum-left .content-box h3 {
	color: #fff;
	background: #0984c4;
	padding: 5px;
}



#alum-right {
	width: 24%; 
	float: right; 
	margin-top: 60px;
}


.widget-box {
	/*border-bottom: 1px solid #0984c4;*\/
	padding: 20px 0;	
}

.widget-box .widget-links {
	margin: 10px 0 0 0;
	font-size: 12px;
}

.widget-box h4 {
	/*color: #0984c4;*\/
	color: #fff;
	background: #0984c4;
	padding: 5px;
	font-size: 16px;
}

.alum-page-blog-post {
	margin: 10px 0 20px 0;
}

.alum-page-blog-post h3 {
	color: #333;
	font-size: 24px;
	background: transparent !important;
	padding: 0 !important;
	margin: 5px 0;
}

.alum-page-blog-post p {
	font-size: 16px;
}


#ap-photos {
	list-style: none;
	margin: 0;
	padding: 0;
}

.alum-job-blog-post {
	
}





#group-blog {
	
}

.blog-post {
	margin: 20px 0 10px 0;
}

.blog-post h3 {
	font-size: 32px;
}

#group-jobs  {
	
}


.blog-post {
	padding: 15px 0;
	border-bottom: 1px solid #ccc;
}

#group-blog-post {
	
}

#group-blog-post .btn {
	margin: 10px 0;
}

#comment_reply {
	max-width: 600px; 
	display: inline-block; 
	vertical-align: middle;
}

.sendCommentReplyBtn {
	display: inline-block !important; 
	vertical-align: middle;
}

.closeCommentReplyBtn {
	display: inline-block  !important; 
	vertical-align: middle;
	background-color: #c9302c !important;
	border-color: #c9302c !important;
}

.group-content-search {
	width: 100%;
	text-align: right;
	margin: 10px 0 0 0;
	padding: 15px 0;
	border-bottom: 1px solid #f1f1f1;
}

.search-left {
	float: left;
	font-size: 12px;
	color: #666;
	margin: 4px 0 0 0;
}

.group-content-search select {
	padding: 3px;
	height: 26px;
}

.group-content-search .btn {
	display: inline-block; 
	vertical-align: middle;
	margin: 0 !important;
	padding: 2px 10px !important;
	font-size: 12px !important;
    margin-top: -3px !important;
}
	
.job-post .ap-job-meta {
	margin-bottom: 15px;
}

.left-nav {
	text-align: left;
}

.right-nav {
	text-align: right;
}


.alum-calendar {
	
	
}


#alum-contact-frm {
	
}

#alum-contact-frm input {
	width: 100%;
	border: 1px solid #ccc;
	padding: 5px;
	margin: 0 0 10px 0;
}

#alum-contact-frm textarea {
	background: #fff;
	color: #000;
	width: 100%;
	border: 1px solid #ccc;
	padding: 5px;
	height: 125px;
	resize: none;
	margin: 0 0 10px 0;
}

#alum-contact-frm .btn {
	width: 90%;
	margin: 10px auto;
	
}

#alum-contact-frm .helper {
    font-size: 12px;
    margin: -5px 0 10px 0;
}
*/
.mfp-close {
	background: transparent !important;
	border: 0  !important;
	padding: 0 !important;
	margin: 0 !important;
	font-size: 22px !important;
}

/* Profile */
.profile-banner {
	height: 302px;
	background-repeat: no-repeat;
	width: 100%;
	position: relative;
	top: 70px;
	z-index:2;
	background-size: cover;
    background-position: center center;
}

.hiddenSetting {
	color: red;
	vertical-align: middle;
	font-size: 12px;
	line-height: 1em;
	margin: -2px 0 0 5px;
}

#profile-content {
	padding: 0;
}

profile-header {
	position: relative;
}

.editSettings {
	position: absolute;
	top: 0px;
	right: 8px;
	cursor: pointer;
	font-size: 18px;
}

	.editSettings .svg-inline--fa {
		vertical-align: middle;
	}
	
.profile-header .profile-avatar {
	width: 120px;
	height: 120px;
	position: absolute;
	margin-right: 15px;
	border-radius: 50%;
	overflow: hidden;
	-webkit-box-shadow: 1px 1px 2px 1px rgba(0,0,0,0.47); 
	-moz-box-shadow: 1px 1px 2px 1px rgba(0,0,0,0.47); 
	box-shadow: 1px 1px 2px 1px rgba(0,0,0,0.47);

}

.profile-header .profile-avatar-wrapper:hover .edit-button {
	display: block;
}

.profile-header .profile-avatar img {
	min-height: 120px;
	min-width: 120px;
	width: auto;
	height: auto;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
}

#user_avatar {
	display: none;
}

.profile-image-upload {
	width: 140px;
	float: left;
	margin-bottom: 20px;
	position: relative;
	background: #fff;
	border: 3px solid #ccc;
	padding: 15px;
	text-align: center;
	font-size: 18px;
	line-height: 1.2em;
	color: #ccc;
	cursor:pointer;
	font-family: 'Open Sans', sans-serif;
	display: none;
	margin-right: 15px;
	z-index: 9;
}

.profile-image-upload i {
	display:block;
	font-size: 45px;
}

.cancelAvatarUpdateBtn {
	background: #e2203d !important;
	border-color: #e2203d !important;
	    font-size: 13px !important;
	padding: 6px !important;
	width: 100px;
	margin: 10px auto 0 !important;
}

.saveAvatarBtn {
	background: green !important;
	color: #fff !important;
	border: 0 !important;
	font-size: 12px !important;
	padding: 5px;
}

.saveAvatarBtn i {
 font-size: 12px !important;

}

.cancelAvatarBtn {
	background: red !important;
	color: #fff !important;
	border: 0 !important;
	font-size: 12px !important;
	padding: 5px;

}

.cancelAvatarBtn i {
	font-size: 12px !important;
}

.profile-header h2.profile-displayname {
	position: absolute;
	font-size: 24px;
	margin-left: 130px;
	top: -50px;
	z-index: 4;
	color: #fff;
	text-shadow: 1px 1px 1px rgba(0, 0, 0, 1);

}

.profile-header h2.profile-username:hover .edit-button {
	display: block;
}

#profile-wrapper {
	position: relative;
	padding-top: 10px;
	top: -120px;
}
	
#profile-left {
	width: 30%;
	float: left;
	margin: 20px 0 0 0;
}

#profile-work {
	margin: 15px 0 0 0;
}

#profile-birthdate {
	margin: 15px 0 0 0;
}

#profile-spouse {
	margin: 15px 0 0 0;
}


#profile-groups {
	margin: 10px 0 30px 0;
}

#profile-groups .profile-alumni {
	font-size: 12px;
	color: #999;
}

#profile-groups .profile-alumni a {
	font-size: 18px; 
	font-weight: 500;
	font-family: 'Open Sans', sans-serif;
	color: #FF6B6B;
	margin: 0 0 8px;
	margin-left: 0px;
	line-height: 1.3em;
	display: block;
}


#profile-right {
	width: 68%;
	float: right;
}

#prof-status-box {
	text-align: right;
	font-size: 13px;
}

#profile-counts {
	padding: 0;
	list-style: none;
	margin: 0;
}

#profile-counts li {
	display: inline-block;
	width: 32%;
	text-align: center;
	padding: 0 0 20px 0;
	vertical-align: top;
}

#member-privacy-settings {
	width: 100%;
	max-width: 400px;
	border-collapse: collapse;
}
#member-privacy-settings tbody tr {
	border-top: 1px solid #ccc;
}

#member-privacy-settings tr td {
	padding: 5px;
}

#settings-update-frm .form-group .input {	
	font-size: 14px !important;
	padding: 5px !important;
	width: 90% !important;
	max-width: 300px !important;
}

button[type=submit].updateSettingsBtn, button[type=button].cancelSettingsBtn  {
	margin: 20px 0 0 0;
	display: inline-block;
}
button[type=submit].updateSettingsBtn {
	
}
button[type=button].cancelSettingsBtn {
	background: #e2203d;
	border-color: #e2203d;
	color: #fff;

}
#profile-counts li i {
	font-size: 55px;
display: block;
}

#profile-counts li .profile-number {
	font-size: 33px;
	display: block;
}

#profile-data {
	padding: 20px;
	/*
	-webkit-box-shadow: 0px 0px 3px 0px rgba(0,0,0,0.75);
	-moz-box-shadow: 0px 0px 3px 0px rgba(0,0,0,0.75);
	box-shadow: 0px 0px 3px 0px rgba(0,0,0,0.75);
	*/
	position: relative;
}

#profile-data label {
	display: block;
	margin: 10px 0 5px 0;
}

#profile-data-sub {
	margin-top: 15px;
	position: relative;
	line-height: 1.5em;
	font-size: 14px;
}

#profile-data-sub h4 {
	margin: 4px 0 12px 0;
}

#profile-data-sub fieldset {
	border: 0;
	border-top: 1px solid #f1f1f1;
	padding: 20px 0;
	margin-top: 15px;
	
}

#profile-data-sub legend {
	font-family: 'Oxygen', sans-serif;
	font-weight: 500;
	font-size: 18px;
	padding: 0 10px;
	margin-left: -10px;
	position: relative;
}

#profile-data-sub:hover .edit-button {
	display: block;
}

#profile-data  button[type=button] {
	margin: 0;
}


#profile-data-sub .form-group {
	display: none;
}

button[type=button].updateUserNameBtn, button[type=button].cancelUserNameBtn  {
	font-size: 13px;
	padding: 4px 5px;
	margin: 0 !important;
	position: relative;
	display: inline-block;
	vertical-align: bottom;
	border-radius: 0;
	display: none;
}

button[type=button].cancelUserNameBtn {
	background: #e2203d !important;
	border-color: #e2203d ;
}

button[type=button].updateUserDataBtn {
	display: inline-block;
}
button[type=button].cancelUserDataBtn  {
	background: #e2203d !important;
	border-color: #e2203d ;
	display: inline-block;
}
.profile-meta {
	font-size: 12px;
	color: #eeeeee;
	margin-left: 0px;
	margin-top: 0px;
}

.edit-button {
	background: #FF6B6B;
	color: #fff;
	padding: 3px 6px;
	cursor: pointer;
	position: absolute;
	bottom: -10px;
	right: 0;
	font-size: 13px !important;
	display: none;
	z-index: 98;
}

.edit-button.editDetailsBtn {
	display: block;
}
.profile-username .edit-button {
	bottom: 0px;
	right: 10px;
}
.edit-nicename {
	display: none;
	font-size:15px;
	padding: 3px 5px 4px;
	line-height: 1.5em;
}


.profile-street {
	font-size: 18px;
	margin-top: 10px;
}

/* Timeline */

.timeline {
  line-height: 1.4em;
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
}
.timeline h1, .timeline h2, .timeline h3, .timeline h4, .timeline h5, .timeline h6 {
  line-height: inherit;
}

/*----- TIMELINE ITEM -----*/
.timeline-item {
  padding-left: 40px;
  position: relative;
}
.timeline-item:last-child {
  padding-bottom: 0;
}

/*----- TIMELINE INFO -----*/
.timeline-info {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  margin: 0 0 .5em 0;
  text-transform: uppercase;
  white-space: nowrap;
}

/*----- TIMELINE MARKER -----*/
.timeline-marker {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 15px;
}
.timeline-marker:before {
  background: #FF6B6B;
  border: 3px solid transparent;
  border-radius: 100%;
  content: "";
  display: block;
  height: 15px;
  position: absolute;
  top: 4px;
  left: 0;
  width: 15px;
  transition: background 0.3s ease-in-out, border 0.3s ease-in-out;
}
.timeline-marker:after {
  content: "";
  width: 3px;
  background: #CCD5DB;
  display: block;
  position: absolute;
  top: 24px;
  bottom: 0;
  left: 6px;
}
.timeline-item:last-child .timeline-marker:after {
  content: none;
}

.timeline-item:not(.period):hover .timeline-marker:before {
  background: transparent;
  border: 3px solid #FF6B6B;
}

/*----- TIMELINE CONTENT -----*/
.timeline-content {
  padding-bottom: 40px;
}
.timeline-content p:last-child {
  margin-bottom: 0;
}

/*----- TIMELINE PERIOD -----*/
.period {
  padding: 0;
}
.period .timeline-info {
  display: none;
}
.period .timeline-marker:before {
  background: transparent;
  content: "";
  width: 15px;
  height: auto;
  border: none;
  border-radius: 0;
  top: 0;
  bottom: 30px;
  position: absolute;
  border-top: 3px solid #CCD5DB;
  border-bottom: 3px solid #CCD5DB;
}
.period .timeline-marker:after {
  content: "";
  height: 32px;
  top: auto;
}
.period .timeline-content {
  padding: 40px 0 70px;
}
.period .timeline-title {
  margin: 0;
}

h3.timeline-title {
    font-size: 20px;
}

.timeline-content p {
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 3px;
	margin: 0 0 .5em 0;
	text-transform: uppercase;
	white-space: nowrap;
}

/*----------------------------------------------
    MOD: TIMELINE SPLIT
----------------------------------------------*/
@media (min-width: 768px) {
  .timeline-split .timeline, .timeline-centered .timeline {
    display: table;
  }
  .timeline-split .timeline-item, .timeline-centered .timeline-item {
    display: table-row;
    padding: 0;
  }
  .timeline-split .timeline-info, .timeline-centered .timeline-info,
  .timeline-split .timeline-marker,
  .timeline-centered .timeline-marker,
  .timeline-split .timeline-content,
  .timeline-centered .timeline-content,
  .timeline-split .period .timeline-info,
  .timeline-centered .period .timeline-info {
    display: table-cell;
    vertical-align: top;
  }
  .timeline-split .timeline-marker, .timeline-centered .timeline-marker {
    position: relative;
  }
  .timeline-split .timeline-content, .timeline-centered .timeline-content {
    padding-left: 30px;
  }
  .timeline-split .timeline-info, .timeline-centered .timeline-info {
    padding-right: 30px;
  }
  .timeline-split .period .timeline-title, .timeline-centered .period .timeline-title {
    position: relative;
    left: -45px;
  }
}

/*----------------------------------------------
    MOD: TIMELINE CENTERED
----------------------------------------------*/
@media (min-width: 992px) {
  .timeline-centered,
  .timeline-centered .timeline-item,
  .timeline-centered .timeline-info,
  .timeline-centered .timeline-marker,
  .timeline-centered .timeline-content {
    display: block;
    margin: 0;
    padding: 0;
  }
  .timeline-centered .timeline-item {
    padding-bottom: 40px;
    overflow: hidden;
  }
  .timeline-centered .timeline-marker {
    position: absolute;
    left: 50%;
    margin-left: -7.5px;
  }
  .timeline-centered .timeline-info,
  .timeline-centered .timeline-content {
    width: 50%;
  }
  .timeline-centered > .timeline-item:nth-child(odd) .timeline-info {
    float: left;
    text-align: right;
    padding-right: 30px;
  }
  .timeline-centered > .timeline-item:nth-child(odd) .timeline-content {
    float: right;
    text-align: left;
    padding-left: 30px;
  }
  .timeline-centered > .timeline-item:nth-child(even) .timeline-info {
    float: right;
    text-align: left;
    padding-left: 30px;
  }
  .timeline-centered > .timeline-item:nth-child(even) .timeline-content {
    float: left;
    text-align: right;
    padding-right: 30px;
  }
  .timeline-centered > .timeline-item.period .timeline-content {
    float: none;
    padding: 0;
    width: 100%;
    text-align: center;
  }
  .timeline-centered .timeline-item.period {
    padding: 50px 0 90px;
  }
  .timeline-centered .period .timeline-marker:after {
    height: 30px;
    bottom: 0;
    top: auto;
  }
  .timeline-centered .period .timeline-title {
    left: auto;
  }
}

/*----------------------------------------------
    MOD: MARKER OUTLINE
----------------------------------------------*/
.marker-outline .timeline-marker:before {
  background: transparent;
  border-color: #FF6B6B;
}
.marker-outline .timeline-item:hover .timeline-marker:before {
  background: #FF6B6B;
}

/*** custom checkboxes ***/

input[type=checkbox].checkbox { display:none; } /* to hide the checkbox itself */
input[type=checkbox].checkbox + label:before {
  font-family: FontAwesome;
  display: inline-block;
  margin-right: 15px;
  vertical-align: middle;
}

input[type=checkbox].checkbox + label {
	font-weight: normal;
}
input[type=checkbox].checkbox + label:before { content: ""; border: 1px solid #ccc; height: 30px; width: 30px; } /* unchecked icon */
input[type=checkbox].checkbox + label:before { letter-spacing: 10px; } /* space between checkbox and label */

input[type=checkbox].checkbox:checked + label:before { content: "\f00c"; color: #fff; background: #eb003b;  font-size: 24px; line-height: 1.2em; padding-left: 2px;} /* checked icon */
input[type=checkbox].checkbox:checked + label:before { letter-spacing: 5px; } /* allow space for check mark */

input[type=radio].checkbox { display:none; } /* to hide the checkbox itself */
input[type=radio].checkbox + label:before {
  font-family: FontAwesome;
  display: inline-block;
  margin-right: 15px;
  vertical-align: middle;
}

input[type=radio].checkbox + label {
	font-weight: normal;
}
input[type=radio].checkbox + label:before { content: ""; border: 1px solid #ccc; height: 30px; width: 30px; } /* unchecked icon */
input[type=radio].checkbox + label:before { letter-spacing: 10px; } /* space between checkbox and label */

input[type=radio].checkbox:checked + label:before { content: "\f00c"; color: #fff; background: #eb003b;  font-size: 24px; line-height: 1.2em; padding-left: 2px;} /* checked icon */
input[type=radio].checkbox:checked + label:before { letter-spacing: 5px; } /* allow space for check mark */

/* ============================================================
  COMMON
============================================================ */
.cmn-toggle {
  position: absolute;
  margin-left: -9999px;
  visibility: hidden;
}

.cmn-toggle + label {
  display: block;
  position: relative;
  cursor: pointer;
  outline: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* ============================================================
  SWITCH 1 - ROUND
============================================================ */
input.cmn-toggle-round + label {
  padding: 2px;
  width: 120px;
  height: 60px;
  background-color: #dddddd;
  -webkit-border-radius: 60px;
  -moz-border-radius: 60px;
  -ms-border-radius: 60px;
  -o-border-radius: 60px;
  border-radius: 60px;
}
input.cmn-toggle-round + label:before, input.cmn-toggle-round + label:after {
  display: block;
  position: absolute;
  top: 1px;
  left: 1px;
  bottom: 1px;
  content: "";
}
input.cmn-toggle-round + label:before {
  right: 1px;
  background-color: #f1f1f1;
  -webkit-border-radius: 60px;
  -moz-border-radius: 60px;
  -ms-border-radius: 60px;
  -o-border-radius: 60px;
  border-radius: 60px;
  -webkit-transition: background 0.4s;
  -moz-transition: background 0.4s;
  -o-transition: background 0.4s;
  transition: background 0.4s;
}
input.cmn-toggle-round + label:after {
  width: 58px;
  background-color: #fff;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  -ms-border-radius: 100%;
  -o-border-radius: 100%;
  border-radius: 100%;
  -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  -webkit-transition: margin 0.4s;
  -moz-transition: margin 0.4s;
  -o-transition: margin 0.4s;
  transition: margin 0.4s;
}
input.cmn-toggle-round:checked + label:before {
  background-color: #8ce196;
}
input.cmn-toggle-round:checked + label:after {
  margin-left: 60px;
}

/* ============================================================
  SWITCH 2 - ROUND FLAT
============================================================ */
input.cmn-toggle-round-flat + label {
  padding: 2px;
  width: 50px;
  height: 25px;
  background-color: #dddddd;
  -webkit-border-radius: 60px;
  -moz-border-radius: 60px;
  -ms-border-radius: 60px;
  -o-border-radius: 60px;
  border-radius: 60px;
  -webkit-transition: background 0.4s;
  -moz-transition: background 0.4s;
  -o-transition: background 0.4s;
  transition: background 0.4s;
}
input.cmn-toggle-round-flat + label:before, input.cmn-toggle-round-flat + label:after {
  display: block;
  position: absolute;
  content: "";
}
input.cmn-toggle-round-flat + label:before {
  top: 2px;
  left: 2px;
  bottom: 2px;
  right: 2px;
  background-color: #fff;
  -webkit-border-radius: 60px;
  -moz-border-radius: 60px;
  -ms-border-radius: 60px;
  -o-border-radius: 60px;
  border-radius: 60px;
  -webkit-transition: background 0.4s;
  -moz-transition: background 0.4s;
  -o-transition: background 0.4s;
  transition: background 0.4s;
}
input.cmn-toggle-round-flat + label:after {
  top: 4px;
  left: 4px;
  bottom: 4px;
  width: 18px;
  background-color: #dddddd;
  -webkit-border-radius: 52px;
  -moz-border-radius: 52px;
  -ms-border-radius: 52px;
  -o-border-radius: 52px;
  border-radius: 52px;
  -webkit-transition: margin 0.4s, background 0.4s;
  -moz-transition: margin 0.4s, background 0.4s;
  -o-transition: margin 0.4s, background 0.4s;
  transition: margin 0.4s, background 0.4s;
}
input.cmn-toggle-round-flat:checked + label {
  background-color: #8ce196;
}
input.cmn-toggle-round-flat:checked + label:after {
  margin-left: 22px;
  background-color: #8ce196;
}

/* ============================================================
  SWITCH 3 - YES NO
============================================================ */
input.cmn-toggle-yes-no + label {
  padding: 2px;
  width: 120px;
  height: 60px;
}
input.cmn-toggle-yes-no + label:before, input.cmn-toggle-yes-no + label:after {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  color: #fff;
  font-family: "Roboto Slab", serif;
  font-size: 20px;
  text-align: center;
  line-height: 60px;
}
input.cmn-toggle-yes-no + label:before {
  background-color: #dddddd;
  content: attr(data-off);
  -webkit-transition: -webkit-transform 0.5s;
  -moz-transition: -moz-transform 0.5s;
  -o-transition: -o-transform 0.5s;
  transition: transform 0.5s;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -o-backface-visibility: hidden;
  backface-visibility: hidden;
}
input.cmn-toggle-yes-no + label:after {
  background-color: #8ce196;
  content: attr(data-on);
  -webkit-transition: -webkit-transform 0.5s;
  -moz-transition: -moz-transform 0.5s;
  -o-transition: -o-transform 0.5s;
  transition: transform 0.5s;
  -webkit-transform: rotateY(180deg);
  -moz-transform: rotateY(180deg);
  -ms-transform: rotateY(180deg);
  -o-transform: rotateY(180deg);
  transform: rotateY(180deg);
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -o-backface-visibility: hidden;
  backface-visibility: hidden;
}
input.cmn-toggle-yes-no:checked + label:before {
  -webkit-transform: rotateY(180deg);
  -moz-transform: rotateY(180deg);
  -ms-transform: rotateY(180deg);
  -o-transform: rotateY(180deg);
  transform: rotateY(180deg);
}
input.cmn-toggle-yes-no:checked + label:after {
  -webkit-transform: rotateY(0);
  -moz-transform: rotateY(0);
  -ms-transform: rotateY(0);
  -o-transform: rotateY(0);
  transform: rotateY(0);
}



.info-alert {
	color: #31708f;
background-color: #d9edf7;
padding: 6px;
font-size: 12px;
max-width: 500px;
margin: 5px 0 0 0;
}




@media (max-width: 987px) { 
	#group-photos li {
		display: inline-block;
		width: 31%;
		margin: 1%;
		vertical-align: top;
	}


}

@media (max-width: 787px) { 
	#top-nav {
		width: 35px;
	}
	#top-nav ul {
		position: fixed;
		display: block;
		top: 0;
		/*right: -5%;*/
		right: -335px;
		width: 330px;
		background: rgba(0,0,0,.8);
		z-index: 98;
		height: 100%;
		padding: 70px 0 0 0;
	}
	
	#top-nav ul li {
		display: block;
		text-align: center;
		font-size: 18px;
	}
	
	#mobile-nav {
		display: block;
		font-size: 28px;
		padding: 5px;
		position: relative;
		z-index: 99;
		cursor: pointer;
	}
	
	#find-profile {
		width: 100%;
		height: 106px;
		background-size: contain;

	}

	#find-profile-inner {
		height: 106px;
		font-size: 42px;
		padding: 20px 0 0 0;
		background-size: contain;
		line-height: 1.5em;
	}
	
	#member_map {
		width: 100%;
		float: none;
	}
	#member_chart {
		width: 100%;
		float: none;
		position: relative;
	}

	
	#member_cal {
		width: 100%;
		float: none;
		margin: 15px 0 0 0;
	}
	
	.pw3 {
		width: 100%; 
		float: none;
		margin: 0 0 10px 0
	}
	
	.pw3:nth-child(2), .pw3:nth-child(3) {
	    padding-left: 0; 
	    border-left: 0;
	    border-top: 1px solid #e1e1e1;
	    padding: 15px 0;
	}

	#banner-inner .banner-links ul li a {
		font-size: 18px;
	}
	
	.alum-page-ad {
		width: 48%;
	}


}

@media (max-width: 600px) { 
	.alums-page-list-left {
	    display: block;
	    width: 100%;
	    text-align: center;
		margin-top: 40px;
	}
	
	.alums-page-list-left img {
	    display: block;
	    margin: 15px auto;
	}
	
	.group-avatar {
		display: block;
	    margin: 15px auto;
	}
	
	.alums-page-list-right {
	    display: block;
	    width: 100%;
	    text-align: center;
	}
	#profile-left {
		width: 100%;
		float: right;
	}
	#profile-right {
		width: 100%;
		float: left;

	}
	
	#profile-data {
		padding: 0;
	}
	
	#group-photos li {
		display: inline-block;
		width: 48%;
		margin: 1%;
		vertical-align: top;
	}


}

@media (max-width: 487px) { 
	.hide-mobile {
		display: none;
	}
	
	#banner {
		height: 332px;
		
	}

	#banner-img {
		width: 1100px;
		margin-left: -550px;
	}
	
	#banner-inner {
		margin-top: 50px;
		z-index: 2;
	}
	
	#banner-inner .banner-links {
		margin-top: -30px;
	}
	
	#banner-inner .banner-links ul li a {
		font-size: 14px;
		padding: 10px 10px;
	}
	
	#banner-inner h2 {
    	font-size: 22px;
    	line-height: 1.2em;
    }
    
    #banner-inner p {
		font-size: 14px;
    	line-height: 1.2em;
	}
	
	#find-profile {
		height: 86px;
	}
	
	#find-profile-inner {
		height: 86px;
		font-size: 32px;
		padding: 26px 0 0 0;
		background-size: contain;
		line-height: 1em;
	}
	
	/* ALUM PAGE */
	.alum-banner {
		height: 200px;
	}
	
	.alum-img {
		top: -90px;
	}
	
	.alum-title {
		top: -70px; 
		left: 120px;
	}
	
	.alum-title h2 {
		font-size: 21px;	
	}
	
	.ap-photos {
		margin: 0;
	}
	
	.ap-photos li {
		display: inline-block;
		width: 100%;
		margin: 10px 0%;
	}
	
	.profile-banner {
		height: 200px;
	}
	
	#blogFormContainer {
		 
	}
	
	.alum-page-ad {
		width: 100%;
		display: block;
		vertical-align: top;
		margin-right: auto;
		margin-left: auto;
	}
	
	.alum-page-ad img {
		max-width: 100%;
		height: auto;
		margin: 0 auto;
	}
	
	#group-photos li {
		display: block;
		width: 100%;
		margin: 1% 0;
	}

}