
@font-face {
  font-family: "TitilliumWeb Regular";
  src: url('../fonts/Titillium_Web/TitilliumWeb-Regular.ttf') format('truetype');
}

:root{
	
	--brand-font-1: Gotham, "Helvetica Neue", Helvetica, Arial, "sans-serif";
  --brand-font-2: "TitilliumWeb Regular";
	
	--brand-color: #7AB317; --brand-color-rgb: 122,179,23;
	--brand-font-color: #444444; 	--brand-font-color-rgb: 68,68,68;
	--brand-link: #7AB317;	--brand-link-rgb: 122,179,23;
	--brand-border: #DDDDDD;	--brand-border-rgb: 221, 221, 221;
	--brand-border-green: #456907;	--brand-border-green-rgb: 69,105,7;
	
	--thm-color: var(--brand-color); --thm-color-rgb: var(--brand-color-rgb);
	--thm-font-color: var(--brand-font-color); --thm-font-color-rgb: var(--brand-font-color-rgb);
	--thm-link: var(--brand-link); --thm-link-rgb: var(--brand-link-rgb);
	--thm-border: var(--brand-border); --thm-border-rgb: var(--brand-border-rgb);
	--thm-border-green: var(--brand-border-green); --thm-border-green-rgb: var(--brand-border-green-rgb);
	
	--thm-font-1: var(--brand-font-1);
  --thm-font-2: var(--brand-font-2);

/*	
	--thm-color: #444444;
	--thm-grey: #777777;
	--thm-white: #ffffff;
	--thm-green: #7AB317;
	--thm-red: #ff0000;
	--thm-border: #DDDDDD;
	--thm-border-green: #456907;
	
	--thm-color-rgb: 68,68,68;
	--thm-grey-rgb: 119,119,119;
	--thm-white-rgb: 255,255,255;
	--thm-green-rgb: 122,179,23;
	--thm-red-rgb: 255,0,0;
	--thm-border-rgb: 69,105,7;
	--thm-border-green-rgb: 69,105,7;
		
	--thm-font-1: Arial, sans-serif;
	--thm-font-2:'TitilliumText22LThin';*/
}

/* --------------- General Section -----------*/
html, body {
  font-family: var(--thm-font-1);
  font-size: 14px;
  line-height: 1.4em;
	height: 100%;
}


/* ------  TCSWeb Added Bowlliards BOLD and RED ------*/

.bowlliardsbold {
	color: #7AB317;
	font-weight: bold;
	
}

.bowlliardsred {
	color: #FF0004;
	font-weight: bold;
}


/* ---------------  Wrapper -----------*/
/*
#root{
	display: flex;
	flex-flow: column nowrap;
	justify-content: space-between;
	max-width: 1920px;
	min-height: 100vh;
}
*/

.page-header{
	/*border:1px solid green;*/
	display: flex;
	flex-direction: column;
	background: url(../images/header-bg-01.jpg) repeat-x;
	position: relative;
	border-bottom: 1px solid rgba(var(--thm-silver-rgb),.4);
}
.page-main{
	/*border:1px solid dodgerblue;*/
	flex:1 1 auto;
	display: flex;
	flex-direction: column;
}

.page-footer{
	/*border:1px solid brown;*/
	display: flex;
	flex-flow: column nowrap;
	font-size: 12px;
	border-top: 5px solid rgba(var(--thm-grey-rgb),.1);/*#F3F3F3;*/
	line-height: 16px;
}

.page-footer a{transition:all .3s ease-in-out;}
.page-footer a:hover {color: rgba(var(--thm-white-rgb),.7);}

.box {
	/*border: 1px solid #F0F;*/
 	position: relative;
 	max-width: 1240px;
	margin-left:auto;
	margin-right: auto;
}

.box-full { position: relative;}

/* --------------- Flex Containers -----------*/
.row{display:flex;}
.column{display:flex;flex-direction: column}

.row.fill,
.column.fill{flex: 1 1 auto;}

.row.jcsb,
.column.jcsb{justify-content: space-between}

.row.aic,
.column.aic{align-items: center}

.row.cg-10{column-gap:10px}
.row.cg-40{column-gap:40px}

.row.rr{flex-direction:row-reverse}

.content-box {/*flex:1 1 auto;max-width: 800px;*/ display: flex; flex-direction: column;}
.side-bar {flex: 0 0 360px;}


/* --------------- General Setting -----------*/

a:hover{color: #5c772f;}

h1 {font-size: 30px; font-weight: lighter}
h2 {font-size: 24px; font-weight: lighter}

/* ----------- TCSWeb Changed Weight & Color -------*/
h3 {font-size: 16px; font-weight: 500; color: #66a002}
h4 {font-size: 16px; font-weight: 400;}
h5 {font-size: 12px; font-weight: lighter}
h6 {font-size: 11px;}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--thm-font-1);
	line-height: 1.4em;
}

button,input[type="reset"],input[type="submit"],input[type="button"], .btn{font-family: var(--thm-font-1); font-size:15px;}

.shadow-1{
	box-shadow: 0 0 12px 4px rgba(var(--thm-color-rgb),.1); 
	border:1px solid rgba(var(--thm-color-rgb),.2); 
	border-radius: 4px;
	overflow: hidden;
}

.border{
	border: 1px solid rgba(var(--thm-green-rgb),.2);
	-webkit-border-radius: 4px;
  -khtml-border-radius: 4px;
  border-radius: 4px;
}

.border-1{
	border:1px solid var(--thm-border);
	border-radius: 4px;
}
/* --------------- Header -----------*/
.header-bg {
	/*border:1px solid red;*/
	background: url(../images/resources/scoresheet.png) no-repeat 382px 67px;
  padding: 0;
  /*min-height: 175px;*/
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	position: relative;
}

.header-shadow {
  background: url(../images/header-shadow.png) no-repeat top center;
  width: 100%;
  margin: 0 auto;
  height: 41px;
  position: absolute;
  z-index: 100;
}

