/* Basics */
html, body {
	min-height: 100%;
}

body {
	font-size: 13px;
	font-family: "Ubuntu", Helvetica, Arial, sans-serif;
	background: url(../img/bg-pattern.png) repeat #353e44;
	overflow: hidden;
	color: #444;
}

.alert-line {
	width: 100%;
	height: 5px;
	position: fixed;
	top: 0;
	left: 0;
	background: #d75633;
	box-shadow: 0 0 10px rgba(0, 0, 0, .8);
}

/* Login form */
#login {
	width: 300px;
	background: #f5f5f5;
	border: 1px solid #c0c0c0;
	border-radius: 5px;
	box-shadow: inset 0 0 20px rgba(0, 0, 0, .1), 0 0 30px rgba(0, 0, 0, .5);
	position: absolute;
	top: 50%;
	left: 50%;
	margin-top: -220px;
	margin-left: -150px;
	padding: 25px;
	-webkit-box-reflect: below 2px -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(75%, transparent), to(rgba(255, 255, 255, .1)));
	-moz-box-reflect: below 2px -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(75%, transparent), to(rgba(255, 255, 255, .1)));
	box-reflect: below 2px -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(75%, transparent), to(rgba(255, 255, 255, .1)));
}

#login .login-client-logo {
	width: 100%;
	float: left;
	padding: 5px 0 20px 0;
	text-align: center;
}

#login .login-client-logo img {
	display: inline-block;
	margin: 0 auto;
	max-width: 90%;
	max-height: 100px;
}

#login .login-title {
	width: 100%;
	float: left;
	margin: 5px 0 30px 0;
	font-size: 18px;
	font-weight: bold;
	text-align: center;
	text-transform: uppercase;
}

#login .login-input-row {
	width: 100%;
	float: left;
}

#login .login-input-row input {
	width: 95%;
}

/* 404 page */
#notfound {
	font-size: 1.5em;
	padding: 7% 0;
	text-align: center;
}

#notfound i {
	font-size: 8em;
	color: #d75633;
}

/* User information */
.user-info {
	width: 250px;
	height: 95px;
	margin: 30px 20px 0 20px;
}

.user-info .user-avatar {
	width: 70px;
	height: 70px;
	display: block;
	position: relative;
	float: left;
	border: 3px solid #d9dbdc;
	border-radius: 50%;
	box-shadow: 0 0 5px rgba(0, 0, 0, .2);
	cursor: pointer;
}

.user-info .user-avatar:hover::before {
	content: "\f040";
	width: 70px;
	height: 70px;
	position: absolute;
	top: 0;
	left: 0;
	font-family: FontAwesome, sans-serif;
	display: block;
	border-radius: 50%;
	background: rgba(255, 255, 255, .8);
	line-height: 70px;
	font-size: 40px;
	text-align: center;
	text-shadow: 1px 1px rgba(0, 0, 0, .3);
	color: #69727a;
}

.user-info .user-avatar img {
	width: 70px;
	height: 70px;
	display: block;
	border-radius: 50%;
}

.user-info p {
	width: 160px;
	float: right;
	font-size: 12px;
	line-height: 1.5em;
	margin-top: 13px;
	color: #f0f0f0;
	text-shadow: 1px 1px rgba(0, 0, 0, .5);
}

.user-info p b {
	display: block;
}

.user-info p em {
	font-size: 11px;
	font-style: normal;
	display: block;
	color: #7e939e;
}

/* Search form */
.search-form {
	width: 235px;
	height: 25px;
	position: relative;
	margin: 10px 20px 30px 20px;
}

.search-form .search-input {
	width: 95%;
	height: 25px;
	font-size: 12px;
	padding: 0 2.5%;
	color: #f0f0f0;	
	background: #3b454c;
	border: 1px solid #596066;
	border-radius: 5px;
}

.search-form .search-input:hover {
	border: 1px solid #69727a;
}

.search-form .search-submit {
	height: 25px;
	font-family: FontAwesome, sans-serif;
	color: #9c9fa2;
	border: none;
	background: none;
	position: absolute;
	top: 1px;
	right: 1px;
}

.search-form .search-submit:hover {
	color: #f0f0f0;
}

/* Left navigation */
#menu {
	width: 280px;
	height: 100%;
	position: fixed;
	top: 0;
	left: 0;
}

#menu nav {
	width: 280px;
	margin-left: -25px;
}

#menu nav ul {
	width: 100%;
	list-style: none;
}

#menu nav ul li {
	width: 100%;
	height: 40px;
	position: relative;
	line-height: 40px;
	box-shadow: inset 0 0 20px rgba(0, 0, 0, .2);
	border-top: 1px solid #485560;
	border-bottom: 1px solid #222;
}

#menu nav ul li:first-child {
	border-top: none;
}

#menu nav ul li:last-child {
	border-bottom: none;
}

#menu nav ul li.selected {
	background: #282f34 !important;
}

#menu nav ul li.selected a,
#menu nav ul li.selected a:hover {
	color: #f0f0f0;
}

#menu nav ul li.selected i {
	color: #d75633 !important;
}

#menu nav ul li a {
	width: 83%;
	position: absolute;
	top: 0;
	left: 0;
	padding-left: 17%;
	font-size: 14px;
	font-weight: bold;
	text-transform: uppercase;
	text-shadow: 1px 1px rgba(0, 0, 0, .5);
	color: #d1d1d1;
}

#menu nav ul li a:hover {
	color: #fff;
	text-decoration: none;
}

#menu nav ul li:hover {
	background-color: #30393e;
}

#menu nav ul li i {
	float: left;
	height: 100%;
	font-size: 18px;
	color: #999;
	text-align: center;
	line-height: 40px;
	margin: 0 10px 0 20px;
}

#menu nav ul li:hover i,
#menu nav ul li:hover em {
	color: #fff;
}

