/* HelpLess
*
*  @What is it:
*  HelpLess is a Helper Library for the brilliant LESS dynamic stylesheet language.
*  Read more about LESS: http://lesscss.org/
*  
*  I have tried to make HelpLess as all-encompasing as possible with support for dynamic
*  grids and page starter themes as well as all the css3 features I could think of.
*  Unlike other libraries, HelpLess has an invisible footprint until you call a mixin 
*  so if you import HelpLess but don't use it, it will not increase your compiled file size
*  
*  @thanks: 
*  Eric Meyer for his html reset - http://meyerweb.com/eric/tools/css/reset/
*  Necolas for his normalize - https://github.com/necolas/normalize.css
*
*  @How to use:
*  Import helpless.x.x.x.less into your main style.less file. 
*
*  @Author: 
*  m6tt: m6tt.com
*
*  @Reference:
*  ------------------------------------------------------------------------------
*    BASICS                     =>    syntax
*  ------------------------------------------------------------------------------
*    - .reset                   =>    #hl.reset() - call outside of element
*    - .normalize               =>    #hl.normalize - call outside of element
*    - .clearfix                =>    #hl.clearfix()
*    - .centered                =>    #hl.centered(width)
*    - .border                  =>    #hl.border(color)
*    - .opacity                 =>    #hl.opacity(value)
*    - .round-all-corners       =>    #hl.round-all-corners(radius)
*    - .rounded-corners         =>    #hl.rounded-corners(topLeft, topRight, bottomRight, bottomLeft)
*    - .transition              =>    #hl.transition(property, duration, ease, delay)
*    - .drop-shadow             =>    #hl.drop-shadow(x, y, blur, color)
*    - .inner-shadow            =>    #hl.inner-shadow(x, y, blur, color)
*    - .text-shadow             =>    #hl.text-shadow(x, y, blur, color)
*    - .background-gradient     =>    #hl.background-gradient(colorFrom, colorTo, fallbackColor, fallbackImageUrl)
*    - .scale                   =>    #hl.scale(amount)
*    - .scaleX                  =>    #hl.scaleX(amount)
*    - .scaleY                  =>    #hl.scaleY(amount)
*    - .rotate                  =>    #hl.rotate(degrees)
*    - .rotateX                 =>    #hl.rotateX(degrees)
*    - .rotateY                 =>    #hl.rotateY(degrees)
*    - .skew                    =>    #hl.skew(angleX, angleY)
*    - .skewX                   =>    #hl.skewX(angleX)
*    - .skewY                   =>    #hl.skewY(angleY)
*    - .translate               =>    #hl.translate(x, y)
*    - .translateX              =>    #hl.translateX(x)
*    - .translateY              =>    #hl.translateY(y)
*    - .matrix                  =>    #hl.matrix(n, n, n, n, n, n)
*
*  ------------------------------------------------------------------------------
*    GRID                       =>    syntax
*  ------------------------------------------------------------------------------
*    - .grid                    =>    namespace, do not call directly, use .make or one of the predefined grid makers
*     - .make                   =>    #hl.grid.make(width, colNumber, gutterWidth)
*     - .1200                   =>    #hl.grid.1200();
*     - .1120                   =>    #hl.grid.1120();
*     - .1040                   =>    #hl.grid.1040();
*     - .960                    =>    #hl.grid.960();
*     - .880                    =>    #hl.grid.880();
*     - .800                    =>    #hl.grid.800();
*     - .720                    =>    #hl.grid.720();
*     - .640                    =>    #hl.grid.640();
*     - .560                    =>    #hl.grid.560();
*     - .480                    =>    #hl.grid.480();
*     - .400                    =>    #hl.grid.400();
*     - .320                    =>    #hl.grid.320();
*     - .240                    =>    #hl.grid.240();
*     - .row                    =>    #hl.grid.row();
*     - .col                    =>    #hl.grid.col(colSpan);
*
*  ---------------------------------------
*    TYPOGRAPHY
*  ---------------------------------------
*    - .typo                    =>    namespace, do not call directly
*     - .serif                  =>    #hl.typo.serif(webfont-name-optional);
*     - .sans                   =>    #hl.typo.sans(webfont-name-optional);
*     - .columns                =>    #hl.typo.columns(count, gap)
* 
*  ---------------------------------------
*    IMAGES
*  ---------------------------------------
*    - .img                     =>    namespace, do not call directly
*     - .responsive             =>    #hl.img.responsive();
*     - .framed                 =>    #hl.img.framed();

*  ---------------------------------------
*    USER INTERFACE
*  ---------------------------------------
*    - .ui                      =>    namespace, do not call directly
*     - .themes                 =>    namespace, do not call directly
*      - .light                 =>    #hl.ui.themes.light(); - call within <body> element
*      - .dark                  =>    #hl.ui.themes.dark(); - call within <body> element
*     - .list                   =>    namespace, do not call directly
*      - .subtle                =>    #hl.ui.list.subtle(); - call within <ul> element
*      - .horizontal            =>    #hl.ui.list.horizontal(); - call within <ul> element
*
*/

/*
 * HTML5 ✰ Boilerplate - LESS
 *
 * What follows is the result of much research on cross-browser styling.
 * Credit left inline and big thanks to Nicolas Gallagher, Jonathan Neal,
 * Kroc Camen, and the H5BP dev community and team.
 *
 * Detailed information about this CSS: h5bp.com/css
 *
 * Converted to LESS by @m6tt: m6tt.com/less-boilerplate
 */

/* Normalize */

/* =============================================================================
       HTML5 display definitions
       ========================================================================== */

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
nav,
section {
  display: block;
}
audio,
canvas,
video {
  display: inline-block;
  *display: inline;
  *zoom: 1;
}
audio:not([controls]) {
  display: none;
}
[hidden] {
  display: none;
}
/* =============================================================================
       Base
       ========================================================================== */

/*
     * 1. Correct text resizing oddly in IE6/7 when body font-size is set using em units
     * 2. Force vertical scrollbar in non-IE
     * 3. Prevent iOS text size adjust on device orientation change, without disabling user zoom: h5bp.com/g
     */

html {
  font-size: 100%;
  overflow-y: scroll;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}
body {
  margin: 0;
  font-size: 13px;
  line-height: 1.231;
}
body,
button,
input,
select,
textarea {
  font-family: sans-serif;
  color: #222222;
}
/*
     * Remove text-shadow in selection highlight: h5bp.com/i
     * These selection declarations have to be separate
     * Also: hot pink! (or customize the background color to match your design)
     */

::-moz-selection {
  background: yellow;
  color: #555555;
  text-shadow: none;
}
::selection {
  background: yellow;
  color: #555555;
  text-shadow: none;
}
/* =============================================================================
       Links
       ========================================================================== */

a {
  color: #0000ee;
}
a:visited {
  color: #551a8b;
}
a:hover {
  color: #0000ee;
}
a:focus {
  outline: thin dotted;
}
/* Improve readability when focused and hovered in all browsers: h5bp.com/h */

a:hover,
a:active {
  outline: 0;
}
/* =============================================================================
       Typography
       ========================================================================== */

abbr[title] {
  border-bottom: 1px dotted;
}
b,
strong {
  font-weight: bold;
}
blockquote {
  margin: 1em 40px;
}
dfn {
  font-style: italic;
}
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}
ins {
  background: #ffff99;
  color: black;
  text-decoration: none;
}
mark {
  background: yellow;
  color: black;
  font-style: italic;
  font-weight: bold;
}
/* Redeclare monospace font family: h5bp.com/j */

pre,
code,
kbd,
samp {
  font-family: monospace, serif;
  _font-family: 'courier new', monospace;
  font-size: 1em;
}
/* Improve readability of pre-formatted text in all browsers */

pre {
  white-space: pre;
  white-space: pre-wrap;
  word-wrap: break-word;
}
q {
  quotes: none;
}
q:before,
q:after {
  content: "";
  content: none;
}
small {
  font-size: 85%;
}
/* Position subscript and superscript content without affecting line-height: h5bp.com/k */

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sup {
  top: -0.5em;
}
sub {
  bottom: -0.25em;
}
/* =============================================================================
       Lists
       ========================================================================== */

ul,
ol {
  margin: 1em 0;
  padding: 0 0 0 40px;
}
dd {
  margin: 0 0 0 40px;
}
nav ul,
nav ol {
  list-style: none;
  list-style-image: none;
  margin: 0;
  padding: 0;
}
/* =============================================================================
       Embedded content
       ========================================================================== */

