:root {
  --textcolor: #111;
  --colorone: #993399;
  --colortwo: #FFCC66;
  --coloronedark: #660066;
  --colortwodark: #FBBB3C;	
}

html, body, div, span, applet, object, iframe,
 h3,h2,h4,h5, h6,blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike,sub, sup, tt, var,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td, input, button, select, textarea {
   margin: 0;
   padding: 0;
   border: 0;
   outline: 0;
   font-weight: inherit;
   font-style: inherit;
   font-size: 100%;
   vertical-align: baseline;
   text-decoration:none;
   color:var(--textcolor);
   box-sizing:border-box;
   font-family: 'Lato', sans-serif;
}

body{
	margin: 0;
	min-width: 360px;
	padding: 0;
	background: #fffbf3;
}

.wrap{
	width:100%;
	max-width:1160px;
	padding:0 10px;
	box-sizing:border-box;
	margin:0 auto;
}

.clear{
	clear:both;
}

hr{
	border:none;
	border-top:1px solid #aaa;
	margin:0;
	clear:both;
}

ul, li{
	margin:0;
	padding:0;
}

button, a{
	outline:none;
}

strong{
	font-weight: bold;
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="tel"],
input[type="number"]{
	color:#333;
	border:1px solid var(--colorone);
	font-size:16px;
	padding:0px 5px;
	height:35px;
	display:inline-block;
	outline:none;
	background:#fff;
	text-align:left;
	border-radius: 3px;
}

select{
	color:#333;
	border:1px solid var(--colorone);
	font-size:16px;
	padding:0px 5px;
	height:35px;
	display:inline-block;
	outline:none;
	background:#fff;
	text-align:left;
	border-radius: 3px;
}

textarea{
	color:#333;
	border:1px solid var(--colorone);
	font-size:16px;
	padding:3px 5px;
	height:75px;
	display:inline-block;
	outline:none;
	background:#fff;
	text-align:left;
	resize:none;
	border-radius: 3px;
}

button.btn1,
input[type="submit"].btn1{
	border:none;
	background:var(--colorone);
	color:#fff;
	padding:0 30px;
	border-radius:3px;
	line-height:35px;
	font-weight:700;	
	cursor:pointer;
	font-size:16px;
	vertical-align:top;
	transition:0.3s all;
}

button.btn1:hover,
input[type="submit"].btn1:hover{
	background:var(--coloronedark);
}

button.btn1:disabled,
input[type="submit"].btn1:disabled{
	background:#cc99cc;
}

input[readonly]
{
    background-color:#ccc;
}

button.lowpri{
	background:var(--colortwo);
	color:#333;
}

button.lowpri:hover{
	background:var(--colortwodark);
	color:#fff;
}

.formField{
	margin:20px 0;
	text-align:left;
}

.formField label{
	display:block;
	font-size:18px;
	font-style:italic;
	color:#777;
	text-align:left;
	margin-bottom:3px;
}

.formField input[type="text"],
.formField input[type="email"],
.formField input[type="password"],
.formField select,
.formField textarea{
	width:100%;
}

.formField input[type="text"].halfwidth,
.formField input[type="email"].halfwidth{
	width:49%;
}

.formField h6{
	margin:10px 0;
	position:relative;
}

.formField input[type=radio]{
  position: absolute;
  visibility: hidden;
}

.formField .radiotext{
	font-family: 'Merriweather', 'Georgia', serif;
	display:inline;
	color:var(--textcolor);
	transition: all 0.25s linear;
	position:relative;
	line-height: 25px;
    margin-bottom: 0;
    padding-left: 35px;
	z-index:9;
	font-weight: 300;
}

.formField h6:hover .radiotext{
	color: #666;
}

.formField h6 .check{
	display: block;
	position: absolute;
	border: 3px solid #999;
	border-radius: 100%;
	height: 25px;
	width: 25px;
	top: 0;
	left: 5px;
	z-index: 5;
	transition: border .25s linear;
}

