@charset "utf-8";
/* CSS Document */

/* ============ Font Awesome  ============ */

@font-face {
  font-family: 'tmls-FontAwesome';
  src: url('../fonts/fontawesome/fontawesome-webfont_v-4.0.3.eot');
  src: url('../fonts/fontawesome/fontawesome-webfont.eot') format('embedded-opentype'), url('../fonts/fontawesome/fontawesome-webfont_v-4.0.3.woff') format('woff'), url('../fonts/fontawesome/fontawesome-webfont_v-4.0.3.ttf') format('truetype'), url('../fonts/fontawesome/fontawesome-webfont_v-4.0.3-fontawesomeregular.svg') format('svg');
  font-weight: normal;
  font-style: normal;
}

.tmls-fa {
  display: inline-table;
  font-family: tmls-FontAwesome;
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ============ general  ============ */

.tmls  {
	direction:ltr;
	position:relative;
}

.tmls.tmls_overflow_hidden {
	overflow: hidden;
}

.tmls  a{
	text-decoration:none;
	-webkit-transition: all .3s;
	-moz-transition: all .3s;
	-o-transition: all .3s;
	-ms-transition: all .3s;
	transition: all .3s;
}
.tmls  a:hover{
	text-decoration:underline;
}

.tmls_clearfix { 
   clear: both;
}

/* ============ Slider  ============ */

.tmls .tmls_container.tmls_slider,
.tmls .tmls_container.tmls_slider2 {
	overflow:hidden;
	height:0px;
}
.tmls .tmls_container.tmls_slider .tmls_item {
	float:left;
}


/* ============ slider next & prev buttons  ============ */

.tmls .tmls_next_prev {
	text-align:right;
	z-index:10;
	
}
.tmls .tmls_next_prev.tmls_visible,
.tmls .tmls_next_prev.tmls_show_on_hover,
.tmls .tmls_next_prev.tmls_hiden {
	display:none;
}
.tmls_next,
.tmls_prev {
	display:inline-block;
	background-color:#F5F5F5;
	width:27px;
	height:27px;
	outline:none !important;
	-webkit-transition: all .3s;
	-moz-transition: all .3s;
	-o-transition: all .3s;
	-ms-transition: all .3s;
	transition: all .3s;
}

.tmls_next {
	background-image: url(../images/next.png);
	background-position:right center;
	background-repeat:no-repeat;
}

.tmls_prev {
	background-image: url(../images/prev.png);
	background-position:left center;
	background-repeat:no-repeat;
}

/* ---- slider next & prev hover effect  ---- */

.tmls_next:hover {
	background-position:left center;
}
.tmls_prev:hover {
	background-position:right center;
}

/* ---- slider next & prev radius  ---- */

.tmls .tmls_next_prev .tmls_next.no_radius,
.tmls .tmls_next_prev .tmls_prev.no_radius {
	-webkit-border-radius: 0px;
	-moz-border-radius: 0px;
	border-radius: 0px;
}
.tmls .tmls_next_prev .tmls_next.small_radius,
.tmls .tmls_next_prev .tmls_prev.small_radius {
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
}
.tmls .tmls_next_prev .tmls_next.medium_radius,
.tmls .tmls_next_prev .tmls_prev.medium_radius  {
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;
}
.tmls .tmls_next_prev .tmls_next.large_radius,
.tmls .tmls_next_prev .tmls_prev.large_radius {
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
}

/* ----------------- arrows colors ----------------- */

/* light gray */ 
.tmls_next.tmls_lightgrayarrows {
	background-position:right top;
}
.tmls_next.tmls_lightgrayarrows:hover {
	background-position:left top;
}
.tmls_prev.tmls_lightgrayarrows {
	background-position:left top;
}
.tmls_prev.tmls_lightgrayarrows:hover {
	background-position:right top;
}

/* dark gray */ 
.tmls_next.tmls_darkgrayarrows {
	background-position:right center;
}
.tmls_next.tmls_darkgrayarrows:hover {
	background-position:left center;
}
.tmls_prev.tmls_darkgrayarrows {
	background-position:left center;
}
.tmls_prev.tmls_darkgrayarrows:hover {
	background-position:right center;
}

/* white */ 
.tmls_next.tmls_whitearrows {
	background-position:right bottom;
}
.tmls_next.tmls_whitearrows:hover {
	background-position:left bottom;
}
.tmls_prev.tmls_whitearrows