#menu nav ul li em {
	position: absolute;
	top: 10px;
	right: 25px;
	font-size: 11px;
	font-style: normal;
	font-weight: bold;
	color: #d1d1d1;
	height: 15px;
	line-height: 15px;
	padding: 2px 5px;
	background: #3b454c;
	border: 1px solid #50585d;
	border-radius: 3px;
	text-align: center;
	cursor: pointer;
}

/* Top infos */
#top {
	width: -webkit-calc(100% - 280px);
	width: calc(100% - 280px);
	height: 45px;
	line-height: 45px;
	position: fixed;
	top: 5px;
	right: 0;
}

#top p {
	line-height: 45px;
	color: #f0f0f0;
}

#top p.project-title {
	width: 85%;
	position: absolute;
	top: 0;
	left: 0;
	font-size: 14px;
	margin-left: 20px;
}

#top p.project-title a {
	color: #f0f0f0 !important;
}

#top p.project-title a:hover {
	text-decoration: none;
}

#top .project-icon {
	width: 28px;
	height: 50px;
	line-height: 50px;
	position: absolute;
	top: 0;
	text-align: center;
}

#top .project-icon:hover {
	text-decoration: none;
}

#top .project-icon i {
	font-size: 20px;
	color: #fff;
}

#top .help { right: 50px; }
#top .logout { background: #d75633; padding: 0 5px; right: 0; }

/* Main white area */
#main {
	width: -webkit-calc(100% - 280px);
	width: calc(100% - 280px);
	height: -webkit-calc(100% - 50px);
	height: calc(100% - 50px);
	position: absolute;
	top: 50px;
	right: 0;
	background: #f3f3f3;
	border: none;
	border-radius: 5px 0 0 0;
	box-shadow: 0 0 35px rgba(0, 0, 0, .8);
	display: block;
	overflow-y: scroll;
}

/* Breadcrumb navigation */
#main .breadcrumb {
	width: 100%;
	height: 36px;
	line-height: 36px;
	margin: 0;
	padding: 0;
	background: #f2f2f2;
	background: -moz-linear-gradient(top, #f2f2f2 0%, #e7e7e7 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #f2f2f2), color-stop(100%, #e7e7e7));
	background: -webkit-linear-gradient(top, #f2f2f2 0%, #e7e7e7 100%);
	background: -o-linear-gradient(top, #f2f2f2 0% #e7e7e7 100%);
	background: -ms-linear-gradient(top, #f2f2f2 0%, #e7e7e7 100%);
	background: linear-gradient(top, #f2f2f2 0%, #e7e7e7 100%);
	border-bottom: 1px solid #e1e1e1;
}

#main .breadcrumb ul {
	width: -webkit-calc(100% - 20px);
	width: calc(100% - 20px);
	height: 36px;
	list-style: none;
	margin: 0;
	padding: 0 0 0 20px;
}

#main .breadcrumb ul li {
	font-weight: bold;
	line-height: 36px;
	float: left;
}

#main .breadcrumb ul li:after {
	content: "\f105";
	font-family: FontAwesome, sans-serif;
	height: 36px;
	margin: 0 10px;
}

#main .breadcrumb ul li:last-child:after {
	display: none;
}

#main .breadcrumb ul li a {
	font-weight: normal;
	color: #666;
}

#main .breadcrumb ul li a:hover {
	text-decoration: none;
}

#main .breadcrumb ul li a.home:before {
	content: "\f015";
	font-family: FontAwesome, sans-serif;
	margin-right: 5px;
}

/* Section title */
h1.page-title {
	font-size: 28px;
	font-weight: 300;
	letter-spacing: -1px;
	margin-left: 20px;
}

h1.page-title i {
	font-size: 24px;
	color: #d75633;
	margin-right: 10px;
}

/* Bootstrap container */
.container {
	width: 98%;
	overflow: auto;
}

/* White boxes */
.main-box {
	width: 88%;
	padding: 1%;
	margin-bottom: 20px;
	background: #fff;
	border: 1px solid #f0f0f0;
	border-radius: 5px;
	box-shadow: 1px 2px 3px #e1e1e1;
}

/* Listing items */
#newpage {
	margin-right: 20px;
}

.item-list,
.item-list table {
	width: 100%;
	float: left;
	border-collapse: collapse;
}

.item-list table {
	border-radius: 5px !important;
}

.item-list table th,
.item-list table td {
	vertical-align: middle;
	text-align: left;
}

.item-list table .cell-center {
	text-align: center;
}

.item-list table .cell-title {
	text-align: left;
	padding-left: 10px;
	padding-left: 10px;
}

.item-list table .cell-title a {
	font-size: 13px;
	font-weight: bold;
	color: #333;
}

.item-list table .label {
	position: relative;
	top: -1px;
	margin-left: 5px;
	color: #fff !important;
	font-size: 10px !important;
	font-weight: normal !important;
	background: #bababa;
}

.item-list table th {
	padding: 4px 0 1px 0;
	font-size: 12px;
	background: #d75633;
	color: #fff;
	border-right: 1px solid #b84b2d;
	border-bottom: 4px solid #b84b2d;
	text-shadow: 1px 1px #b84b2d;
	cursor: pointer;
}

.item-list table th:hover {
	background: #e45c37;
}

.item-list table th:first-child {
	border-radius: 5px 0 0 0;
}

.item-list table th:last-child {
	border-right: 0;
	border-radius: 0 5px 0 0;
}

.item-list table td {
	padding: 10px 0;
	background: #fcfcfc;
	border-right: 1px solid #f0f0f0;
	border-bottom: 1px solid #e1e1e1;
}

.item-list table td:last-child {
	border-right: none;
}

.item-list table tr:nth-of-type(even) td {
	background: #f5f5f5;
}

.item-list table tr:last-child td:first-child {
	border-radius: 5px;
}

.item-list table tr:last-child td:last-child {
	border-radius: 5px;
}

.item-list .hidden-language {
	display: none;
	visibility: hidden;
	opacity: 0;
}