.formField h6:hover .check {
	border: 3px solid #666;
}

.formField h6 .check::before {
	display: block;
	position: absolute;
	content: '';
	border-radius: 100%;
	height: 11px;
	width: 11px;
	top: 4px;
	left: 4px;
	margin: auto;
	transition: background 0.25s linear;
}

input[type=radio]:checked ~ .check {
	border: 3px solid var(--colorone);
}

input[type=radio]:checked ~ .check::before{
	background: var(--colortwo);
}

input[type=radio]:checked ~ .radiotext{
	color: var(--colorone);
}

.formField button{
	margin-right:15px;
}

.errfield{
	border:1px solid #cc3333 !important;
}

.errnotify{
	font-size:12px;
	color:#cc3333;
}

.errlink{
	color:#0099CC;
	cursor:pointer;
	text-decoration:underline;
}

.or {
    position: relative;
    font-size: 20px;
    z-index: 1;
    overflow: hidden;
    text-align: center;
}
.or:before, .or:after {
    position: absolute;
    top: 51%;
    overflow: hidden;
    width: 50%;
    height: 1px;
    content: '\a0';
    background-color: #999;
}
.or:before {
    margin-left: -50%;
    text-align: right;
}

.handle{
	cursor:move !important;
}

.imageScaler {
    display: block;
    height: auto;
    overflow: hidden;
    padding: 56.25% 0 0;
    position: relative;
    width: 100%;
}

.imageScaler img {
    bottom: 0;
    display: block;
    height: 100%;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
}

.iframeScaler {
    height: 0;
    overflow: hidden;
    padding-bottom: 30px;
    padding-top: 56.25%;
    position: relative;
    width: 100%;
}


.iframeScaler iframe {
    background: black none repeat scroll 0 0;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
    display: block;
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
}

.iframeScaler #splayer {
    background: black none repeat scroll 0 0;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
    display: block;
    height: 100% !important;
    left: 0;
    position: absolute;
    top: 0;
    width: 100% !important;
}

.croptrigger {
    position: relative;
	float:left;
	width:100%;
}

.croptrigger::after {
    background: rgba(0, 0, 0, 0.6) none repeat scroll 0 0;
    bottom: 0;
	left:0;
    color: #fff;
    content: "Click to Crop";
    padding: 3px 0;
    position: absolute;
    width: 100%;
	font-size:12px;
	text-align:center;
}

.ui-datepicker{
	z-index:10460 !important;
}

.errorstatement{
	font-size:14px;
	color:#cc3333;
	padding:10px;
	background:#FCC;
	border:1px solid #d14b4b;
	margin-bottom:20px;
}

.successstatement{
	font-size:14px;
	color:#339966;
	padding:10px;
	background:#e0fbef;
	border:1px solid #096;
	margin-bottom:20px;
}

.agreestatement{
	font-size:14px;
	color:#666;
}

.instructstatement{
	font-size:14px;
	color:#666;
	padding-bottom:10px;
	display:block;
}

.actionarea1{
    border-radius: 5px;
    padding: 5px;
    text-align: center;
	margin:10px 0;
}

.actionarea1 span{
	display:inline-block;
	vertical-align:middle;
	font-size:20px;
	margin:10px 0;
}

.actionarea1.inprocess{
	border:1px solid #3366cc;
}

.actionarea1.negative{
	border:1px solid #cc3333;
}

.actionarea1.positive{
	border:1px solid #339966;
}

.actionarea1.inprocess span{
	color:#3366cc;
}

.actionarea1.negative span{
	color:#cc3333;
}

.actionarea1.positive span{
	color:#339966;
}

.actionarea1 button{
	display:inline-block;
	vertical-align:middle;
	margin:10px;
}

