@font-face {
	font-family: 'S-B';
	src: url('../fonts/Sintony-Bold/Sintony-Bold.eot?#iefix') format('embedded-opentype'),
		url('../fonts/Sintony-Bold/Sintony-Bold.woff') format('woff'),
		url('../fonts/Sintony-Bold/Sintony-Bold.ttf')  format('truetype'),
		url('../fonts/Sintony-Bold/Sintony-Bold.svg#Sintony-Bold') format('svg');
	font-weight: normal;
	font-style: normal;
}
@font-face {
	font-family: 'S';
	src: url('../fonts/Sintony/Sintony.eot?#iefix') format('embedded-opentype'),
		url('../fonts/Sintony/Sintony.woff') format('woff'),
		url('../fonts/Sintony/Sintony.ttf')  format('truetype'),
		url('../fonts/Sintony/Sintony.svg#Sintony') format('svg');
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: 'P-B';
	src: url('../fonts/Play-Bold/Play-Bold.eot?#iefix') format('embedded-opentype'),
		url('../fonts/Play-Bold/Play-Bold.woff') format('woff'),
		url('../fonts/Play-Bold/Play-Bold.ttf')  format('truetype'),
		url('../fonts/Play-Bold/Play-Bold.svg#Play-Bold') format('svg');
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: 'P';
	src: url('../fonts/Play/Play.eot?#iefix') format('embedded-opentype'),
		url('../fonts/Play/Play.woff') format('woff'),
		url('../fonts/Play/Play.ttf')  format('truetype'),
		url('../fonts/Play/Play.svg#Play') format('svg');
	font-weight: normal;
	font-style: normal;
}

*{
	box-sizing: border-box;
	outline: none;
}

body{
	font-family: "S";
	margin: 0;
	font-size: 14px;
	line-height: 24px;
	color: #777;
}

h1, h2, h3, h4, h5, h6{
	font-weight: normal;
	color: #4b4b4b;
	margin: 0;
}

h1{
	font-size: 30px;
	font-family: "P-B";
}

h2{
	font-family: "P-B";
	font-size: 24px;
}

h3{
	font-family: "P-B";
}

a{
	text-decoration: none;
	color: #333;
}

.container {
	float: left;
	margin: 0;
	width: 100%;
}

.left_sec {
	height: 100%;
	overflow-y: auto;
	position: fixed;
	width: 260px;
	background-image: url('../images/side_bar_bg.jpg');
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	top: 0;
	left: 0;
}

ul{
	padding: 0;
	list-style: none;
	margin: 0;
}

.profile_image {
	float: left;
	margin-top: 35px;
	text-align: center;
	padding-bottom: 20px;
	width: 100%;
}

.profile_image > div {
	border-radius: 100%;
	width: 150px;
	height: 150px;
	overflow: hidden;
	margin: auto;
}
.profile_image > div img{
	width: 100%;
}

.black_overlay {
	background-color: rgba(52, 52, 52, 0.85);
	height: 100%;
	position: absolute;
	width: 100%;
	z-index: 12;
}

.left-profile-content {
    float: left;
    position: relative;
    width: 100%;
    z-index: 99;
}

.left_sec h2 {
	color: #fff;
	float: left;
	text-align: center;
	width: 100%;
	font-size: 20px;
	padding-bottom: 15px;
}
.other_info_sec {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    float: left;
    margin-bottom: 20px;
    padding-bottom: 20px;
    text-align: center;
    width: 100%;
}
.other_info_sec:last-child {
	margin-bottom: 0px;
	padding-bottom: 0px;
	border: 0px;
}
.other_info_sec span {
	color: #fff;
	float: left;
	width: 100%;
	font-size: 14px;
}

.right_sec {
	margin-top: 65px;
}

.bold_text {
	font-family: S-B;
}

.other_info_sec > a {
	color: #fff;
	font-size: 14px;
	float: left;
	width: 100%;
}

.menu_sec {
	float: left;
	margin-top: 30px;
	width: 100%;
}

.menu_sec li {
	float: left;
	width: 100%;
}

.menu_sec li a {
	border-top: 1px solid rgba(255, 255, 255, 0.2);
	color: #fff;
	float: left;
	padding-bottom: 15px;
	padding-left: 20px;
	padding-top: 15px;
	width: 100%;
	position: relative;
	transition: all 0.2s cubic-bezier(0.55, 0.06, 0.68, 0.19) 0s;
	overflow: hidden;
}