/* --------------- Navigation/Top Right -----------*/
.top-nav {
  position: absolute;
  display: block;
  top: 3px;
  right: 0px;
  background: linear-gradient(#b0e94d, #7AB317); /* Standard syntax */
  color: #fff;
  -webkit-border-radius-bottom-left: 6px;
  -khtml-border-radius-bottom-left: 6px;
  border-bottom-left-radius: 6px;
  -webkit-border-radius-bottom-right: 6px;
  -khtml-border-radius-bottom-right: 6px;
  border-bottom-right-radius: 6px;
  border-bottom: 2px solid #456907;
  border-right: 1px solid #456907;
  font-size: 12px;
	z-index: 110;
}
.top-nav ul {
  background: #7AB317;
}
.top-nav > ul > li {
  display: inline-block;
  float: left;
  border-left: 1px solid #c7df9d;
  border-right: 1px solid #578010;
}
.top-nav ul li:first-child {
  border-left: none;
}
.top-nav ul li:last-child {
  border-right: none;
}
.top-nav img, .top-nav > ul > li > a {
  display: inline-block;
  vertical-align: middle;
  color: #000;
  padding: 5px 10px;
  -webkit-transition: all 0.30s ease-in-out;
  -moz-transition: all 0.30s ease-in-out;
  -ms-transition: all 0.30s ease-in-out;
  -o-transition: all 0.30s ease-in-out;
  text-shadow: 0 1px 1px #fff;
  border-bottom: 1px solid #91cd29;
}
.top-nav > ul > li:first-child > a {
  -webkit-border-radius-bottom-left: 6px;
  -khtml-border-radius-bottom-left: 6px;
  border-bottom-left-radius: 6px;
}
.top-nav > ul > li:last-child > a {
  -webkit-border-radius-bottom-right: 6px;
  -khtml-border-radius-bottom-right: 6px;
  border-bottom-right-radius: 6px;
}
.top-nav > ul > li:hover > a, .top-nav > ul > li.current > a, .top-nav > ul > li > a:hover {
  text-decoration: none;
  background: #98cf3a;
  border-bottom: 1px solid #b0e94d;
}
.top-nav > ul > li a cite {
  display: inline-block;
  font-size: 10px;
  min-width: 16px;
  padding-right: 1px;
  text-align: center;
  background: #EB0706;
  border-radius: 50%;
  margin-left: 5px;
  vertical-align: top;
  text-shadow: 0px 1px 1px #000;
}
.top-nav ul ul {
  position: absolute;
  display: block;
  visibility: collapse;
  padding: 0;
  opacity: 0;
  top: 32px;
  right: 5px;
  color: #1d2123;
  -webkit-transition: opacity .25s ease .1s, visibility .25s ease .1s;
  -moz-transition: opacity .25s ease .1s, visibility .25s ease .1s;
  -o-transition: opacity .25s ease .1s, visibility .25s ease .1s;
  -ms-transition: opacity .25s ease .1s, visibility .25s ease .1s;
  transition: opacity .25s ease .1s, visibility .25s ease .1s;
  -webkit-border: 5px solid #1E1E1E;
  -khtml-border: 5px solid #1E1E1E;
  border: 5px solid #456907;
  -webkit-border-radius-top-left: 6px;
  -khtml-border-radius-top-left: 6px;
  border-top-left-radius: 6px;
  -webkit-border-radius-bottom-left: 6px;
  -khtml-border-radius-bottom-left: 6px;
  border-bottom-left-radius: 6px;
  -webkit-border-radius-bottom-right: 6px;
  -khtml-border-radius-bottom-right: 6px;
  border-bottom-right-radius: 6px;
}
.top-nav ul ul li {
  height: 0;
  padding: 0;
  -webkit-transition: height .25s ease .1s;
  -moz-transition: height .25s ease .1s;
  -o-transition: height .25s ease .1s;
  -ms-transition: height .25s ease .1s;
  transition: height .25s ease .1s;
  width: 150px;
  display: block;
  background: #d7e3c3;
}
.top-nav ul ul li a {
  width: 120px;
  display: block;
  padding: 12px 10px 12px 20px;
  margin: 0;
  font-size: 12px;
  font-weight: bold;
  color: #000;
  border-top: 1px solid rgba(69, 105, 7, 0.4);
  -webkit-transition: all 0.30s ease-in-out;
  -moz-transition: all 0.30s ease-in-out;
  -ms-transition: all 0.30s ease-in-out;
  -o-transition: all 0.30s ease-in-out;
  text-shadow: 0 1px 1px #fff;
}

.top-nav ul li:hover > ul {
  visibility: visible;
  opacity: .95;
}

.top-nav ul li:hover > ul li {
  height: 42px;
  padding: 0;
}
.top-nav ul ul li:hover a {
  background: rgba(69, 105, 7, 0.2);
}

/* --------------- Navigation/Main -----------*/

.main-nav__left .logo {margin-top: 26px;}

.main-nav__foil{
	/*border:1px solid red;*/
	display:flex;
	justify-content: space-between;
	align-items: flex-start;
	padding-bottom: 20px;
}

.main-nav__right{position: relative}
.main-nav__right input#mainNav,
.main-nav__right label[for="mainNav"]{display: none}

.main-nav__foil input + label[for="mainNav"]::after {
	content: "\f0c9";
	font:var(--fa-font-solid);
	vertical-align: middle;
	color: rgba(var(--thm-color-rgb),.9);
	font-size: 28px;
	line-height: 1em;
	width: 28px;
	text-align: center;
	border: 1px solid rgba(var(--thm-color-rgb),.8);;
}

.main-nav__foil input:checked + label[for="mainNav"]::after {
  content: "\00d7";
	vertical-align: middle;
}
/*
.main-nav__right input:checked ~ .main-nav {
  opacity: 1;
  visibility: visible;
}
*/
.main-nav{
 /* border:1px solid #F00;*/
  display: flex;
  font-size: 12px;
	transition: all .3s ease-in-out;
}

.main-nav > a,
.main-nav > .sub{
 /* background: var(--thm-white);*/
	position: relative;
  border-top: 3px solid transparent; /*var(--thm-color);*/
  padding: 41px 18px 5px;
  display: block;
  /*border:1px solid #d56a65;*/
  -webkit-transition: all 0.30s ease-in-out;
  -moz-transition: all 0.30s ease-in-out;
  -ms-transition: all 0.30s ease-in-out;
  -o-transition: all 0.30s ease-in-out;
	transition: all 0.3s ease-in-out;
  font-weight: bold;
	color: var(--thm-font-color);
	border-bottom: 3px solid transparent;
}

/*.main-nav > .sub::after{content:'+'; margin-left: 5px;}*/

.main-nav > .sub.active,
.main-nav > a.active,
.main-nav > a:hover{
	color: var(--thm-color);
	border-top-color:var(--thm-color);
}

.main-nav > .sub:hover{
	cursor: pointer;
	border-color:var(--thm-color);
	padding-bottom: 14px;
}

.main-nav .sub .nav{
	position: absolute;
  visibility: hidden;
	display: flex;
	flex-direction: column;	
  padding: 0;
  opacity: 0;
  top: 78px;
  left: 0px;
  z-index: 1111;
	box-shadow: 1px 1px 6px rgba(var(--thm-grey-rgb),.8); 
	-webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;	
}

.main-nav .sub .nav a{
	width: 160px;
	padding: 0 10px;
	height: 0;
	visibility: hidden;
	opacity: 0;
	color:transparent;
	background-color: rgba(var(--thm-white-rgb),.90);
	border-bottom:1px solid rgba(var(--thm-grey-rgb),.25);
	font-weight: normal;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -ms-transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;	
}

.main-nav .sub:hover .nav{
	visibility:visible;
	opacity: 1;
}

.main-nav .sub:hover .nav a{
	padding: 10px;
	height: auto;
	visibility: visible;
	opacity: 1;
	color:rgba(var(--thm-font-color-rgb),.85);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -ms-transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;	
}

.main-nav .sub .nav a.active{color:var(--thm-color)}
.main-nav .sub .nav a:hover{
	color:var(--thm-white);
	background-color: rgba(var(--thm-color-rgb),.85);
}



/* --------------- Tab Navigation -----------*/
.tabNav{
	/*border:1px solid red;*/
	display:flex;
	column-gap: 10px;
}

.tabNav a{
	padding:8px 16px;
	color:var(--thm-orange);
	border-top:3px solid var(--thm-orange);
	border-right:1px solid rgba(var(--thm-orange-rgb),.85);
	border-left:1px solid rgba(var(--thm-orange-rgb),.85);
	border-top-left-radius: 2px;
	border-top-right-radius: 2px;
	transition:all .3s ease-in-out;
}

/*.tabNav a:first-of-type{border-left:1px solid #bad598;}*/

.tabNav a.active,
.tabNav a.active:hover{
	border-color:var(--thm-green);
	background-color: rgba(var(--thm-color-rgb),.1);
	color:var(--thm-green);
}
.tabNav a:hover{
	border-color:var(--thm-color);
	color:var(--thm-color);
}

/* --------------- Step Navigation -----------*/
.stepNav{
	/*border:1px solid red;*/
	display:flex;
	column-gap: 30px;
	font-size:16px;
}

.stepNav a{
	padding-top:10px;
	/*padding-bottom: 5px;*/
	padding-left: 10px;
	padding-right: 10px;
	border-top:3px solid rgba(var(--thm-orange-rgb),1);
	color:rgba(var(--thm-orange-rgb),1);
	transition:all .3s ease-in-out;
}

.stepNav a:hover{
	border-top-color:var(--thm-color);
	color:var(--thm-color);
}

.stepNav a.active,
.stepNav a.active:hover{
	border-top-color:var(--thm-green);
	/*background-color:rgba(var(--thm-green-rgb),.3);*/
	color:var(--thm-green);
}

.stepNav a.disabled{
	border-top-color:rgba(var(--thm-grey-rgb),.5);
	color:rgba(var(--thm-grey-rgb),.3);
	cursor:not-allowed;
}


/*---------------  Page Title -------------*/
.page-title__foil{}
.page-title {color: #666;}

.page-title-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px
}

.page-title__foil .bread-crumb {
  flex: 0 1 360px;
  display: flex;
  color: #8C8C8C;
}


/*---------------  Left Container -------------*/
.box-left {
  /*border:1px solid blue;*/
  display: inline-block;
  position: relative;
  max-width: 360px;
}
/*---------------  Right Container -------------*/
.box-right {
  /*border:1px solid blue;*/
  display: inline-block;
  position: relative;
  width: 800px;
  float: right;
}

/*---------------  input foil -------------*/
/*.input-foil label.row{flex-direction:row;}*/
.input-foil label{
	display:flex;
	flex-direction: column-reverse;
	row-gap:5px;
	grid-row-gap:5px;
}

.input-foil.inline label{display:flex;flex-direction: row-reverse;align-items: center}
.input-foil.inline label span{flex:0 0 120px}
.input-foil.inline.fw-140 label span{flex:0 0 140px}
.input-foil.inline.fw-160 label span{flex:0 0 160px}
.input-foil.inline.fw-180 label span{flex:0 0 180px}

.input-foil.inline .footer span {flex: 0 0 120px}
.input-foil.inline.fw-140 .footer span {flex: 0 0 140px}
.input-foil.inline.fw-160 .footer span {flex: 0 0 160px}
.input-foil.inline.fw-180 .footer span {flex: 0 0 180px}

.input-foil input:required + span::after,
.input-foil select:required + span::after,
.input-foil textarea:required + span::after{
	content:'*';
	color:var(--thm-red);
	margin-left: 5px;
}

/*---------------  input box -------------*/


.input-box {
  display: table;
  padding: 40px;
  background: rgba(var(--thm-white-rgb),.8); /*rgba(255, 255, 255, .8); /*#fff;*/
  border: 1px solid rgba(var(--thm-green-rgb),.4); /*#ccddaf;*/
  margin: 10px auto;
  -webkit-border-radius: 2px;
  -khtml-border-radius: 2px;
  border-radius: 2px;
}
.input-box li {
  display: block;
  position: relative;
  margin: 20px 0;
}
.input-box li:first-child {
  margin-top: 0
}
.input-box li:last-child {
  margin-bottom: 0
}
.input-box input, .input-box button, .input-box select {
  margin-right: 5px;
}
.input-box li label {
  display: inline-block;
  width: 150px;
  margin-right: 5px;
}
.input-box li aside {
  display: inline-block;
}
.input-box li.right aside input {
  margin-left: 5px;
  margin-right: 0;
}
.input-box .captcha figure {
  display: inline-block;
  border: 1px solid #049f8c;
  border-radius: 2px;
  vertical-align: middle
}
.input-box .captcha figcaption {
  margin-left: 10px;
  display: inline-block;
  vertical-align: middle
}
.input-box .captcha figcaption a img {
  display: inline-block;
  vertical-align: top;
}
.input-box .box-left {
  max-width: none;
  margin-right: 40px;
}
.input-box .box-right {
  width: auto
}
.input-box li.error input:not([type="submit"]):not([type="button"]):not([type="reset"]):not([type="checkbox"]):not([type="radio"]), .input-box li.error input:not([type="submit"]):not([type="button"]):not([type="reset"]):not([type="checkbox"]):not([type="radio"]):focus {
  box-shadow: 0 0 5px #e11d1d;
  border: 1px solid #e11d1d;
  color: #e11d1d;
}
.input-box li.error aside {
  color: #e11d1d;
}
.input-box li.error aside:before {
  content: " "'\2716'" ";
}
.input-box li.success aside {
  color: green;
}
.input-box li.success aside:before {
  content: " "'\2714'" "
}
/* --------------- Listing Section -----------*/
.grid-wraper {
  display: block;
  position: relative;
  margin: 10px;
}
.grid-options-wraper {
  display: block;
  position: relative;
  margin: 0 auto 20px;
  border: 1px solid #ccddaf;
}
.notopmargin {
  margin-top: 0;
}
.grid-options-wraper > li {
  display: block;
  position: relative;
  border-top: 1px solid #ccddaf;
}
.grid-options-wraper > li:first-child {
  border-top: none
}
.grid-options {
  display: table;
  width: 100%;
  background: rgba(255, 255, 255, .5);
}
.grid-options li {
  display: table-cell;
  vertical-align: middle;
  padding: 0;
}
.grid-options li div {
  display: inline-block;
}
.grid-options li label, .grid-options li select, .grid-options li input {
  margin: 5px;
  vertical-align: middle
}
.grid-options li img {
  display: inline-block;
  vertical-align: middle;
  margin-top: 10px;
  margin-left: 5px;
}
/* --------------- Data Grid -----------*/
.data-grid {
  padding: 1px 2px;
  border-radius: 2px;
  border: 1px solid #ccddaf;
}
.data-list {
  display: table;
  table-layout: fixed;
  width: 100%;
  border-top: 1px solid #FBFBFB;
  border-bottom: 1px solid #FBFBFB;
}
.data-list > li.checkbox {
  width: 10px;
  padding: 15px 5px;
}
.data-list > li.action {
  width: 100px;
  padding: 10px;
}
.data-list > li.action img {
  display: inline-block;
  vertical-align: middle;
  margin-right: 5px;
}
.data-list > li.one {
  width: 100px;
}
.data-list > li.two {
  width: 200px;
}
.data-list > li.three {
  width: 300px;
}
.data-grid input.small:not([type="submit"]):not([type="button"]):not([type="reset"]):not([type="checkbox"]):not([type="radio"]) {
  padding: 5px;
}
.data-list > li {
  display: table-cell;
  vertical-align: top;
  padding: 10px;
  margin-bottom: 2px;
}
.oddRow {
  background-color: rgba(241, 241, 241, .9); /*#f1f1f1;*/
}
.evenRow {
  background-color: rgba(234, 239, 247, .9); /*#eaeff7;*/
}
.oddRow:hover, .evenRow:hover {
  background-color: rgba(235, 246, 224, .9); /*#EBF6E0;*/
}
.data-list > li ul li {
  display: block;
  padding: 3px 0;
}
.data-list > li ul li strong {
  margin-right: 5px;
}
.data-list a.detail {
  background: url(../images/detail-show.png) no-repeat;
  padding: 1px 10px;
}
.data-list a.detail.hide {
  background: url(../images/detail-hide.png) no-repeat;
  padding: 1px 10px;
}
.grid-bottom {
	margin-top: 10px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

/*---------------  Item Detail -------------*/
.item-detail {
  display: none;
  position: relative;
}
.line-item__foil {overflow: auto;}
.line-item__foil .line-item{min-width: 800px}

.line-item {
  display: table;
  table-layout: fixed;
  width: 100%;
  border-top: 1px solid #e2e2e2;
}

.line-item:last-of-type {border-bottom: 1px solid #e2e2e2;}

.line-item.header{
	font-weight:bold;
	background-color: #E8FFCD;
}

.line-item li {
  display: table-cell;
  padding: 10px;
	vertical-align: middle;
}

.line-item .w-20{width:20px}
.line-item .w-40{width:40px}

/* --------------- footer -----------*/
.green-bar {
  position: relative;
  height: 40px;
  background: var(--thm-color);
}

.footer-top-foil{
  background: #272727;
  border-top: 4px solid #444444;
  color: #fff;
  border-bottom: 1px solid rgba(var(--thm-white-rgb),.05);
}

.footer-top {
	/*border:1px solid red;*/
	display:flex;
	column-gap: 40px;
	justify-content: space-between;
}

.footer-about{
	flex:0 1 340px;
	display: flex;
	flex-flow: column nowrap;
	grid-row-gap: 15px;
	row-gap: 15px;
}
.footer-about h1{font-size: 18px;}

.footer-top-links{
	display:flex;
	flex-flow:column nowrap;
	grid-row-gap: 15px;
	row-gap:15px;
}

.footer-top-links a::before{
	content: '\f105';
	font:var(--fa-font-solid);
	color: rgba(var(--thm-white-rgb),.8);
	margin-right: 10px;
}


.new-leagues {}
.new-leagues li:before {
  content: '';
  background: url(../images/icon142.png) 12px 12px no-repeat #333333;
  display: inline-block;
  width: 40px;
  height: 40px;
  vertical-align: middle;
  margin-right: 10px;
}
.new-leagues li {
  display: block;
  margin-bottom: 10px
}
.new-leagues li p {
  display: inline-block;
  vertical-align: middle;
  color: #e6e6e6;
}
.new-leagues li p a {
  display: block;
  font-weight: bold;
}
.partner-links li {
  /*border-bottom: 1px solid #333;*/
  padding: 6px 0 6px 15px;
  background: url(../images/linkswidgets.png) no-repeat left center;
  list-style: none;
  color: #999;
}
.footer-form li {
  display: block;
  margin-bottom: 7px
}
.footer-form input:not([type="submit"]):not([type="button"]):not([type="reset"]):not([type="checkbox"]):not([type="radio"]), .footer-form textarea {
  -webkit-transition: all 0.30s ease-in-out;
  -moz-transition: all 0.30s ease-in-out;
  -ms-transition: all 0.30s ease-in-out;
  -o-transition: all 0.30s ease-in-out;
  outline: none;
  padding: 5px 5px;
  border: 1px solid #444444;
  background: #333;
  min-width: 267px;
  -webkit-border-radius: 2px;
  -khtml-border-radius: 2px;
  border-radius: 2px;
  box-shadow: inset 2px 2px #282828;
  color: #999999;
}
.footer-form label {
  display: block;
  color: #999999;
}
.footer-form input:focus, .footer-form textarea:focus {
  border: 1px solid #999 !important;
}
.footer-form input.error, .footer-form textarea.error {
  border-color: #BD3030 !important;
}
.footer-form input.error_light, .footer-form textarea.error_light {
  border-color: #D07F7F !important
}
.footer-form textarea {
  height: 100px;
  resize: none
}
.footer-bottom {
	display: flex;
	justify-content: space-between;
  padding: 10px;
  background: #212121;
  color: rgba(var(--thm-white-rgb),.4);
}

.sitemap a {color: rgba(var(--thm-white-rgb),.4);}

.sitemap a:not(:last-of-type)::after{
	content:'|';
	margin-left: 5px;
	margin-right: 5px;
}
/* --------------- home -----------*/

.feature-card .icon{
  flex: 0 0 40px;
  height: 40px;
  -webkit-border-radius: 50%;
  -khtml-border-radius: 50%;
	border-radius: 50%;	
}

.feature-card .icon.one{background:url(../images/icon666.png) center center no-repeat var(--thm-color);}
.feature-card .icon.two{background:url(../images/icon160.png) center center no-repeat var(--thm-color);}
.feature-card .icon.three{background:url(../images/icon37.png) center center no-repeat var(--thm-color);}

.feature {
  /*border: 1px solid #039;*/
	display: flex;
	justify-content: space-between;
	column-gap: 20px;
  margin-top: 60px;
}

.feature li {display: flex;column-gap: 10px}

.feature li figure {
  flex: 0 0 40px;
  height: 40px;
  -webkit-border-radius: 50%;
  -khtml-border-radius: 50%;
	border-radius: 50%;
}
.feature li figure.one {
  background: url(../images/icon666.png) center center no-repeat var(--thm-color);
}
.feature li figure.two {
  background: url(../images/icon160.png) center center no-repeat var(--thm-color);
}
.feature li figure.three {
  background: url(../images/icon37.png) center center no-repeat var(--thm-color);
}

.feature li aside h4 {font-weight: bold;}

.feature li aside p {
  margin: 10px 0;
  font-size: 13px;
}

.feature li aside a {
  font-size: 12px;
  font-weight: bold;
	line-height: 1.4em;
}
.feature li aside a::before{
	content:'\f0da';
	font:var(--fa-font-solid);
	margin-right: 5px;
}

.latest-leagues {
  position: relative;
  display: table;
  width: 100%;
  margin-top: 60px;
}
.latest-leagues > li {
  /*border:1px solid green;*/
  display: table-cell;
  vertical-align: top;
  max-width: 870px;
}
.latest-leagues > li:first-child {
  padding-right: 30px;
}
.latest-leagues li div {
  display: block;
  position: relative;
}
.under-line {
  width: 70px;
  top: 5px;
  position: relative;
  float: left;
  background-color: rgb(122, 179, 23);
  background-position: initial initial;
  background-repeat: initial initial;
  height: 3px;
}
.latest-leagues aside {
  position: absolute;
  top: 2px;
  right: 0
}
.latest-leagues aside a {
  padding: 3px 7px;
  background: #999999;
  color: #fff;
  border-radius: 2px;
  transition: all .3s ease-in-out;
}
.latest-leagues aside a:hover {
  background: #7ab317;
}
.latest-leagues aside a.inactive {
  background: #EBEBEB;
  cursor: default
}
.latest-leagues p {
  margin-top: 20px;
}
.league-carousel {
  position: relative;
  overflow: hidden;
}
/*

	This is the container of the carousel items.

	You must ensure that the position is relative or absolute and

	that the width is big enough to contain all items.

	*/
.league-carousel ul {
  width: 10000em;
  position: relative;
  /* Optional, required in this case since it's a <ul> element */
  list-style: none;
  margin: 0;
  padding: 0;
}
/*

	These are the item elements. jCarousel works best, if the items

	have a fixed width and height (but it's not required).

	*/
.league-carousel li {
  /* Required only for block elements like <li>'s */
  position: relative;
  float: left;
  margin-right: 30px;
  background: #EEEEEE;
  transition: all .3s ease-in-out;
}
.league-carousel li:hover {
  background: #7ab317;
  color: #fff;
}
.league-carousel li:hover figcaption {
  border-top: 4px solid #5a9300
}
.league-carousel li:hover div.mask {
  background: rgba(0, 0, 0, .65);
}
.league-carousel li:hover div.mask a.link {
  right: 137px;
  visibility: visible;
  background-color: #fff
}
.league-carousel li:hover div.mask a.gallery {
  left: 137px;
  visibility: visible;
  background-color: #fff
}
.league-carousel li figure, .league-carousel li figcaption {
  position: relative;
  display: block;
  transition: all .3s ease-in-out;
}
.league-carousel li div.mask {
  background: rgba(0, 0, 0, 0);
  position: absolute;
  top: 0;
  left: 0;
  width: 270px;
  height: 180px;
  transition: all .3s ease-in-out
}
.league-carousel li div.mask a.link {
  background: url(../images/link_16x16.png) 7px 7px no-repeat rgba(255, 255, 255, .1);
  width: 30px;
  height: 30px;
  position: absolute;
  top: 80px;
  right: 0px;
  transition: all .3s ease-in-out;
  border-radius: 2px;
  visibility: collapse
}
.league-carousel li div.mask a.gallery {
  background: url(../images/magnifying_glass_16x16.png) 7px 7px no-repeat rgba(255, 255, 255, .1);
  width: 30px;
  height: 30px;
  position: absolute;
  top: 80px;
  left: 0px;
  transition: all .3s ease-in-out;
  border-radius: 2px;
  visibility: collapse;
}
.league-carousel li div.mask a.link:hover, .league-carousel li div.mask a.gallery:hover {
  background-color: #5a9300;
}
.league-carousel li figcaption {
  padding: 20px;
  border-top: 4px solid #DDDDDD;
  line-height: 1.7em;
}
.league-carousel li div.arrow-right {
  position: absolute;
  right: -3px;
  bottom: -13px;
  width: 0;
  height: 0;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  border-left: 15px solid #fff;
  transform: rotate(45deg);
}
.latest-leagues .link-black {
  margin-top: 20px;
}
.leagues {
  border: 1px solid #E2E2E2;
  padding: 30px;
  border-radius: 8px;
}
.leagues li {
  /*border:1px solid blue;*/
  vertical-align: middle;
}
.leagues h2 {
  color: #999A9C
}
.leagues .link-green {
  padding: 19px 0px;
  font-size: 14px;
}
.leagues .link-green span {
  padding: 20px 25px
}
/* News carousel section */
.latest-news {
  /*border:1px solid blue;*/
  display: flex;
	justify-content: space-between;
  border-bottom: 1px solid #EDEDED;
}
.latest-news li {
  padding: 5px 0;
}
.latest-news aside a {
  padding: 3px 7px;
  background: #999999;
  color: #fff;
  border-radius: 2px;
  transition: all .3s ease-in-out;
}
.latest-news aside a:hover {
  background: #7ab317;
}
.latest-news aside a.inactive {
  background: #EBEBEB;
  cursor: default
}
.news-carousel {
  possition: relative;
  overflow: hidden;
  margin-top: 30px;
}
.news-carousel > ul {
  width: 10000em;
  position: relative;
  /* Optional, required in this case since it's a <ul> element */
  list-style: none;
  margin: 0;
  padding: 0;
}
.news-carousel > ul > li {
  position: relative;
  float: left;
  margin-right: 30px;
  /*background:#EEEEEE;*/
  transition: all .3s ease-in-out;
  max-width: 590px;
}
.news-carousel > ul > li:last-child {
  margin-right: 0
}
.news-carousel figure:hover div.mask {
  background: rgba(0, 0, 0, .65);
}
.news-carousel figure:hover div.mask a.link {
  right: 137px;
  visibility: visible;
  background-color: #fff
}
.news-carousel figure:hover div.mask a.gallery {
  left: 137px;
  visibility: visible;
  background-color: #fff
}
.news-carousel figure, .news-carousel figcaption {
  position: relative;
  display: inline-block;
  vertical-align: top;
  max-width: 285px;
}
.news-carousel figure {
  position: relative;
  display: inline-block;
  margin-right: 20px;
  max-width: 270px;
  overflow: hidden
}
.news-carousel li div.mask {
  background: rgba(0, 0, 0, 0);
  position: absolute;
  top: 0;
  left: 0;
  width: 270px;
  height: 180px;
  transition: all .3s ease-in-out
}
.news-carousel li div.mask a.link {
  background: url(../images/link_16x16.png) 7px 7px no-repeat rgba(255, 255, 255, .1);
  width: 30px;
  height: 30px;
  position: absolute;
  top: 80px;
  right: 0px;
  transition: all .3s ease-in-out;
  border-radius: 2px;
  visibility: collapse
}
.news-carousel li div.mask a.gallery {
  background: url(../images/magnifying_glass_16x16.png) 7px 7px no-repeat rgba(255, 255, 255, .1);
  width: 30px;
  height: 30px;
  position: absolute;
  top: 80px;
  left: 0px;
  transition: all .3s ease-in-out;
  border-radius: 2px;
  visibility: collapse;
}
.news-carousel li div.mask a.link:hover, .news-carousel li div.mask a.gallery:hover {
  background-color: #5a9300;
}
.news-carousel p {
  position: relative;
  display: block;
  margin: 10px 0 0 0;
  line-height: 1.6em;
}

.box-title {
  position: relative;
  display: table;
  border: 1px solid #ccc;
  margin-bottom: 15px
}
.box-title li {
  position: relative;
  display: table-cell;
  background: #333333;
  color: #fff;
  padding: 7px;
}
.box-title li.picture {
  background: url(../images/icon142.png) 8px 8px no-repeat #7AB317;
  width: 18px;
  border-right: 1px solid #fff;
}
.box-title li.a {
  background: url(../images/icon334.png) 8px 8px no-repeat #7AB317;
  width: 18px;
  border-right: 1px solid #fff;
}
.box-title li.camera {
  background: url(../images/camera.png) 8px 8px no-repeat #7AB317;
  width: 18px;
  border-right: 1px solid #fff;
}
.slide-add .input-box textarea {
  width: 500px;
  height: 200px;
  resize: vertical;
}
.slide-add .input-box label {
  vertical-align: top
}
/* --------------- Scoring Page -----------*/

.membership__foil{
/*	display:flex;
	justify-content: space-between;
	column-gap: 40px*/
}
.content-box {max-width:840px}

.content-box .desktop{display: flex; flex-direction: column}
.content-box .mobile{display: none;}

/* --------------- Member/League Price pages -----------*/

/*------- Packages ---------*/
.package-card{
	position: relative;
	display: flex;
	flex-direction: column;
/*	row-gap:10px;
	grid-row-gap: 10px;*/
	padding: 40px;
	background-color: rgba(var(--thm-white-rgb),.2);
	border:2px solid rgba(var(--thm-grey-rgb),.5);
	border-radius: 6px;
	transition: all .25s ease-in-out;
}

.package-card:hover{
	border-color : rgba(var(--thm-grey-rgb),.7);
	box-shadow:0 0 16px 1px rgba(var(--thm-grey-rgb),.5);
}

.package-card .tag{
	position: absolute; 
	top:0;
	left:0;
	background-color: #555555; 
	border-top-left-radius: 4px;
	border-bottom-right-radius: 4px;
	padding:5px 20px; 
	color:var(--thm-white);
}

.package-card h3{
	background-color: #555555; 
	padding: 10px 20px; 
	color:var(--thm-white); 
	font-size: 22px
}

.package-card.bestvalue{
	padding: 80px 40px;
	border-color: rgba(var(--thm-green-rgb),.5);
}

.package-card.bestvalue:hover{
	border-color : rgba(var(--thm-green-rgb),.7);
	box-shadow:0 0 16px 1px rgba(var(--thm-green-rgb),.3);	
}

.package-card.bestvalue .tag{background-color: var(--thm-green);}

.package-card.bestvalue h3{background-color:var(--thm-green)}

.package-card.hotdeal{border-color: rgba(var(--thm-red-rgb),.5);}

.package-card.hotdeal:hover{
	border-color : rgba(var(--thm-red-rgb),.7);
	box-shadow:0 0 16px 1px rgba(var(--thm-red-rgb),.3);	
}

.package-card.hotdeal .tag{background-color: var(--thm-red);}

.package-card.hotdeal h3{background-color:var(--thm-red)}

.package-list{display:flex;flex-direction:column;}

.package-list li{
	padding-top: 10px;
	padding-bottom: 10px;
	border-bottom: 1px solid rgba(var(--thm-grey-rgb),.1);
	text-align: center;
}

/*.package-list li::before{
	content: '\f0da';
	font:var(--fa-font-solid);
	margin-top: 3px;
	margin-right: 10px;	
}
*/
.package-list li strike{
	text-decoration: line-through;
	color: rgba(var(--thm-grey-rgb),.7);
}
.package-list.white li strike{color:rgba(var(--thm-white-rgb),.7)}


.price-list {
  position: relative;
	display:flex;
	justify-content: space-between;
	align-items: center;

}
.price-list > li {
  position: relative;
  padding: 20px;
}
.price-box {
  position: relative;
  display: block;
  padding: 20px;
  text-align: center;
  border: 1px solid #dedede;
  box-shadow: 0 0 15px 1px #ccc;
}
.price-box > li {
  position: relative;
  display: block;
  padding: 15px 0;
}
.price-box li.bg {
  background: #555555;
  color: #fff;
  font-size: 18px;
  text-transform: uppercase;
  padding: 10px 10px;
}
.price-box > li dollar {
  font-size: 32px;
}
.price-box > li font {
  font-size: 48px;
  font-weight: bold;
}
.price-box > li foot-note {
  font-size: 11px;
}
.package-items {
  display: block;
  position: relative;
  border-bottom: 1px solid #ededed;
  margin: 15px 0;
}
.package-items li {
  position: relative;
  display: block;
  border-top: 1px solid #ededed;
  padding: 10px 0;
}
.price-box > li div.arrow-right {
  position: absolute;
  display: none;
  right: -28px;
  top: -58px;
  width: 0;
  height: 0;
  border-top: 60px solid transparent;
  border-bottom: 60px solid transparent;
  border-left: 60px solid #70b110;
  transform: rotate(-45deg);
  box-shadow: -7px 0 5px -3px #ccc;
}
.price-box > li div.dealtext {
  position: absolute;
  display: none;
  width: 60px;
  right: -20px;
  top: -8px;
  transform: rotate(45deg);
  color: #fff;
  text-shadow: 0px 0px 1px #000;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 13px;
}
.price-box.bestvalue {
  border: 1px solid #70b110;
  box-shadow: 0 0 15px 1px #a9c285;
}
.price-box.bestvalue > li:first-child {
  padding: 45px 0;
}
.price-box.bestvalue > li div.arrow-right, .price-box.bestvalue > li div.dealtext, .price-box.hotdeal > li div.arrow-right, .price-box.hotdeal > li div.dealtext {
  display: block
}
.price-box.bestvalue li.bg {
  background: #7ab317
}
.price-box.hotdeal > li div.arrow-right {
  border-left: 60px solid #ff0000;
}
.price-box.hotdeal {
  border: 1px solid #ff0000;
  box-shadow: 0 0 15px 1px #d59696;
}
.price-box.hotdeal > li:first-child {
  padding: 45px 0;
}
.price-box.hotdeal li.bg {
  background: #ff0000
}
/* --------------- Contacts page -----------*/
#map_canvas {
  display: block;
  position: relative;
  height: 400px;
}
.info-box li {
  padding: 0 0 7px;
}

.contact-box{
	display:flex;
	flex-direction: column;
	grid-row-gap: 20px;
	row-gap:20px;
}
.contact-box li {
/*	border:1px solid red;*/
	flex:1 1 auto;
	display:flex;
	column-gap: 20px;
}
.contact-box label {flex:1 1 auto;display:flex;flex-flow:row-reverse nowrap; align-items: center; justify-content: space-between;}
.contact-box label span{margin-right: 20px}


.contact-box input:not([type="submit"]):not([type="button"]):not([type="reset"]):not([type="checkbox"]):not([type="radio"]){
	min-width: auto;
	flex:1 0 auto;
	display: flex;
}

.contact-box input:required + span::after,
.contact-box textarea:required + span::after{content:'*';color:#C40003}
.contact-box textarea {
	flex:1 0 auto;
  height: 240px;
  resize: none;
}
.contact-box input.error, .contact-box textarea.error {
  border-color: #BD3030 !important;
  color: #BD3030;
  font-style: italic;
}
/* --------------- FAQ's -----------*/
/* TCSWeb added Ask a Question Form */
.faq-contact-box li {
  padding: 0 0 7px;
}
.faq-contact-box label {
  display: block
}
.faq-contact-box textarea {
  width: 100%;
  height: 200px;
  resize: none;
}
.faq-contact-box input.error, .faq-contact-box textarea.error {
  border-color: #BD3030 !important;
  color: #BD3030;
  font-style: italic;
}
/* TCSWeb end Ask a Question Form */
.faq-add .input-box textarea {
  width: 500px;
  height: 200px;
  resize: vertical;
}
/* --------------- User Profile -----------*/
/*

	.user-profile.input-box li.center input{margin:0 3px }

	.user-profile.input-box li.center img{display:block; margin:0 auto}
	*/

.profile-setup textarea{min-height: 80px; resize: vertical;}

.user-profile article {
  display: inline-block;
  float: left;
  margin: 0
}
.user-profile article:first-child {
  margin-right: 40px;
}
.user-profile.input-box label, .user-profile.input-box input, .user-profile.input-box aside {
  vertical-align: middle;
}
.user-profile .ladder-select {
  display: inline-block;
  vertical-align: top
}
.user-profile .ladder-select div {
  display: block;
  margin-bottom: 5px;
}
.user-profile .ladder-select aside {
  margin-right: 10px;
}
#preview {
  display: none;
  padding: 0;
  margin: 0;
}
#camera {
  margin: 0 auto 10px;
}
/* --------------- Guest IM -----------*/
.im-open {
  /*border:1px solid #063;*/
  display: block;
  position: fixed;
  right: 10px;
  bottom: 10px;
  height: 80px;
  width: 80px;
  background: url(../images/icon-live-chat.png) no-repeat;
  transition: all .3s ease-in-out;
}
.im-open.hide {
  height: 0;
  width: 0;
  right: 0;
  bottom: 0;
}
.im-guest {
  position: fixed;
  visibility: collapse;
  right: 1px;
  bottom: 1px;
  height: 0;
  width: 0;
  background: rgba(255, 255, 255, .75);
  border: 1px solid #e2e2e2;
  transition: all .5s ease-in-out;
}
.im-guest.show {
  width: 250px;
  height: 350px;
  visibility: visible;
  box-shadow: 0 0 1px 1px #999;
}
.im-guest-top {
  position: relative;
  display: block;
  background: rgba(0, 0, 0, .7);
  padding: 5px;
}
.im-guest-top figure {
  display: inline-block;
  position: relative;
  color: #fff;
}
.im-guest-top figure img, .im-guest-top figure figcaption {
  display: inline-block;
  vertical-align: middle
}
.im-guest-top figure figcaption {
  margin-left: 3px;
  font-weight: bold
}
.im-guest-top aside {
  display: inline-block;
  position: relative;
  float: right
}
.im-guest-top aside a {
  color: #fff
}
#im-guest-message-list {
  /*border:1px solid #0C3;*/
  display: block;
  position: relative;
  height: 277px;
  max-height: 277px;
  word-wrap: break-word;
  overflow: auto;
  padding: 5px;
}
#im-guest-message-list li {
  margin-bottom: 5px;
}
.im-guest input {
  width: 238px;
}
/* --------------- Common -----------*/
/*.right {text-align:right;}
.center{text-align:center;}


.m{margin:30px}
.m-10{margin:10px}
.m-20{margin:20px}

.mt{margin-top:30px}
.mt-10{margin-top:10px}
.mt-20{margin-top:20px}
.mt-30{margin-top:30px}
.mt-40{margin-top:40px}

.mtb{margin-top:30px; margin-bottom: 30px}
.mtb-40{margin-top:40px; margin-bottom: 40px}
.mtb-30{margin-top:30px; margin-bottom: 30px}
.mtb-20{margin-top:20px; margin-bottom: 20px}

.mb{margin-bottom: 30px}
.mb-10{margin-bottom:10px}
.mb-20{margin-bottom:20px}
.mb-30{margin-bottom:30px}

.mr{margin-right:30px}
.mr-10{margin-right:10px;}
.mr-20{margin-right:20px;}

.ml-5{margin-left:5px}
.ml-10{margin-left:10px;}

.mlr{margin-left:30px; margin-right: 30px}

.p-40{padding: 40px}

.pt-10{padding-top:10px;}
.pt-20{padding-top:20px;}
.pt-30{padding-top:30px;}
.pt-40{padding-top:40px;}


.pl-20{padding-left:20px;}

.ptb-10{padding-top: 10px; padding-bottom: 10px;}
.ptb-30{padding-top: 30px; padding-bottom: 30px;}
.ptb-40{padding-top: 40px; padding-bottom: 40px;}
.ptb-60{padding-top: 60px; padding-bottom: 60px;}

.pb-20{padding-bottom: 20px;}
.pb-30{padding-bottom: 30px;}
.pb-40{padding-bottom: 40px;}*/
/*.margin {
  margin-top: 30px;
  margin-bottom: 30px;
}
.margin-10 {
  margin-top: 10px;
  margin-bottom: 10px;
}
.margin-20 {
  margin-top: 20px;
  margin-bottom: 20px;
}
.marging-sides {
  margin-left: 30px;
  margin-right: 30px;
}
.marging-all {
  margin: 30px;
}
.margin-top {
  margin-top: 30px;
}
.margin-bottom {margin-bottom: 30px;}
.mb{margin-bottom: 30px;}
.mb-10{margin-bottom: 10px;}
.mb-20{margin-bottom: 20px;}

.margin-bottom-10 {
  margin-bottom: 10px;
}
.margin-sides-20 {
  margin-left: 20px;
  margin-right: 20px;
}
.margin-all-20 {
  margin: 20px;
}*/