.breadcrumb {
    color: var(--colorone);
    font-size: 15px;
    margin: 10px 0 0;
    padding: 3px;
    text-align: center;
}
.breadcrumb font {
    color: #666;
    display: inline-block;
    vertical-align: baseline;
}
.breadcrumb a font{
    color: #333;
    font-style: normal !important;
}
.breadcrumb a:hover font {
    text-decoration: underline;
}

/*Login Popup*/

.login-popup {
	position: relative;
	padding: 10px;
	width: auto;
	max-width: 700px;
	margin: 20px auto;
	text-align:center;
	font-size:0;
	background:var(--colortwo);
	border-radius:3px;
}

.login-popup input[type="text"],
.login-popup input[type="email"],
.login-popup input[type="password"]{
	width:90%;
	max-width:300px;
	margin:10px 0;
}

.login-popup h3{
	font-size:24px;
	font-weight:300;
	color:var(--colorone);
	text-align:center;
	-webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.login-popup h5{
	font-size:12px;
	margin:10px 0;
	color:var(--colorone);
	text-align:center;
}

#loginform,
#createaccform{
	padding:20px 2%;
	text-align:center;	
	display:inline-block;
	vertical-align:top;
	box-sizing:border-box;
	font-size:14px;
	width:50%;
}

#createaccform{
	border-left:2px solid var(--colorone);
}

.login-popup button{
	margin:10px 0;
}

.login-popup .or{
	display:none;
}

#logindiv,
#forgotdiv{
	overflow:hidden;
	margin-bottom:10px;
	-webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

#forgotdiv{
	height:0;
	opacity:0;
}

#loginform h3.off{
	font-size:12px;
	cursor:pointer;
	font-weight:400;
	text-decoration:underline;
}

/*Login Popup - end */


#header{
	position:fixed;
	top:0;
	width:100%;
	height:70px;
	background:#fff;
	z-index:9999;
	min-width: 360px;
	border-bottom:2px solid var(--colortwo);
}

#header .headerlogo{
	float:left;
	margin:5px 0 0;
	width: 160px;
}

#header #countryselect{
	border: none;
	color: var(--colorone);
	margin: 25px 0 0 10px;
	height: 30px;
	
}

#header .headermenu{
	margin:25px 0 0;
	float:right;
}

#header .mobilemenu{
	margin:15px 0 0;
	float:right;
	display:none;
}

#header .headerlink{
	margin: 0 6px;
	line-height:30px;
	font-size:20px;
	cursor:pointer;
	display:inline-block;
	vertical-align:top;
	transition:0.3s all;
}

#header .headerlink:hover{
	color:var(--colorone);
}

#header .headerlink.signinlink,
#header .headerlink.userlink{
	background:var(--colortwo);
	color:#fff;
	padding:0;
	border-radius:3px;
	height:30px;
}

#header .headerlink.userlink{
	background:url(../images/arrow-bottom.png) no-repeat right center;
	padding-right:20px;
	width:50px;
}

#header .headerlink.menutrigger{
	padding:0;
	height:30px;
}

#header .headerlink.signinlink font,
#header .headerlink.userlink font{
	padding:0 10px;
	color:#fff;
}

#header .headerlink.userlink font{
	background:var(--colortwo);
	display:inline-block;
	vertical-align:top;
	height:30px;
	width:30px;
	text-align:center;
	border-radius:3px;
}

#header .headerlink.signinlink:hover,
#header .headerlink.userlink:hover font{
	background:#ff9933;
}

#header .headerlink.startshuralink{
	background:var(--colorone);
	color:#fff;
	padding:0;
	border-radius:3px;
	cursor: pointer;
}

#header .headerlink.startshuralink font{
	padding:0 10px;
	color:#fff;
}

#header .headerlink.startshuralink:hover{
	background:var(--coloronedark);
}

#footer{
	background:#444;
	padding:40px 0 15px;
	text-align:center;
}

#footer p{
	text-align:center;
	color:#ccc;
	font-size:14px;
	line-height:20px;
}

#footer .footerlinks{
	font-size:14px;
}

