/*	Background Color Collection
	=========================== */
.bg-default-color {
	background: #fff;
}

.bg-green-color {
	background: #96c11f;
}

.bg-grey-color {
	background: #333;
}

.bg-light-grey-color {
	background: #efefef;
}

.bg-red-color {
	background: #fc3939;
}

.bg-green-gra {
	background-color: #B1063A;
	border:0;
	background-image: -moz-linear-gradient(top,  #B1063A 0%, #89012a 100%);
	background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#B1063A), color-stop(100%,#89012a));
	background-image: -webkit-linear-gradient(top,  #B1063A 0%,#89012a 100%);
	background-image: -o-linear-gradient(top,  #B1063A 0%,#89012a 100%);
	background-image: -ms-linear-gradient(top,  #B1063A 0%,#89012a 100%);
	background-image: linear-gradient(to bottom,  #B1063A 0%,#89012a 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#B1063A', endColorstr='#89012a',GradientType=0 );
}

.bg-grey-gra {
	background-color: #333;
	background-image: -moz-linear-gradient(top,  #333 0%, #111 100%);
	background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#333), color-stop(100%,#111));
	background-image: -webkit-linear-gradient(top,  #333 0%,#111 100%);
	background-image: -o-linear-gradient(top,  #333 0%,#111 100%);
	background-image: -ms-linear-gradient(top,  #333 0%,#111 100%);
	background-image: linear-gradient(to bottom,  #333 0%,#111 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#333', endColorstr='#111',GradientType=0 );
}

.bg-light-grey-gra {
	background-color: #ccc;
	background-image: -moz-linear-gradient(top,  #e2e2e2 0%, #ccc 100%);
	background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#e2e2e2), color-stop(100%,#ccc));
	background-image: -webkit-linear-gradient(top,  #e2e2e2 0%,#ccc 100%);
	background-image: -o-linear-gradient(top,  #e2e2e2 0%,#ccc 100%);
	background-image: -ms-linear-gradient(top,  #e2e2e2 0%,#ccc 100%);
	background-image: linear-gradient(to bottom,  #e2e2e2 0%,#ccc 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e2e2e2', endColorstr='#ccc',GradientType=0 );
}

.bg-orange-gra {
	background-color: #ff9900;
	background-image: -moz-linear-gradient(top,  #ff9900 0%, #ff6600 100%);
	background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ff9900), color-stop(100%,#ff6600));
	background-image: -webkit-linear-gradient(top,  #ff9900 0%,#ff6600 100%);
	background-image: -o-linear-gradient(top,  #ff9900 0%,#ff6600 100%);
	background-image: -ms-linear-gradient(top,  #ff9900 0%,#ff6600 100%);
	background-image: linear-gradient(to bottom,  #ff9900 0%,#ff6600 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ff9900', endColorstr='#ff6600',GradientType=0 );
}

.border-green {
	border: 2px solid #96c11f;
}


.border-grey {
	border: 2px solid #999;
}

.border-white {
	border: 2px solid #fff;
}
/*	Font Color Collection
	=========================== */
.font-white {
	color: #fff;
	text-shadow: 0px 1px 2px #000;
}

.font-black {
	color: #444;
}

.font-green {
	color: #B1063A;
}


.font-blue {
	color: #66d9ef;
}

.font-red {
	color: #b30037;
}

.font-grey {
	color: #777;
}

.text-shadow {
	text-shadow:
    3px 3px 0 #fff,
    /* Simulated effect for Firefox and Opera
       and nice enhancement for WebKit */
   -1px -1px 0 #fff,  
    1px -1px 0 #fff,
   -1px  1px 0 #fff,
    1px  1px 0 #fff;
}


/*	Font Style Collection
	=========================== */
.font-bold {
	font-weight: bold;
}

.font-thin {
	font-weight: normal;
}

.font-italic {
	font-style: italic;
}

.font-10 {
	font-size: 10px;
}

.font-12 {
	font-size: 12px;
}

.font-16 {
	font-size: 16px;
}

.font-18 {
	font-size: 18px;
}

.font-20 {
	font-size: 20px;
}

.font-24 {
	font-size: 24px;
}

.font-30 {
	font-size: 30px;
}

.width-10 {
	width: 10%;
}

.width-20 {
	width: 20%;
}

.width-30 {
	width: 30%;
}

.width-40 {
	width: 40%;
}

.width-50 {
	width: 50%;
}

.width-60 {
	width: 60%;
}

.width-70 {
	width: 70%;
}

.width-80 {
	width: 80%;
}

.width-90 {
	width: 90%;
}

.height-100 {
	height: 100px;
}

.height-150 {
	height: 150px;
}

.height-180 {
	height: 180px;
}

.height-200 {
	height: 200px;
}

.height-250 {
	height: 250px;
}

.height-300 {
	height: 300px;
}

.height-350 {
	height: 350px;
}

/*	Box Alert Color Collection
	=========================== */
.box-alert-red {
	border-left: 10px solid #fc3939;
	float: left;
	width: 100%;
}

.box-alert-green {
	border-left: 10px solid #444;
	float: left;
	width: 100%;
}

.box-alert-orange {
	border-left: 10px solid #ff9900;
	float: left;
	width: 100%;
}


/*	Triangle Top Left Color Collection
	=========================== */
.triangle-topleft {
	width: 0;
	height: 0;
	margin: -9px 0 0 -9px;
	border-top: 15px solid #B1063A;
	border-right: 15px solid transparent;
}

.triangle-topleft-green {
	width: 0;
	height: 0;
	margin: -10px 0 0 -10px;
	border-top: 15px solid #222;
	border-right: 15px solid transparent;
}

.triangle-topleft-dark-grey {
	width: 0;
	height: 0;
	margin: -10px 0 0 -10px;
	border-top: 15px solid #B1063A;
	border-right: 15px solid transparent;
}


