/*
YUI 3.18.1 (build f7e7bcb)
Copyright 2014 Yahoo! Inc. All rights reserved.
Licensed under the BSD License.
http://yuilibrary.com/license/
*/

.yui3-skin-night .yui3-scrollview-scrollbar {
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate(0, 0);
}

.yui3-skin-night .yui3-scrollview-scrollbar .yui3-scrollview-first,
.yui3-skin-night .yui3-scrollview-scrollbar .yui3-scrollview-middle,
.yui3-skin-night .yui3-scrollview-scrollbar .yui3-scrollview-last {
    border-radius:3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
	background-color:#808080;
	opacity:0.3;
	filter:alpha(opacity=30); /*IE*/


/*    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAYAAAABCAYAAAD9yd/wAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAABJJREFUeNpiZGBgSGPAAgACDAAIkABoFyloZQAAAABJRU5ErkJggg==);
*/
}

.yui3-skin-night .yui3-scrollview-scrollbar .yui3-scrollview-first,
.yui3-skin-night .yui3-scrollview-scrollbar .yui3-scrollview-last {
    border-bottom-right-radius:0;
    border-bottom-left-radius:0;

    -webkit-border-bottom-right-radius:0;
    -webkit-border-bottom-left-radius:0;

    -moz-border-radius-bottomright:0;
    -moz-border-radius-bottomleft:0;
}
.yui3-skin-night .yui3-scrollview-scrollbar .yui3-scrollview-last {

    border-radius:0;
    border-bottom-right-radius:3px;
    border-bottom-left-radius:3px;

    -webkit-border-radius:0;
    -webkit-border-bottom-right-radius:3px;
    -webkit-border-bottom-left-radius:3px;
    -webkit-transform: translate3d(0, 0, 0);

    -moz-border-radius:0;
    -moz-border-radius-bottomright:3px;
    -moz-border-radius-bottomleft:3px;
    -moz-transform: translate(0, 0);
}

.yui3-skin-night .yui3-scrollview-scrollbar .yui3-scrollview-middle {
    border-radius:0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;

    -webkit-transform: translate3d(0,0,0) scaleY(1);
    -webkit-transform-origin: 0 0;

    -moz-transform: translate(0,0) scaleY(1);
    -moz-transform-origin: 0 0;
}

.yui3-skin-night .yui3-scrollview-scrollbar-horiz .yui3-scrollview-first,
.yui3-skin-night .yui3-scrollview-scrollbar-horiz .yui3-scrollview-last {
    border-top-right-radius: 0;
    border-bottom-left-radius: 3px;

    -webkit-border-top-right-radius: 0;
    -webkit-border-bottom-left-radius: 3px;

    -moz-border-radius-topright: 0;
    -moz-border-radius-bottomleft: 3px;
}

.yui3-skin-night .yui3-scrollview-scrollbar-horiz .yui3-scrollview-last {
    border-bottom-left-radius: 0;
    border-top-right-radius: 3px;

    -webkit-border-bottom-left-radius: 0;
    -webkit-border-top-right-radius: 3px;

    -moz-border-radius-bottomleft: 0;
    -moz-border-radius-topright: 3px;
}

.yui3-skin-night .yui3-scrollview-scrollbar-horiz .yui3-scrollview-middle {
    -webkit-transform: translate3d(0,0,0) scaleX(1);
    -webkit-transform-origin: 0 0;

    -moz-transform: translate(0,0) scaleX(1);
    -moz-transform-origin: 0 0;
}

.yui3-skin-night .yui3-scrollview-scrollbar-vert-basic .yui3-scrollview-child,
.yui3-skin-night .yui3-scrollview-scrollbar-horiz-basic .yui3-scrollview-child {
    background-color: #aaa;
    background-image: none;
}

/*
YUI 3.18.1 (build f7e7bcb)
Copyright 2014 Yahoo! Inc. All rights reserved.
Licensed under the BSD License.
http://yuilibrary.com/license/
*/

.yui3-skin-night .yui3-scrollview {
    -webkit-tap-highlight-color: rgba(0,0,0,0);
}

.yui3-skin-night .yui3-scrollview{
    color:#fff;
    background-color:#000;
}

.yui3-skin-night .yui3-scrollview-vert .yui3-scrollview-content {
    /*border:1px solid #303030; If the ScrollView needs a border add it here */
    border-top:0;
    background-color:#000;
    font-family: HelveticaNeue,arial,helvetica,clean,sans-serif;
    color:#fff;
}

/* For IE 6/7 - needs a background color (above) to pick up events, and zoom, to fill the UL */
.yui3-skin-night .yui3-scrollview-vert .yui3-scrollview-content .yui3-scrollview-item {
    *zoom:1;
}

/* For IE7 - needs zoom, otherwise clipped content is not rendered */
.yui3-skin-night .yui3-scrollview-vert .yui3-scrollview-content .yui3-scrollview-list {
    *zoom:1;
	list-style:none; /*need these since reset is not required*/
	padding:0; /*need these since reset is not required*/
	margin:0; /*need these since reset is not required*/
}

.yui3-skin-night .yui3-scrollview-vert .yui3-scrollview-content .yui3-scrollview-item {
    border-bottom: 1px solid #303030;
    padding: 15px 20px 16px;
    font-size: 100%;
    font-weight: bold;
    background-color:#151515;
	cursor:pointer;
}