#footer .footerlinks span{
	color:#aaa;
	display:inline-block;
	vertical-align:top;
	margin:10px;
	cursor:pointer;
}

#footer .footerlinks span:hover{
	text-decoration:underline;
}

#footer .rights{
	float:left;
	font-size:14px;
	color:#aaa;
	margin-top:10px;	
}

#footer .designby{
	float:right;
	font-size:14px;
	color:#aaa;
	margin-top:10px;
}

#footer .rights a,
#footer .designby a{
	color:#ccc;
}

#footer .rights a:hover,
#footer .designby a:hover{
	text-decoration:underline;
}

#pagetitle{
	background:var(--colortwo);
	padding:40px 0;
	margin:70px 0 20px;
}

#pagetitle h1{
	color:var(--colorone);
	font-size:32px;
	margin:0;
	text-align: center;
}

.staticpage,
.shuracontent,
.activationpage{
	min-height:400px;
	margin-bottom: 20px
}

#editprofilediv,
#changepassworddiv,
#emailnotifydiv,
#userprofileimagediv,
.activationpage .formDiv{
	margin:20px auto;
	max-width:600px;
	padding:10px;
	text-align:center;
}

.fileinputwrap{
	display: block;
    height: auto;
    overflow: hidden;
    padding: 56.25% 0 0;
    position: relative;
    width: 100%;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	border:1px solid var(--coloronedark);
}

.fileinputwrap.square{
	padding: 100% 0 0;
}

.fileinputwrap input[type="file"]{
	width: 100%;
    height: 100%;
    opacity: 0;
    filter: alpha(opacity=0); /* IE 5-7 */
	position:absolute;
	top:0;
	left:0;
}

h2{
	font-size:22px;
	line-height:35px;
	text-align:left;
	margin:15px 0;
	font-weight:bold;
}

h3{
	font-size:18px;
	line-height:26px;
	text-align:left;
	margin:15px 0;
	font-weight:bold;
}

h4{
	font-size:15px;
	line-height:22px;
	text-align:left;
	margin:15px 0;
	font-weight:bold;
}

h5{
	font-size:14px;
	line-height:22px;
	text-align:left;
	margin:15px 0;
	color:#999;
}

p{
	font-size:18px;
	line-height:30px;
	text-align:left;
	margin:15px 0;
	font-family: 'Merriweather', 'Georgia', serif;
	font-weight: 300;
}

ul li,
ol li{
	font-size:18px;
	line-height:30px;
	font-family: 'Merriweather', 'Georgia', serif;
	list-style-position:inside;
	font-weight: 300;
}

p a,
ul li a,
ol li a{
	color:var(--colorone);
}

p a:hover,
ul li a:hover,
ol li a:hover{
	text-decoration:underline;
}

.usericon{
	float:left;
	margin-right:10px;
	width:40px;
	height:40px;
	overflow:hidden;
}

.userphoto{
	display: block;
    height: auto;
    overflow: hidden;
    padding: 100% 0 0;
    position: relative;
    width: 100%;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	border-radius:3px;
}

.usericon font{
	background:var(--colortwo);
	line-height:40px;
	color:#fff;
	display:block;
	text-align:center;
	font-size:24px;
	border-radius:3px;
}

.userdisplayname{
	font-size:15px;
	font-weight:bold;
	color:var(--colorone);
	overflow:hidden;
	white-space:nowrap;
	text-overflow:ellipsis;
	margin:0;
}

.userentrydatetime,
.userentrydatetime span,
.userdisplayemail{
	color:#aaa;
	font-size:12px;
}

.userfunctionlink span{
	font-size:12px;
	display:inline-block;
	vertical-align:top;
	margin-right:15px;
	margin-top:5px;
	cursor:pointer;
}

.h2btn{
	float:right;
	padding:0 15px !important;
	margin-left:10px;
}

.h2select{
	float:right;
	margin:0 10px;
	font-size:14px;
	font-weight:400;
}