/*
     * 1. Improve image quality when scaled in IE7: h5bp.com/d
     * 2. Remove the gap between images and borders on image containers: h5bp.com/e
     */

img {
  border: 0;
  -ms-interpolation-mode: bicubic;
  vertical-align: middle;
}
/*
     * Correct overflow not hidden in IE9
     */

svg:not(:root) {
  overflow: hidden;
}
/* =============================================================================
       Figures
       ========================================================================== */

figure {
  margin: 0;
}
/* =============================================================================
       Forms
       ========================================================================== */

form {
  margin: 0;
}
fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}
/* Indicate that 'label' will shift focus to the associated form element */

label {
  cursor: pointer;
}
/*
     * 1. Correct color not inheriting in IE6/7/8/9
     * 2. Correct alignment displayed oddly in IE6/7
     */

legend {
  border: 0;
  *margin-left: -7px;
  padding: 0;
}
/*
     * 1. Correct font-size not inheriting in all browsers
     * 2. Remove margins in FF3/4 S5 Chrome
     * 3. Define consistent vertical alignment display in all browsers
     */

button,
input,
select,
textarea {
  font-size: 100%;
  margin: 0;
  vertical-align: baseline;
  *vertical-align: middle;
}
/*
     * 1. Define line-height as normal to match FF3/4 (set using !important in the UA stylesheet)
     * 2. Correct inner spacing displayed oddly in IE6/7
     */

button,
input {
  line-height: normal;
  *overflow: visible;
}
/*
     * Reintroduce inner spacing in 'table' to avoid overlap and whitespace issues in IE6/7
     */

table button,
table input {
  *overflow: auto;
}
/*
     * 1. Display hand cursor for clickable form elements
     * 2. Allow styling of clickable form elements in iOS
     */

button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
  cursor: pointer;
  -webkit-appearance: button;
}
/*
     * Consistent box sizing and appearance
     */

input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  padding: 0;
}
input[type="search"] {
  -webkit-appearance: textfield;
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}
/*
     * Remove inner padding and border in FF3/4: h5bp.com/l
     */

button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}
/*
     * 1. Remove default vertical scrollbar in IE6/7/8/9
     * 2. Allow only vertical resizing
     */

textarea {
  overflow: auto;
  vertical-align: top;
  resize: vertical;
}
/* Colors for form validity */

input:invalid,
textarea:invalid {
  background-color: #f0dddd;
}
/* =============================================================================
       Tables
       ========================================================================== */

table {
  border-collapse: collapse;
  border-spacing: 0;
}
td {
  vertical-align: top;
}
#cms .font-style-a {
  font-family: Verdana, sans-serif;
  font-size: 14px;
  font-weight: bold;
}
#cms .bordered-box {
  border: 1px solid #cccccc;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  margin-top: 10px;
  padding: 7px;
}
#cms .inset-shadow {
  box-shadow: inset 0 2px 10px rgba(128, 128, 128, 0.2);
}
BODY {
  margin: 0;
  height: 100%;
  font-family: Calibri, Verdana, Arial, sans-serif;
  font-size: 13px;
  background: #f3f3f3 url(/admin/images/backs/body.png) repeat 0 0;
  line-height: 120%;
}
A,
A:visited {
  color: #024a94;
}
INPUT,
TEXTAREA {
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  /* Firefox */
  -webkit-box-sizing: border-box;
  /* Safari */

}
HEADER {
  /*background: url("/admin/css/themes/v-17/images/bg.png") no-repeat scroll 0 0 transparent;*/
  height: 64px;
  position: relative;
}
HEADER .logo {
  position: absolute;
}
HEADER #login {
  position: absolute;
  right: 10px;
  top: 4px;
  color: #666666;
  font-size: 14px;
  text-align: right;
  text-shadow: 0 1px 0 white;
  min-width: 200px;
}
HEADER #login .commands {
  position: absolute;
  padding-top: 3px;
  right: 0;
}
HEADER #login .commands A {
  color: #333333 !important;
  text-decoration: none;
}
HEADER #login .commands A:hover {
  color: black !important;
}
HEADER #login .commands .btn {
  position: relative;
  padding: 0 10px 0 26px;
  height: 24px;
  line-height: 25px;
  border-radius: 5px;
}
HEADER #login .commands .btn i {
  position: absolute;
  left: 6px;
  top: 3px;
  width: 16px;
  height: 16px;
  background: transparent url(/admin/_ui/images/cms-sprite.png) no-repeat 0 0;
}
HEADER #login .commands .restartButton {
  color: #990000 !important;
}
HEADER #login .commands .restartButton:hover {
  color: #b30000 !important;
}
HEADER #login .commands .restartButton i {
  background-position: 0 -16px;
}
HEADER NAV {
  *zoom: 1;
  position: absolute;
  left: 274px;
  top: 26px;
}
HEADER NAV LI {
  float: left;
}
HEADER NAV LI A {
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  border-radius: 15px;
  color: #7d7d7d !important;
  background-color: gainsboro;
  border: 1px solid #c6c6c6;
  display: block;
  font-size: 15px;
  line-height: 16px;
  margin-right: 12px;
  text-decoration: none;
  padding: 3px 8px 4px 25px;
  position: relative;
}
HEADER NAV LI A:hover {
  color: #333333 !important;
  background-color: #e3e3e3;
}
HEADER NAV LI A:active {
  border: 1px solid #999999;
  box-shadow: 1px 1px 3px #aaaaaa inset;
  outline: medium none;
  color: black;
}
HEADER NAV LI A.selected {
  background-position: 6px 50%;
  color: #333333 !important;
  box-shadow: 1px 1px 3px #aaaaaa inset;
  border: 1px solid #999999;
}
HEADER NAV LI A i.icon {
  position: absolute;
  display: block;
  width: 16px;
  height: 16px;
  background: transparent url(/admin/_ui/images/cms-sprite.png) no-repeat 0 0;
  left: 6px;
}
HEADER NAV LI .id-1 .icon {
  background-position: -16px 0;
}
HEADER NAV LI .id-2 .icon {
  background-position: -32px 0;
}
HEADER NAV LI .id-3 .icon {
  background-position: -48px 0;
}
HEADER NAV LI .id-4 .icon {
  background-position: -64px 0;
}
HEADER NAV LI .id-5 .icon {
  background-position: -80px 0;
}
HEADER NAV LI .id-13 .icon {
  background-position: -96px 0;
}
HEADER NAV LI .cms-module-dropdown {
  position: absolute;
  background-color: #333333;
  border: 1px solid black;
  box-shadow: 4px 4px 5px #999999;
  color: white;
  display: none;
  line-height: 120%;
  padding: 10px 15px;
  position: absolute;
  top: 26px;
  width: 200px;
  z-index: 1000;
}
HEADER NAV LI .cms-module-dropdown A {
  border: 0;
  background-color: transparent;
  color: white !important;
  padding: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}
