Añadiendo css

This commit is contained in:
2025-06-09 13:36:24 +02:00
parent 86b5873418
commit d6c990e5d5
25 changed files with 4061 additions and 0 deletions
+95
View File
@@ -0,0 +1,95 @@
.alertify-show,
.alertify-log {
-webkit-transition: all 500ms cubic-bezier(0.175, 0.885, 0.320, 1); /* older webkit */
-webkit-transition: all 500ms cubic-bezier(0.175, 0.885, 0.320, 1.275);
-moz-transition: all 500ms cubic-bezier(0.175, 0.885, 0.320, 1.275);
-ms-transition: all 500ms cubic-bezier(0.175, 0.885, 0.320, 1.275);
-o-transition: all 500ms cubic-bezier(0.175, 0.885, 0.320, 1.275);
transition: all 500ms cubic-bezier(0.175, 0.885, 0.320, 1.275); /* easeOutBack */
}
.alertify-hide {
-webkit-transition: all 250ms cubic-bezier(0.600, 0, 0.735, 0.045); /* older webkit */
-webkit-transition: all 250ms cubic-bezier(0.600, -0.280, 0.735, 0.045);
-moz-transition: all 250ms cubic-bezier(0.600, -0.280, 0.735, 0.045);
-ms-transition: all 250ms cubic-bezier(0.600, -0.280, 0.735, 0.045);
-o-transition: all 250ms cubic-bezier(0.600, -0.280, 0.735, 0.045);
transition: all 250ms cubic-bezier(0.600, -0.280, 0.735, 0.045); /* easeInBack */
}
.alertify-cover {
position: fixed; z-index: 99999;
top: 0; right: 0; bottom: 0; left: 0;
}
.alertify {
position: fixed; z-index: 99999;
top: 50px; left: 50%;
width: 550px;
margin-left: -275px;
}
.alertify-hidden {
top: -50px;
visibility: hidden;
}
.alertify-logs {
position: fixed;
z-index: 5000;
bottom: 10px;
right: 10px;
width: 300px;
}
.alertify-log {
display: block;
margin-top: 10px;
position: relative;
right: -300px;
}
.alertify-log-show {
right: 0;
}
.alertify-dialog {
padding: 25px;
}
.alertify-resetFocus {
border: 0;
clip: rect(0 0 0 0);
height: 1px;
margin: -1px;
overflow: hidden;
padding: 0;
position: absolute;
width: 1px;
}
.alertify-inner {
text-align: center;
}
.alertify-text {
margin-bottom: 15px;
width: 100%;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
font-size: 100%;
}
.alertify-buttons {
}
.alertify-button {
/* line-height and font-size for input button */
line-height: 1.5;
font-size: 100%;
display: inline-block;
cursor: pointer;
margin-left: 5px;
}
@media only screen and (max-width: 680px) {
.alertify,
.alertify-logs {
width: 90%;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
.alertify {
left: 5%;
margin: 0;
}
}
+74
View File
@@ -0,0 +1,74 @@
/**
* Default Look and Feel
*/
.alertify,
.alertify-log {
font-family: sans-serif;
}
.alertify {
background: #FFF;
/*border: 10px solid #333;*/ /* browsers that don't support rgba */
/*border: 10px solid rgba(0,0,0,.7);*/
border-radius: 4px;
box-shadow: 0 3px 3px rgba(0,0,0,.3);
-webkit-background-clip: padding; /* Safari 4? Chrome 6? */
-moz-background-clip: padding; /* Firefox 3.6 */
background-clip: padding-box; /* Firefox 4, Safari 5, Opera 10, IE 9 */
}
.alertify-text {
border: 1px solid #CCC;
padding: 10px;
border-radius: 4px;
}
.alertify-button {
border-radius: 4px;
color: #FFF;
font-weight: bold;
padding: 6px 15px;
text-decoration: none;
text-shadow: 1px 1px 0 rgba(0,0,0,.5);
box-shadow: inset 0 1px 0 0 rgba(255,255,255,.5);
background-image: -webkit-linear-gradient(top, rgba(255,255,255,.3), rgba(255,255,255,0));
background-image: -moz-linear-gradient(top, rgba(255,255,255,.3), rgba(255,255,255,0));
background-image: -ms-linear-gradient(top, rgba(255,255,255,.3), rgba(255,255,255,0));
background-image: -o-linear-gradient(top, rgba(255,255,255,.3), rgba(255,255,255,0));
background-image: linear-gradient(top, rgba(255,255,255,.3), rgba(255,255,255,0));
}
.alertify-button:hover,
.alertify-button:focus {
outline: none;
/*box-shadow: 0 0 15px #2B72D5;*/
background-image: -webkit-linear-gradient(top, rgba(0,0,0,.1), rgba(0,0,0,0));
background-image: -moz-linear-gradient(top, rgba(0,0,0,.1), rgba(0,0,0,0));
background-image: -ms-linear-gradient(top, rgba(0,0,0,.1), rgba(0,0,0,0));
background-image: -o-linear-gradient(top, rgba(0,0,0,.1), rgba(0,0,0,0));
background-image: linear-gradient(top, rgba(0,0,0,.1), rgba(0,0,0,0));
}
.alertify-button:active {
position: relative;
top: 1px;
}
.alertify-button-cancel {
background-color: #FE1A00;
border: 1px solid #D83526;
}
.alertify-button-ok {
background-color: #5CB811;
border: 1px solid #3B7808;
}
.alertify-log {
background: #1F1F1F;
background: rgba(0,0,0,.9);
padding: 15px;
border-radius: 4px;
color: #FFF;
text-shadow: -1px -1px 0 rgba(0,0,0,.5);
}
.alertify-log-error {
background: #FE1A00;
background: rgba(254,26,0,.9);
}
.alertify-log-success {
background: #5CB811;
background: rgba(92,184,17,.9);
}
+86
View File
@@ -0,0 +1,86 @@
.titulo{
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 16px;
font-weight: bold;
color: #43881A;
text-decoration : none;
}
.menuOff{
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 10px;
color: #43881A;
text-decoration : none;
}
.menuOff:hover{
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 10px;
color: #57AF22;
text-decoration : none;
}
.menuOn{
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 10px;
color: #43881A;
text-decoration : none;
background-color: #FFFFFF;
}
.menuBack{
background-color: #FFFFFF;
}
.menuOnSelect{
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 10px;
color: #FFFFFF;
text-decoration : none;
background-color: #43881A;
}
.pathOff{
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 10px;
color: #000000;
text-decoration : none;
}
.pathOff:hover{
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 10px;
color: #57AF22;
text-decoration : none;
}
.pathOn{
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 10px;
color: #43881A;
text-decoration : none;
}
.n1Off{
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 11px;
color: #666666;
font-weight : bold;
text-decoration : none;
}
.n1Off:hover{
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 11px;
color: #57AF22;
font-weight : bold;
text-decoration : none;
}
.n1On{
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 11px;
color: #43881A;
font-weight : bold;
text-decoration : none;
}
+137
View File
@@ -0,0 +1,137 @@
#calendarDiv{
position:absolute;
width:205px;
border:1px solid #317082;
padding:1px;
background-color: #FFF;
font-family:arial;
font-size:10px;
padding-bottom:20px;
visibility:hidden;
}
#calendarDiv span,#calendarDiv img{
float:left;
}
#calendarDiv .selectBox,#calendarDiv .selectBoxOver{
line-height:12px;
padding:1px;
cursor:pointer;
padding-left:2px;
}
#calendarDiv .selectBoxTime,#calendarDiv .selectBoxTimeOver{
line-height:12px;
padding:1px;
cursor:pointer;
padding-left:2px;
}
#calendarDiv td{
padding:3px;
margin:0px;
font-size:10px;
}
#calendarDiv .selectBox{
border:1px solid #E2EBED;
color: #E2EBED;
position:relative;
}
#calendarDiv .selectBoxOver{
border:1px solid #FFF;
background-color: #317082;
color: #FFF;
position:relative;
}
#calendarDiv .selectBoxTime{
border:1px solid #317082;
color: #317082;
position:relative;
}
#calendarDiv .selectBoxTimeOver{
border:1px solid #216072;
color: #216072;
position:relative;
}
#calendarDiv .topBar{
height:16px;
padding:2px;
background-color: #317082;
}
#calendarDiv .activeDay{ /* Active day in the calendar */
color:#FF0000;
}
#calendarDiv .todaysDate{
height:17px;
line-height:17px;
padding:2px;
background-color: #E2EBED;
text-align:center;
position:absolute;
bottom:0px;
width:201px;
}
#calendarDiv .todaysDate div{
float:left;
}
#calendarDiv .timeBar{
height:17px;
line-height:17px;
background-color: #E2EBED;
width:72px;
color:#FFF;
position:absolute;
right:0px;
}
#calendarDiv .timeBar div{
float:left;
margin-right:1px;
}
#calendarDiv .monthYearPicker{
background-color: #E2EBED;
border:1px solid #AAAAAA;
position:absolute;
color: #317082;
left:0px;
top:15px;
z-index:1000;
display:none;
}
#calendarDiv #monthSelect{
width:70px;
}
#calendarDiv .monthYearPicker div{
float:none;
clear:both;
padding:1px;
margin:1px;
cursor:pointer;
}
#calendarDiv .monthYearActive{
background-color:#317082;
color: #E2EBED;
}
#calendarDiv td{
text-align:right;
cursor:pointer;
}
#calendarDiv .topBar img{
cursor:pointer;
}
#calendarDiv .topBar div{
float:left;
margin-right:1px;
}
+443
View File
@@ -0,0 +1,443 @@
.mensajes {
width:150px;
/*height:150px;*/
background:#FFFF00;
color:#C02331;
border: solid #ECEF3D;
padding:1px;
margin:10px;
margin-left: -10px;
float:center;
text-align:center;
font-family:Verdana, Arial;
font-size: 12;
font-weight: bold;
display:none;
}
.franquicias {
color: #235CC0;
margin: 10px;
font-family: Verdana, Arial;
font-weight: bold;
font-size: 0.7em;
}
.franquicias:hover{
cursor: pointer;
}
.enlaceAnalisis
{
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 10px;
color: #003399;
text-decoration : none;
}
.enlaceAnalisis:hover
{
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 10px;
color: #3366CC;
text-decoration : none;
}
.enlace
{
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 10px;
font-weight: bold;
color: #43881A;
text-decoration : none;
}
.enlacePeticion
{
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 10px;
text-decoration : none;
border: medium none;
cursor: pointer;
background-color: transparent;
color: #000EAD;
}
.enlace:hover
{
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 10px;
font-weight: bold;
color: #57AF22;
text-decoration: none;
}
.txt
{
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 10px;
color: #666666;
text-decoration: none;
}
.txt_enrojo
{
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 10px;
color: #DF6925;
text-decoration: none;
}
.txtImpresion
{
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 10px;
color: #000000;
text-decoration: none;
}
.txtnegrita
{
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 10px;
font-weight: bold;
color: #666666;
text-decoration: none;
}
.titulo
{
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 16px;
font-weight: bold;
color: #FF6600;
text-decoration : none;
}
.tituloTablaMedico
{
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 15px;
font-weight: bold;
/*color: #999999;*/
color: #FFFFFF;
text-decoration : none;
/*background-color: #EBEBEB;
background-color: #C02331;*/
background-color: #D07078;
}
.tituloTabla
{
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 12px;
font-weight: bold;
color: #999999;
text-decoration : none;
background-color: #EBEBEB;
}
.tituloPagina
{
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 12px;
font-weight: bold;
color: #999999;
text-decoration : none;
}
.filaA
{
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 10px;
color: #666666;
text-decoration: none;
background-color: #EBEBEB;
/*background-color: #F3E7DB; */
}
.filaA_A
{
align:left;
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 10px;
color: #666666;
text-decoration: none;
background-color: #EBEBEB;
/*background-color: #F3E7DB;*/
}
.filaA_B
{
align:right;
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 10px;
color: #666666;
text-decoration: none;
background-color: #EBEBEB;
/*background-color: #F3E7DB;*/
}
.filaB
{
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 10px;
color: #666666;
text-decoration: none;
background-color: #FFFFFF;
/*background-color: #F7EDE6;*/
}
.filaB_A
{
align:left;
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 10px;
color: #666666;
text-decoration: none;
background-color: #FFFFFF;
/*background-color: #F7EDE6;*/
}
.filaB_B
{
align:right;
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 10px;
color: #666666;
text-decoration: none;
background-color: #FFFFFF;
/*background-color: #F7EDE6;*/
}
.filaC
{
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 10px;
color: #666666;
text-decoration: none;
background-color: #FF8000;
}
.trResultados:hover td{
/*font-weight: bold;
font-size: 9px;*/
color: #000000;
text-decoration: none;
background-color: #FFE8E8 !important;
cursor:default;
}
.correo
{
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 10px;
color: #336699;
text-decoration : none;
}
.correo:hover
{
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 10px;
color: #336699;
text-decoration: underline;
}
.menuOff{
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 10px;
color: #C02331;
text-decoration : none;
}
.menuOff:hover{
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 10px;
color: #F3293C;
text-decoration : none;
}
.menuOn{
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 10px;
color: #C02331;
text-decoration : none;
background-color: #FFFFFF;
}
.menuBack{
background-color: #FFFFFF;
}
.menuOnSelect{
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 10px;
color: #FFFFFF;
text-decoration : none;
background-color: #C02331;
}
.txtBlqColor
{
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 10px;
color: #FFFFFF;
text-decoration: none;
}
.txtBlq
{
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 10px;
color: #FFFFFF;
font-weight: bold;
text-decoration: none;
}
.cabeceraTabla
{
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 11px;
color: #FFFFFF;
font-weight: bold;
text-decoration: none;
}
.pagDesactivo
{
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 10px;
font-weight: bold;
color: #A1C99E;
text-decoration : none;
}
.input {
border: 1px solid #006;
background: #ffc;
}
.input:hover {
border: 1px solid #f00;
background: #ff6;
}
.button {
border: none;
background: url('/forms/up.png') no-repeat top left;
padding: 2px 8px;
}
.button:hover {
border: none;
background: url('/forms/down.png') no-repeat top left;
padding: 2px 8px;
}
INPUT.menu
{
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 10px;
font-weight: bold;
color: #43881A;
text-decoration : none;
background-color: #ffffff;
border-color: #848284;
border-top-style: solid;
border-right-style: solid;
border-bottom-style: solid;
border-left-style: solid;
border-top-width: 1px;
border-right-width: 1px;
border-bottom-width: 1px;
border-left-width: 1px
}
.noticiaLateral
{
width: 95%;
margin: 0 auto;
margin-right: 0px;
background-color: #F3D195;
text-align:center;
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 12px;
font-weight: bold;
color: #6D6C6C;
text-decoration : none;
}
/*.tituloNoticia
{
background-color: #EBEBEB;
text-align:center;
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 12px;
font-weight: bold;
color: #6D6C6C;
text-decoration : none;
}*/
.cajaCentral
{
/*width: 95%;
margin: 0 auto;*/
border: /*#E6B0B0*/#EBEBEB solid;
text-align: center;
/* border-radius: 10px;*/
margin-left: 20px;
}
.tituloCajaCentral{
background-color: /*#E6B0B0*/#EBEBEB;
height:15px;
}
.tituloCajaCentral span{
font-weight: bold;
/*color: #2D2D2D;*/
}
.noticiaSpan{
float:left;
color:#A25353;
}
.tituloNoticia {
height: 20px;
overflow: hidden;
position: relative;
background-color: #EBEBEB;
text-align:center;
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 12px;
font-weight: bold;
color: #6D6C6C;
text-decoration : none;
}
.logoCabecera{
width:120px;
border:0;
}
.tdLogoCabecera{
align:left;
width:140px;
}
.noticiaRapida{
width: 20px;
position: absolute;
top: 72px;
left: 242px;
}
.marquee{
position:absolute;
margin: 2;
}
.marco{
width: 90%;
margin: 0 auto;
border-right: 1px solid #828282;
border-left: 1px solid #828282;
height: 150%;
-webkit-box-shadow: 0px 1px 18px 2px #828282;
-moz-box-shadow: 0px 1px 18px 2px #828282;
box-shadow: 0px 1px 18px 2px #828282;
background-color: #FFFFFF;
}
html,body{
height: 100%;
}
body{
background-color: #F0EFEF;
}
Binary file not shown.