.item-list table td .status {
	width: 14px;
	height: 14px;
	position: relative;
	top: 3px;
	display: inline-block;
	border-radius: 50%;
	text-indent: -9999px;
}

.item-list table td .status.active { background: #afc745; }
.item-list table td .status.inactive { background: #d7423b; }
.item-list table td .status.warning { background: #eebb33; }
.item-list table td .status.disabled { background: #9c9c9c; }

.item-list table td.actions a {
	display: inline-block;
	color: #666;
	line-height: 20px;
	margin: 0 3%;
}

.item-list table td.actions a:hover {
	color: #111;
	text-decoration: none;
}

.item-list table td.actions a i {
	font-size: 20px;
	line-height: 25px;
}

/* Filtering listed items */
.item-list-filters {
	width: 100%;
	height: 40px;
	float: left;
	position: relative;
	margin: 0.4% 0 0 0;
}

.item-list-filters #create-new {
	margin-right: 20px;
}

.item-list-filters-title {
	float: left;
	margin-right: 30px;
	height: 30px;
	line-height: 30px;
	font-weight: 300;
	font-size: 20px;
	color: #c0c0c0;
}

.item-list-filter-group {
	float: left;
	line-height: 30px;
	margin-right: 1%;
	padding-right: 0.5%;
}

.item-list-filter-group b {
	padding-right: 5px;
}

.item-list-filter-group select {
	width: 100%;
}

.item-list-filter-group #filter-type {
	width: 120%;
}

.item-list-search-field {
	width: 160px;
	float: right;
	position: relative;
}

.item-list-search-field input {
	width: 100%;
	float: right;
	text-indent: 25px;
}

.item-list-search-field::before {
	content: "\f002";
	position: absolute;
	top: 4px;
	left: -6px;
	z-index: 999;
	font-family: FontAwesome, sans-serif;
	font-size: 18px;
	color: #999;
}

/* Sortable tables */
.filter-table th span {
	width: 20px;
	height: 10px;
	display: inline-block;
	margin: 5px 0 0 -8px;
	background: url(../img/filter-arrows.png) left top no-repeat;
}

.filter-table th.sorting_asc,
.filter-table th.sorting_desc,
.filter-table th.sorting_asc:hover,
.filter-table th.sorting_desc:hover {
	background: #b84b2d;
}

.filter-table th.sorting_asc span { background-position: top; }
.filter-table th.sorting_desc span { background-position: bottom; }

.dataTables_info {
	width: 100%;
	float: left;
	text-align: center;
	margin-top: 10px;
}

.dataTables_paginate {
	width: 100%;
	text-align: center;
	font-size: 13px;
	font-weight: bold;
	margin: 20px 0 10px 0;
	float: left;
}

.dataTables_paginate span {
	border: none;
	margin: 0 10px;
	cursor: pointer;
}

.dataTables_paginate a:hover {
	color: #222;
	text-decoration: none;
}

.dataTables_paginate .paginate_button {
	color: #666;
	padding: 3px 6px;
	border-radius: 3px;
	cursor: pointer;
}

.dataTables_paginate .paginate_active,
.dataTables_paginate .paginate_active:hover  {
	background: #666;
	color: #fff;
	padding: 3px 6px;
	border-radius: 3px;
	cursor: pointer;
}

.dataTables_paginate .paginate_button.last::after {
	content: " \f101";
	font-family: FontAwesome, sans-serif;
}

.dataTables_paginate .paginate_button.first::before {
	content: "\f100  ";
	font-family: FontAwesome, sans-serif;
}

.dataTables_paginate .paginate_button.next::after {
	content: " \f105";
	font-family: FontAwesome, sans-serif;
}

.dataTables_paginate .paginate_button.previous::before {
	content: "\f104  ";
	font-family: FontAwesome, sans-serif;
}

.dataTables_filter {
	display: none;
	visibility: hidden;
	opacity: 0;
}

.dataTables_processing {
	padding: 10px 0px 5px;
	text-align: center;
}

.dataTables_empty {
	text-indent: 10px;
}

#filter-language {
	width: 110px;
}

#filter-status {
	width: 110px;
}

#filter-category {
	width: 200px;
}

.submenu {
	margin: 13px 10px 0 0;
}

/* Tabbed navigation overrides */
.nav-tabs li a {
	font-size: 1.15em;
	font-weight: bold;
	color: #888;
}

.nav-tabs li.active a,
.nav-tabs li.active a:hover {
	color: #d75633;
}

/* Editing things */
.edit-main-area {
	width: 72%;
	float: left;
}

.input-slug {
	width: 60%;
}

i.url-status {
	position: relative;
	top: 5px;
	left: 10px;
	font-size: 22px;
}

i.url-status-ok {
	color: #90ac0f;
}

i.url-status-notok {
	color: #c11d1d;
}

.edit-sidebar {
	width: 24%;
	float: right;
	padding: 1%;
	background: #f3f3f3;
	border: 1px solid #dadada;
	border-radius: 5px;
}

.edit-sidebar p {
	margin-bottom: 5px;
}

.edit-sidebar-title {
	font-size: 18px;
	font-weight: bold;
	margin-bottom: 15px;
}

.edit-sidebar .btn-large {
	margin-top: 10px;
}

.edit-sidebar-block {
	width: 100%;
	float: left;
	margin-bottom: 10px;
	padding: 0 0 15px 0;
	border-bottom: 1px solid #dadada;
}

.edit-sidebar-block:last-child {
	border: none;
}

.edit-sidebar .add-on i {
	line-height: 1.5em;
}

.edit-sidebar-buttons {
	display: block;
	margin-top: 10px;
}

.edit-sidebar-buttons a {
	margin-right: 5px;
}

/* Tags */
.tags-list {
	width: 97%;
	float: left;
	margin: 8px 0px 0px;
	padding: 1.5%;
	list-style: none;
	background: #fff;
	border: 1px solid #e1e1e1;
	border-radius: 5px;
}