.menu_sec li:nth-last-child(1) a {
	border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.other_info_sec > img {
	margin-bottom: 10px;
	margin-top: 20px;
	width: 105px;
}

.menu_sec li a::after {
	content: "\f105";
	font-family: "FontAwesome";
	font-size: 24px;
	position: absolute;
	right: 10px;
	top: 48%;
	transform: translateY(-48%);
}

.menu_sec li a::before {
    background-color: rgba(146, 146, 146, 0.1);
    content: "";
    height: 50px;
    left: -35px;
    position: absolute;
    top: 100px;
    transform: scale(3) rotate(30deg);
    transition: all 0.1s ease 0s;
    width: 50px;
}

.menu_sec li.current_menu a::before, .menu_sec li:hover a::before, .menu_sec li:focus a::before {
	transform: scale(10) rotate(30deg);
	transition: all 0.2s cubic-bezier(0.55, 0.06, 0.68, 0.19) 0s;
}

.menu_sec li.current_menu a, .menu_sec li:hover a, .menu_sec li:focus a {
	padding-left: 30px;
	transition: all 0.2s cubic-bezier(0.55, 0.06, 0.68, 0.19) 0s;
}

.wrapper{
	margin-left: 260px;
}

.inner_container{
	max-width: 940px;
	width: 100%;
	margin: auto;
	overflow: hidden;
}

// canvas{
// 	display:block;
// 	vertical-align:bottom;
// }

// .count-particles{
// 	background: #000022;
// 	position: absolute;
// 	top: 48px;
// 	left: 0;
// 	width: 80px;
// 	color: #13E8E9;
// 	font-size: .8em;
// 	text-align: left;
// 	text-indent: 4px;
// 	line-height: 14px;
// 	padding-bottom: 2px;
// 	font-family: Helvetica, Arial, sans-serif;
// 	font-weight: bold;
// }

// .js-count-particles{
// 	font-size: 1.1em;
// }

// #stats,
// .count-particles{
// 	-webkit-user-select: none;
// 	margin-top: 5px;
// 	margin-left: 5px;
// }

// #stats{
// 	border-radius: 3px 3px 0 0;
// 	overflow: hidden;
// }

// .count-particles{
// 	border-radius: 0 0 3px 3px;
// }

// #particles-js{
// 	width: 100%;
// 	height: 100%;
// 	background-color: #b61924;
// 	background-image: url('');
// 	background-size: cover;
// 	background-position: 50% 50%;
// 	background-repeat: no-repeat;
// }

#stats > div {
	display: none !important;
}

.content_column {
	float: left;
	width: 67%;
}
.sidebar_column {
    float: right;
    padding: 2% 0 0 5%;
    width: 30%;
}
.sidebar_title {
	border-bottom: 1px solid #dedede;
	float: left;
	font-family: P-B;
	margin-bottom: 40px;
	padding-bottom: 10px;
	width: 100%;
	position: relative;
}

.sidebar_title:before {
    background-color: #333;
    bottom: -1px;
    content: "";
    height: 1px;
    left: 0;
    position: absolute;
    width: 45px;
}

.sidebar_title h3 {
	font-size: 14px;
	margin-bottom: -5px;
	text-transform: uppercase;
}

.content_column > div {
	float: left;
	margin: 20px 0;
	width: 100%;
	margin-bottom: 70px;
}

.header_image {
	float: left;
	margin: 20px 0;
	width: 100%;
}

.sidebar_column span {
	display: table-cell;
	text-align: justify;
}

.primary-menu li {
    display: inline-block;
}

.primary-menu li a {
    color: #777;
}
.primary-menu li a:hover {
    color: #536895;
    text-decoration: underline;
}

.menu-sec {
    margin: auto auto 35px;
    max-width: 940px;
    width: 100%;
}

#teaching > p,
#research > p,
#data_resources > p {
    text-align: justify;
}

ul.primary-menu {
    text-align: right;
}
.primary-menu li {
    border-left: 1px solid #777;
    display: inline-block;
    margin-left: 15px;
    padding-left: 15px;
    line-height: 18px;
}
.primary-menu li:first-child {
    border-left: 0 none;
    margin-left: 0;
    padding-left: 0;
}







.content {
    margin-top: 20px;
}
.content a{
	color: #536895;
	text-decoration: underline;
}
.content a:hover{
	text-decoration: none;
}
.content-block i {
    font-weight: bold;
}
.content ul li {
    padding-left: 15px;
    position: relative;
}
.content ul li i {
    font-size: 16px;
    left: 0;
    position: absolute;
    top: 4px;
}
.sidebar_column i {
  font-size: 16px;
  padding-top: 0;
}
.content-block{
	margin-bottom: 20px;
    background: #efefef none repeat scroll 0 0;
    padding: 12px;
    border-radius: 5px;
}
.content p {
    margin: 0;
}

.content_column h2 {
    border-bottom: 1px solid #dedede;
    padding-bottom: 10px;
    position: relative;
}
.content_column h2::before {
    background-color: #333;
    bottom: -1px;
    content: "";
    height: 1px;
    left: 0;
    position: absolute;
    width: 45px;
}