.border-green {
  border: 1px solid #ccddaf;
}
.border-top {
  border-top: 1px solid #CCCCCC;
}
.border-bottom {
  border-bottom: 1px solid #CCCCCC;
}
.border-bottom-dashed {
  border-bottom: 1px dashed #CCCCCC;
}
.link-green {
  font-size: 12px;
  display: inline-block;
  color: #fff;
  padding: 3px 0 5px; /*#6E9231 #91B74F*/
  background: -webkit-linear-gradient(#91B74F, #6E9231); /* For Safari 5.1 to 6.0 */
  background: -moz-linear-gradient(#91B74F, #6E9231); /* For Firefox 3.6 to 15 */
  background: linear-gradient(#91B74F, #6E9231); /* Standard syntax */
  /*outline:1px solid #628821;*/
  border-top: 1px solid #B3CD85;
  -webkit-border-radius: 3px;
  -khtml-border-radius: 3px;
  border-radius: 3px;
  font-weight: bold;
  text-shadow: 0px -1px 1px #4a6a13;
	transition: all .3s ease-in-out;
}
.link-green span {
  padding: 6px 12px; /*#6E9231 #91B74F*/
  border: 1px solid #628821;
  -webkit-border-radius: 3px;
  -khtml-border-radius: 3px;
  border-radius: 3px;
}
.link-green:hover {
	background: linear-gradient( #799d3b,  #799d3b);
	color:#fff;
}

/*.btn {
  -webkit-border-radius: 4px;
  -khtml-border-radius: 4px;
  border-radius: 4px;
  background: #6E9231;
  /*background:url(../images/btn_bg.jpg) repeat-x;*//*
  font: 14px Tahoma, Geneva, sans-serif;
  font-weight: bold;
  color: #fff;
  border: 1px solid #6E9231;
  border-bottom: 2px solid #5c772f;
  text-shadow: 0px 0px 1px #000;
  padding: 5px 10px;
	transition:all .3s ease-in-out;
	cursor: pointer;
}
.btn:hover {background: #7AB317;}

.btn-alt{
  border-radius: 4px;
  background-color: rgba(var(--thm-green-rgb),.1); /*#F0FFD8;*/
  /*background:url(../images/btn_bg.jpg) repeat-x;*//*
  font: 14px Tahoma, Geneva, sans-serif;
  font-weight: bold;
  color: #5c772f;
  border: 1px solid #6E9231;
  border-bottom: 2px solid #5c772f;
  padding: 5px 10px;
	cursor: pointer;
	transition:all .3s ease-in-out;
}

.btn-alt:hover {background-color: rgba(var(--thm-green-rgb),.3);color:#5c772f}*/

.btn-black {
  -webkit-border-radius: 4px;
  -khtml-border-radius: 4px;
  border-radius: 4px;
  background: #444444;
  /*background:url(../images/btn_bg.jpg) repeat-x;*/
  font: 14px Tahoma, Geneva, sans-serif;
  font-weight: bold;
  color: #fff;
  border: none;
  border: 1px solid rgba(var(--thm-silver-rgb),.3);
  border-bottom-width: 2px;
  text-shadow: 0px 0px 1px #000;
  padding: 5px 10px;
}
.btn-black:hover {
  cursor: pointer;
  background: #555555;
}
.btn-red {
  -webkit-border-radius: 4px;
  -khtml-border-radius: 4px;
  border-radius: 4px;
  background: #ff0000;
  /*background:url(../images/btn_bg.jpg) repeat-x;*/
  font: 14px Tahoma, Geneva, sans-serif;
  font-weight: bold;
  color: #fff;
  border: none;
  border-top: 1px solid #e90000;
  border-bottom: 2px solid #a14040;
  text-shadow: 0px 0px 1px #000;
  padding: 5px 10px;
  outline: none;
}
.btn-red:hover {
  cursor: pointer;
  background: #fc4646;
}
.btn:disabled, .btn-black:disabled, .btn-red:disabled {
  background: #ccc;
  border: 1px solid #aaa;
  border-bottom: 2px solid #999;
  cursor: not-allowed;
}
.btn:disabled:hover, .btn-black:disabled:hover, .btn-red:disabled:hover {
  background: #ccc;
  border: 1px solid #aaa;
  border-bottom: 2px solid #999;
  cursor: not-allowed;
}
.link-black {
  background: #444444;
  padding: 5px 10px;
  margin-top: 20px;
  border-top: 1px solid #7C7C7C;
  display: inline-block;
  position: relative;
  color: #fff;
  border-radius: 2px;
}
.link-black:hover {
  background: #535353
}

/*------- Spinner ---------*/
/*

	7. Social Icons

-------------------------------------------

*/
.socialdiv a[title]:hover:after {
  content: attr(title);
  padding: 5px 8px;
  color: #fff;
  position: absolute;
  left: 0;
  top: -120%;
  white-space: nowrap;
  z-index: 999px;
  background: #7AB317;
  text-shadow: none;
  font-family: Helvetica Neue, Arial;
  font-size: 11px;
  font-weight: bold;
}
.socialdiv {
  position: relative;
  display: block;
  text-align: center;
}
.socialdiv ul li {
  position: relative;
  float: left;
  width: 30px;
  margin-right: 8px;
}
.socialdiv ul li a {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  margin-bottom: 5px;
}
.socialdiv a.forrst {
  width: 30px;
  height: 31px;
  background: url(../images/social-icons.png);
  background-position: -527px 0;
  display: block;
}
.socialdiv a.forrst:hover {
  background: url(../images/social-icons.png);
  background-position: -527px -32px;
}
.socialdiv a.delicious {
  width: 30px;
  height: 31px;
  background: url(../images/social-icons.png);
  background-position: -165px 0;
  display: block;
}
.socialdiv a.delicious:hover {
  background: url(../images/social-icons.png);
  background-position: -165px -32px;
}
.socialdiv a.twitter {
  width: 30px;
  height: 31px;
  background: url(../images/social-icons.png);
  background-position: -296px 0;
  display: block;
}
.socialdiv a.twitter:hover {
  background: url(../images/social-icons.png);
  background-position: -296px -32px;
}
.socialdiv a.flickr {
  width: 30px;
  height: 31px;
  background: url(../images/social-icons.png);
  background-position: -198px 0;
  display: block;
}
.socialdiv a.flickr:hover {
  background: url(../images/social-icons.png);
  background-position: -198px -32px;
}
.socialdiv a.stumble {
  width: 30px;
  height: 31px;
  background: url(../images/social-icons.png);
  background-position: -132px 0;
  display: block;
}
.socialdiv a.stumble:hover {
  background: url(../images/social-icons.png);
  background-position: -132px -32px;
}
.socialdiv a.facebook {
  width: 30px;
  height: 31px;
  background: url(../images/social-icons.png);
  background-position: -329px 0;
  display: block;
}
.socialdiv a.facebook:hover {
  background: url(../images/social-icons.png);
  background-position: -329px -32px;
}
.socialdiv a.skype {
  width: 30px;
  height: 31px;
  background: url(../images/social-icons.png);
  background-position: -395px 0;
  display: block;
}
.socialdiv a.skype:hover {
  background: url(../images/social-icons.png);
  background-position: -395px -32px;
}
.socialdiv a.digg {
  width: 30px;
  height: 31px;
  background: url(../images/social-icons.png);
  background-position: 0 0;
  display: block;
}
.socialdiv a.digg:hover {
  background: url(../images/social-icons.png);
  background-position: 0 -32px;
}
.socialdiv a.linkedin {
  width: 30px;
  height: 31px;
  background: url(../images/social-icons.png);
  background-position: -889px 0;
  display: block;
}
.socialdiv a.linkedin:hover {
  background: url(../images/social-icons.png);
  background-position: -889px -32px;
}
.socialdiv a.google {
  width: 30px;
  height: 31px;
  background: url(../images/social-icons.png);
  background-position: -99px 0;
  display: block;
}
.socialdiv a.google:hover {
  background: url(../images/social-icons.png);
  background-position: -99px -32px;
}
.socialdiv a.vimeo {
  width: 30px;
  height: 31px;
  background: url(../images/social-icons.png);
  background-position: -494px 0;
  display: block;
}
.socialdiv a.vimeo:hover {
  background: url(../images/social-icons.png);
  background-position: -494px -32px;
}
.socialdiv a.picasa {
  width: 30px;
  height: 31px;
  background: url(../images/social-icons.png);
  background-position: -626px 0;
  display: block;
}
.socialdiv a.picasa:hover {
  background: url(../images/social-icons.png);
  background-position: -626px -32px;
}
.socialdiv a.deviantart {
  width: 30px;
  height: 31px;
  background: url(../images/social-icons.png);
  background-position: -33px 0;
  display: block;
}
.socialdiv a.deviantart:hover {
  background: url(../images/social-icons.png);
  background-position: -33px -32px;
}
.socialdiv a.behance {
  width: 30px;
  height: 31px;
  background: url(../images/social-icons.png);
  background-position: -66px 0;
  display: block;
}
.socialdiv a.behance:hover {
  background: url(../images/social-icons.png);
  background-position: -66px -32px;
}
.socialdiv a.tumblr {
  width: 30px;
  height: 31px;
  background: url(../images/social-icons.png);
  background-position: -230px 0;
  display: block;
}
.socialdiv a.tumblr:hover {
  background: url(../images/social-icons.png);
  background-position: -230px -32px;
}
.socialdiv a.viddler {
  width: 30px;
  height: 31px;
  background: url(../images/social-icons.png);
  background-position: -428px 0;
  display: block;
}
.socialdiv a.viddler:hover {
  background: url(../images/social-icons.png);
  background-position: -428px -32px;
}
.socialdiv a.instagram {
  width: 30px;
  height: 31px;
  background: url(../images/social-icons.png);
  background-position: -790px 0;
  display: block;
}
.socialdiv a.instagram:hover {
  background: url(../images/social-icons.png);
  background-position: -790px -32px;
}
.socialdiv a.myspace {
  width: 30px;
  height: 31px;
  background: url(../images/social-icons.png);
  background-position: -724px 0;
  display: block;
}
.socialdiv a.myspace:hover {
  background: url(../images/social-icons.png);
  background-position: -724px -32px;
}
.socialdiv a.blogger {
  width: 30px;
  height: 31px;
  background: url(../images/social-icons.png);
  background-position: -362px 0;
  display: block;
}
.socialdiv a.blogger:hover {
  background: url(../images/social-icons.png);
  background-position: -362px -32px;
}
.socialdiv a.zerply {
  width: 30px;
  height: 31px;
  background: url(../images/social-icons.png);
  background-position: -823px 0;
  display: block;
}
.socialdiv a.zerply:hover {
  background: url(../images/social-icons.png);
  background-position: -823px -32px;
}
.socialdiv a.wordpress {
  width: 30px;
  height: 31px;
  background: url(../images/social-icons.png);
  background-position: -757px 0;
  display: block;
}
.socialdiv a.wordpress:hover {
  background: url(../images/social-icons.png);
  background-position: -757px -32px;
}
.socialdiv a.grooveshark {
  width: 30px;
  height: 31px;
  background: url(../images/social-icons.png);
  background-position: -691px 0;
  display: block;
}
.socialdiv a.grooveshark:hover {
  background: url(../images/social-icons.png);
  background-position: -691px -32px;
}
.socialdiv a.youtube {
  width: 30px;
  height: 31px;
  background: url(../images/social-icons.png);
  background-position: -659px 0;
  display: block;
}
.socialdiv a.youtube:hover {
  background: url(../images/social-icons.png);
  background-position: -659px -32px;
}
.socialdiv a.reddit {
  width: 30px;
  height: 31px;
  background: url(../images/social-icons.png);
  background-position: -560px 0;
  display: block;
}
.socialdiv a.reddit:hover {
  background: url(../images/social-icons.png);
  background-position: -560px -32px;
}
.socialdiv a.rss {
  width: 30px;
  height: 31px;
  background: url(../images/social-icons.png);
  background-position: -461px 0;
  display: block;
}
.socialdiv a.rss:hover {
  background: url(../images/social-icons.png);
  background-position: -461px -32px;
}
.socialdiv a.soundcloud {
  width: 30px;
  height: 31px;
  background: url(../images/social-icons.png);
  background-position: -263px 0;
  display: block;
}
.socialdiv a.soundcloud:hover {
  background: url(../images/social-icons.png);
  background-position: -263px -32px;
}
.socialdiv a.pinterest {
  width: 30px;
  height: 31px;
  background: url(../images/social-icons.png);
  background-position: -922px 0;
  display: block;
}
.socialdiv a.pinterest:hover {
  background: url(../images/social-icons.png);
  background-position: -922px -32px;
}
.socialdiv a.dribbble {
  width: 30px;
  height: 31px;
  background: url(../images/social-icons.png);
  background-position: -856px 0;
  display: block;
}
.socialdiv a.dribbble:hover {
  background: url(../images/social-icons.png);
  background-position: -856px -32px;
}
/* --------------- Ajax Loaders -----------*/

/*--------------- Login Page-------------*/
.acount__foil .input__foil{border:1px solid rgba(var(--thm-color-rgb),.2); border-radius: 4px;}

.account__foil.login .image img{max-height: 520px}
.account__foil.signup .image img{max-height: 740px}