.tags-list li {
	float: left;
	font-size: 11px;
	background: #f5f5f5;
	border: 1px solid #e1e1e1;
	border-radius: 3px;	
	margin: 3px;
	padding: 0 4px;
}

.tags-list li a {
	text-decoration: none !important;
}

.tags-list li i {
	margin-left: 3px;
	padding: 1px 2px;
	background: #bababa;
	color: #fff;
	border-radius: 3px;
}

.tags-list li i:hover {
	background: #c11d1d;
}

#tags-input {
	width: 70%;
	float: left;
}

#tags-add {
	display: none;
	float: left;
	margin-left: 5px;
}

/* Lead image */
.lead-image {
	width: 30%;
	float: left;
	margin-right: 10px;
	border-radius: 5px;
	box-shadow: 0 0 5px rgba(0, 0, 0, .2);
}

.lead-image-btns {
	float: left;
	text-align: left;
}

.lead-image-btns p {
	margin: 0px;
}

.lead-image-btns button {
	display: block;
	margin-bottom: 5px;
}

#lead-image-btn-browse {
	margin-top: 10px;
}

/* Page visibility */
.date-inputs .input-small {
	width: 150px;
}

.date-inputs div {
	margin-bottom: 5px;
}

/* Relations */
.nav-pills {
	border: none;
}

.nav-pills li a {
	font-weight: normal;
}

.alert-box {
	margin-bottom: 20px;
}

.alert-box a {
	margin-top: 10px;
}


/*! jQuery UI - v1.10.2 - 2013-03-27
* http://jqueryui.com
* Includes: jquery.ui.core.css, jquery.ui.autocomplete.css, jquery.ui.menu.css
* To view and modify this theme, visit http://jqueryui.com/themeroller/?ffDefault=Trebuchet%20MS%2CTahoma%2CVerdana%2CArial%2Csans-serif&fwDefault=bold&fsDefault=1.1em&cornerRadius=4px&bgColorHeader=f6a828&bgTextureHeader=gloss_wave&bgImgOpacityHeader=35&borderColorHeader=e78f08&fcHeader=ffffff&iconColorHeader=ffffff&bgColorContent=eeeeee&bgTextureContent=highlight_soft&bgImgOpacityContent=100&borderColorContent=dddddd&fcContent=333333&iconColorContent=222222&bgColorDefault=f6f6f6&bgTextureDefault=glass&bgImgOpacityDefault=100&borderColorDefault=cccccc&fcDefault=1c94c4&iconColorDefault=ef8c08&bgColorHover=fdf5ce&bgTextureHover=glass&bgImgOpacityHover=100&borderColorHover=fbcb09&fcHover=c77405&iconColorHover=ef8c08&bgColorActive=ffffff&bgTextureActive=glass&bgImgOpacityActive=65&borderColorActive=fbd850&fcActive=eb8f00&iconColorActive=ef8c08&bgColorHighlight=ffe45c&bgTextureHighlight=highlight_soft&bgImgOpacityHighlight=75&borderColorHighlight=fed22f&fcHighlight=363636&iconColorHighlight=228ef1&bgColorError=b81900&bgTextureError=diagonals_thick&bgImgOpacityError=18&borderColorError=cd0a0a&fcError=ffffff&iconColorError=ffd27a&bgColorOverlay=666666&bgTextureOverlay=diagonals_thick&bgImgOpacityOverlay=20&opacityOverlay=50&bgColorShadow=000000&bgTextureShadow=flat&bgImgOpacityShadow=10&opacityShadow=20&thicknessShadow=5px&offsetTopShadow=-5px&offsetLeftShadow=-5px&cornerRadiusShadow=5px
* Copyright 2013 jQuery Foundation and other contributors Licensed MIT */

/* Layout helpers
----------------------------------*/
.ui-helper-hidden {
  display: none;
}
.ui-helper-hidden-accessible {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}
.ui-helper-reset {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  line-height: 1.3;
  text-decoration: none;
  font-size: 100%;
  list-style: none;
}
.ui-helper-clearfix:before,
.ui-helper-clearfix:after {
  content: "";
  display: table;
  border-collapse: collapse;
}
.ui-helper-clearfix:after {
  clear: both;
}
.ui-helper-clearfix {
  min-height: 0; /* support: IE7 */
}
.ui-helper-zfix {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
  opacity: 0;
  filter:Alpha(Opacity=0);
}

.ui-front {
  z-index: 100;
}


/* Interaction Cues
----------------------------------*/
.ui-state-disabled {
  cursor: default !important;
}


/* Icons
----------------------------------*/

/* states and images */
.ui-icon {
  display: block;
  text-indent: -99999px;
  overflow: hidden;
  background-repeat: no-repeat;
}


/* Misc visuals
----------------------------------*/

/* Overlays */
.ui-widget-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.ui-autocomplete {
  position: absolute;
  top: 0;
  left: 0;
  cursor: default;
}
.ui-menu {
  list-style: none;
  padding: 2px;
  margin: 0;
  display: block;
  outline: none;
}
.ui-menu .ui-menu {
  margin-top: -3px;
  position: absolute;
}
.ui-menu .ui-menu-item {
  margin: 0;
  padding: 0;
  width: 100%;
}
.ui-menu .ui-menu-divider {
  margin: 5px -2px 5px -2px;
  height: 0;
  font-size: 0;
  line-height: 0;
  border-width: 1px 0 0 0;
}
.ui-menu .ui-menu-item a {
  text-decoration: none;
  display: block;
  padding: 2px .4em;
  line-height: 1.5;
  min-height: 0; /* support: IE7 */
  font-weight: normal;
}
.ui-menu .ui-menu-item a.ui-state-focus,
.ui-menu .ui-menu-item a.ui-state-active {
  font-weight: normal;
  margin: -1px;
}