HEADER NAV LI .cms-module-dropdown A:hover {
  color: #aaaaaa !important;
  box-shadow: none;
}
HEADER NAV LI .cms-module-dropdown A.selected,
HEADER NAV LI .cms-module-dropdown A:active {
  box-shadow: none;
}
HEADER NAV LI .cms-module-dropdown LI {
  float: none;
}
HEADER NAV LI .cms-module-dropdown LI UL {
  padding: 2px 0 2px 10px;
}
HEADER NAV LI .cms-module-dropdown LI UL A {
  font-size: 12px;
}
#layout-left {
  float: left;
  width: 266px;
}
#layout-content {
  margin: 0 10px 0 267px;
  background-color: white;
  padding: 8px 10px 10px 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  -webkit-box-shadow: 0px 0px 2px rgba(64, 64, 64, 0.5);
  -moz-box-shadow: 0px 0px 2px rgba(64, 64, 64, 0.5);
  box-shadow: 0px 0px 2px rgba(64, 64, 64, 0.5);
}
#layout-content h1 {
  border-bottom: 1px solid #cccccc;
  color: #333333;
  margin: 0 0 10px !important;
  padding: 2px 0 6px 0;
  font-family: Verdana, sans-serif;
  font-size: 14px;
  font-weight: bold;
}
#admin-login {
  border: 1px solid #cccccc;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  margin-top: 10px;
  padding: 7px;
}
#admin-login STRONG {
  display: block;
}
.layout-left-inner {
  background: url("/admin/images/backs/left_column_inner_bottom.png") no-repeat scroll 0 100% transparent;
  margin: 14px 0 9px 7px;
  padding-bottom: 5px;
}
.layout-left-inner .bottom {
  background-image: url("/admin/images/backs/left_column_inner.png") !important;
  padding-bottom: 0;
}
.layout-left-inner .bottom .wrap {
  margin: 4px 0 4px 4px;
  padding: 0;
}
.layout-left-inner .bottom .wrap UL {
  padding: 6px 6px 6px 3px;
  list-style-type: none;
  margin: 0;
}
.layout-left-inner .bottom .wrap UL A {
  border-bottom: 1px solid white;
  padding-left: 3px;
  color: #666666;
  display: block;
  line-height: 20px;
  text-decoration: none;
}
.layout-left-inner .bottom .wrap UL A:hover {
  background-color: #eeeeee;
}
#leftnav LI UL {
  padding: 0 0 0 10px;
}
#leftnav LI A.selected {
  background: #eeeeee url("/admin/css/themes/v-17/images/icons/menu-item-selected.png") no-repeat scroll 98% 50%;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  box-shadow: 0 0 7px #cccccc inset;
  color: black;
  border-bottom: 1px solid white;
  padding-left: 3px;
  display: block;
  line-height: 20px;
  text-decoration: none;
}
#structure-details TR TD.cell-name {
  color: #444444;
  padding: 4px 3px 0 0;
  text-align: right;
  vertical-align: middle;
}
.radSelectTree {
  border: 1px solid #cccccc;
  border-bottom: 1px solid #999999;
  border-right: 1px solid #999999;
  background-color: white;
  width: 312px;
  position: absolute;
  height: 200px;
  z-index: 300;
  display: none;
  padding: 0px;
}
TABLE.logs {
  width: 100%;
}
TABLE.logs TR:nth-child(2n+1) {
  background-color: #fafafa;
}
TABLE.logs TD {
  border-bottom: 1px solid #cccccc;
}
.accept_button {
  text-indent: -600px;
  width: 14px;
  height: 14px;
  background: transparent url(/images/icons/accept_gray.gif) no-repeat 0 0;
  display: block;
  margin-right: 2px;
}
.accept_button:hover {
  background-image: url(/images/icons/accept.gif);
}
#structureTreeHolder {
  padding-top: 7px;
}
.sprite-image {
  background: transparent url(/admin/_ui/images/cms-sprite.png) no-repeat 0 0;
}
.sprite-image-gray {
  background: transparent url(/admin/_ui/images/cms-sprite-gray.png) no-repeat 0 0;
}
.margin-top {
  margin: 7px 0 0 0;
}
.border-standard {
  border: 1px solid #cccccc;
}
.border-standard-light {
  border: 1px solid #cccccc;
}
.radius-small {
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}
.radius-smaller {
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}
.cms-ui-buttons {
  position: relative;
  zoom: 1;
  margin: 3px 0;
}
.cms-ui-buttons:before {
  content: '';
  display: block;
}
.cms-ui-buttons:after {
  content: '';
  display: table;
  clear: both;
}
.cms-ui-buttons.pull-right {
  float: right;
}
.cms-ui-buttons.cms-ui-no-wrap .cms-ui-button {
  display: inline-block !important;
  float: none !important;
}
/* OVO JE IZ BOOTSTRAPA*/