After

Width:  |  Height:  |  Size: 212 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 206 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 336 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 341 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 332 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 333 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 292 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.4 KiB

+1225
View File
File diff suppressed because it is too large Load Diff
+7
View File
File diff suppressed because one or more lines are too long
+480
View File
@@ -0,0 +1,480 @@
/*! * CSS Modal
* Copyright (c) 2014 CreativeDream
* Website http://creativedream.net/plugins
* Version: 1.2 (20-10-2014)
*/
#modal-window {
background-color: rgba(0, 0, 0, 0.498039);
}
#modal-window .modal-box {
width: 460px;
top: 10%;
left: 10%;
margin-bottom: 10px;
background-color: #ffffff;
*border: 1px solid #bbb;
-webkit-border-radius: 4px;
-moz-border-radius: 4px;
border-radius: 4px;
outline: none;
-webkit-box-shadow: 0 0px 7px rgba(0, 0, 0, 0.3);
-moz-box-shadow: 0 0px 7px rgba(0, 0, 0, 0.3);
box-shadow: 0 0px 7px rgba(0, 0, 0, 0.3);
-webkit-background-clip: padding-box;
-moz-background-clip: padding-box;
background-clip: padding-box;
font-family: sans-serif;
color: #444;
overflow: hidden;
}
/* Modal Sizes */
#modal-window .modal-box.modal-size-large {
width: 70%;
}
#modal-window .modal-box.modal-size-small {
width: 350px;
}
/*
Modal Title
*/
#modal-window .modal-box .modal-title {
position: relative;
padding: 11px 15px;
border-bottom: 1px solid #e5e5e5;
font-size: 22px;
overflow: hidden;
}
#modal-window .modal-box .modal-title h3 {
font-size: 22px;
font-weight: normal;
display: inline-block;
margin: 0;
padding: 0;
}
/* Modal Close Button */
#modal-window .modal-box .modal-title .modal-close-btn {
position: absolute;
display: block;
width: 14px;
height: 14px;
right: 20px;
top: 50%;
margin-top: -7px;
cursor: pointer;
background: #fff url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAA2ZpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMC1jMDYwIDYxLjEzNDc3NywgMjAxMC8wMi8xMi0xNzozMjowMCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD0ieG1wLmRpZDpGNzdGMTE3NDA3MjA2ODExOEMxNDkyODc0N0NBMUEwNCIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDo3N0ZBOTUxNzNERkIxMUUyQUZGMEFDRjY0RjNFODlDOCIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDo3N0ZBOTUxNjNERkIxMUUyQUZGMEFDRjY0RjNFODlDOCIgeG1wOkNyZWF0b3JUb29sPSJBZG9iZSBQaG90b3Nob3AgQ1M1IE1hY2ludG9zaCI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOkY3N0YxMTc0MDcyMDY4MTE4MDgzRkQyMTE2MTM0QUNBIiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOkY3N0YxMTc0MDcyMDY4MTE4QzE0OTI4NzQ3Q0ExQTA0Ii8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+5Ke+4QAAAMlJREFUeNqkk90KwyAMha0dvp/ghfthsFcb67YLYe83EBdZlCxL3KCFU0nM+WqjTqUUs+bZ1Nd2d6jDDDqDHqCk1AeQBx1B+Xa9vAFovmNBwFwSzAvIoWKFWJxciNGxmJtp3FeQMDkziCEfcCTObYUUEPE3JAg3xwawZKJBMsm5kZkDNIhqlgC0+J/cFyAIDTOD3fkABKXbeQSxP8xRaWyHNIAfdFvbHU8BJ9JdqdscktDTD9ITtCcnTLpMDRLwMlWPmdZe55cAAwD+1kOdnSr5eQAAAABJRU5ErkJggg==') no-repeat center;
background-size: 14px,14px;
opacity: 0.5;
filter: alpha(opacity=50);
}
#modal-window .modal-box .modal-title .modal-close-btn:hover {
opacity: 1;
filter: alpha(opacity=100);
}
/*
Modal Text
*/
#modal-window .modal-box .modal-text {
font-size: 14px;
line-height: 18px;
padding: 20px 15px;
overflow-y: auto;
}
#modal-window .modal-box img {
height: auto;
max-width: 100%;
vertical-align: middle;
border: 0;
-ms-interpolation-mode: bicubic;
}
/* Modal Prompt Input */
#modal-window .modal-box .modal-text input.modal-prompt-input {
width: 97%;
width: -webkit-calc(100% - 14px);
width: -moz-calc(100% - 14px);
width: calc(100% - 14px);
display: block;
margin: 0;
padding: 0;
outline: 0;
border: 1px solid #dddddd;
border-top: 1px solid #cccccc;
margin: 10px 0px 10px 0px;
padding: 6px;
color: #333333;
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
border-radius: 3px;
-webkit-box-shadow: inset 0px 0px 2px #eeeeee;
-moz-box-shadow: inset 0px 0px 2px #eeeeee;
box-shadow: inset 0px 0px 2px #eeeeee;
-webkit-transition: all 0.1s linear;
transition: all 0.1s linear;
}
#modal-window .modal-box .modal-text input.modal-prompt-input:hover {
border: 1px solid #bbbbbb;
border-top: 1px solid #aaaaaa;
}
#modal-window .modal-box .modal-text input.modal-prompt-input:focus,
#modal-window .modal-box .modal-text input.modal-prompt-input:active {
border-color: rgba(82, 168, 236, 0.8);
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.3);
-moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.3);
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.3);
}
/*
Modal Buttons
*/
#modal-window .modal-box .modal-buttons {
padding: 12px 15px;
text-align: right;
background-color: #f9f9f9;
border-top: 1px solid #ddd;
}
#modal-window .modal-box .modal-buttons a.modal-btn {
display: inline-block;
padding: 8px 12px;
outline: none;
border: 1px solid transparent;
cursor: pointer;
text-decoration: none;
text-align: center;
white-space: nowrap;
font-size: 12px;
font-weight: normal;
font-weight: bold;
color: #555;
border-radius: 0;
vertical-align: middle;
}
#modal-window .modal-box .modal-buttons a.modal-btn:active,a.modal-btn:focus {
outline: none !important;
}
#modal-window .modal-box .modal-buttons a.modal-btn:active,a.modal-btn.active {
-webkit-box-shadow: inset 0 0 7px rgba(0,0,0,0.2);
-moz-box-shadow: inset 0 0 7px rgba(0,0,0,0.2);
box-shadow: inset 0 0 7px rgba(0,0,0,0.2);
}
#modal-window .modal-box .modal-buttons a.modal-btn+a.modal-btn {
margin-left: 5px;
}
#modal-window .modal-box .modal-buttons a.modal-btn.btn-disabled {
cursor: not-allowed;
pointer-events: none;
opacity: .65;
filter: alpha(opacity=65);
}
#modal-window .modal-box .modal-buttons a.modal-btn.btn-large {
padding: 8px 14px;
font-size: 16px;
}
#modal-window .modal-box .modal-buttons a.modal-btn.btn-small {
padding: 6px 8px;
font-size: 10px;
}
#modal-window .modal-box .modal-buttons a.modal-btn.btn-rounded {
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
border-radius: 3px;
}
#modal-window .modal-box .modal-buttons a.modal-btn.btn-circle {
-webkit-border-radius: 15px;
-moz-border-radius: 15px;
border-radius: 15px;
}
#modal-window .modal-box .modal-buttons a.modal-btn.btn-square {
-webkit-border-radius: 0px;
-moz-border-radius: 0px;
border-radius: 0px;
}
#modal-window .modal-box .modal-buttons a.modal-btn i,
#modal-window .modal-box .modal-buttons a.modal-btn img {
vertical-align: middle;
display: inline-block;
float: left;
max-height: 16px;
margin-right: 5px;
}
#modal-window .modal-box .modal-buttons a.modal-btn {
background-color: #fcfcfc;
border-color: #c9c9c9;
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
border-radius: 3px;
-webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.08);
-moz-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.08);
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.08);
}
#modal-window .modal-box .modal-buttons a.modal-btn.btn-green {
background-color: #5cb85c;
border-color: #4cae4c;
color: #fff;
}
#modal-window .modal-box .modal-buttons a.modal-btn.btn-green:hover {
background-color: #449d44;
border-color: #398439;
color: #fff;
}
#modal-window .modal-box .modal-buttons a.modal-btn.btn-purple {
background-color: #8149B4;
border-color: #6922AD;
color: #fff;
}
#modal-window .modal-box .modal-buttons a.modal-btn.btn-purple:hover {
background-color: #6f32a8;
border-color: #5b149e;
color: #fff;
}
#modal-window .modal-box .modal-buttons a.modal-btn.btn-orange {
background-color: #f7aa47;
border-color: #eea236;
color: #fff;
}
#modal-window .modal-box .modal-buttons a.modal-btn.btn-orange:hover {
background-color: #f69f2f;
border-color: #d58512;
color: #fff;
}
#modal-window .modal-box .modal-buttons a.modal-btn.btn-pink {
background-color: #ff6264;
border-color: #eb5b5c;
color: #fff;
}
#modal-window .modal-box .modal-buttons a.modal-btn.btn-pink:hover {
background-color: #ff484b;
border-color: #e53a3d;
color: #fff;
}
#modal-window .modal-box .modal-buttons a.modal-btn.btn-turquoise {
background-color: #00b19d;
border-color: #11a594;
color: #fff;
}
#modal-window .modal-box .modal-buttons a.modal-btn.btn-turquoise:hover {
background-color: #009886;
border-color: #0b8173;
color: #fff;
}
#modal-window .modal-box .modal-buttons a.modal-btn.btn-light-green {
background-color: #8dc63f;
border-color: #7db432;
color: #fff;
}
#modal-window .modal-box .modal-buttons a.modal-btn.btn-light-green:hover {
background-color: #82b838;
border-color: #75a336;
color: #fff;
}
#modal-window .modal-box .modal-buttons a.modal-btn.btn-light-blue {
background-color: #428bca;
border-color: #357ebd;
color: #fff;
}
#modal-window .modal-box .modal-buttons a.modal-btn.btn-light-blue:hover {
background-color: #3071a9;
border-color: #285e8e;
color: #fff;
}
#modal-window .modal-box .modal-buttons a.modal-btn.btn-blue {
background-color: #0e62c7;
border-color: #0D54AA;
color: #fff;
}
#modal-window .modal-box .modal-buttons a.modal-btn.btn-blue:hover {
background-color: #0c56af;
border-color: #0B4992;
color: #fff;
}
#modal-window .modal-box .modal-buttons a.modal-btn.btn-red {
background-color: #cc3f44;
border-color: #bd1b21;
color: #fff;
}
#modal-window .modal-box .modal-buttons a.modal-btn.btn-red:hover {
background-color: #ab2d32;
border-color: #96050b;
color: #fff;
}
#modal-window .modal-box .modal-buttons a.modal-btn.btn-light-red {
background-color: #d9534f;
border-color: #d43f3a;
color: #fff;
}
#modal-window .modal-box .modal-buttons a.modal-btn.btn-light-red:hover {
background-color: #c9302c;
border-color: #ac2925;
color: #fff;
}
#modal-window .modal-box .modal-buttons a.modal-btn.btn-yellow {
background-color: #ffba00;
border-color: #e4a703;
color: #fff;
}
#modal-window .modal-box .modal-buttons a.modal-btn.btn-yellow:hover {
background-color: #f0bb2e;
border-color: #dba71a;
color: #fff;
}
#modal-window .modal-box .modal-buttons a.modal-btn.btn-black {
background-color: #444;
border-color: #313131;
color: #fff;
}
#modal-window .modal-box .modal-buttons a.modal-btn.btn-black:hover {
background-color: #333;
border-color: #222;
color: #fff;
}
#modal-window .modal-box .modal-buttons a.modal-btn.btn-white {
background-color: #fff;
color: #555;
border: 1px solid #ddd;
}
#modal-window .modal-box .modal-buttons a.modal-btn.btn-white:hover {
background-color: #f7f7f7;
border: 1px solid #ccc;
}
#modal-window .modal-box .modal-buttons a.modal-btn.btn-white:active,#modal-window .modal-box .modal-buttons a.modal-btn.btn-white:focus {
-webkit-box-shadow: inset 0px 0px 10px rgba(0,0,0,0.1);
-moz-box-shadow: inset 0px 0px 10px rgba(0,0,0,0.1);
box-shadow: inset 0px 0px 10px rgba(0,0,0,0.1);
}
/*
Modal Title Types
*/
#modal-window .modal-box .modal-title.modal-title-success {
background-color: #61b832;
}
#modal-window .modal-box .modal-title.modal-title-warning {
background-color: #f1b40e;
}
#modal-window .modal-box .modal-title.modal-title-error {
background-color: #de4343;
}
#modal-window .modal-box .modal-title.modal-title-info {
background-color: #4ea5cd;
}
#modal-window .modal-box .modal-title.modal-title-inverted {
background-color: #444;
}
#modal-window .modal-box .modal-title.modal-title-primary {
background-color: #428bca;
}
#modal-window .modal-box .modal-title.modal-title-success,
#modal-window .modal-box .modal-title.modal-title-warning,
#modal-window .modal-box .modal-title.modal-title-error,
#modal-window .modal-box .modal-title.modal-title-info,
#modal-window .modal-box .modal-title.modal-title-inverted,
#modal-window .modal-box .modal-title.modal-title-primary {
color: #FFF;
text-shadow: 0 1px 3px rgba(0, 0, 0, 0.25);
border-bottom-color: transparent;
}
/* Modal Close Button White Color*/
#modal-window .modal-box .modal-title.modal-title-success .modal-close-btn,
#modal-window .modal-box .modal-title.modal-title-warning .modal-close-btn,
#modal-window .modal-box .modal-title.modal-title-error .modal-close-btn,
#modal-window .modal-box .modal-title.modal-title-info .modal-close-btn,
#modal-window .modal-box .modal-title.modal-title-inverted .modal-close-btn,
#modal-window .modal-box .modal-title.modal-title-primary .modal-close-btn {
background: url('data:image/png;base64,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') no-repeat center;
}
/*
Modal Theme: Xenon
*/
#modal-window .modal-box.modal-theme-xenon {
-webkit-border-radius: 0;
-moz-border-radius: 0;
border-radius: 0;
}
#modal-window .modal-box.modal-theme-xenon .modal-text {
padding: 25px;
}
#modal-window .modal-box.modal-theme-xenon .modal-title {
padding: 15px 25px;
}
#modal-window .modal-box.modal-theme-xenon .modal-title .modal-close-btn {
right: 25px;
}
#modal-window .modal-box.modal-theme-xenon .modal-buttons {
padding: 15px 25px;
background: #fafafa;
}
#modal-window .modal-box.modal-theme-xenon .modal-buttons .modal-btn {
-webkit-border-radius: 0px;
-moz-border-radius: 0px;
border-radius: 0px;
}
File diff suppressed because it is too large Load Diff
+410
View File
@@ -0,0 +1,410 @@
/*!
* jQuery UI CSS Framework 1.11.4
* http://jqueryui.com
*
* Copyright jQuery Foundation and other contributors
* Released under the MIT license.
* http://jquery.org/license
*
* http://api.jqueryui.com/category/theming/
*
* To view and modify this theme, visit http://jqueryui.com/themeroller/?ffDefault=Lucida%20Grande%2CLucida%20Sans%2CArial%2Csans-serif&fwDefault=bold&fsDefault=1.1em&cornerRadius=5px&bgColorHeader=5c9ccc&bgTextureHeader=gloss_wave&bgImgOpacityHeader=55&borderColorHeader=4297d7&fcHeader=ffffff&iconColorHeader=d8e7f3&bgColorContent=fcfdfd&bgTextureContent=inset_hard&bgImgOpacityContent=100&borderColorContent=a6c9e2&fcContent=222222&iconColorContent=469bdd&bgColorDefault=dfeffc&bgTextureDefault=glass&bgImgOpacityDefault=85&borderColorDefault=c5dbec&fcDefault=2e6e9e&iconColorDefault=6da8d5&bgColorHover=d0e5f5&bgTextureHover=glass&bgImgOpacityHover=75&borderColorHover=79b7e7&fcHover=1d5987&iconColorHover=217bc0&bgColorActive=f5f8f9&bgTextureActive=inset_hard&bgImgOpacityActive=100&borderColorActive=79b7e7&fcActive=e17009&iconColorActive=f9bd01&bgColorHighlight=fbec88&bgTextureHighlight=flat&bgImgOpacityHighlight=55&borderColorHighlight=fad42e&fcHighlight=363636&iconColorHighlight=2e83ff&bgColorError=fef1ec&bgTextureError=glass&bgImgOpacityError=95&borderColorError=cd0a0a&fcError=cd0a0a&iconColorError=cd0a0a&bgColorOverlay=aaaaaa&bgTextureOverlay=flat&bgImgOpacityOverlay=0&opacityOverlay=30&bgColorShadow=aaaaaa&bgTextureShadow=flat&bgImgOpacityShadow=0&opacityShadow=30&thicknessShadow=8px&offsetTopShadow=-8px&offsetLeftShadow=-8px&cornerRadiusShadow=8px
*/
/* Component containers
----------------------------------*/
.ui-widget {
font-family: Lucida Grande,Lucida Sans,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: Lucida Grande,Lucida Sans,Arial,sans-serif;
font-size: 1em;
}
.ui-widget-content {
border: 1px solid #a6c9e2;
background: #fcfdfd url("images/ui-bg_inset-hard_100_fcfdfd_1x100.png") 50% bottom repeat-x;
color: #222222;
}
.ui-widget-content a {
color: #222222;
}
.ui-widget-header {
border: 1px solid #4297d7;
background: #5c9ccc url("images/ui-bg_gloss-wave_55_5c9ccc_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 #c5dbec;
background: #dfeffc url("images/ui-bg_glass_85_dfeffc_1x400.png") 50% 50% repeat-x;
font-weight: bold;
color: #2e6e9e;
}
.ui-state-default a,
.ui-state-default a:link,
.ui-state-default a:visited {
color: #2e6e9e;
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 #79b7e7;
background: #d0e5f5 url("images/ui-bg_glass_75_d0e5f5_1x400.png") 50% 50% repeat-x;
font-weight: bold;
color: #1d5987;
}
.ui-state-hover a,
.ui-state-hover a:hover,
.ui-state-hover a:link,
.ui-state-hover a:visited,
.ui-state-focus a,
.ui-state-focus a:hover,
.ui-state-focus a:link,
.ui-state-focus a:visited {
color: #1d5987;
text-decoration: none;
}
.ui-state-active,
.ui-widget-content .ui-state-active,
.ui-widget-header .ui-state-active {
border: 1px solid #79b7e7;
background: #f5f8f9 url("images/ui-bg_inset-hard_100_f5f8f9_1x100.png") 50% 50% repeat-x;
font-weight: bold;
color: #e17009;
}
.ui-state-active a,
.ui-state-active a:link,
.ui-state-active a:visited {
color: #e17009;
text-decoration: none;
}
/* Interaction Cues
----------------------------------*/
.ui-state-highlight,
.ui-widget-content .ui-state-highlight,
.ui-widget-header .ui-state-highlight {
border: 1px solid #fad42e;
background: #fbec88 url("images/ui-bg_flat_55_fbec88_40x100.png") 50% 50% 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: #fef1ec url("images/ui-bg_glass_95_fef1ec_1x400.png") 50% 50% repeat-x;
color: #cd0a0a;
}
.ui-state-error a,
.ui-widget-content .ui-state-error a,
.ui-widget-header .ui-state-error a {
color: #cd0a0a;
}
.ui-state-error-text,
.ui-widget-content .ui-state-error-text,
.ui-widget-header .ui-state-error-text {
color: #cd0a0a;
}
.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); /* support: IE8 */
font-weight: normal;
}
.ui-state-disabled,
.ui-widget-content .ui-state-disabled,
.ui-widget-header .ui-state-disabled {
opacity: .35;
filter:Alpha(Opacity=35); /* support: IE8 */
background-image: none;
}
.ui-state-disabled .ui-icon {
filter:Alpha(Opacity=35); /* support: IE8 - See #6059 */
}
/* Icons
----------------------------------*/
/* states and images */
.ui-icon {
width: 16px;
height: 16px;
}
.ui-icon,
.ui-widget-content .ui-icon {
background-image: url("images/ui-icons_469bdd_256x240.png");
}
.ui-widget-header .ui-icon {
background-image: url("images/ui-icons_d8e7f3_256x240.png");
}
.ui-state-default .ui-icon {
background-image: url("images/ui-icons_6da8d5_256x240.png");
}
.ui-state-hover .ui-icon,
.ui-state-focus .ui-icon {
background-image: url("images/ui-icons_217bc0_256x240.png");
}
.ui-state-active .ui-icon {
background-image: url("images/ui-icons_f9bd01_256x240.png");
}
.ui-state-highlight .ui-icon {
background-image: url("images/ui-icons_2e83ff_256x240.png");
}
.ui-state-error .ui-icon,
.ui-state-error-text .ui-icon {
background-image: url("images/ui-icons_cd0a0a_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: 5px;
}
.ui-corner-all,
.ui-corner-top,
.ui-corner-right,
.ui-corner-tr {
border-top-right-radius: 5px;
}
.ui-corner-all,
.ui-corner-bottom,
.ui-corner-left,
.ui-corner-bl {
border-bottom-left-radius: 5px;
}
.ui-corner-all,
.ui-corner-bottom,
.ui-corner-right,
.ui-corner-br {
border-bottom-right-radius: 5px;
}
/* Overlays */
.ui-widget-overlay {
background: #aaaaaa url("images/ui-bg_flat_0_aaaaaa_40x100.png") 50% 50% repeat-x;
opacity: .3;
filter: Alpha(Opacity=30); /* support: IE8 */
}
.ui-widget-shadow {
margin: -8px 0 0 -8px;
padding: 8px;
background: #aaaaaa url("images/ui-bg_flat_0_aaaaaa_40x100.png") 50% 50% repeat-x;
opacity: .3;
filter: Alpha(Opacity=30); /* support: IE8 */
border-radius: 8px;
}