.ui-menu .ui-state-disabled {
  font-weight: normal;
  margin: .4em 0 .2em;
  line-height: 1.5;
}
.ui-menu .ui-state-disabled a {
  cursor: default;
}

/* icon support */
.ui-menu-icons {
  position: relative;
}
.ui-menu-icons .ui-menu-item a {
  position: relative;
  padding-left: 2em;
}

/* left-aligned */
.ui-menu .ui-icon {
  position: absolute;
  top: .2em;
  left: .2em;
}

/* right-aligned */
.ui-menu .ui-menu-icon {
  position: static;
  float: right;
}

/* Component containers
----------------------------------*/
.ui-widget {
  font-family: Trebuchet MS,Tahoma,Verdana,Arial,sans-serif;
  font-size: 1.1em;
}
.ui-widget .ui-widget {
  font-size: 1em;
}
.ui-widget input,
.ui-widget select,
.ui-widget textarea,
.ui-widget button {
  font-family: Trebuchet MS,Tahoma,Verdana,Arial,sans-serif;
  font-size: 1em;
}
.ui-widget-content {
  border: 1px solid #dddddd;
  background: #eeeeee url(../img/ui-bg_highlight-soft_100_eeeeee_1x100.png) 50% top repeat-x;
  color: #333333;
}
.ui-widget-content a {
  color: #333333;
}
.ui-widget-header {
  border: 1px solid #e78f08;
  background: #f6a828 url(../img/ui-bg_gloss-wave_35_f6a828_500x100.png) 50% 50% repeat-x;
  color: #ffffff;
  font-weight: bold;
}
.ui-widget-header a {
  color: #ffffff;
}

/* Interaction states
----------------------------------*/
.ui-state-default,
.ui-widget-content .ui-state-default,
.ui-widget-header .ui-state-default {
  border: 1px solid #cccccc;
  background: #f6f6f6 url(../img/ui-bg_glass_100_f6f6f6_1x400.png) 50% 50% repeat-x;
  font-weight: bold;
  color: #1c94c4;
}
.ui-state-default a,
.ui-state-default a:link,
.ui-state-default a:visited {
  color: #1c94c4;
  text-decoration: none;
}
.ui-state-hover,
.ui-widget-content .ui-state-hover,
.ui-widget-header .ui-state-hover,
.ui-state-focus,
.ui-widget-content .ui-state-focus,
.ui-widget-header .ui-state-focus {
  border: 1px solid #fbcb09;
  background: #fdf5ce url(../img/ui-bg_glass_100_fdf5ce_1x400.png) 50% 50% repeat-x;
  font-weight: bold;
  color: #c77405;
}
.ui-state-hover a,
.ui-state-hover a:hover,
.ui-state-hover a:link,
.ui-state-hover a:visited {
  color: #c77405;
  text-decoration: none;
}
.ui-state-active,
.ui-widget-content .ui-state-active,
.ui-widget-header .ui-state-active {
  border: 1px solid #fbd850;
  background: #ffffff url(../img/ui-bg_glass_65_ffffff_1x400.png) 50% 50% repeat-x;
  font-weight: bold;
  color: #eb8f00;
}
.ui-state-active a,
.ui-state-active a:link,
.ui-state-active a:visited {
  color: #eb8f00;
  text-decoration: none;
}

/* Interaction Cues
----------------------------------*/
.ui-state-highlight,
.ui-widget-content .ui-state-highlight,
.ui-widget-header .ui-state-highlight {
  border: 1px solid #fed22f;
  background: #ffe45c url(../img/ui-bg_highlight-soft_75_ffe45c_1x100.png) 50% top repeat-x;
  color: #363636;
}
.ui-state-highlight a,
.ui-widget-content .ui-state-highlight a,
.ui-widget-header .ui-state-highlight a {
  color: #363636;
}
.ui-state-error,
.ui-widget-content .ui-state-error,
.ui-widget-header .ui-state-error {
  border: 1px solid #cd0a0a;
  background: #b81900 url(../img/ui-bg_diagonals-thick_18_b81900_40x40.png) 50% 50% repeat;
  color: #ffffff;
}
.ui-state-error a,
.ui-widget-content .ui-state-error a,
.ui-widget-header .ui-state-error a {
  color: #ffffff;
}
.ui-state-error-text,
.ui-widget-content .ui-state-error-text,
.ui-widget-header .ui-state-error-text {
  color: #ffffff;
}
.ui-priority-primary,
.ui-widget-content .ui-priority-primary,
.ui-widget-header .ui-priority-primary {
  font-weight: bold;
}
.ui-priority-secondary,
.ui-widget-content .ui-priority-secondary,
.ui-widget-header .ui-priority-secondary {
  opacity: .7;
  filter:Alpha(Opacity=70);
  font-weight: normal;
}
.ui-state-disabled,
.ui-widget-content .ui-state-disabled,
.ui-widget-header .ui-state-disabled {
  opacity: .35;
  filter:Alpha(Opacity=35);
  background-image: none;
}
.ui-state-disabled .ui-icon {
  filter:Alpha(Opacity=35); /* For IE8 - See #6059 */
}

/* Icons
----------------------------------*/

/* states and images */
.ui-icon {
  width: 16px;
  height: 16px;
}
.ui-icon,
.ui-widget-content .ui-icon {
  background-image: url(../img/ui-icons_222222_256x240.png);
}
.ui-widget-header .ui-icon {
  background-image: url(../img/ui-icons_ffffff_256x240.png);
}
.ui-state-default .ui-icon {
  background-image: url(../img/ui-icons_ef8c08_256x240.png);
}
.ui-state-hover .ui-icon,
.ui-state-focus .ui-icon {
  background-image: url(../img/ui-icons_ef8c08_256x240.png);
}
.ui-state-active .ui-icon {
  background-image: url(../img/ui-icons_ef8c08_256x240.png);
}
.ui-state-highlight .ui-icon {
  background-image: url(../img/ui-icons_228ef1_256x240.png);
}
.ui-state-error .ui-icon,
.ui-state-error-text .ui-icon {
  background-image: url(../img/ui-icons_ffd27a_256x240.png);
}