.table1{
	border-collapse:collapse;
	width:100%;
	border:1px solid #ddd;
	margin:20px 0;
}

.table1 th{
	font-weight:bold;
	font-size:16px;
	text-align:center;
	padding:10px;
	border:1px solid #ddd;
}

.table1 td{
	font-size:16px;
	text-align:center;
	padding:10px;
	border:1px solid #ddd;
}

.table1.noborder,
.table1.noborder th,
.table1.noborder td{
	border:none;
}

.table1 td input[type="text"],
.table1 td input[type="email"]{
	width:100%;
}

.addmorelink1{
	font-size:14px;
	color:#666;
	padding:10px;
	cursor:pointer;
}

.tooltip {
    position: relative;
	color:inherit;
}
.tooltip .tooltiptext {
    background-color: black;
    border-radius: 6px;
    bottom: 140%;
    color: #fff;
    left: 50%;
    margin-left: -50px;
    opacity: 0;
    padding: 5px 15px;
    position: absolute;
    text-align: center;
    transition: opacity 0.5s ease 0s;
    visibility: hidden;
    z-index: 1;
	width:100px;
	font-size:12px;
}
.tooltip .tooltiptext::after {
    border-color: black transparent transparent;
    border-style: solid;
    border-width: 5px;
    content: " ";
    left: 50%;
    margin-left: -5px;
    position: absolute;
    top: 100%;
}
.tooltip:hover .tooltiptext {
    opacity: 1;
    visibility: visible;
}

.ui-state-active{
	background:var(--colorone) !important;
	border:1px solid var(--colorone) !important;	
}

.leftgrid,
.rightgrid{
	display: inline-block;
	vertical-align: top;
}

.leftgrid{
	width: calc(27% - 5px);
	margin-right: 3%;
}

.rightgrid{
	width: 70%;	
}

.gridsection{
	background: #fff;
	border-radius: 10px;
	box-shadow: 0 0 4px #ccc;
	margin: 15px auto 0;
	text-align: left;
	overflow: hidden;
}

.textpart{
	padding: 30px;
	min-height: 255px;
}

.lefttextpart{
	padding: 10px;
}

.donatepart,
.coursefeepart{
	padding: 10px;
	text-align: center;
	background: #8bc48b;
}

.donatepart p,
.coursefeepart p{
	text-align: center;
	color: #fff;
}

.coursefeepart{
	background: var(--colorone);
}

.subjectblocks{
	text-align: left;
}

.subjectblocks .item{
	display: inline-block;
	vertical-align: top;
	margin: 10px;
	border: 1px solid #ddd;
	border-radius:5px;
	padding: 15px;
	background: #f5f5f5;
}

.subjectblocks .item:hover{
	border: 1px solid #ccc;
}

.ratingstars{
	margin: 0 10px;
	height: 20px;
}

.rating {
    display: inline-block;
	vertical-align:top;
	margin:0;
    height: 15px;
    position: relative;
    width: 75px;
}

.rating .cover {
    background: transparent url("../images/empty-stars.png?ver=3") no-repeat scroll left center;
    height: 15px;
    left: 0;
    position: absolute;
    top: 0;
    width: 75px;
    z-index: 3;
}

.rating .progress {
    background: transparent url("../images/filled-stars.png?ver=3") no-repeat scroll left center;
    height: 15px;
    left: 0;
    position: absolute;
    top: 0;
    z-index: 4;
}

.ratingscore{
	display: inline-block;
	vertical-align:top;
	font-size:14px;
	font-weight: bold;
	line-height: 18px;
	color:var(--colorone);
	margin: 0 5px 0 0;
}

.leaderpage .profile{
	float:left;
	width:150px;
	margin-right:15px;
	border-radius:75px;
}

.leaderpage h2{
	display:inline-block;
	margin:22px 0 0;
}

.editpencil{
	color: var(--colortwo);
	margin-left: 20px;
	cursor: pointer;
}