.cms-ui-buttons + .cms-ui-buttons {
  margin-left: 5px;
}
.cms-ui-toolbar .cms-ui-buttons {
  display: inline-block;
}
.cms-ui-buttons BUTTON,
.cms-ui-buttons .btn {
  float: left;
  margin: 0 7px 0 -1px;
  font-family: Calibri, Helvetica, sans-serif;
  font-size: 12px;
  line-height: 18px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75);
  color: #444444;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  background-color: #f8f8f8;
  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
  -webkit-transition: background 0.2s ease-in-out 0s;
  -moz-transition: background 0.2s ease-in-out 0s;
  -o-transition: background 0.2s ease-in-out 0s;
  transition: background 0.2s ease-in-out 0s;
  /*ili linear*/
  background: -webkit-linear-gradient(top, #fafafa 0%, #f4f4f4 40%, #e5e5e5 100%);
  padding: 2px 6px;
  box-shadow: 0 1px 3px #dddddd;
  background-image: -moz-linear-gradient(top, white, #f3f3f3);
  background-image: -ms-linear-gradient(top, white, #f3f3f3);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(white), to(#f3f3f3));
  background-image: -webkit-linear-gradient(top, white, #f3f3f3);
  background-image: -o-linear-gradient(top, white, #f3f3f3);
  background-image: linear-gradient(top, white, #f3f3f3);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#e6e6e6', GradientType=0);
  filter: progid:dximagetransform.microsoft.gradient(enabled=false);
  border: 1px solid #bbbbbb;
}
.cms-ui-buttons BUTTON:hover,
.cms-ui-buttons .btn:hover {
  background: #fefefe;
  background: -webkit-linear-gradient(top, #fefefe 0%, #f8f8f8 40%, #fefefe 100%);
  background: -moz-linear-gradient(top, #fefefe 0%, #f8f8f8 40%, #fefefe 100%);
  background: -ms-linear-gradient(top, #fefefe 0%, #f8f8f8 40%, #fefefe 100%);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
  border: 1px solid #bbbbbb;
}
.cms-ui-buttons BUTTON:hover i.icon,
.cms-ui-buttons .btn:hover i.icon {
  background: transparent url(/admin/_ui/images/cms-sprite.png) no-repeat 0 0;
}
.cms-ui-buttons BUTTON:last-child,
.cms-ui-buttons .btn:last-child {
  margin-right: 0;
}
.cms-ui-buttons BUTTON:active,
.cms-ui-buttons .btn:active {
  background: #f4f4f4;
  background: -webkit-linear-gradient(top, #f4f4f4 0%, #efefef 40%, gainsboro 100%);
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.2);
}
.cms-ui-buttons BUTTON.mini,
.cms-ui-buttons .btn.mini {
  font-size: 11px;
  padding: 1px 5px;
}
.cms-ui-buttons BUTTON i.icon,
.cms-ui-buttons .btn i.icon {
  background: transparent url(/admin/_ui/images/cms-sprite-gray.png) no-repeat 0 0;
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 1px 3px 0 0;
}
.cms-ui-buttons BUTTON i.icon .i16,
.cms-ui-buttons .btn i.icon .i16 {
  width: 16px;
  height: 16px;
  margin: 1px 3px 0 0;
}
.cms-ui-buttons BUTTON i.icon .i12,
.cms-ui-buttons .btn i.icon .i12 {
  width: 12px;
  height: 12px;
  margin: 1px 3px 0 0;
}
.cms-ui-buttons BUTTON i.icon.icon-ok,
.cms-ui-buttons .btn i.icon.icon-ok {
  background-position: 0 -64px;
}
.cms-ui-buttons BUTTON i.icon.icon-add,
.cms-ui-buttons .btn i.icon.icon-add {
  background-position: -10px -64px;
}
.cms-ui-buttons BUTTON i.icon.icon-save,
.cms-ui-buttons .btn i.icon.icon-save {
  background-position: -20px -64px;
}
.cms-ui-buttons BUTTON i.icon.icon-save-child,
.cms-ui-buttons .btn i.icon.icon-save-child {
  background-position: -30px -64px;
}
.cms-ui-buttons BUTTON i.icon.icon-delete,
.cms-ui-buttons .btn i.icon.icon-delete {
  background-position: -40px -64px;
}
.cms-ui-buttons BUTTON i.icon.icon-search,
.cms-ui-buttons .btn i.icon.icon-search {
  background-position: -50px -64px;
}
.cms-ui-buttons BUTTON i.icon.icon-upload,
.cms-ui-buttons .btn i.icon.icon-upload {
  background-position: -60px -64px;
}
.cms-ui-buttons BUTTON i.icon.icon-email,
.cms-ui-buttons .btn i.icon.icon-email {
  background-position: 0px -74px;
}
.cms-ui-buttons BUTTON i.icon.icon-pdf,
.cms-ui-buttons .btn i.icon.icon-pdf {
  background-position: -70px -64px;
  width: 12px;
  height: 12px;
  margin: 1px 3px 0 0;
}
.cms-ui-buttons BUTTON i.icon.icon-excel,
.cms-ui-buttons .btn i.icon.icon-excel {
  background-position: -82px -64px;
  width: 12px;
  height: 12px;
  margin: 1px 3px 0 0;
}
.cms-ui-buttons BUTTON i.icon.icon-rotate,
.cms-ui-buttons .btn i.icon.icon-rotate {
  background-position: 0 -32px;
  width: 16px;
  height: 16px;
  margin: 1px 3px 0 0;
}
.cms-ui-buttons BUTTON i.icon.icon-smallcaps,
.cms-ui-buttons .btn i.icon.icon-smallcaps {
  background-position: -32px -32px;
  width: 16px;
  height: 16px;
  margin: 1px 3px 0 0;
}
.cms-ui-buttons BUTTON i.icon.icon-lowercase,
.cms-ui-buttons .btn i.icon.icon-lowercase {
  background-position: -48px -32px;
  width: 16px;
  height: 16px;
  margin: 1px 3px 0 0;
}
.cms-ui-buttons BUTTON i.icon.icon-uppercase,
.cms-ui-buttons .btn i.icon.icon-uppercase {
  background-position: -16px -32px;
  width: 16px;
  height: 16px;
  margin: 1px 3px 0 0;
}
.btn16icon {
  line-height: 14px !important;
  padding: 0 1px 0 6px !important;
  position: relative;
}
.btn16icon .icon {
  margin: 3px 3px 0 0 !important;
}
.cms-ui-toolbar BUTTON,
.cms-ui-toolbar .btn {
  margin-right: 0 !important;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}
.cms-ui-buttons BUTTON:first-child,
.cms-ui-buttons .btn:first-child {
  margin-left: 0;
  -webkit-border-top-left-radius: 4px;
  -moz-border-radius-topleft: 4px;
  border-top-left-radius: 4px;
  -webkit-border-bottom-left-radius: 4px;
  -moz-border-radius-bottomleft: 4px;
  border-bottom-left-radius: 4px;
}
.cms-ui-buttons BUTTON:last-child,
.cms-ui-buttons .btn:last-child,
.cms-ui-buttons .dropdown-toggle {
  -webkit-border-top-right-radius: 3px;
  -moz-border-radius-topright: 3px;
  border-top-right-radius: 3px;
  -webkit-border-bottom-right-radius: 3px;
  -moz-border-radius-bottomright: 3px;
  border-bottom-right-radius: 3px;
}
.cms-ui-buttons .btn.large:first-child {
  -webkit-border-top-left-radius: 6px;
  -moz-border-radius-topleft: 6px;
  border-top-left-radius: 6px;
  -webkit-border-bottom-left-radius: 6px;
  -moz-border-radius-bottomleft: 6px;
  border-bottom-left-radius: 6px;
  margin-left: 0;
}
.cms-ui-buttons .btn.large:last-child,
.cms-ui-buttons .large.dropdown-toggle {
  -webkit-border-top-right-radius: 6px;
  -moz-border-radius-topright: 6px;
  border-top-right-radius: 6px;
  -webkit-border-bottom-right-radius: 6px;
  -moz-border-radius-bottomright: 6px;
  border-bottom-right-radius: 6px;
}
.cms-ui-buttons .btn:hover,
.cms-ui-buttons .btn:focus,
.cms-ui-buttons .btn:active,
.cms-ui-buttons .btn.active {
  z-index: 2;
}
.cms-ui-buttons .dropdown-toggle:active,
.cms-ui-buttons.open .dropdown-toggle {
  outline: 0;
}
.cms-ui-buttons .dropdown-toggle {
  padding-left: 8px;
  padding-right: 8px;
  -webkit-box-shadow: inset 1px 0 0 rgba(255, 255, 255, 0.125), inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05) 1px 1px rgba(0, 0, 0, 0.6);
  -moz-box-shadow: inset 1px 0 0 rgba(255, 255, 255, 0.125), inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05) 1px 1px rgba(0, 0, 0, 0.6);
  box-shadow: inset 1px 0 0 rgba(255, 255, 255, 0.125), inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05) 1px 1px rgba(0, 0, 0, 0.6);
  *padding-top: 3px;
  *padding-bottom: 3px;
}
.cms-ui-buttons .btn-mini.dropdown-toggle {
  padding-left: 5px;
  padding-right: 5px;
  *padding-top: 1px;
  *padding-bottom: 1px;
}
.cms-ui-buttons .btn-small.dropdown-toggle {
  *padding-top: 4px;
  *padding-bottom: 4px;
}
.cms-ui-buttons .btn-large.dropdown-toggle {
  padding-left: 12px;
  padding-right: 12px;
}
.cms-ui-buttons.open .dropdown-menu {
  display: block;
  margin-top: 1px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}
.cms-ui-buttons.open .dropdown-toggle {
  background-image: none;
  -webkit-box-shadow: inset 0 1px 6px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05) 1px 1px rgba(0, 0, 0, 0.6);
  -moz-box-shadow: inset 0 1px 6px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05) 1px 1px rgba(0, 0, 0, 0.6);
  box-shadow: inset 0 1px 6px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05) 1px 1px rgba(0, 0, 0, 0.6);
}
.btn .caret {
  margin-top: 7px;
  margin-left: 0;
}
.btn:hover .caret,
.open.cms-ui-buttons .caret {
  opacity: 100;
  filter: alpha(opacity=(@value*100));
  filter: progid:DXImageTransform.Microsoft.Alpha(opacity=(@value*100));
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(opacity=(@value*100))";
  opacity: 1;
  filter: alpha(opacity=100);
}
.btn-mini .caret {
  margin-top: 5px;
}
.btn-small .caret {
  margin-top: 6px;
}
.btn-large .caret {
  margin-top: 6px;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid black;
}
.btn-primary .caret,
.btn-warning .caret,
.btn-danger .caret,
.btn-info .caret,
.btn-success .caret,
.btn-darker .caret,
.btn-inverse .caret,
.btn-blue .caret {
  border-top-color: #333333;
  border-bottom-color: #333333;
  opacity: 75;
  filter: alpha(opacity=(@value*100));
  filter: progid:DXImageTransform.Microsoft.Alpha(opacity=(@value*100));
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(opacity=(@value*100))";
  opacity: 0.75;
  filter: alpha(opacity=75);
}
.btn-darker {
  background-color: #f0f0f0 !important;
  background-image: -moz-linear-gradient(top, #f6f6f6, #e6e6e6) !important;
  background-image: -ms-linear-gradient(top, #f6f6f6, #e6e6e6) !important;
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#f6f6f6), to(#e6e6e6)) !important;
  background-image: -webkit-linear-gradient(top, #f6f6f6, #e6e6e6) !important;
  background-image: -o-linear-gradient(top, #f6f6f6, #e6e6e6) !important;
  background-image: linear-gradient(top, #f6f6f6, #e6e6e6) !important;
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f6f6f6', endColorstr='#e6e6e6', GradientType=0);
}
.btn-darker:hover {
  background-color: #f3f3f3 !important;
  background-image: -moz-linear-gradient(top, #f9f9f9, #e9e9e9) !important;
  background-image: -ms-linear-gradient(top, #f9f9f9, #e9e9e9) !important;
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#f9f9f9), to(#e9e9e9)) !important;
  background-image: -webkit-linear-gradient(top, #f9f9f9, #e9e9e9) !important;
  background-image: -o-linear-gradient(top, #f9f9f9, #e9e9e9) !important;
  background-image: linear-gradient(top, #f9f9f9, #e9e9e9) !important;
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f9f9f9', endColorstr='#e9e9e9', GradientType=0);
}
.btn-blue {
  background-color: #4a8ed2 !important;
  background-image: -moz-linear-gradient(top, #6aaaeb, #1a63ad) !important;
  background-image: -ms-linear-gradient(top, #6aaaeb, #1a63ad) !important;
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#6aaaeb), to(#1a63ad)) !important;
  background-image: -webkit-linear-gradient(top, #6aaaeb, #1a63ad) !important;
  background-image: -o-linear-gradient(top, #6aaaeb, #1a63ad) !important;
  background-image: linear-gradient(top, #6aaaeb, #1a63ad) !important;
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#6aaaeb', endColorstr='#1a63ad', GradientType=0);
  color: white !important;
  border-color: #629edc !important;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.5) !important;
}
.btn-blue:hover {
  background-color: #4c93db !important;
  background-image: -moz-linear-gradient(top, #6baced, #1d6ebf) !important;
  background-image: -ms-linear-gradient(top, #6baced, #1d6ebf) !important;
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#6baced), to(#1d6ebf)) !important;
  background-image: -webkit-linear-gradient(top, #6baced, #1d6ebf) !important;
  background-image: -o-linear-gradient(top, #6baced, #1d6ebf) !important;
  background-image: linear-gradient(top, #6baced, #1d6ebf) !important;
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#6baced', endColorstr='#1d6ebf', GradientType=0);
}
.btn-red {
  background-color: #c24232 !important;
  background-image: -moz-linear-gradient(top, #dc4a38, #9c3528) !important;
  background-image: -ms-linear-gradient(top, #dc4a38, #9c3528) !important;
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#dc4a38), to(#9c3528)) !important;
  background-image: -webkit-linear-gradient(top, #dc4a38, #9c3528) !important;
  background-image: -o-linear-gradient(top, #dc4a38, #9c3528) !important;
  background-image: linear-gradient(top, #dc4a38, #9c3528) !important;
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#dc4a38', endColorstr='#9c3528', GradientType=0);
  color: white !important;
  border-color: #dc4a38 !important;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.5) !important;
}
.btn-red:hover {
  background-color: #cd5041 !important;
  background-image: -moz-linear-gradient(top, #e05e4e, #b03c2d) !important;
  background-image: -ms-linear-gradient(top, #e05e4e, #b03c2d) !important;
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#e05e4e), to(#b03c2d)) !important;
  background-image: -webkit-linear-gradient(top, #e05e4e, #b03c2d) !important;
  background-image: -o-linear-gradient(top, #e05e4e, #b03c2d) !important;
  background-image: linear-gradient(top, #e05e4e, #b03c2d) !important;
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#e05e4e', endColorstr='#b03c2d', GradientType=0);
}
/*fef9c7*/

.btn-yellow {
  background-color: #faa732 !important;
  background-image: -moz-linear-gradient(top, #fbb450, #f89406) !important;
  background-image: -ms-linear-gradient(top, #fbb450, #f89406) !important;
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#fbb450), to(#f89406)) !important;
  background-image: -webkit-linear-gradient(top, #fbb450, #f89406) !important;
  background-image: -o-linear-gradient(top, #fbb450, #f89406) !important;
  background-image: linear-gradient(top, #fbb450, #f89406) !important;
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fbb450', endColorstr='#f89406', GradientType=0);
  color: white !important;
  background-color: #f89406;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  /*border-color: #dc4a38 !important;*/
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.5) !important;
}
.btn-yellow:hover {
  background-color: #cd5041 !important;
  background-image: -moz-linear-gradient(top, #e05e4e, #b03c2d) !important;
  background-image: -ms-linear-gradient(top, #e05e4e, #b03c2d) !important;
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#e05e4e), to(#b03c2d)) !important;
  background-image: -webkit-linear-gradient(top, #e05e4e, #b03c2d) !important;
  background-image: -o-linear-gradient(top, #e05e4e, #b03c2d) !important;
  background-image: linear-gradient(top, #e05e4e, #b03c2d) !important;
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#e05e4e', endColorstr='#b03c2d', GradientType=0);
}
BUTTON[disabled],
BUTTON.disabled,
.btn.disabled,
.btn[disabled] {
  cursor: default;
  background-image: none;
  background-color: #e6e6e6;
  opacity: 65;
  filter: alpha(opacity=(@value*100));
  filter: progid:DXImageTransform.Microsoft.Alpha(opacity=(@value*100));
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(opacity=(@value*100))";
  opacity: 0.65;
  filter: alpha(opacity=65);
  -webkit-box-shadow: none 1px 1px rgba(0, 0, 0, 0.6);
  -moz-box-shadow: none 1px 1px rgba(0, 0, 0, 0.6);
  box-shadow: none 1px 1px rgba(0, 0, 0, 0.6);
}
.cms-ui-btn-mini {
  padding: 2px 6px !important;
  font-size: 11px !important;
  line-height: 14px !important;
}
.cms-ui-buttons A {
  text-decoration: none;
}
.dropdown {
  position: relative;
}
.dropdown-toggle {
  *margin-bottom: -3px;
}
.dropdown-toggle:active,
.open .dropdown-toggle {
  outline: 0;
}
.caret {
  display: inline-block;
  width: 0;
  height: 0;
  vertical-align: top;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid black;
  opacity: 30;
  filter: alpha(opacity=(@value*100));
  filter: progid:DXImageTransform.Microsoft.Alpha(opacity=(@value*100));
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(opacity=(@value*100))";
  opacity: 0.3;
  filter: alpha(opacity=30);
  content: "";
}
.dropdown-toggle .caret {
  margin-top: 8px;
  margin-left: 2px;
}
.dropdown:hover .caret,
.open.dropdown .caret {
  opacity: 100;
  filter: alpha(opacity=(@value*100));
  filter: progid:DXImageTransform.Microsoft.Alpha(opacity=(@value*100));
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(opacity=(@value*100))";
  opacity: 1;
  filter: alpha(opacity=100);
}
.cms-ui-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  float: left;
  display: none;
  min-width: 160px;
  padding: 4px 0;
  margin: 0;
  list-style: none;
  background-color: white;
  border-color: #cccccc;
  border-color: rgba(0, 0, 0, 0.2);
  border-style: solid;
  border-width: 1px;
  -webkit-border-radius: 0 0 5px 5px;
  -moz-border-radius: 0 0 5px 5px;
  border-radius: 0 0 5px 5px;
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2) 1px 1px rgba(0, 0, 0, 0.6);
  -moz-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2) 1px 1px rgba(0, 0, 0, 0.6);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2) 1px 1px rgba(0, 0, 0, 0.6);
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
  *border-right-width: 2px;
  *border-bottom-width: 2px;
}
.cms-ui-dropdown-menu.pull-right {
  right: 0;
  left: auto;
}
.cms-ui-dropdown-menu .divider {
  height: 1px;
  margin: 8px 1px;
  overflow: hidden;
  background-color: #e5e5e5;
  border-bottom: 1px solid white;
  *width: 100%;
  *margin: -5px 0 5px;
}
.cms-ui-dropdown-menu a {
  display: block;
  padding: 3px 15px;
  clear: both;
  font-weight: normal;
  line-height: 18px;
  color: #333333;
  white-space: nowrap;
}
.cms-ui-dropdown-menu li > a:hover,
.cms-ui-dropdown-menu .active > a,
.cms-ui-dropdown-menu .active > a:hover {
  color: white;
  text-decoration: none;
  background-color: #0088cc;
}
.dropdown.open {
  *z-index: 1000;
}
.dropdown.open .dropdown-toggle {
  color: white;
  background: #cccccc;
  background: rgba(0, 0, 0, 0.3);
}
.dropdown.open .cms-ui-dropdown-menu {
  display: block;
}
.pull-right .cms-ui-dropdown-menu {
  left: auto;
  right: 0;
}
.dropup .caret,
.navbar-fixed-bottom .dropdown .caret {
  border-top: 0;
  border-bottom: 4px solid black;
  content: "\2191";
}
.dropup .cms-ui-dropdown-menu,
.navbar-fixed-bottom .dropdown .cms-ui-dropdown-menu {
  top: auto;
  bottom: 100%;
  margin-bottom: 1px;
}
.typeahead {
  margin-top: 2px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}
/* AJAX DROPDOWN */

.cms-ui-ajaxdropdown {
  position: relative;
  border: 1px solid #aaaaaa;
  border-bottom-color: #cccccc;
  border-right-color: #cccccc;
  padding: 2px 4px;
  background: white url(/images/icons/ajaxdropdown.png) no-repeat 100% 50% !important;
  height: 16px;
}
.cms-ui-ajaxdropdown:hover {
  border-bottom-color: #aaaaaa;
  background-color: #ffffdd;
  background-image: url(/images/icons/ajaxdropdown-hover.png) !important;
  cursor: pointer;
  -moz-user-select: none;
}
.cms-ui-ajaxdropdown-text {
  position: absolute;
  background-color: transparent !important;
}
.cms-ui-ajaxdropdown-content {
  overflow: hidden;
  display: block;
  position: absolute;
  top: 20px;
  left: -1px;
  box-shadow: 3px 3px 5px rgba(64, 64, 64, 0.3);
  /*padding: 5px; 
		
		border:5px solid #6f83b7; 
		-moz-border-radius: 5px; 
		background-color: #f3f3f3;*/
  background-color: white !important;
  border: 1px solid #aaaaaa;
}
.cms-ui-ajaxdropdown-content DIV.inner {
  background-color: white !important;
  overflow-y: scroll;
  padding: 2px !important;
}
.cms-ui-ajaxdropdown-content DIV.inner UL {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.cms-ui-ajaxdropdown-content DIV.inner UL LI {
  padding-left: 0;
  background-color: white;
}
.cms-ui-ajaxdropdown-content DIV.inner UL LI B {
  border-bottom: 1px solid #dddddd;
  display: block;
  font-weight: normal;
  padding-left: 0;
}
.cms-ui-ajaxdropdown-content DIV.inner UL LI B::hover {
  background-color: #ffffee;
}
.cms-ui-ajaxdropdown-content DIV.inner UL LI LI B {
  padding-left: 12px;
}
.cms-ui-ajaxdropdown-content DIV.inner UL LI LI LI B {
  padding-left: 24px;
}
.cms-ui-ajaxdropdown-content DIV.inner UL LI LI LI LI B {
  padding-left: 36px;
}
/* DROPDOWN */

.cms-ui-dropdown-container {
  border: 1px solid #999999;
  padding: 1px;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
}
.cms-ui-dropdown-container A.cms-ui-dropdown {
  padding: 1px 15px 1px 5px;
  font-size: 11px;
  text-decoration: none;
  color: #333333;
  background: transparent url(img/dropdown.png) no-repeat 100% 0;
}
.cms-ui-dropdown-container A.cms-ui-dropdown:hover,
.cms-ui-dropdown-container A.cms-ui-dropdown:active {
  background-position: 100% -17px;
}
.cms-ui-dropdown-content {
  padding: 2px 5px;
  background-color: white;
  min-width: 100px;
  border: 1px solid #cccccc;
  border-top: none;
  border-right: 1px solid #999999;
  border-bottom: 2px solid #777777;
  -moz-border-radius-bottomright: 4px;
  -webkit-border-radius-bottomright: 4px;
  -moz-border-radius-bottomleft: 4px;
  -webkit-border-radius-bottomleft: 4px;
}
.cms-ui-dropdown-content UL {
  padding: 0;
  margin: 0;
  list-style-type: none;
  text-align: left;
}
.cms-ui-dropdown-content UL LI {
  border: 1px solid white;
  border-bottom: 1px solid #eeeeee;
  padding: 2px 3px;
}
.cms-ui-dropdown-content UL LI:hover {
  border: 1px solid #bee6fd;
  background-color: #f9fdff;
}
.cms-ui-dropdown-container-selected {
  border-bottom: 0;
  background: white;
  -moz-border-radius-bottomright: 0;
  -webkit-border-radius-bottomright: 0;
  -moz-border-radius-bottomleft: 0;
  -webkit-border-radius-bottomleft: 0;
}
.cms-ui-dropdown-container-selected A.cms-ui-dropdown {
  background-image: none;
  background: white url(/images/icons/diagona/03/10/01_off.png) no-repeat 98% 3px;
}
.cms-ui-label {
  padding: 1px 4px 2px;
  font-size: 10.998px;
  font-weight: bold;
  line-height: 13px;
  color: white;
  vertical-align: middle;
  white-space: nowrap;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  background-color: #999999;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}
.cms-ui-label:hover {
  color: white;
  text-decoration: none;
}
.label-important {
  background-color: #b94a48;
}
.label-important:hover {
  background-color: #953b39;
}
.label-warning {
  background-color: #f89406;
}
.label-warning:hover {
  background-color: #c67605;
}
.label-success {
  background-color: #468847;
}
.label-success:hover {
  background-color: #356635;
}
.label-info {
  background-color: #3a87ad;
}
.label-info:hover {
  background-color: #2d6987;
}
.label-inverse {
  background-color: #333333;
}
.label-inverse:hover {
  background-color: #1a1a1a;
}
.label-full {
  width: 90%;
  display: inline-block;
  text-align: center;
}
.cms-ui-fieldset,
.cms-ui-fieldset-small {
  border: 1px solid #cccccc;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  padding: 10px;
}
.cms-ui-fieldset LEGEND,
.cms-ui-fieldset-small LEGEND {
  border: 1px solid #cccccc;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  padding: 0px 7px;
  font-weight: bold;
  background-color: #f4f3f5;
  color: #35323c;
  box-shadow: 0 3px 1px rgba(0, 0, 0, 0.04) inset;
}
.cms-ui-fieldset HR,
.cms-ui-fieldset-small HR {
  border: 0;
  border-bottom: 1px solid #e6e6e6;
  margin: 7px 0;
  /*box-shadow: 0 0 2px #999;*/

}
.cms-ui-fieldset H2,
.cms-ui-fieldset-small H2 {
  border-bottom: 1px solid #e6e6e6;
  color: black;
  font-size: 16px;
  font-weight: normal;
  margin: 10px 0 5px;
  padding-left: 75px;
}
.cms-ui-fieldset-small {
  margin-bottom: 10px;
}
.cms-ui-fieldset-small LEGEND {
  color: #555555;
  font-weight: normal;
  text-shadow: 1px 1px 0 white;
}
.cms-ui-wrapper {
  zoom: 1;
}
.cms-ui-wrapper:before {
  content: '';
  display: block;
}
.cms-ui-wrapper:after {
  content: '';
  display: table;
  clear: both;
}
.cms-ui-panel {
  float: left;
}
.cms-ui-panel + .cms-ui-panel {
  margin-left: 10px;
}
.cms-ui-pane {
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  background-color: #f3f3f3;
  padding: 4px;
  margin-bottom: 10px;
}
.cms-ui-pane TH {
  text-align: left;
}
.cms-ui-pane .cms-ui-pane-title {
  color: #222222;
  line-height: 100%;
  padding: 1px 0 0 5px;
  line-height: 24px;
  text-shadow: 1px 1px 0 white;
  font-weight: bold;
  display: block;
  margin: 0;
  background-color: #e6e6e6;
}
.cms-ui-pane .cms-ui-pane-topbar {
  padding: 2px;
  background-color: #e6e6e6;
}
.cms-ui-pane .cms-ui-pane-topbar SPAN.cms-ui-pane-title {
  color: #222222;
  line-height: 100%;
  padding: 1px 0 0 5px;
  line-height: 24px;
  text-shadow: 1px 1px 0 white;
  font-weight: bold;
  display: block;
  margin: 0;
  background-color: #e6e6e6;
}
.cms-ui-pane .cms-ui-pane-main {
  border: 1px solid #e6e6e6;
}
.cms-ui-pane TABLE {
  width: 100%;
}
.cms-ui-pane TABLE TR TD {
  padding: 2px;
}
TR.cms-ui-table-footer TD {
  background-color: #fcfcfc !important;
}
.cms-ui-table-zebra {
  width: 100%;
  /*TR:last-child TD {
		border-bottom: 0;
	}*/

  /*TR:hover TD {
		background-color: #eaf6fd;
	}*/

}
.cms-ui-table-zebra THEAD TH {
  border-bottom: 1px solid #e6e6e6;
  background-color: #eeeeee;
}
.cms-ui-table-zebra TFOOT TR TD {
  border-bottom: none;
  background-color: #eeeeee;
}
.cms-ui-table-zebra TR TD {
  border-bottom: 1px solid #e6e6e6;
  padding: 2px;
}
.cms-ui-table-zebra TR TD TABLE TD {
  border-bottom: none;
  padding: 0;
}
.cms-ui-table-zebra .cms-ui-selected-row TD {
  background-color: lightyellow !important;
}
.cms-ui-table-zebra .cms-ui-selected-row:hover TD {
  background-color: #ffffea !important;
}
.cms-ui-table-zebra .cms-ui-disabled-row TD {
  color: #999999;
}
.cms-ui-table-zebra TABLE TR:nth-child(2n+1) TD,
.cms-ui-table-zebra TABLE TR:nth-child(2n+1):hover TD {
  background-color: inherit !important;
}
.cms-ui-table-zebra TBODY TR:nth-child(2n) TD {
  background-color: #f3f3f3;
}
.cms-ui-table-zebra TBODY TR:nth-child(2n):hover:not(.cms-ui-no-highlight) TD {
  background-color: #f8f8f8;
}
.cms-ui-table-zebra TBODY TR:nth-child(2n+1) TD {
  background-color: #fafafa;
}
.cms-ui-table-zebra TBODY TR:nth-child(2n+1):hover:not(.cms-ui-no-highlight) TD {
  background-color: white;
}
.cms-ui-table-details {
  width: 100%;
  /*TR:hover TD {
		background-color: inherit;
	}*/

}
.cms-ui-table-details.cms-ui-table-zebra INPUT[type="checkbox"] {
  margin-top: 3px;
}
.cms-ui-table-details.cms-ui-table-zebra TR:last-child TD {
  border-bottom: 0;
}
.cms-ui-table-details  > TBODY > TR > TD INPUT[type=text],
.cms-ui-table-details  > TBODY > TR > TD INPUT[type=password],
.cms-ui-table-details  > TBODY > TR > TD TEXTAREA {
  width: 100%;
}
.cms-ui-table-details  > TBODY > TR > TD:first-child {
  text-align: right;
  padding-right: 10px;
  padding-top: 5px;
}
.cms-ui-table-details  > TBODY > TR > TD INPUT[type="text"] {
  border-color: #abadb3 #dbdfe6 #e3e9ef #e2e3ea;
  border-radius: 3px 3px 3px 3px;
  border-style: solid;
  border-width: 1px;
  padding: 2px;
}
.cms-ui-table-details  > TBODY > TR > TD INPUT[type="text"]:focus {
  background-color: #fff7d7;
}
.cms-ui-table-details HR {
  border: 0;
  border-top: 1px solid #cccccc;
  border-bottom: 1px solid #f6f6f6;
  margin: 2px 0 2px 7px;
}
.cms-ui-table-middle TR TD {
  vertical-align: middle;
}
.cms-ui-cmdlink {
  font-size: 11px;
  outline: medium none;
  padding-left: 12px;
  text-transform: uppercase;
  color: #01182f;
}
.cms-ui-cmdlink:hover {
  color: #024a94;
}
A.cms-ui-cmdlink-delete,
A.cms-ui-cmdlink-edit {
  font-size: 11px;
  outline: medium none;
  padding-left: 12px;
  text-transform: uppercase;
  color: #01182f;
  padding-left: 18px;
  padding-right: 3px;
}
A.cms-ui-cmdlink-delete:hover,
A.cms-ui-cmdlink-edit:hover {
  color: #024a94;
}
.cms-ui-cmdlink-delete {
  background: transparent url(/images/icons/delete-small-off.png) no-repeat 4px 2px;
}
.cms-ui-cmdlink-delete:hover {
  background-image: url(../../images/icons/delete-small.png);
}
.cms-ui-cmdlink-edit {
  background: transparent url(/images/icons/edit-small.png) no-repeat 4px 2px;
}
.cms-ui-cmdlink-edit.cms-ui-link-bg-preview {
  background-image: url(../../images/icons/preview.png);
}
.cms-ui-cmdlink-edit.cms-ui-link-compare {
  background-image: url(/images/icons/diagona/01/10/49.png);
}
.cms-ui-text-big-inset {
  font-family: Arial, Helvetica, sans-serif;
  font-weight: bold;
  font-size: 16px;
  color: #999999;
  text-shadow: 1px 1px 0px rgba(255, 255, 255, 0.5);
}
.cms-ui-text-big-inset B {
  color: black;
}
.cms-ui-text-big-inset B.red {
  color: red;
}
.cms-ui-message-inline {
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  display: inline-block;
  border: 1px solid #cccccc;
  color: #888888;
  font-style: italic;
  padding: 0 10px;
  line-height: 24px;
}
.cms-ui-message {
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  margin: 7px 0 0 0;
  background-color: #fff6f6;
  border: 1px solid red;
  color: red;
  padding: 5px 5px 5px 26px;
  position: relative;
}
.cms-ui-message.error {
  border-color: #ff8080;
  color: red;
}
.cms-ui-message.info {
  background-color: #f6f6ff;
  border-color: #c5dbec;
  padding: 5px 5px 5px 26px;
  color: #666666;
  line-height: 120%;
  font-size: 10px;
}
.cms-ui-message.info i.icon {
  background-position: -16px -16px;
}
.cms-ui-message i.icon {
  background: transparent url(/admin/_ui/images/cms-sprite.png) no-repeat 0 0;
  background-position: 0 -16px;
  position: absolute;
  display: block;
  width: 16px;
  height: 16px;
  top: 5px;
  left: 5px;
}
/* UL which resembles tree*/

.cms-ui-tree-like {
  font-weight: bold;
  list-style-type: none;
  padding: 0;
}
.cms-ui-tree-like UL {
  padding: 0;
  margin: 2px 0;
  list-style-type: none;
}
.cms-ui-tree-like LI LI {
  margin-left: 10px;
  font-weight: normal;
  border-bottom: 1px solid #cccccc;
}
.cms-ui-tree-like LI LI LI:last-child {
  border-bottom: 0;
}
.cms-ui-tree-like LI LI INPUT {
  margin-right: 5px;
}
TABLE.cms-ui-table-flex {
  width: auto !important;
}
DIV.cms-ui-pane .cms-ui-inset {
  background-color: #f6f6f6;
  border-top: 1px solid #eeeeee;
  box-shadow: 0 0 15px white inset;
  padding: 5px;
}
/* SMALL DETAILS */

/* ZEBRA TABLE */

TABLE.cms-ui-table-details-small {
  border-collapse: collapse;
  border-spacing: 0;
  border-width: 0;
  width: 100%;
}
TABLE.cms-ui-table-details-small THEAD TH {
  font-family: Verdana;
  font-size: 10px;
  line-height: 1.2em;
  letter-spacing: 0;
  text-align: left;
  word-spacing: normal;
  padding: 2px;
  font-variant: small-caps;
  font-weight: bold;
  border-top: 0;
  border-bottom: 1px solid #aaaaaa;
  background-color: white;
  color: #999999;
}
TABLE.cms-ui-table-details-small TR TD {
  border-bottom: 1px solid #dddddd;
  margin: 0;
  padding: 1px !important;
  vertical-align: top;
}
TABLE.cms-ui-table-details-small TR TD.cms-ui-first-cell {
  vertical-align: middle;
  text-align: right;
  color: #333333;
}
TABLE.cms-ui-table-details-small TR TD INPUT[type=text] {
  width: 100%;
}
TABLE.cms-ui-table-details-small TR TD A {
  color: #024a94;
}
TABLE.cms-ui-table-details-small TR TD A:hover {
  color: black;
}
TABLE.cms-ui-table-details-small TR.cms-ui-alt-row TD {
  background-color: #f9f9f9;
}
TABLE.cms-ui-table-details-small TR.cms-ui-selected-row TD {
  background-color: lightyellow;
}
TABLE.cms-ui-table-details-small TR.cms-ui-hover-row TD {
  background-color: #eafeec;
}
TABLE.cms-ui-table-details-small TR.cms-ui-disabled-row TD {
  color: #999999;
}
.cms-ui-cmdbuttons-cell {
  background-color: #e6e6e6;
}
.cms-ui-cmdbuttons-cell INPUT {
  font-size: 11px;
}
TABLE.cms-ui-table-details-small-flex TR TD {
  padding: 0px 5px 2px 0;
}
TABLE.cms-ui-no-border TR TD {
  border: 0;
}
INPUT.cms-ui-form-input,
INPUT.cms-ui-form-input-medium {
  width: 100%;
  font-size: 12px;
}
INPUT.cms-ui-form-input-medium {
  font-size: 14px;
}
/* CMS UI TABS*/

.cms-ui-tabs-container {
  margin: 5px;
}
UL.cms-ui-tabs {
  padding: 0;
  margin: 0;
  list-style-type: none;
  height: 22px;
}
UL.cms-ui-tabs LI {
  float: left;
}
UL.cms-ui-tabs LI A {
  display: block;
  font-size: 12px;
  color: #0b163b;
  text-decoration: none;
  font-weight: bold;
  padding: 3px 5px;
  line-height: 16px;
  height: 16px;
  text-shadow: white 1px 1px 0;
}
UL.cms-ui-tabs LI A:hover {
  color: black;
  text-shadow: none;
}
UL.cms-ui-tabs LI A.selected {
  color: white;
  background-color: #629edc;
  text-shadow: #333333 1px 1px 0;
}
.cms-ui-tabs-content {
  background-color: #629edc;
  padding: 1px;
  display: none;
}
.cms-ui-tabs-content DIV.bg {
  background-color: #d8e8f7;
}
.cms-ui-tabs-content TABLE {
  width: 100%;
}
.cms-ui-tabs-content TABLE.cms-ui-table-zebra TD {
  border-bottom: 0;
}
.cms-ui-tabs-content TABLE.cms-ui-table-zebra TR:nth-child(2n+1) TD {
  background-color: #e3eef9;
}
.cms-ui-tabs-content HR.table-sep {
  color: #629edc;
  border-color: #629edc;
  margin: 7px 0 3px 0;
  border-bottom: 1px solid white;
}
.cms-ui-tabs-content FIELDSET {
  border-color: #a1c5ea;
}
.cms-ui-tabs-content FIELDSET LEGEND {
  border-color: #a1c5ea;
  background-color: #f4f8fd;
  color: #222222;
}
/* PAGER*/

.cms-ui-pager {
  width: auto !important;
  border: 0 !important;
  background-image: none;
  opacity: 0.4;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 11px;
  transition: all 0.5s;
  -moz-transition: all 0.5s;
  /* Firefox 4 */
  -webkit-transition: all 0.5s;
  /* Safari and Chrome */

}
.cms-ui-pager:hover {
  opacity: 1;
}
.cms-ui-pager TD {
  padding: 0 2px 0 0 !important;
  vertical-align: middle;
}
.cms-ui-pager TD A,
.cms-ui-pager TD SPAN {
  display: inline-block;
  padding: 0 1px;
  text-decoration: none;
}
.cms-ui-pager TD A {
  font-size: 16px;
}
.cms-ui-pager TD A:hover {
  color: black;
}
.cms-ui-pager TD TD {
  padding: 0 2px 0 0 !important;
}
.cms-ui-pager TD INPUT {
  font-size: 10px;
  text-align: center;
  padding: 1px;
}
.cms-ui-pager TD SELECT {
  font-size: 10px;
}
/* CMS UI TAB COLORS*/

.cms-ui-color-white-tabs {
  margin: 0;
}
.cms-ui-color-white-tabs UL.cms-ui-tabs LI A {
  color: #666666;
  text-shadow: white 1px 1px 0;
}
.cms-ui-color-white-tabs UL.cms-ui-tabs LI A:hover {
  color: #333333;
  text-shadow: none;
}
.cms-ui-color-white-tabs UL.cms-ui-tabs LI A.selected {
  color: black;
  background-color: #cccccc;
  text-shadow: white 1px 1px 0;
}
.cms-ui-color-white-tabs .cms-ui-tabs-content {
  background-color: white;
  border: 1px solid #dddddd;
  padding: 1px;
}
.cms-ui-color-white-tabs .cms-ui-tabs-content DIV.bg {
  background-color: white;
}
.cms-ui-color-white-tabs .cms-ui-tabs-content TABLE.cms-ui-table-zebra TR:nth-child(2n+1) TD {
  background-color: #fafafa;
}
.cms-ui-datepicker {
  width: 94px !important;
  background-image: url(/images/icons/calendar-off.png);
  background-position: 99% 50%;
  background-repeat: no-repeat;
  border-top: 1px solid #abadb3;
  border-right: 1px solid #dbdfe6;
  border-bottom: 1px solid #e3e9ef;
  border-left: 1px solid #e2e3ea;
  border-radius: 2px;
  padding: 2px;
}
.cms-ui-datepicker:focus {
  background-color: #fff7d7;
}
.cms-ui-datepicker:hover {
  border-top: 1px solid #5794bf;
  border-right: 1px solid #b7d5ea;
  border-bottom: 1px solid #c7e2f1;
  border-left: 1px solid #c5daed;
}
.cms-ui-form-title {
  border-bottom: 1px solid #cccccc;
}
.cms-ui-form-title  + INPUT {
  margin-top: 5px;
}
.cms-ui-form-title-small {
  text-align: left;
  text-shadow: 1px 1px 0 white;
}
.cms-ui-table-filter TD {
  padding: 2px !important;
  vertical-align: middle !important;
}
.cms-ui-table-filter TD .cms-ui-buttons {
  margin: 0 !important;
}
.cms-ui-table-filter TD .cms-ui-pane {
  margin: 0;
  padding: 3px 4px;
  background-color: white;
}
.cms-ui-no-wrap {
  white-space: nowrap;
}
.cms-ui-table-vertical-row {
  background: transparent url(../_ui/images/cms-vertical-separator.png) repeat-y 50% 0;
}
.cms-ui-clickable-title {
  border-bottom: 1px solid transparent;
  cursor: pointer;
}
.cms-ui-clickable-title:hover {
  border-color: #333333;
}
input[type="checkbox"],
input[type="radio"] {
  margin-right: 3px;
}
.cms-ui-yes-no {
  background: transparent url(/images/icons/diagona/03/10/02.png) no-repeat 50% 50%;
}
.cms-ui-yes-no B {
  display: none;
}
.cms-ui-yes-no.no {
  background-image: url(/images/icons/diagona/03/10/01_off.png);
}
.cms-ui-yes-no:after {
  content: '.';
  visibility: hidden;
}
.cms-ui-star {
  background: transparent url(/images/icons/diagona/01/10/31.png) no-repeat 50% 50%;
}
.cms-ui-star B {
  display: none;
}
.cms-ui-star.no {
  background-image: url(/images/icons/diagona/01/10/31off.png);
}
.cms-ui-star:after {
  content: '.';
  visibility: hidden;
}
/* CMS UI CLEAN */

.cms-ui-pane.cms-ui-clean {
  border-radius: 0;
  margin: 0;
  background-color: white;
}
.cms-ui-pane.cms-ui-clean .cms-ui-pane-topbar {
  margin: 0;
  background-color: white;
  padding: 0;
  padding-bottom: 8px;
}
.cms-ui-pane.cms-ui-clean .cms-ui-pane-main {
  margin: 0;
  border: 0;
  border-top: 2px solid #e3e3e3;
}
.cms-ui-pane.cms-ui-clean BUTTON {
  background-color: #f0f0f0;
}
.cms-ui-pane.cms-ui-clean SPAN.date {
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.12) inset;
}
/* VARIOUS DESIGNED DIVs */

.cms-ui-warning-panel,
.cms-ui-error-message {
  border: 1px solid red;
  padding: 5px 5px 5px 26px;
  background: transparent url(/images/icons/diagona/01/16/50.png) no-repeat 5px 5px;
  color: Red;
  background-color: #fff6f6;
  margin-bottom: 5px;
  border-radius: 5px;
}
.cms-ui-list-records {
  float: left;
  background-color: #f1f1f1;
  margin-right: 10px;
  padding: 0 5px;
}
.cms-ui-list-records B {
  color: #024a94;
}
.cms-ui-separator {
  margin-top: 10px;
  margin-bottom: 10px;
  border-top: 1px solid #d6d6d6;
  height: 1px;
  position: relative;
}
.cms-ui-separator .cms-ui-title {
  color: #024a94;
  font-size: 11px;
  line-height: 11px;
  font-weight: bold;
  background-color: white;
  position: absolute;
  display: block;
  top: -5px;
  padding: 0 6px 0 2px;
}
/* FOR AUTOCOMPLETE */

/* ==|== endos ==============================================================
   Please define your styles before this section.
   ========================================================================== */

/* For image replacement */

.ir {
  display: block;
  border: 0;
  text-indent: -999em;
  overflow: hidden;
  background-color: transparent;
  background-repeat: no-repeat;
  text-align: left;
  direction: ltr;
}
.ir br {
  display: none;
}
/* Hide from both screenreaders and browsers: h5bp.com/u */

.hidden {
  display: none !important;
  visibility: hidden;
}
/* Hide only visually, but have it available for screenreaders: h5bp.com/v */

.visuallyhidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}
/* Extends the .visuallyhidden class to allow the element to be focusable when navigated to via the keyboard: h5bp.com/p */

.visuallyhidden.focusable:active,
.visuallyhidden.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  width: auto;
}
/* Hide visually and from screenreaders, but maintain layout */

.invisible {
  visibility: hidden;
}
/* Contain floats: h5bp.com/q */

.clearfix:before,
.clearfix:after {
  content: "";
  display: table;
}
.clearfix:after {
  clear: both;
}
.clearfix {
  *zoom: 1;
}
@media print {
  * {
    background: transparent !important;
    color: black !important;
    box-shadow: none !important;
    text-shadow: none !important;
    filter: none !important;
    -ms-filter: none !important;
  }
  /* Black prints faster: h5bp.com/s */
  
  a,
  a:visited {
    text-decoration: underline;
  }
  a[href]:after {
    content: " (" attr(href) ")";
  }
  abbr[title]:after {
    content: " (" attr(title) ")";
  }
  .ir a:after,
  a[href^="javascript:"]:after,
  a[href^="#"]:after {
    content: "";
  }
  /* Don't show links for images, or javascript/internal links */
  
  pre,
  blockquote {
    border: 1px solid #999999;
    page-break-inside: avoid;
  }
  thead {
    display: table-header-group;
  }
  /* h5bp.com/t */
  
  tr,
  img {
    page-break-inside: avoid;
  }
  img {
    max-width: 100% !important;
  }
  @page {
    margin: 0.5cm;
  }
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }
  h2,
  h3 {
    page-break-after: avoid;
  }
}