/* positioning */
.ui-icon-blank { background-position: 16px 16px; }
.ui-icon-carat-1-n { background-position: 0 0; }
.ui-icon-carat-1-ne { background-position: -16px 0; }
.ui-icon-carat-1-e { background-position: -32px 0; }
.ui-icon-carat-1-se { background-position: -48px 0; }
.ui-icon-carat-1-s { background-position: -64px 0; }
.ui-icon-carat-1-sw { background-position: -80px 0; }
.ui-icon-carat-1-w { background-position: -96px 0; }
.ui-icon-carat-1-nw { background-position: -112px 0; }
.ui-icon-carat-2-n-s { background-position: -128px 0; }
.ui-icon-carat-2-e-w { background-position: -144px 0; }
.ui-icon-triangle-1-n { background-position: 0 -16px; }
.ui-icon-triangle-1-ne { background-position: -16px -16px; }
.ui-icon-triangle-1-e { background-position: -32px -16px; }
.ui-icon-triangle-1-se { background-position: -48px -16px; }
.ui-icon-triangle-1-s { background-position: -64px -16px; }
.ui-icon-triangle-1-sw { background-position: -80px -16px; }
.ui-icon-triangle-1-w { background-position: -96px -16px; }
.ui-icon-triangle-1-nw { background-position: -112px -16px; }
.ui-icon-triangle-2-n-s { background-position: -128px -16px; }
.ui-icon-triangle-2-e-w { background-position: -144px -16px; }
.ui-icon-arrow-1-n { background-position: 0 -32px; }
.ui-icon-arrow-1-ne { background-position: -16px -32px; }
.ui-icon-arrow-1-e { background-position: -32px -32px; }
.ui-icon-arrow-1-se { background-position: -48px -32px; }
.ui-icon-arrow-1-s { background-position: -64px -32px; }
.ui-icon-arrow-1-sw { background-position: -80px -32px; }
.ui-icon-arrow-1-w { background-position: -96px -32px; }
.ui-icon-arrow-1-nw { background-position: -112px -32px; }
.ui-icon-arrow-2-n-s { background-position: -128px -32px; }
.ui-icon-arrow-2-ne-sw { background-position: -144px -32px; }
.ui-icon-arrow-2-e-w { background-position: -160px -32px; }
.ui-icon-arrow-2-se-nw { background-position: -176px -32px; }
.ui-icon-arrowstop-1-n { background-position: -192px -32px; }
.ui-icon-arrowstop-1-e { background-position: -208px -32px; }
.ui-icon-arrowstop-1-s { background-position: -224px -32px; }
.ui-icon-arrowstop-1-w { background-position: -240px -32px; }
.ui-icon-arrowthick-1-n { background-position: 0 -48px; }
.ui-icon-arrowthick-1-ne { background-position: -16px -48px; }
.ui-icon-arrowthick-1-e { background-position: -32px -48px; }
.ui-icon-arrowthick-1-se { background-position: -48px -48px; }
.ui-icon-arrowthick-1-s { background-position: -64px -48px; }
.ui-icon-arrowthick-1-sw { background-position: -80px -48px; }
.ui-icon-arrowthick-1-w { background-position: -96px -48px; }
.ui-icon-arrowthick-1-nw { background-position: -112px -48px; }
.ui-icon-arrowthick-2-n-s { background-position: -128px -48px; }
.ui-icon-arrowthick-2-ne-sw { background-position: -144px -48px; }
.ui-icon-arrowthick-2-e-w { background-position: -160px -48px; }
.ui-icon-arrowthick-2-se-nw { background-position: -176px -48px; }
.ui-icon-arrowthickstop-1-n { background-position: -192px -48px; }
.ui-icon-arrowthickstop-1-e { background-position: -208px -48px; }
.ui-icon-arrowthickstop-1-s { background-position: -224px -48px; }
.ui-icon-arrowthickstop-1-w { background-position: -240px -48px; }
.ui-icon-arrowreturnthick-1-w { background-position: 0 -64px; }
.ui-icon-arrowreturnthick-1-n { background-position: -16px -64px; }
.ui-icon-arrowreturnthick-1-e { background-position: -32px -64px; }
.ui-icon-arrowreturnthick-1-s { background-position: -48px -64px; }
.ui-icon-arrowreturn-1-w { background-position: -64px -64px; }
.ui-icon-arrowreturn-1-n { background-position: -80px -64px; }
.ui-icon-arrowreturn-1-e { background-position: -96px -64px; }
.ui-icon-arrowreturn-1-s { background-position: -112px -64px; }
.ui-icon-arrowrefresh-1-w { background-position: -128px -64px; }
.ui-icon-arrowrefresh-1-n { background-position: -144px -64px; }
.ui-icon-arrowrefresh-1-e { background-position: -160px -64px; }
.ui-icon-arrowrefresh-1-s { background-position: -176px -64px; }
.ui-icon-arrow-4 { background-position: 0 -80px; }
.ui-icon-arrow-4-diag { background-position: -16px -80px; }
.ui-icon-extlink { background-position: -32px -80px; }
.ui-icon-newwin { background-position: -48px -80px; }
.ui-icon-refresh { background-position: -64px -80px; }
.ui-icon-shuffle { background-position: -80px -80px; }
.ui-icon-transfer-e-w { background-position: -96px -80px; }
.ui-icon-transferthick-e-w { background-position: -112px -80px; }
.ui-icon-folder-collapsed { background-position: 0 -96px; }
.ui-icon-folder-open { background-position: -16px -96px; }
.ui-icon-document { background-position: -32px -96px; }
.ui-icon-document-b { background-position: -48px -96px; }
.ui-icon-note { background-position: -64px -96px; }
.ui-icon-mail-closed { background-position: -80px -96px; }
.ui-icon-mail-open { background-position: -96px -96px; }
.ui-icon-suitcase { background-position: -112px -96px; }
.ui-icon-comment { background-position: -128px -96px; }
.ui-icon-person { background-position: -144px -96px; }
.ui-icon-print { background-position: -160px -96px; }
.ui-icon-trash { background-position: -176px -96px; }
.ui-icon-locked { background-position: -192px -96px; }
.ui-icon-unlocked { background-position: -208px -96px; }
.ui-icon-bookmark { background-position: -224px -96px; }
.ui-icon-tag { background-position: -240px -96px; }
.ui-icon-home { background-position: 0 -112px; }
.ui-icon-flag { background-position: -16px -112px; }
.ui-icon-calendar { background-position: -32px -112px; }
.ui-icon-cart { background-position: -48px -112px; }
.ui-icon-pencil { background-position: -64px -112px; }
.ui-icon-clock { background-position: -80px -112px; }
.ui-icon-disk { background-position: -96px -112px; }
.ui-icon-calculator { background-position: -112px -112px; }
.ui-icon-zoomin { background-position: -128px -112px; }
.ui-icon-zoomout { background-position: -144px -112px; }
.ui-icon-search { background-position: -160px -112px; }
.ui-icon-wrench { background-position: -176px -112px; }
.ui-icon-gear { background-position: -192px -112px; }
.ui-icon-heart { background-position: -208px -112px; }
.ui-icon-star { background-position: -224px -112px; }
.ui-icon-link { background-position: -240px -112px; }
.ui-icon-cancel { background-position: 0 -128px; }
.ui-icon-plus { background-position: -16px -128px; }
.ui-icon-plusthick { background-position: -32px -128px; }
.ui-icon-minus { background-position: -48px -128px; }
.ui-icon-minusthick { background-position: -64px -128px; }
.ui-icon-close { background-position: -80px -128px; }
.ui-icon-closethick { background-position: -96px -128px; }
.ui-icon-key { background-position: -112px -128px; }
.ui-icon-lightbulb { background-position: -128px -128px; }
.ui-icon-scissors { background-position: -144px -128px; }
.ui-icon-clipboard { background-position: -160px -128px; }
.ui-icon-copy { background-position: -176px -128px; }
.ui-icon-contact { background-position: -192px -128px; }
.ui-icon-image { background-position: -208px -128px; }
.ui-icon-video { background-position: -224px -128px; }
.ui-icon-script { background-position: -240px -128px; }
.ui-icon-alert { background-position: 0 -144px; }
.ui-icon-info { background-position: -16px -144px; }
.ui-icon-notice { background-position: -32px -144px; }
.ui-icon-help { background-position: -48px -144px; }
.ui-icon-check { background-position: -64px -144px; }
.ui-icon-bullet { background-position: -80px -144px; }
.ui-icon-radio-on { background-position: -96px -144px; }
.ui-icon-radio-off { background-position: -112px -144px; }
.ui-icon-pin-w { background-position: -128px -144px; }
.ui-icon-pin-s { background-position: -144px -144px; }
.ui-icon-play { background-position: 0 -160px; }
.ui-icon-pause { background-position: -16px -160px; }
.ui-icon-seek-next { background-position: -32px -160px; }
.ui-icon-seek-prev { background-position: -48px -160px; }
.ui-icon-seek-end { background-position: -64px -160px; }
.ui-icon-seek-start { background-position: -80px -160px; }
/* ui-icon-seek-first is deprecated, use ui-icon-seek-start instead */
.ui-icon-seek-first { background-position: -80px -160px; }
.ui-icon-stop { background-position: -96px -160px; }
.ui-icon-eject { background-position: -112px -160px; }
.ui-icon-volume-off { background-position: -128px -160px; }
.ui-icon-volume-on { background-position: -144px -160px; }
.ui-icon-power { background-position: 0 -176px; }
.ui-icon-signal-diag { background-position: -16px -176px; }
.ui-icon-signal { background-position: -32px -176px; }
.ui-icon-battery-0 { background-position: -48px -176px; }
.ui-icon-battery-1 { background-position: -64px -176px; }
.ui-icon-battery-2 { background-position: -80px -176px; }
.ui-icon-battery-3 { background-position: -96px -176px; }
.ui-icon-circle-plus { background-position: 0 -192px; }
.ui-icon-circle-minus { background-position: -16px -192px; }
.ui-icon-circle-close { background-position: -32px -192px; }
.ui-icon-circle-triangle-e { background-position: -48px -192px; }
.ui-icon-circle-triangle-s { background-position: -64px -192px; }
.ui-icon-circle-triangle-w { background-position: -80px -192px; }
.ui-icon-circle-triangle-n { background-position: -96px -192px; }
.ui-icon-circle-arrow-e { background-position: -112px -192px; }
.ui-icon-circle-arrow-s { background-position: -128px -192px; }
.ui-icon-circle-arrow-w { background-position: -144px -192px; }
.ui-icon-circle-arrow-n { background-position: -160px -192px; }
.ui-icon-circle-zoomin { background-position: -176px -192px; }
.ui-icon-circle-zoomout { background-position: -192px -192px; }
.ui-icon-circle-check { background-position: -208px -192px; }
.ui-icon-circlesmall-plus { background-position: 0 -208px; }
.ui-icon-circlesmall-minus { background-position: -16px -208px; }
.ui-icon-circlesmall-close { background-position: -32px -208px; }
.ui-icon-squaresmall-plus { background-position: -48px -208px; }
.ui-icon-squaresmall-minus { background-position: -64px -208px; }
.ui-icon-squaresmall-close { background-position: -80px -208px; }
.ui-icon-grip-dotted-vertical { background-position: 0 -224px; }
.ui-icon-grip-dotted-horizontal { background-position: -16px -224px; }
.ui-icon-grip-solid-vertical { background-position: -32px -224px; }
.ui-icon-grip-solid-horizontal { background-position: -48px -224px; }
.ui-icon-gripsmall-diagonal-se { background-position: -64px -224px; }
.ui-icon-grip-diagonal-se { background-position: -80px -224px; }