.yui3-skin-night .yui3-scrollview-vert .yui3-scrollview-content .yui3-scrollview-list.selected{
	background-color:#2C2D2E;
	background: -moz-linear-gradient(
		0% 100% 90deg,
		#252626 0%,
		#333434 100%
	);
    background: -webkit-gradient(
        linear,
        left top,
        left bottom,
        from(#333434),
        to(#252626)
    );
	border-top:solid 1px #4b4b4b;
	border-bottom:solid 1px #3e3f3f;
	margin-top:-1px;
}

/*
YUI 3.18.1 (build f7e7bcb)
Copyright 2014 Yahoo! Inc. All rights reserved.
Licensed under the BSD License.
http://yuilibrary.com/license/
*/

.yui3-resize-handle-inner-r,
.yui3-resize-handle-inner-l,
.yui3-resize-handle-inner-t,
.yui3-resize-handle-inner-b,
.yui3-resize-handle-inner-tr,
.yui3-resize-handle-inner-br,
.yui3-resize-handle-inner-tl,
.yui3-resize-handle-inner-bl {
	background-repeat: no-repeat;
	background: url(arrows.png) no-repeat 0 0;
	display: block;
	height: 15px;
	overflow: hidden;
	text-indent: -99999em;
	width: 15px;
}

.yui3-resize-handle-inner-br {
	background-position: -30px 0;
	bottom: -2px;
	right: -2px;
}

.yui3-resize-handle-inner-tr {
    background-position: -58px 0;
    bottom: 0;
    right: -2px;

}

.yui3-resize-handle-inner-bl {
	background-position: -75px 0;
	bottom: -2px;
	right: -2px;
}

.yui3-resize-handle-inner-tl {
    background-position: -47px 0;
    bottom: 0;
    right: -2px;

}

.yui3-resize-handle-inner-b,.yui3-resize-handle-inner-t {
	background-position: -15px 0;
}

/*
YUI 3.18.1 (build f7e7bcb)
Copyright 2014 Yahoo! Inc. All rights reserved.
Licensed under the BSD License.
http://yuilibrary.com/license/
*/

/* Vertical menus and submenus */

.yui3-skin-night .yui3-menu-content,
.yui3-skin-night .yui3-menu .yui3-menu .yui3-menu-content {

    font-size: 100%;
    line-height: 2.25;  /* 18px 1.5*/
    *line-height: 1.45; /* For IE */
    border: solid 1px #303030;
    background: #151515;
    /*padding: 3px 0;*/

}

.yui3-skin-night .yui3-menu .yui3-menu .yui3-menu-content {

	font-size: 100%;

}


/* Horizontal menus */
.yui3-skin-night .yui3-menu-horizontal .yui3-menu-content {

    line-height: 2;  /* ~24px */
    *line-height: 1.9; /* For IE */
    background-color:#3b3c3d;
	background: -moz-linear-gradient(
		0% 100% 90deg,
		#242526 0%,
		#3b3c3d 96%,
		#2C2D2F 100%
	);
    background: -webkit-gradient(
        linear,
        left bottom,
        left top,
        from(#242526),
        color-stop(0.96, #3b3c3d),
        to(#2C2D2F)
    );
    padding: 0;

}


.yui3-skin-night .yui3-menu ul,
.yui3-skin-night .yui3-menu ul ul {

	margin-top: 3px;
	padding-top: 3px;
    border-top: solid 1px #303030;

}

.yui3-skin-night .yui3-menu ul.first-of-type {

    border: 0;
	margin: 0;
	padding: 0;

}

.yui3-skin-night .yui3-menu-horizontal ul {

	padding: 0;
	margin: 0;
	border: 0;

}


.yui3-skin-night .yui3-menu li,
.yui3-skin-night .yui3-menu .yui3-menu li {

    /*
        For and IE 6 (Strict Mode and Quirks Mode) and IE 7 (Quirks Mode only):
		Used to collapse superfluous white space between <li> elements that is
		triggered by the "display" property of the <a> elements being set to
		"block" by node-menunav-core.css file.
    */

    _border-bottom: solid 1px #151515;

}

.yui3-skin-night .yui3-menu-horizontal li {

	_border-bottom: 0;

}

.yui3-skin-night .yui3-menubuttonnav li {

    border-right: solid 1px #ccc;

}

.yui3-skin-night .yui3-splitbuttonnav li {

    border-right: solid 1px #303030;

}

.yui3-skin-night .yui3-menubuttonnav li li,
.yui3-skin-night .yui3-splitbuttonnav li li {

	border-right: 0;

}


/* Menuitems and menu labels */


.yui3-skin-night .yui3-menu-label,
.yui3-skin-night .yui3-menu .yui3-menu .yui3-menu-label,
.yui3-skin-night .yui3-menuitem-content,
.yui3-skin-night .yui3-menu .yui3-menu .yui3-menuitem-content {

    /*padding: 0 20px;*/
    padding: 0 1em;
    /*background-color: #2F3030;*/






    color: #fff;
    text-decoration: none;
    cursor: default;

	/*
		Necessary specify values for border, position and margin to override
		values specified in the selectors that follow.
	*/

	float: none;
	border: 0;
	margin: 0;

}

.yui3-skin-night .yui3-menu-horizontal .yui3-menu-label,
.yui3-skin-night .yui3-menu-horizontal .yui3-menuitem-content {

    padding: 0 10px;
    border-style: solid;
    border-color: #303030;
    border-width: 1px 0;
    margin: -1px 0;

    float: left; 	/*	Ensures that menu labels clear floated descendents.
    					Also gets negative margins working in IE 7
						(Strict Mode). */
    width: auto;

}

.yui3-skin-night .yui3-menu-label,
.yui3-skin-night .yui3-menu .yui3-menu .yui3-menu-label {

	background: url(vertical-menu-submenu-indicator.png) right center no-repeat;

}

.yui3-skin-night .yui3-menu-horizontal .yui3-menu-label {

    background: none;

}

.yui3-skin-night .yui3-menubuttonnav .yui3-menu-label,
.yui3-skin-night .yui3-splitbuttonnav .yui3-menu-label {

	background-image: none;

}

.yui3-skin-night .yui3-menubuttonnav .yui3-menu-label {

    padding-right: 0;

}

.yui3-skin-night .yui3-menubuttonnav .yui3-menu-label em {

	font-style: normal;
	padding-right: 20px;
    display: block;
    background: url(horizontal-menu-submenu-indicator.png) right center no-repeat;

}


.yui3-skin-night .yui3-splitbuttonnav .yui3-menu-label {

	padding: 0;

}

.yui3-skin-night .yui3-splitbuttonnav .yui3-menu-label a {

	float: left;
	width: auto;
    color: #fff;
    text-decoration: none;
    cursor: default;
	padding: 0 5px 0 10px;

}

.yui3-skin-night .yui3-splitbuttonnav .yui3-menu-label .yui3-menu-toggle {

	padding: 0;	/* Overide padding applied by the preceeding rule. */
	border-left: solid 1px #303030;
	width: 15px;
	overflow: hidden;
	text-indent: -1000px;
    background: url(horizontal-menu-submenu-indicator.png) 3px center no-repeat;

}


/* Selected menuitem */

.yui3-skin-night .yui3-menu-label-active,
.yui3-skin-night .yui3-menu-label-menuvisible,
.yui3-skin-night .yui3-menu .yui3-menu .yui3-menu-label-active,
.yui3-skin-night .yui3-menu .yui3-menu .yui3-menu-label-menuvisible {

	background-color: #292a2a;

}

.yui3-skin-night .yui3-menuitem-active .yui3-menuitem-content,
.yui3-skin-night .yui3-menu .yui3-menu .yui3-menuitem-active .yui3-menuitem-content {

	background-image: none;
    background-color: #292a2a;
    background: -moz-linear-gradient(
		0% 100% 90deg,
		#252626 0%,
		#333434 100%
	);
    background: -webkit-gradient(
        linear,
        left top,
        left bottom,
        from(#333434),
        to(#252626)
    );

    /*
    	Undo values set for "border-left-width" and "margin-left" when the root
    	menu has a class of "yui-menubuttonnav" or "yui-splitbuttonnav" applied.
    */

	border-left-width: 0;
    margin-left: 0;

}

.yui3-skin-night .yui3-menu-horizontal .yui3-menu-label-active,
.yui3-skin-night .yui3-menu-horizontal .yui3-menuitem-active .yui3-menuitem-content,
.yui3-skin-night .yui3-menu-horizontal .yui3-menu-label-menuvisible {

    border-color: #303030;
	background-color:#555658;
	background: -moz-linear-gradient(
		0% 100% 90deg,
		#343536 0%,
		#555658 96%,
		#3E3F41 100%
	);
    background: -webkit-gradient(
        linear,
        left bottom,
        left top,
        from(#343536),
        color-stop(0.96, #555658),
        to(#3E3F41)
    );

}

.yui3-skin-night .yui3-menubuttonnav .yui3-menu-label-active,
.yui3-skin-night .yui3-menubuttonnav .yui3-menuitem-active .yui3-menuitem-content,
.yui3-skin-night .yui3-menubuttonnav .yui3-menu-label-menuvisible,
.yui3-skin-night .yui3-splitbuttonnav .yui3-menu-label-active,
.yui3-skin-night .yui3-splitbuttonnav .yui3-menuitem-active .yui3-menuitem-content,
.yui3-skin-night .yui3-splitbuttonnav .yui3-menu-label-menuvisible {

    border-left-width: 1px;
    margin-left: -1px;

}

.yui3-skin-night .yui3-splitbuttonnav .yui3-menu-label-menuvisible {

    border-color: #303030;
    background: transparent;

}

.yui3-skin-night .yui3-splitbuttonnav .yui3-menu-label-menuvisible .yui3-menu-toggle {

    border-color: #303030;
    background-color: #505050;

}

/*
YUI 3.18.1 (build f7e7bcb)
Copyright 2014 Yahoo! Inc. All rights reserved.
Licensed under the BSD License.
http://yuilibrary.com/license/
*/

.yui3-skin-sam .yui3-datatable-scroll-columns {
    border-collapse: separate;
    border-spacing: 0;
	font-family: HelveticaNeue,arial,helvetica,clean,sans-serif;
    margin: 0;
    padding: 0;
    top: 0;
    left: 0;
}

.yui3-skin-sam .yui3-datatable-scroll-columns .yui3-datatable-header {
    padding: 0;
}

.yui3-skin-sam .yui3-datatable-x-scroller,
.yui3-skin-sam .yui3-datatable-y-scroller-container {
    border: 1px solid #303030;
    border-left-color: #323434;
}

.yui3-skin-sam .yui3-datatable-scrollable-x .yui3-datatable-y-scroller-container,
.yui3-skin-sam .yui3-datatable-x-scroller .yui3-datatable-table,
.yui3-skin-sam .yui3-datatable-y-scroller .yui3-datatable-table {
    border: 0 none;
}

/*
YUI 3.18.1 (build f7e7bcb)
Copyright 2014 Yahoo! Inc. All rights reserved.
Licensed under the BSD License.
http://yuilibrary.com/license/
*/

.yui3-skin-night [for=ac-input] { /* autocomplete label color */
    color: #CBCBCB;
}

.yui3-skin-night .yui3-aclist-content {
	font-size: 100%;
    background-color: #151515;
	color: #ccc;
    border: 1px solid #303030;
	-moz-box-shadow: 0 0 17px rgba(0,0,0,0.58);
	-webkit-box-shadow: 0 0 17px rgba(0,0,0,0.58);
	box-shadow: 0 0 17px rgba(0,0,0,0.58);
}

.yui3-skin-night .yui3-aclist-item-active {
    background-color: #2F3030;
    background: -moz-linear-gradient(
		0% 100% 90deg,
		#252626 0%,
		#333434 100%
	);
    background: -webkit-gradient(
        linear,
        left top,
        left bottom,
        from(#333434),
        to(#252626)
    );
}
.yui3-skin-night .yui3-aclist-item-hover {
    background-color: #262727;
    background: -moz-linear-gradient(
		0% 100% 90deg,
		#202121 0%,
		#282929 100%
	);
    background: -webkit-gradient(
        linear,
        left top,
        left bottom,
        from(#282929),
        to(#202121)
    );
}

.yui3-skin-night .yui3-aclist-item {
    padding: 0 1em;   /*0.4em 1em 0.6em*/
    line-height: 2.25;
}
.yui3-skin-night .yui3-aclist-item-active { outline: none; }
.yui3-skin-night .yui3-highlight { color:#EFEFEF; }

/*
YUI 3.18.1 (build f7e7bcb)
Copyright 2014 Yahoo! Inc. All rights reserved.
Licensed under the BSD License.
http://yuilibrary.com/license/
*/

.yui3-datatable-paginator {
    background: white url(../../../../assets/skins/night/sprite.png) repeat-x 0 0;
    background-image: -webkit-linear-gradient(transparent 40%, hsla(0, 0%, 0%, 0.21));
    background-image: -moz-linear-gradient(top, transparent 40%, hsla(0, 0%, 0%, 0.21));
    background-image: -ms-linear-gradient(transparent 40%, hsla(0, 0%, 0%, 0.21));
    background-image: -o-linear-gradient(transparent 40%, hsla(0, 0%, 0%, 0.21));
    background-image: linear-gradient(transparent 40%, hsla(0, 0%, 0%, 0.21));
}

.yui3-datatable-paginator .yui3-datatable-paginator-control {
    color: #242D42;
}

.yui3-datatable-paginator .yui3-datatable-paginator-control-first:hover,
.yui3-datatable-paginator .yui3-datatable-paginator-control-last:hover,
.yui3-datatable-paginator .yui3-datatable-paginator-control-prev:hover,
.yui3-datatable-paginator .yui3-datatable-paginator-control-next:hover {
    box-shadow: 0 1px 2px #292442;
}

.yui3-datatable-paginator .yui3-datatable-paginator-control-first:active,
.yui3-datatable-paginator .yui3-datatable-paginator-control-last:active,
.yui3-datatable-paginator .yui3-datatable-paginator-control-prev:active,
.yui3-datatable-paginator .yui3-datatable-paginator-control-next:active {
    box-shadow: inset 0 1px 1px #292442;
    background: #E0DEED;
    background: hsla(250, 30%, 90%, 0.3);
}

.yui3-datatable-paginator .yui3-datatable-paginator-control-disabled,
.yui3-datatable-paginator .yui3-datatable-paginator-control-disabled:hover {
    color: #BDC7DB;
    border-color: transparent;
    box-shadow: none;
}

/*
YUI 3.18.1 (build f7e7bcb)
Copyright 2014 Yahoo! Inc. All rights reserved.
Licensed under the BSD License.
http://yuilibrary.com/license/
*/


/*
YUI 3.18.1 (build f7e7bcb)
Copyright 2014 Yahoo! Inc. All rights reserved.
Licensed under the BSD License.
http://yuilibrary.com/license/
*/

.yui3-skin-night .yui3-calendar-day-highlighted {
    background-color: #555555;
}

.yui3-skin-night .yui3-calendar-day-selected.yui3-calendar-day-highlighted {
    background-color: #777777;
}

/*
YUI 3.18.1 (build f7e7bcb)
Copyright 2014 Yahoo! Inc. All rights reserved.
Licensed under the BSD License.
http://yuilibrary.com/license/
*/

.yui3-skin-night .yui3-datatable .yui3-datatable-highlight-row td {
    background-color: #38383f;
}

.yui3-skin-night .yui3-datatable tr .yui3-datatable-highlight-col {
    background-color: #38383f;
}

.yui3-skin-night .yui3-datatable tr .yui3-datatable-highlight-cell {
    background-color: #38383f;
}

/*
YUI 3.18.1 (build f7e7bcb)
Copyright 2014 Yahoo! Inc. All rights reserved.
Licensed under the BSD License.
http://yuilibrary.com/license/
*/

.yui3-skin-night{
	background-color:#000;
    font-family: HelveticaNeue,arial,helvetica,clean,sans-serif;
	color:#fff;
}

.yui3-skin-night .yui3-overlay-content ul,
.yui3-skin-night .yui3-overlay-content ol,
.yui3-skin-night .yui3-overlay-content li {
    margin: 0;
    padding: 0;
	list-style:none;
	zoom:1;
}
.yui3-skin-night .yui3-overlay-content li{
	*float:left;
}
.yui3-skin-night .yui3-overlay-content {
    background-color:#6d6e6e;
	-moz-box-shadow:0 0 17px rgba(0,0,0,0.58);
	-webkit-box-shadow:0 0 17px rgba(0,0,0,0.58);
	box-shadow:0 0 17px rgba(0,0,0,0.58);
    -moz-border-radius:7px;
    -webkit-border-radius:7px;
    border-radius:7px;
}

.yui3-skin-night .yui3-overlay-content .yui3-widget-hd {
    background-color:#6d6e6e;
    -moz-border-radius:7px 7px 0 0;
    -webkit-border-radius:7px 7px 0 0;
    border-radius:7px 7px 0 0;
	color: #fff;

    margin:0;
	padding:20px 22px 0;
	font-size:147%;
}


/*** background of bd and ft ***/
.yui3-skin-night .yui3-overlay-content .yui3-widget-bd {
	padding:11px 22px 17px;
	font-size:92%;
	/*margin-bottom:-1px;  this was needed on ipad to close gap between ft and bd*/
}
.yui3-skin-night .yui3-overlay .yui3-widget-bd li{
	margin: 0.04em;
}
/*.yui3-skin-night .yui3-widget-bd li:last-child{
	margin-bottom:0.4em;
}*/
.yui3-skin-night .yui3-overlay-content .yui3-widget-ft{
	background-color:#575858;
	border-top:solid 1px #494a4a;
	-moz-border-radius:0 0 7px 7px;
	-webkit-border-radius:0 0 7px 7px;
	border-radius:0 0 7px 7px;
	padding:17px 25px 20px;
	text-align:center;
	/*font-size:92%;*/
}
/* For Buttons */

.yui3-skin-night .yui3-overlay-content .yui3-widget-ft li {
	margin:3px;
	display:inline-block;
}
.yui3-skin-night .yui3-overlay-content .yui3-widget-ft li a{
	border:solid 1px #1B1C1C;
	border-radius: 6px;

	-moz-box-shadow: 0 1px #677478;
	-webkit-box-shadow: 0 1px #677478;
	box-shadow: 0 1px #677478;

    text-shadow: 0 -1px 0 rgba(0,0,0,0.7);
	font-size:85%;
	text-align:center;
	color: #fff;
	padding: 6px 28px;
	background-color:#2B2D2D;
	background: -moz-linear-gradient(
		0% 100% 90deg,
		#242526 0%,
		#3b3c3d 96%,
		#2C2D2F 100%
	);
    background: -webkit-gradient(
        linear,
        left bottom,
        left top,
        from(#242526),
        color-stop(0.96, #3b3c3d),
        to(#2C2D2F)
    );
}
.yui3-skin-night .yui3-overlay .yui3-widget-ft li:first-child {
	margin-left:0;
}

.yui3-skin-night .yui3-overlay .yui3-widget-ft li:last-child {
	margin-right:0;
}

.yui3-skin-night .yui3-overlay .yui3-widget-ft li:last-child a {
	border:solid 1px #520E00;
	-moz-box-shadow: 0 1px #7D5D57;
	-webkit-box-shadow: 0 1px #7D5D57;
	box-shadow: 0 1px #7D5D57;
	background-color:#901704;
	background: -moz-linear-gradient(
	100% 0% 270deg,
	#ab1c0b,
	#7b1400
	);
    background: -webkit-gradient(
        linear,
        left top,
        left bottom,
        from(#ab1c0b),
        to(#7b1400)
    );
	margin-right: 0;
}


/*
.yui3-skin-night .yui3-overlay .yui3-widget-ft li{
	display:inline-block;
	-moz-border-radius:6px;
	-webkit-border-radius:6px;
	border-radius:6px;
	background-color:#252525;
	background: -moz-linear-gradient(
	100% 0% 270deg,
	#3f3f3f,
	#0e0e0e
	);
	background: -webkit-gradient(
        linear,
        left top,
        left bottom,
        from(#3f3f3f),
        to(#0e0e0e)
    );

	line-height:32px;
	width:100px;
	margin:0px 5px 0px 5px;
}
.yui3-skin-night .yui3-overlay .yui3-widget-ft li:first-child {
	margin-left:0px;
}
.yui3-skin-night .yui3-overlay .yui3-widget-ft li:last-child {
	background-color:#901704;
	background: -moz-linear-gradient(
	100% 0% 270deg,
	#ab1c0b,
	#7b1400
	);
    background: -webkit-gradient(
        linear,
        left top,
        left bottom,
        from(#ab1c0b),
        to(#7b1400)
    );
	margin-right: 0px;
}
*/
#yui3-widget-mask{
	background-color:#000;
	opacity:0.5;
}

/*
YUI 3.18.1 (build f7e7bcb)
Copyright 2014 Yahoo! Inc. All rights reserved.
Licensed under the BSD License.
http://yuilibrary.com/license/
*/

.yui3-skin-night .yui3-tabview-panel{
	background-color:#333333;
	color:#808080;
	padding:1px;
}
.yui3-skin-night .yui3-tab-panel p{
	margin:10px;
}
.yui3-skin-night .yui3-tabview-list {
    background-color:#0f0f0f;
    border-top:1px solid #000;
	text-align:center;
    height:46px;
    background: -moz-linear-gradient(
		0% 100% 90deg,
		#0f0f0f 0%,
		#1e1e1e 96%,
		#292929 100%
	);
    background: -webkit-gradient(
        linear,
        left bottom,
        left top,
        from(#0f0f0f),
        color-stop(0.96, #1e1e1e),
        to(#292929)
    );
}

.yui3-skin-night .yui3-tabview-list li {
	margin-top:8px;
}
.yui3-skin-night .yui3-tabview-list li a{
	border:solid 1px #0c0c0c;
	border-right-style:none;

	-moz-box-shadow: 0 1px #222222;
	-webkit-box-shadow: 0 1px #222222;
	box-shadow: 0 1px #222222;

    text-shadow: 0 -1px 0 rgba(0,0,0,0.7);
	font-size:85%;
	text-align:center;
	color: #fff;
	padding: 6px 28px;
	background-color:#555658;
	background: -moz-linear-gradient(
		0% 100% 90deg,
		#343536 0%,
		#555658 96%,
		#3E3F41 100%
	);
    background: -webkit-gradient(
        linear,
        left bottom,
        left top,
        from(#343536),
        color-stop(0.96, #555658),
        to(#3E3F41)
    );
}
.yui3-skin-night .yui3-tabview-list li.yui3-tab-selected a {
	background-color:#2B2D2D;
	background: -moz-linear-gradient(
		0% 100% 90deg,
		#242526 0%,
		#3b3c3d 96%,
		#2C2D2F 100%
	);
    background: -webkit-gradient(
        linear,
        left bottom,
        left top,
        from(#242526),
        color-stop(0.96, #3b3c3d),
        to(#2C2D2F)
    );
}
.yui3-skin-night .yui3-tabview-list li:first-child a{
	-moz-border-radius:6px 0 0 6px;
	-webkit-border-radius:6px 0 0 6px;
	border-radius:6px 0 0 6px;
}
.yui3-skin-night .yui3-tabview-list li:last-child a{
	border-right-style:solid;
	-moz-border-radius:0 6px 6px 0;
	-webkit-border-radius:0 6px 6px 0;
	border-radius:0 6px 6px 0;
}

/*
YUI 3.18.1 (build f7e7bcb)
Copyright 2014 Yahoo! Inc. All rights reserved.
Licensed under the BSD License.
http://yuilibrary.com/license/
*/

.yui3-skin-night .yui3-datatable-sortable-column {
    cursor: pointer;
}

.yui3-skin-night .yui3-datatable-columns .yui3-datatable-sorted,
.yui3-skin-night .yui3-datatable-sortable-column:hover {
    background-color: #4D4E4F;
    *background: #505152 url(../../../../assets/skins/night/sprite.png) repeat-x 0 -100px;

    background-image: -webkit-gradient(
        linear,
        0 0,
        0 100%,
        from(rgba(255,255,255, 0.2)),
        color-stop(40%, rgba(255,255,255, 0.1)),
        color-stop(80%, rgba(255,255,255, 0.01)),
        to(transparent));

    background-image: -webkit-linear-gradient(
        rgba(255,255,255, 0.2),
        rgba(255,255,255, 0.1) 40%,
        rgba(255,255,255, 0.01) 80%,
        transparent);

    background-image: -moz-linear-gradient(
        top,
        rgba(255,255,255, 0.2),
        rgba(255,255,255, 0.1) 40%,
        rgba(255,255,255, 0.01) 80%,
        transparent);

    background-image: -ms-linear-gradient(
        rgba(255,255,255, 0.2),
        rgba(255,255,255, 0.1) 40%,
        rgba(255,255,255, 0.01) 80%,
        transparent);

    background-image: -o-linear-gradient(
        rgba(255,255,255, 0.2),
        rgba(255,255,255, 0.1) 40%,
        rgba(255,255,255, 0.01) 80%,
        transparent);

    background-image: linear-gradient(
        rgba(255,255,255, 0.2),
        rgba(255,255,255, 0.1) 40%,
        rgba(255,255,255, 0.01) 80%,
        transparent);
}

.yui3-skin-night .yui3-datatable-sort-liner {
    display: block;
    height: 100%;
    position: relative;
    padding-right: 15px;
    position: relative;
}

.yui3-skin-night .yui3-datatable-sort-indicator {
    position: absolute;
    right: 0;
    bottom: .5ex;
    width: 7px;
    height: 10px;
    background: url(sort-arrow-sprite.png) no-repeat 0 0;
    _background: url(sort-arrow-sprite-ie.png) no-repeat 0 0;
    overflow: hidden;
}

.yui3-skin-night .yui3-datatable-sorted .yui3-datatable-sort-indicator {
    background-position: 0 -10px;
}
.yui3-skin-night .yui3-datatable-sorted-desc .yui3-datatable-sort-indicator {
    background-position: 0 -20px;
}

.yui3-skin-night .yui3-datatable-data .yui3-datatable-even .yui3-datatable-sorted {
    background-color: #262626;
    color: #B3B2B2;
}

.yui3-skin-night .yui3-datatable-data .yui3-datatable-odd .yui3-datatable-sorted {
    background-color: #393A3A;
    color: #CBCBCB;
}

/*
YUI 3.18.1 (build f7e7bcb)
Copyright 2014 Yahoo! Inc. All rights reserved.
Licensed under the BSD License.
http://yuilibrary.com/license/
*/

.yui3-skin-night .yui3-panel {
    color: #FFFFFF;
    font-family: HelveticaNeue, arial, helvetica, clean, sans-serif;
}

.yui3-skin-night .yui3-panel-content {
    background: #6D6E6E;
    -webkit-box-shadow: 0 0 20px #000;
    -moz-box-shadow: 0 0 20px #000;
    box-shadow: 0 0 20px #000;
    border: 1px solid black;
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    border-radius: 7px;
}
.yui3-skin-night .yui3-panel .yui3-widget-hd {
    padding: 11px 57px 11px 22px;   /* Room for close button. */
    min-height: 17px;               /* For the close button */
    _height: 17px;                  /* IE6 */
    -webkit-border-top-left-radius: 7px;
    -webkit-border-top-right-radius: 7px;
    -moz-border-radius-topleft: 7px;
    -moz-border-radius-topright: 7px;
    border-top-left-radius: 7px;
    border-top-right-radius: 7px;
    font-weight: bold;
    color: white;
    background-color: #555658;
	background: -moz-linear-gradient(
		0% 100% 90deg,
		#343536 0%,
		#555658 96%,
		#3E3F41 100%
	);
    background: -webkit-gradient(
        linear,
        left bottom,
        left top,
        from(#343536),
        color-stop(0.96, #555658),
        to(#3E3F41)
    );
}
.yui3-skin-night .yui3-panel .yui3-widget-hd .yui3-widget-buttons {
    padding: 11px;
}
.yui3-skin-night .yui3-panel .yui3-widget-bd {
    padding: 11px 22px 17px;
}
.yui3-skin-night .yui3-panel .yui3-widget-ft {
    background-color: #575858;
    border-top: 1px solid #494A4A;
    padding: 6px 16px 8px;
    text-align: center;
    -webkit-border-bottom-right-radius: 7px;
    -webkit-border-bottom-left-radius: 7px;
    -moz-border-radius-bottomright: 7px;
    -moz-border-radius-bottomleft: 7px;
    border-bottom-right-radius: 7px;
    border-bottom-left-radius: 7px;
}
.yui3-skin-night .yui3-panel .yui3-widget-ft .yui3-widget-buttons {
    bottom: 0;
    position: relative;
    right: auto;
    width: 100%;
    text-align: center;
    padding-bottom: 0;
    margin-left: -5px;
    margin-right: -5px;
}
.yui3-skin-night .yui3-panel .yui3-widget-ft .yui3-button {
    margin: 5px;
}

/*
Support for icon-based [x] "close" button in the header.

Nicolas Gallagher: "CSS image replacement with pseudo-elements (NIR)"
http://nicolasgallagher.com/css-image-replacement-with-pseudo-elements/
*/
.yui3-skin-night .yui3-panel .yui3-widget-hd .yui3-button-close {
    /* Reset base button styles */
    background: transparent;
    filter: none;
    border: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;

    /* Structure */
    width: 22px;
    height: 17px;
    padding: 0;
    overflow: hidden;
    vertical-align: top;
    /* IE < 8 :( */
    *font-size: 0;
    *line-height: 0;
    *letter-spacing: -1000px;
    *color: #86A5EC;
    *background: url(sprite_icons.png) no-repeat center 3px;
}
.yui3-skin-night .yui3-panel .yui3-widget-hd .yui3-button-close:hover {
    background-color: #333;
}
.yui3-skin-night .yui3-panel .yui3-widget-hd .yui3-button-close:before {
    /*
    Displays the [x] icon in place of the "Close" text.
    Note: The `width` of this pseudo element is the same as its "host" element.
    */
    content: url(sprite_icons.png);
    display: inline-block;
    text-align: center;
    font-size: 0;
    line-height: 0;
    width: 22px;
    margin: 3px 0 0 1px;
}
.yui3-skin-night .yui3-panel-hidden .yui3-widget-hd .yui3-button-close {
    /* Required for IE > 7 to deal with pseudo :before element */
    display: none;
}

/*
YUI 3.18.1 (build f7e7bcb)
Copyright 2014 Yahoo! Inc. All rights reserved.
Licensed under the BSD License.
http://yuilibrary.com/license/
*/

.yui3-skin-night .yui3-calendar-content {
    padding:10px;
    color: #CBCBCB;
    border: 1px solid #303030;
    background: #151515; /* Old browsers */
    background: -moz-linear-gradient(top, #222222 0%, #151515 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#222222), color-stop(100%,#151515)); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top, #222222 0%,#151515 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top, #222222 0%,#151515 100%); /* Opera11.10+ */
    background: -ms-linear-gradient(top, #222222 0%,#151515 100%); /* IE10+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#222222', endColorstr='#151515',GradientType=0 ); /* IE6-9 */
    background: linear-gradient(top, #222222 0%,#151515 100%); /* W3C */
    -moz-border-radius: 5px;
    border-radius: 5px;
}


.yui3-skin-night .yui3-calendar-grid {
    padding:5px;
    border-collapse: collapse;
}

.yui3-skin-night .yui3-calendar-header {
    padding-bottom:10px;
}

.yui3-skin-night .yui3-calendar-header-label {
    margin: 0;
    font-size: 1em;
    font-weight: bold;
    text-align: center;
    width: 100%;
}

.yui3-skin-night .yui3-calendar-day,
.yui3-skin-night .yui3-calendar-prevmonth-day,
.yui3-skin-night .yui3-calendar-nextmonth-day {
    padding:5px;
    border: 1px solid #151515;
    background: #262727;
    text-align:center;
}

.yui3-skin-night .yui3-calendar-day:hover {
    background: #383939;
    color: #FFFFFF;
}

.yui3-skin-night .yui3-calendar-selection-disabled,
.yui3-skin-night .yui3-calendar-selection-disabled:hover {
    background: #151515;
    color: #596060;
}

.yui3-skin-night .yui3-calendar-weekday {
    color: #4F4F4F;
	font-weight: bold;
	text-align: center;
}

.yui3-skin-night .yui3-calendar-prevmonth-day, .yui3-skin-night .yui3-calendar-nextmonth-day {
    color: #4F4F4F;
}

.yui3-skin-night .yui3-calendar-day {
    font-weight: bold;
}

.yui3-skin-night .yui3-calendar-day-selected {
    background-color: #505151;
    color: #fff;
}

.yui3-skin-night .yui3-calendar-left-grid {
   margin-right:1em;
}

[dir="rtl"] .yui3-skin-night .yui3-calendar-left-grid,
.yui3-skin-night [dir="rtl"] .yui3-calendar-left-grid {
    margin-right: auto;
    margin-left: 1em;
}

.yui3-skin-sam .yui3-calendar-right-grid {
   margin-left:1em;
}

[dir="rtl"] .yui3-skin-night .yui3-calendar-right-grid,
.yui3-skin-night [dir="rtl"] .yui3-calendar-right-grid {
    margin-left: auto;
    margin-right: 1em;
}

/*
YUI 3.18.1 (build f7e7bcb)
Copyright 2014 Yahoo! Inc. All rights reserved.
Licensed under the BSD License.
http://yuilibrary.com/license/
*/

.yui3-skin-night .yui3-dial {
	color:#fff;
}

.yui3-skin-night .yui3-dial-handle{ /*container. top left corner used for trig positioning*/
	background:#439EDE;
	opacity:0.3;
	-moz-box-shadow:1px 1px 1px rgba(0, 0, 0, 0.9) inset;
	-webkit-box-shadow:1px 1px 1px rgba(0, 0, 0, 0.9) inset; /*Chrome 7/Win bug*/
	box-shadow:1px 1px 1px rgba(0, 0, 0, 0.9) inset;
	cursor:pointer;
	font-size:1px;
}
.yui3-skin-night .yui3-dial-ring {
    background:#595B5B;
	background:-moz-linear-gradient(0% 100% 315deg, #5E6060, #2D2E2F);
	background:-webkit-gradient(linear, 50% 0%, 100% 100%, from(#636666), to(#424344));
	-moz-box-shadow:1px 1px 2px rgba(0, 0, 0, 0.7) inset;
	-webkit-box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7) inset; /*Chrome 7/Win bug*/
	box-shadow:1px 1px 5px rgba(0, 0, 0, 0.4) inset;
}
.yui3-skin-night .yui3-dial-center-button{
	-moz-box-shadow:-1px -1px 2px rgba(0, 0, 0, 0.3) inset, 1px 1px 2px rgba(0, 0, 0, 0.5);
	-webkit-box-shadow: -1px -1px 2px rgba(0, 0, 0, 0.3) inset, 1px 1px 2px rgba(0, 0, 0, 0.5); /*Chrome 7/Win bug*/
	box-shadow:-1px -1px 2px rgba(0, 0, 0, 0.3) inset, 1px 1px 2px rgba(0, 0, 0, 0.5);
    background:#DDDBD4;
	background:-moz-radial-gradient(
		30% 30% 0deg,
		circle farthest-side,
		#999C9C 24%,
		#898989 41%,
		#535555 87%)
		repeat scroll 0 0 transparent;
	background:-webkit-gradient(
		radial, 15 15, 15, 30 30, 40,
		from(#999C9C),
		to(#535555),
		color-stop(.2,#898989));
	cursor:pointer;
	opacity:0.7;
	/*text-align:center;*/
}
.yui3-skin-night .yui3-dial-reset-string{
	color:#fff;
	font-size:72%;
	text-decoration:none;
}
.yui3-skin-night .yui3-dial-label{
	color:#CBCBCB;
	margin-bottom:0.8em;
}
.yui3-skin-night .yui3-dial-value-string{
	margin-left:0.5em;
	color:#DCDCDC;
	font-size:130%;
}
.yui3-skin-night .yui3-dial-value {
	visibility:hidden;
	position:absolute;
	top:0;
	left:102%;
	width:4em;
}
.yui3-skin-night .yui3-dial-north-mark{
	position:absolute;
	border-left:2px solid #434343;
	height:5px;
	left:50%;
	top:-7px;
	font-size:1px;
}
.yui3-skin-night .yui3-dial-marker {
	background-color:#A0D8FF;
	opacity:0.2;
	font-size:1px;
}
.yui3-skin-night .yui3-dial-marker-max-min{
	background-color:#FF0404;
	opacity:0.6;
}
.yui3-skin-night .yui3-dial-ring-vml,
.yui3-skin-night .yui3-dial-center-button-vml,
.yui3-skin-night .yui3-dial-marker v\:oval.yui3-dial-marker-max-min,
.yui3-skin-night v\:oval.yui3-dial-marker-max-min,
.yui3-skin-night .yui3-dial-marker-vml,
.yui3-skin-night .yui3-dial-handle-vml {
    background: none;
    opacity:1;
}

/*
YUI 3.18.1 (build f7e7bcb)
Copyright 2014 Yahoo! Inc. All rights reserved.
Licensed under the BSD License.
http://yuilibrary.com/license/
*/


/*
YUI 3.18.1 (build f7e7bcb)
Copyright 2014 Yahoo! Inc. All rights reserved.
Licensed under the BSD License.
http://yuilibrary.com/license/
*/

/* basic skin styles */
.yui3-skin-night .yui3-datatable {
	color:#8E8E8E;
	font-family: HelveticaNeue,arial,helvetica,clean,sans-serif;
}
.yui3-skin-night .yui3-datatable-table {
    border: 1px solid #323434;
    border-collapse: separate;
    border-spacing: 0;
	color: #8E8E8E;
    margin: 0;
    padding: 0;
}

.yui3-skin-night .yui3-datatable-caption {
    color: #474747;
    font: italic 85%/1 HelveticaNeue,arial,helvetica,clean,sans-serif;
    padding: 1em 0;
    text-align: center;
}

.yui3-skin-night .yui3-datatable-cell,
.yui3-skin-night .yui3-datatable-header {
    border-left: 1px solid #303030;/*  inner column border */
    border-width: 0 0 0 1px;
    font-size: inherit;
    margin: 0;
	overflow: visible; /*to make ths where the title is really long work*/
    padding: 4px 10px 4px 10px; /* cell padding */
}
.yui3-skin-night .yui3-datatable-cell:first-child,
.yui3-skin-night .yui3-datatable-first-header {
    border-left-width: 0;
}

.yui3-skin-night .yui3-datatable-header {
    /* header gradient */
    background-color:#3b3c3d;

	background: -moz-linear-gradient(
		0% 100% 90deg,
		#242526 0%,
		#3b3c3d 96%,
		#2C2D2F 100%
	);
    background: -webkit-gradient(
        linear,
        left bottom,
        left top,
        from(#242526),
        color-stop(0.96, #3b3c3d),
        to(#2C2D2F)
    );
    color: #eee;
    font-weight: normal;
    text-align: left;
    vertical-align: bottom;
    white-space: nowrap;
}

/*
striping:
   even - #0e0e0e (darkest)
   odd  - #1d1e1e (lighter)
*/
.yui3-skin-night .yui3-datatable-cell {
    background-color: transparent;
}
.yui3-skin-night .yui3-datatable-even .yui3-datatable-cell {
    background-color: #0e0e0e;
}
.yui3-skin-night .yui3-datatable-odd .yui3-datatable-cell  {
    background-color: #1d1e1e;
}

/*
YUI 3.18.1 (build f7e7bcb)
Copyright 2014 Yahoo! Inc. All rights reserved.
Licensed under the BSD License.
http://yuilibrary.com/license/
*/

.yui3-skin-night .yui3-calendarnav-prevmonth, .yui3-skin-night .yui3-calendarnav-nextmonth {
  width: 0;
  height: 0;
  padding: 0;
  margin: 0;
  border: 10px solid transparent;
  position: absolute;
  /* ie6 height fix */
  font-size: 0;
  line-height: 0;
  /* ie6 transparent fix */
  _border-left-color: black;
  _border-top-color: black;
  _border-right-color: black;
  _border-bottom-color: black;
  _filter: chroma(color=black);
}

.yui3-skin-night .yui3-calendarnav-prevmonth:hover,
[dir="rtl"] .yui3-skin-night .yui3-calendarnav-nextmonth:hover,
.yui3-skin-night [dir="rtl"] .yui3-calendarnav-nextmonth:hover {
    border-right-color: #0066CC;
}

.yui3-skin-night .yui3-calendarnav-nextmonth:hover,
[dir="rtl"] .yui3-skin-night .yui3-calendarnav-prevmonth:hover,
.yui3-skin-night [dir="rtl"] .yui3-calendarnav-prevmonth:hover {
    border-left-color: #0066CC;
}

.yui3-skin-night .yui3-calendarnav-prevmonth.yui3-calendarnav-month-disabled,
.yui3-skin-night .yui3-calendarnav-prevmonth.yui3-calendarnav-month-disabled:hover,
[dir="rtl"] .yui3-skin-night .yui3-calendarnav-nextmonth.yui3-calendarnav-month-disabled,
.yui3-skin-night [dir="rtl"] .yui3-calendarnav-nextmonth.yui3-calendarnav-month-disabled,
[dir="rtl"] .yui3-skin-night .yui3-calendarnav-nextmonth.yui3-calendarnav-month-disabled:hover,
.yui3-skin-night [dir="rtl"] .yui3-calendarnav-nextmonth.yui3-calendarnav-month-disabled:hover {
    cursor: default;
    border-right-color: #CCCCCC;
    border-left-color: transparent;
}
.yui3-skin-night .yui3-calendarnav-nextmonth.yui3-calendarnav-month-disabled,
.yui3-skin-night .yui3-calendarnav-nextmonth.yui3-calendarnav-month-disabled:hover,
[dir="rtl"] .yui3-skin-night .yui3-calendarnav-prevmonth.yui3-calendarnav-month-disabled,
.yui3-skin-night [dir="rtl"] .yui3-calendarnav-prevmonth.yui3-calendarnav-month-disabled,
[dir="rtl"] .yui3-skin-night .yui3-calendarnav-prevmonth.yui3-calendarnav-month-disabled:hover,
.yui3-skin-night [dir="rtl"] .yui3-calendarnav-prevmonth.yui3-calendarnav-month-disabled:hover {
    cursor: default;
    border-left-color: #CCCCCC;
    border-right-color: transparent;
}

.yui3-skin-night .yui3-calendarnav-prevmonth {
    border-right-color: #FFFFFF;
    left: 0;
    margin-left: -10px;
}

.yui3-skin-night .yui3-calendarnav-nextmonth {
    border-left-color: #FFFFFF;
    right: 0;
    margin-right: -10px;
}

[dir="rtl"] .yui3-skin-night .yui3-calendarnav-prevmonth,
.yui3-skin-night [dir="rtl"] .yui3-calendarnav-prevmonth {
    left: auto;
    right: 0;
    border-left-color: #FFFFFF;
    border-right-color: transparent;
}

[dir="rtl"] .yui3-skin-night .yui3-calendarnav-nextmonth,
.yui3-skin-night [dir="rtl"] .yui3-calendarnav-nextmonth {
    left: 0;
    right: auto;
    border-right-color: #FFFFFF;
    border-left-color: transparent;
}

/*
YUI 3.18.1 (build f7e7bcb)
Copyright 2014 Yahoo! Inc. All rights reserved.
Licensed under the BSD License.
http://yuilibrary.com/license/
*/

/* Horizontal Slider */

/* Use thumbUrl /build/slider-base/assets/skins/night/thumb-x.png */

.yui3-skin-night .yui3-slider-x .yui3-slider-rail,
.yui3-skin-night .yui3-slider-x .yui3-slider-rail-cap-left,
.yui3-skin-night .yui3-slider-x .yui3-slider-rail-cap-right {
    background-image: url(rail-x.png);
    background-repeat: repeat-x;
    /* alternate: rail-x-lines.png */
}

.yui3-skin-night .yui3-slider-x .yui3-slider-rail {
    height: 25px;
}
.yui3-skin-night .yui3-slider-x .yui3-slider-thumb {
    height: 26px;
    width: 21px;
}

.yui3-skin-night .yui3-slider-x .yui3-slider-rail-cap-left {
    background-position: 0 -20px;
    height: 20px;
    left: -5px;
    width: 5px;
}
.yui3-skin-night .yui3-slider-x .yui3-slider-rail-cap-right {
    background-position: 0 -40px;
    height: 20px;
    right: -5px;
    width: 5px;
}

.yui3-skin-night .yui3-slider-x .yui3-slider-thumb-image {
    left: 0;
    top: -10px;
}
.yui3-skin-night .yui3-slider-x .yui3-slider-thumb-shadow {
    left: 0;
    opacity: 0.15;
    filter: alpha(opacity=15);
    top: -50px;
}

/* Vertical Slider */

/* Use thumbUrl /build/slider-base/assets/skins/night/thumb-y.png */

.yui3-skin-night .yui3-slider-y .yui3-slider-rail,
.yui3-skin-night .yui3-slider-y .yui3-slider-rail-cap-top,
.yui3-skin-night .yui3-slider-y .yui3-slider-rail-cap-bottom {
    background-image: url(rail-y.png);
    background-repeat: repeat-y;
    /* alternate: rail-y-lines.png */
}

.yui3-skin-night .yui3-slider-y .yui3-slider-rail {
    width: 25px;
}
.yui3-skin-night .yui3-slider-y .yui3-slider-thumb {
    width: 26px;
    height: 21px;
}

.yui3-skin-night .yui3-slider-y .yui3-slider-rail-cap-top {
    background-position: -20px 0;
    width: 20px;
    top: -5px;
    height: 5px;
}
.yui3-skin-night .yui3-slider-y .yui3-slider-rail-cap-bottom {
    background-position: -40px 0;
    width: 20px;
    bottom: -5px;
    height: 5px;
}

.yui3-skin-night .yui3-slider-y .yui3-slider-thumb-image {
    left: -10px;
    top: 0;
}
.yui3-skin-night .yui3-slider-y .yui3-slider-thumb-shadow {
    left: -50px;
    opacity: 0.15;
    filter: alpha(opacity=15);
    top: 0;
}

/*
YUI 3.18.1 (build f7e7bcb)
Copyright 2014 Yahoo! Inc. All rights reserved.
Licensed under the BSD License.
http://yuilibrary.com/license/
*/

/* Horizontal Slider */

/* Use thumbUrl /build/slider-base/assets/skins/sam-dark/thumb-x.png */

.yui3-skin-night .yui3-slider-x .yui3-slider-rail,
.yui3-skin-night .yui3-slider-x .yui3-slider-rail-cap-left,
.yui3-skin-night .yui3-slider-x .yui3-slider-rail-cap-right {
    background-image: url(rail-x.png);
    background-repeat: repeat-x;
    /* alternate: rail-x-lines.png */
}

.yui3-skin-night .yui3-slider-x .yui3-slider-rail {
    height: 26px;
}
.yui3-skin-night .yui3-slider-x .yui3-slider-thumb {
    height: 26px;
    width: 21px;
}

.yui3-skin-night .yui3-slider-x .yui3-slider-rail-cap-left {
    background-position: 0 -20px;
    height: 20px;
    left: -2px;
    width: 5px;
}
.yui3-skin-night .yui3-slider-x .yui3-slider-rail-cap-right {
    background-position: 0 -40px;
    height: 20px;
    right: -2px;
    width: 5px;
}

.yui3-skin-night .yui3-slider-x .yui3-slider-thumb-image {
    left: 0;
    top: -10px;
}
.yui3-skin-night .yui3-slider-x .yui3-slider-thumb-shadow {
    left: 0;
    opacity: 0.15;
    filter: alpha(opacity=15);
    top: -50px;
}

/* Vertical Slider */

/* Use thumbUrl /build/slider-base/assets/skins/sam-dark/thumb-y.png */

.yui3-skin-night .yui3-slider-y .yui3-slider-rail,
.yui3-skin-night .yui3-slider-y .yui3-slider-rail-cap-top,
.yui3-skin-night .yui3-slider-y .yui3-slider-rail-cap-bottom {
    background-image: url(rail-y.png);
    background-repeat: repeat-y;
    /* alternate: rail-y-lines.png */
}

.yui3-skin-night .yui3-slider-y .yui3-slider-rail {
    width: 26px;
}
.yui3-skin-night .yui3-slider-y .yui3-slider-thumb {
    width: 26px;
    height: 15px;
}

.yui3-skin-night .yui3-slider-y .yui3-slider-rail-cap-top {
    background-position: -20px 0;
    width: 20px;
    top: -2px;
    height: 5px;
}
.yui3-skin-night .yui3-slider-y .yui3-slider-rail-cap-bottom {
    background-position: -40px 0;
    width: 20px;
    bottom: -2px;
    height: 5px;
}

.yui3-skin-night .yui3-slider-y .yui3-slider-thumb-image {
    left: -10px;
    top: 0;
}
.yui3-skin-night .yui3-slider-y .yui3-slider-thumb-shadow {
    left: -50px;
    opacity: 0.15;
    filter: alpha(opacity=15);
    top: 0;
}

/*
YUI 3.18.1 (build f7e7bcb)
Copyright 2014 Yahoo! Inc. All rights reserved.
Licensed under the BSD License.
http://yuilibrary.com/license/
*/


/*
YUI 3.18.1 (build f7e7bcb)
Copyright 2014 Yahoo! Inc. All rights reserved.
Licensed under the BSD License.
http://yuilibrary.com/license/
*/

.yui3-skin-night .yui3-widget-mask {
    background-color: black;
    zoom: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(opacity=40)";
    filter: alpha(opacity=40);
    opacity: 0.4;
}

/*
YUI 3.18.1 (build f7e7bcb)
Copyright 2014 Yahoo! Inc. All rights reserved.
Licensed under the BSD License.
http://yuilibrary.com/license/
*/

.yui3-skin-night .yui3-datatable-message-content {
    background-color: #0e0e0e;
    border: 0 none;
    border-bottom: 1px solid #303030;
    padding: 4px 10px;
}