/* Misc visuals
----------------------------------*/

/* Corner radius */
.ui-corner-all,
.ui-corner-top,
.ui-corner-left,
.ui-corner-tl {
  border-top-left-radius: 4px;
}
.ui-corner-all,
.ui-corner-top,
.ui-corner-right,
.ui-corner-tr {
  border-top-right-radius: 4px;
}
.ui-corner-all,
.ui-corner-bottom,
.ui-corner-left,
.ui-corner-bl {
  border-bottom-left-radius: 4px;
}
.ui-corner-all,
.ui-corner-bottom,
.ui-corner-right,
.ui-corner-br {
  border-bottom-right-radius: 4px;
}

/* Overlays */
.ui-widget-overlay {
  background: #666666 url(../img/ui-bg_diagonals-thick_20_666666_40x40.png) 50% 50% repeat;
  opacity: .5;
  filter: Alpha(Opacity=50);
}
.ui-widget-shadow {
  margin: -5px 0 0 -5px;
  padding: 5px;
  background: #000000 url(../img/ui-bg_flat_10_000000_40x100.png) 50% 50% repeat-x;
  opacity: .2;
  filter: Alpha(Opacity=20);
  border-radius: 5px;
}

.filter-table td .preview {
	margin: 0 10px 0 0;
}

ul.jqtree-tree {
    margin-left: 25px;
    margin-right: 25px;
    margin-top: 5px;
    font-size: 13px;
}

ul.jqtree-tree,
ul.jqtree-tree ul.jqtree_common {
    list-style: none outside;
    margin-bottom: 0;
    padding: 0;
}

ul.jqtree-tree ul.jqtree_common {
    display: block;
    margin-left: 10px;
}
ul.jqtree-tree li.jqtree-closed > ul.jqtree_common {
    display: none;
}

ul.jqtree-tree li.jqtree_common {
    clear: both;
    list-style-type: none;
    margin-bottom:0px;
}
ul.jqtree-tree .jqtree-toggler {
    display: block;
    position: absolute;
    left: -15px;
    top: 8px;
    font-size: 18px;
    line-height: 12px;
    border: 0px;
    background: none;
    padding: 0px;
    box-shadow: none;
    -webkit-box-shadow: none;
}

ul.jqtree-tree .jqtree-element {
    cursor: pointer;
    margin:0px;
    border-bottom: 1px solid #eee;

}

ul.jqtree-tree .jqtree-title {
    vertical-align: middle;
    color:#0088cc;
}

ul.jqtree-tree .not-visible .jqtree-title,
ul.jqtree-tree .jqtree-element .not-visible .jqtree-title {
    color: #aaa;
}

ul.jqtree-tree .jqtree-element:hover .jqtree-title {
    color:#005580;text-decoration:underline;
}

ul.jqtree-tree li.jqtree-folder {
    margin-bottom: 5px;
}

ul.jqtree-tree li.jqtree-folder > ul.jqtree_common {
    border: 0px;
}

ul.jqtree-tree li.jqtree-folder.jqtree-closed {
    margin-bottom: 3px;
}

ul.jqtree-tree li.jqtree-folder .jqtree-title {
    margin-left: 0px;
}

ul.jqtree-tree .jqtree-toggler.jqtree-closed {
    background-position: 0 0;
}

span.jqtree-dragging {
    color: #fff;
    background: #000;
    opacity: 0.6;
    cursor: pointer;
    padding: 2px 8px;
}

ul.jqtree-tree li.jqtree-ghost {
    position: relative;
    z-index: 10;
    margin-right: 10px;
}

ul.jqtree-tree li.jqtree-ghost span {
    display: block;
}

ul.jqtree-tree li.jqtree-ghost span.jqtree-circle {
    background-image: url('../img/jqtree-circle.png');
    background-repeat: no-repeat;
    height: 8px;
    width: 8px;
    position: absolute;
    top: -4px;
    left: 0px;
}

ul.jqtree-tree li.jqtree-ghost span.jqtree-line {
    background-color: #d75633;
    height: 2px;
    padding: 0;
    position: absolute;
    top: -1px;
    left: 0px;
    width: 100%;
}

ul.jqtree-tree li.jqtree-ghost.jqtree-inside {
    margin-left: 48px;
}

ul.jqtree-tree span.jqtree-border {
    position: absolute;
    display: block;
    left: -2px;
    top: 0;
    border: solid 2px #d75633;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    border-radius: 0px;
    margin: 0;
    padding: 5px 0px;
}

ul.jqtree-tree .jqtree-element {
    padding: 5px;
    position: relative;
    width: auto;
}
/*
ul.jqtree-tree li.jqtree-selected > .jqtree-element,
ul.jqtree-tree li.jqtree-selected > .jqtree-element:hover {
    background-color: #97BDD6;
    background: -webkit-gradient(linear, left top, left bottom, from(#BEE0F5), to(#89AFCA));
    background: -moz-linear-gradient(top, #BEE0F5, #89AFCA);
    background: -ms-linear-gradient(top, #BEE0F5, #89AFCA);
    background: -o-linear-gradient(top, #BEE0F5, #89AFCA);
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.7);
}
*/
ul.jqtree-tree .jqtree-moving > .jqtree-element .jqtree-title {
    outline: dashed 1px #d75633;
    padding: 2px 8px;
}

#product-images {
  overflow: hidden;
}
#product-images .image {
  cursor:pointer;
  margin:0px 10px 10px 0px;
  float: left;
}
#product-images .image img {
    border: 4px solid #fff;
}
#product-images img.active {
  border: 4px solid #d75633;
  border-radius: 8px;
}

#product-images .image a {
  display:block;
  font-size: 12px;
  text-align: center;
}

.sortable-placeholder {
	background: #efefef;
}
