/*
 * Metro UI CSS v 0.1.6
 * Copyright 2012 Sergey Pimenov
 * Licensed under the MIT Lilcense
 */
/*! normalize.css 2012-03-11T12:53 UTC - http://github.com/necolas/normalize.css */
/* =============================================================================
   HTML5 display definitions
   ========================================================================== */
/*
 * Corrects block display not defined in IE6/7/8/9 & FF3
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
nav,
section,
summary {
  display: block;
}
/*
 * Corrects inline-block display not defined in IE6/7/8/9 & FF3
 */
audio,
canvas,
video {
  display: inline-block;
  *display: inline;
  *zoom: 1;
}
/*
 * Prevents modern browsers from displaying 'audio' without controls
 * Remove excess height in iOS5 devices
 */
audio:not([controls]) {
  display: none;
  height: 0;
}
/*
 * Addresses styling for 'hidden' attribute not present in IE7/8/9, FF3, S4
 * Known issue: no IE6 support
 */
[hidden] {
  display: none;
}
/* =============================================================================
   Base
   ========================================================================== */
/*
 * 1. Corrects text resizing oddly in IE6/7 when body font-size is set using em units
 *    http://clagnut.com/blog/348/#c790
 * 2. Prevents iOS text size adjust after orientation change, without disabling user zoom
 *    www.456bereastreet.com/archive/201012/controlling_text_size_in_safari_for_ios_without_disabling_user_zoom/
 */
html {
  font-size: 100%;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
  -ms-text-size-adjust: 100%;
  /* 2 */
}
/*
 * Addresses font-family inconsistency between 'textarea' and other form elements.
 */


/* =============================================================================
   Typography
   ========================================================================== */
/*
 * Addresses styling not present in IE7/8/9, S5, Chrome
 */
abbr[title] {
  border-bottom: 1px dotted;
}
/*
 * Addresses style set to 'bolder' in FF3+, S4/5, Chrome
*/
b, strong {
  font-weight: bold;
}
blockquote {
  margin: 1em 40px;
}
/*
 * Addresses styling not present in S5, Chrome
 */
dfn {
  font-style: italic;
}
/*
 * Addresses styling not present in IE6/7/8/9
 */
mark {
  background: #ff0;
  color: #000;
}
/*
 * Addresses margins set differently in IE6/7
 */
p,
pre {
  margin: 1em 0;
}
/*
 * Corrects font family set oddly in IE6, S4/5, Chrome
 * en.wikipedia.org/wiki/User:Davidgothberg/Test59
 */
pre,
code,
kbd,
samp {
  font-family: monospace, serif;
  _font-family: 'courier new', monospace;
  font-size: 1em;
}
/*
 * Improves readability of pre-formatted text in all browsers
 */
pre {
  white-space: pre;
  white-space: pre-wrap;
  word-wrap: break-word;
}
/*
 * 1. Addresses CSS quotes not supported in IE6/7
 * 2. Addresses quote property not supported in S4
 */
/* 1 */
q {
  quotes: none;
}
/* 2 */
q:before,
q:after {
  content: '';
  content: none;
}
/*small {
  font-size: 11px;
  line-height:15px;
}*/
/*
 * Prevents sub and sup affecting line-height in all browsers
 * gist.github.com/413930
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sup {
  top: -0.5em;
}
sub {
  bottom: -0.25em;
}

/* =============================================================================
   Embedded content
   ========================================================================== */
/*
 * Corrects overflow displayed oddly in IE9
 */
svg:not(:root) {
  overflow: hidden;
}
/* =============================================================================
   Figures
   ========================================================================== */
/*
 * Addresses margin not present in IE6/7/8/9, S5, O11
 */
figure {
  margin: 0;
}
/* =============================================================================
   Forms
   ========================================================================== */
/*
 * Corrects margin displayed oddly in IE6/7
 */
form {
  margin: 0;
}
/*
 * Define consistent border, margin, and padding
 */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}
/*
 * 1. Corrects color not being inherited in IE6/7/8/9
 * 2. Corrects text not wrapping in FF3
 * 3. Corrects alignment displayed oddly in IE6/7
 */
legend {
  border: 0;
  /* 1 */

  padding: 0;
  white-space: normal;
  /* 2 */

  *margin-left: -7px;
  /* 3 */

}

/* =============================================================================
   Tables
   ========================================================================== */
/*
 * Remove most spacing between table cells
 */
table {
  border-collapse: collapse;
  border-spacing: 0;
}
/*
 * Metro UI CSS
 * Copyright 2012 Sergey Pimenov
 * Licensed under the MIT Lilcense
 *
 * Routines.less
 */
.place-left {
  float: left !important;
  margin:0;
  padding:0;
  margin-right: 10px;
}
.place-right {
  float: right !important;
  margin:0;
  padding:0;
  margin-left: 10px;
}
.scroll-y,
.scroll-vertical {
  overflow-y: scroll;
}
.scroll-x,
.scroll-horizontal {
  overflow-x: scroll;
}
.pos-rel {
  position: relative;
}
.pos-abs {
  position: absolute;
}
.pos-fix {
  position: fixed;
}
.text-left {
  text-align: left;
}
.text-right {
  text-align: right;
}
.text-center {
  text-align: center;
}
.text-justify {
  text-align: justify;
}
.top-left {
  position: absolute;
  top: 0;
  left: 0;
}
.top-right {
  position: absolute;
  top: 0;
  right: 0;
}
.bottom-right {
  position: absolute;
  bottom: 0;
  right: 0;
}
.bottom-left {
  position: absolute;
  bottom: 0;
  left: 0;
}
.no-overflow {
  overflow: hidden;
}
.no-display {
  display: none;
}
.as-block {
  display: block;
  float: none !important;
}
.as-inline-block {
  display: inline-block;
}
.nlm {
  margin-left: 0 !important;
}
.nrm {
  margin-right: 0 !important;
}
.clearfix {
  *zoom: 1;
}
.clearfix:before,
.clearfix:after {
  display: table;
  content: "";
}
.clearfix:after {
  clear: both;
}
.padding5 {
  padding: 5px;
}
.padding10 {
  padding: 10px;
}
.padding15 {
  padding: 15px;
}
.padding20 {
  padding: 20px;
}
.padding30 {
  padding: 30px;
}
.padding40 {
  padding: 40px;
}
.padding80 {
  padding: 80px;
}
/*.selected {
  border: 4px #2d89ef solid;
}
.selected:after {
  width: 0;
  height: 0;
  border-top: 40px solid #2d89ef;
  border-left: 40px solid transparent;
  position: absolute;
  display: block;
  right: 0;
  content: ".";
  top: 0;
  z-index: 1000;
}
.selected:before {
  position: absolute;
  content: "\2714";
  color: #fff;
  right: 5px;
  font-family: Tahoma;
  z-index: 2000;
}*/


/*
 * Metro UI CSS
 * Copyright 2012 Sergey Pimenov
 * Licensed under the MIT Lilcense
 *
 * Bricks.less
 *
 */
.item-margin {
  margin: 0 10px 10px 0;
}
.column-margin {
  margin: 0 20px 10px 0;
}
.group-margin {
  margin: 0 80px 10px 0;
}
.brick {
  position: relative;
  margin: 0 10px 10px 0;
  display: block;
  float: none !important;
}
.short-brick {
  position: relative;
  margin: 0 10px 10px 0;
  display: block;
  float: none !important;
  width: 150px;
  height: 150px;
}
.medium-brick {
  position: relative;
  margin: 0 10px 10px 0;
  display: block;
  float: none !important;
  width: 310px;
  height: 150px;
}
/*
.badge {
    .brick;
    width: @subunit*7;
    height: @subunit*6;
    padding-top: @subunit;
    #font > .control;
    color: @darken;
    text-align: center;
}
*/
.square {
  display: block;
  float: left;
  margin-right: 10px;
  height: 20px;
  width: 20px;
}


#state .header,
#state .subheader,
#state .small-subheader,
#state .navigation,
#state .body,
#state .tertiary {
  color: #000000;
}
#state .header:hover,
#state .subheader:hover,
#state .small-subheader:hover,
#state .navigation:hover,
#state .body:hover,
#state .tertiary:hover {
  color: rgba(0, 0, 0, 0.8);
}
#state .header:active,
#state .subheader:active,
#state .small-subheader:active,
#state .navigation:active,
#state .body:active,
#state .tertiary:active {
  color: rgba(0, 0, 0, 0.4);
}
#state .subheader-secondary,
#state .subheader-secondary-smaller,
#state .small-subheader,
#state .small-subheader-secondary,
#state .body-secondary,
#state .tertiary-secondary {
  color: rgba(0, 0, 0, 0.6);
}
#state .subheader-secondary:hover,
#state .subheader-secondary-smaller:hover,
#state .small-subheader:hover,
#state .small-subheader-secondary:hover,
#state .body-secondary:hover,
#state .tertiary-secondary:hover {
  color: rgba(0, 0, 0, 0.8);
}
#state .subheader-secondary:active,
#state .subheader-secondary-smaller:active,
#state .small-subheader:active,
#state .small-subheader-secondary:active,
#state .body-secondary:active,
#state .tertiary-secondary:active {
  color: rgba(0, 0, 0, 0.4);
}
#state .link {
  color: #2e92cf;
}
#state .link:hover {
  color: rgba(45, 173, 237, 0.8);
}
#state .link:active {
  color: rgba(45, 173, 237, 0.6);
}



.lead {
  font-size: 120%;
  line-height: 26px;
}

abbr.initialism {
  font-size: 90%;
  text-transform: uppercase !important;
}
abbr[title] {
  cursor: help !important;
}
address {
  display: block;
  margin-bottom: 20px;
  font-family:  'Open Sans', Verdana, Arial, Helvetica, sans-serif;
  font-weight: 300;
  font-size: 11px;
  letter-spacing: 0.02em;
  line-height: 20px;
  line-height: 20px;
  font-style: normal;
}
blockquote {
  margin: 0;
  padding: 5px 20px;
  border-left: 4px #ccc solid;
  display: block;
  background-color: rgba(204, 204, 204, 0.1);
}
blockquote p {
  margin-bottom: 0;
}
blockquote small:before {
  content: '\2014';
  color: rgba(0, 0, 0, 0.4);
  margin-right: 5px;
}
blockquote.place-right {
  float: none !important;
  text-align: right;
  border: 0;
  border-right: 4px #ccc solid;
}
blockquote.place-right small {
  text-align: right;
}
blockquote.place-right small:before {
  content: "";
}
blockquote.place-right small:after {
  content: '\2014';
  color: rgba(0, 0, 0, 0.4);
  margin-left: 5px;
}

input
, textarea
, select:after
, label:after, label:before 
, label > span:after, label > span:before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
} 

.one-column {
  -moz-columns: 1;
  -webkit-columns: 1;
  columns: 1;
  -moz-column-gap: 20px;
  -webkit-column-gap: 20px;
  column-gap: 20px;
}
.two-columns {
  -moz-columns: 2;
  -webkit-columns: 2;
  columns: 2;
  -moz-column-gap: 20px;
  -webkit-column-gap: 20px;
  column-gap: 20px;
}
.three-columns {
  -moz-columns: 3;
  -webkit-columns: 3;
  columns: 3;
  -moz-column-gap: 20px;
  -webkit-column-gap: 20px;
  column-gap: 20px;
}
.four-columns {
  -moz-columns: 4;
  -webkit-columns: 4;
  columns: 4;
  -moz-column-gap: 20px;
  -webkit-column-gap: 20px;
  column-gap: 20px;
}
.five-columns {
  -moz-columns: 5;
  -webkit-columns: 5;
  columns: 5;
  -moz-column-gap: 20px;
  -webkit-column-gap: 20px;
  column-gap: 20px;
}
.page {
  position: relative;
  height: 100%;
  min-height: 100%;
  width: 100%;
  *zoom: 1;
}
.page:before,
.page:after {
  display: table;
  content: "";
}
.page:after {
  clear: both;
}
.page .page-header {
  width: 100%;
  position: relative;
  display: block;
}
.page .page-header .page-header-content {
  height: 100px;
  min-height: 100px;
  width: 100%;
  position: relative;
  display: block;
}
.page .page-header .page-header-content h1,
.page .page-header .page-header-content h2,
.page .page-header .page-header-content h3,
.page .page-header .page-header-content h4,
.page .page-header .page-header-content h5 {
  position: absolute;
  margin: 0;
  padding: 0;
  left: 20px;
  bottom: 0;
}
.page .page-header .page-header-content h1 small {
  font-size: 12px;
  margin-left: 5px;
}
.page .page-header .page-header-content h1.sub-menu {
  cursor: pointer;
}
.page .page-header .page-header-content h1.sub-menu:after {
  position: absolute;
  content: "\3009";
  display: inline-block;
  font-size: 10px;
  bottom: -5px;
  right: -15px;
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  transform: rotate(90deg);
}
.page .page-header .page-header-content  > .page-back {
  position: absolute;
  top: 34px;
  left: 30px;
}
.page .page-header .page-header-content .user-login {
  float: right;
  margin: 55px 44px 0 0;
  cursor: pointer;
}
.page .page-header .page-header-content .user-login .avatar {
  float: right;
  border: 1px #ccc solid;
  width: 40px;
  height: 40px;
}
.page .page-header .page-header-content .user-login .avatar img {
  width: 100%;
  height: 100%;
}
.page .page-header .page-header-content .user-login .name {
  float: left;
  margin: 0px 10px;
  text-align: right;
}
.page .page-header .page-header-content .user-login .name .first-name {
  font-family: "Open Sans", sans-serif, sans;
  font-size: 18px;
  display: block;
  margin: 0;
}
.page .page-header .page-header-content .user-login .name .last-name {
  font-family: "Open Sans", sans-serif, sans;
  font-size: 10px;
  display: block;
  margin: 0;
}
.page .page-region {
  display: block;
}
.page .page-region .page-region-content {
  padding-top: 10px;
  padding-left: 0;
  padding-right: 0;
  padding-bottom: 20px;
  display: block;
  height: 100%;
  position: relative;
}
.page.secondary .page-header .page-header-content h1,
.page.secondary .page-header .page-header-content h2,
.page.secondary .page-header .page-header-content h3,
.page.secondary .page-header .page-header-content h4,
.page.secondary .page-header .page-header-content h5 {
  position: absolute;
  margin: 0;
  padding: 0;
  left: 120px;
  bottom: 0;
}
.page.secondary .page-region .page-region-content {
  padding-left: 120px;
}
.page.snapped {
  width: 33.33%;
  height: 100%;
  float: left;
  border-right: 1px #ccc solid;
}
.page.fill {
  width: 66.66%;
  height: 100%;
  float: right;
  border-left: 1px #ccc solid;
}
.page.snapped .page .page-header .page-header-content h1,
.page.snapped .page .page-header .page-header-content h2,
.page.snapped .page .page-header .page-header-content h3,
.page.snapped .page .page-header .page-header-content h4,
.page.snapped .page .page-header .page-header-content h5 {
  margin-left: 20px;
}
.page.snapped .page .page-region .page-region-content {
  padding-left: 20px;
}
.page.fixed-header .page-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
}
.page.fixed-header .page-region {
  padding-top: 140px;
}
.page.with-sidebar .page-region {
  margin-left: 220px;
  width: auto;
  *zoom: 1;
}
.page.with-sidebar .page-region .page-region-content {
  padding-left: 20px;
}
.page.with-sidebar .page-region:before,
.page.with-sidebar .page-region:after {
  display: table;
  content: "";
}
.page.with-sidebar .page-region:after {
  clear: both;
}
.app-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  min-height: 100px;
  background-color: #1d1d1d !important;
}
.charms {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  height: 100%;
  min-width: 200px;
  width: auto;
}
.charms.place-left {
  left: 0;
  right: auto;
}
.message-dialog {
  position: absolute;
  left: 0;
  right: 0;
  height: auto;
  min-height: 100px;
  top: 30%;
  padding: 10px 10px 0;
}
.error-bar,
.warning-bar,
.info-bar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  padding: 10px 20px;
  color: #fff;
  min-height: 100px;
}
.error-bar {
  background-color: #b91d47 !important;
}
.warning-bar {
  background-color: #ffc40d !important;
}
.info-bar {
  background-color: #2d89ef !important;
}
/*
 * Metro UI CSS
 * Copyright 2012 Sergey Pimenov
 * Licensed under the MIT Lilcense
 *
 * Buttons.less
 */
button,
.button {	
	min-width: 90px;
	min-height: 20px;
	display: inline-block;
	position: relative;
	border-radius: 0px;
	margin: 0 0 0 5px;
	padding:5px;
	outline: 0 none;
	background-color: #ccc;
	border: 1px transparent solid;
	font-size:12px;
	font-family: 'Segoe UI','Open Sans',Verdana,Arial,Helvetica,sans-serif;  	
  	text-align: center;
  	vertical-align: middle;
  	cursor: pointer;  	
	font-weight:bold;
}
button.standart,
.button.standart {
  min-width: 90px;
  min-height: 32px;
}
button:active,
.button:active,
button.default:active,
.button.default:active {
  top: 1px;
  left: 1px;
}
button:disabled,
.button:disabled,
button.disabled,
.button.disabled {
  background-color: #eaeaea;
  color: #bebebe;
  cursor: not-allowed;
}
button.default,
.button.default {
  background-color: #008287;
  color: #fff;
}
button:focus,
.button:focus {
  outline: 0;
  border: 1px #353535 dotted;
}
a.button:hover,
a.button:active {
  text-decoration:none;
}
button.mini,
.button.mini,
.tool-button.mini {
  min-height: 24px;
  min-width: 24px;
  height: 26px;
  font-size: .8em;
}
button.big,
.button.big,
.tool-button.big {
  min-height: 48px;
  height: 48px;
  font-size: 1.2em;
}
.tool-button.mini {
  min-width: 22px;
  width: 22px;
}
.tool-button.big {
  min-width: 48px;
  width: 48px;
}
.command-button {
  width: 330px;
  text-align: left;
  padding: 10px 20px;
  height: auto;
  color: #000;
  background-color: #ccc;
  font-family:  'Open Sans', Verdana, Arial, Helvetica, sans-serif;
  font-weight: 300;
  font-size: 11px;
  letter-spacing: 0.02em;
  line-height: 20px;
}
.command-button  > small {
  display: block;
  font-family:  'Open Sans', Verdana, Arial, Helvetica, sans-serif;
  font-weight: 300;
  font-size: 11px;
  letter-spacing: 0.02em;
  line-height: 20px;
  font-size: 10px;
  color: #505050;
}
.command-button.default  > small {
  color: #ccc;
}
.tool-button {
  font-family:  'Open Sans', Verdana, Arial, Helvetica, sans-serif;
  font-weight: 400;
  font-size: 9px;
  min-width: 90px;
  min-height: 32px;
  height: 32px;
  background-color: #ccc;
  border: 1px transparent solid;
  color: #353535;
  margin-right: 10px;
  margin-bottom: 10px;
  border-radius: 0;
  display: inline-block;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  padding: 4px 10px;
  position: relative;
  min-width: 32px;
  min-height: 32px;
  width: 32px;
  height: 32px;
  text-align: center;
  position: relative;
  padding: 0;
}
.tool-button.mini {
  font-size: .9em !important;
}
.tool-button.standart {
  min-width: 90px;
  min-height: 32px;
}
.tool-button:active,
.tool-button.default:active {
  top: 1px;
  left: 1px;
}
.tool-button:disabled,
.tool-button.disabled {
  background-color: #eaeaea;
  color: #bebebe;
  cursor: not-allowed;
}
.tool-button.default {
  background-color: #008287;
  color: #fff;
}
.tool-button:focus {
  outline: 0;
  border: 1px #353535 dotted;
}
.tool-button.mini {
  min-height: 24px;
  min-width: 24px;
  height: 26px;
  font-size: .8em;
}
.tool-button.big {
  min-height: 48px;
  height: 48px;
  font-size: 1.2em;
}
.tool-button img {
  width: 16px;
  height: 16px;
  position: absolute;
  top: 8px;
  left: 8px;
}
.toolbar {
  *zoom: 1;
}
.toolbar a,
.toolbar button {
  font-family:  'Open Sans', Verdana, Arial, Helvetica, sans-serif;
  font-weight: 400;
  font-size: 22px;
  border: 1px transparent solid;
  margin-right: 5px;
  margin-bottom: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  display: inline-block;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  padding: 4px 10px;
  position: relative;
  min-width: 35px;
  min-height: 25px;
  width: 35px;
  height: 25px;
  text-align: center;
  position: relative;
  padding: 5px;
}
.toolbar a.mini,
.toolbar button.mini {
  min-height: 24px;
  min-width: 24px;
  height: 26px;
  font-size: .8em;
}
.toolbar a.big,
.toolbar button.big {
  min-height: 48px;
  height: 48px;
  font-size: 1.2em;
}
.toolbar a.mini,
.toolbar button.mini {
  min-width: 22px;
  width: 22px;
}
.toolbar a.big,
.toolbar button.big {
  min-width: 48px;
  width: 48px;
}
.toolbar a.mini,
.toolbar button.mini {
  font-size: .9em !important;
}
.toolbar a.standart,
.toolbar button.standart {
  min-width: 90px;
  min-height: 32px;
}
.toolbar a:active,
.toolbar button:active,
.toolbar a.default:active,
.toolbar button.default:active {
  top: 1px;
  left: 1px;
}
.toolbar a:disabled,
.toolbar button:disabled,
.toolbar a.disabled,
.toolbar button.disabled {
  background-color: #eaeaea;
  color: #bebebe;
  cursor: not-allowed;
}
.toolbar a.default,
.toolbar button.default {
  background-color: #008287;
  color: #fff;
}
.toolbar a:focus,
.toolbar button:focus {
  outline: 0;
  border: 1px #353535 dotted;
}
.toolbar a.mini,
.toolbar button.mini {
  min-height: 24px;
  min-width: 24px;
  height: 26px;
  font-size: .8em;
}
.toolbar a.big,
.toolbar button.big {
  min-height: 48px;
  height: 48px;
  font-size: 1.2em;
}
.toolbar a img,
.toolbar button img {
  width: 16px;
  height: 16px;
  position: absolute;
  top: 8px;
  left: 8px;
}
.toolbar a {
  padding: 5px 0;
  float:right
}
.toolbar:before,
.toolbar:after {
  display: table;
  content: "";
}
.toolbar:after {
  clear: both;
}
.toolbar .toolbar-group {
  margin-right: 20px;
  margin-bottom: 10px;
  float: left;
}
.toolbar-vertical {
  width: 33px;
  float: left;
  margin-right: 10px;
  *zoom: 1;
}
.toolbar-vertical a,
.toolbar-vertical button {
  font-family:  'Open Sans', Verdana, Arial, Helvetica, sans-serif;
  font-weight: 400;
  font-size: 9px;
  min-width: 90px;
  min-height: 32px;
  height: 32px;
  background-color: #ccc;
  border: 1px transparent solid;
  color: #353535;
  margin-right: 10px;
  margin-bottom: 10px;
  border-raduis: 0;
  display: inline-block;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  padding: 4px 10px;
  position: relative;
  min-width: 32px;
  min-height: 32px;
  width: 32px;
  height: 32px;
  text-align: center;
  position: relative;
  padding: 0;
  margin-bottom: 5px;
}
.toolbar-vertical a.mini,
.toolbar-vertical button.mini {
  min-height: 24px;
  min-width: 24px;
  height: 26px;
  font-size: .8em;
}
.toolbar-vertical a.big,
.toolbar-vertical button.big {
  min-height: 48px;
  height: 48px;
  font-size: 1.2em;
}
.toolbar-vertical a.mini,
.toolbar-vertical button.mini {
  min-width: 22px;
  width: 22px;
}
.toolbar-vertical a.big,
.toolbar-vertical button.big {
  min-width: 48px;
  width: 48px;
}
.toolbar-vertical a.mini,
.toolbar-vertical button.mini {
  font-size: .9em !important;
}
.toolbar-vertical a.standart,
.toolbar-vertical button.standart {
  min-width: 90px;
  min-height: 32px;
}
.toolbar-vertical a:active,
.toolbar-vertical button:active,
.toolbar-vertical a.default:active,
.toolbar-vertical button.default:active {
  top: 1px;
  left: 1px;
}
.toolbar-vertical a:disabled,
.toolbar-vertical button:disabled,
.toolbar-vertical a.disabled,
.toolbar-vertical button.disabled {
  background-color: #eaeaea;
  color: #bebebe;
  cursor: not-allowed;
}
.toolbar-vertical a.default,
.toolbar-vertical button.default {
  background-color: #008287;
  color: #fff;
}
.toolbar-vertical a:focus,
.toolbar-vertical button:focus {
  outline: 0;
  border: 1px #353535 dotted;
}
.toolbar-vertical a.mini,
.toolbar-vertical button.mini {
  min-height: 24px;
  min-width: 24px;
  height: 26px;
  font-size: .8em;
}
.toolbar-vertical a.big,
.toolbar-vertical button.big {
  min-height: 48px;
  height: 48px;
  font-size: 1.2em;
}
.toolbar-vertical a img,
.toolbar-vertical button img {
  width: 16px;
  height: 16px;
  position: absolute;
  top: 8px;
  left: 8px;
}
.toolbar-vertical a {
  padding: 5px 0;
}
.toolbar-vertical:before,
.toolbar-vertical:after {
  display: table;
  content: "";
}
.toolbar-vertical:after {
  clear: both;
}
.toolbar-vertical .toolbar-group {
  margin-bottom: 20px;
}
.image-button {
  position: relative;
  border: 0;
  padding-right: 45px;
}
.image-button img,
.image-button:active img {
  position: absolute;
  right: 0;
  margin-left: 32px;
  padding: 5px;
  height: 100%;
  top: 0px;
  margin-left: 0px;
  box-sizing: border-box;
  border: 1px transparent solid;
  z-index: 2;
}
.button-set a,
.button-set button {
  margin-right: 0;
  text-align: center;
}
.button-set a img,
.button-set button img {
  background-color: transparent;
}
.button-set a {
  padding: 5px 0;
}
.button-set button.active {
  background-color: #008287;
  color: #fff;
}
.shortcuts {
  margin-bottom: 10px;
}
.shortcut {
  width: 92px;
  height: 92px;
  display: inline-block;
  margin: 0 10px 10px 0;
  vertical-align: top;
  text-decoration: none;
  background: #F3F3F3;
  text-align: center;
  cursor: pointer;
  border: 0;
  border-bottom: 2px transparent solid;
  position: relative;
}
.shortcut:hover {
  border-color: red;
}
.shortcut:active {
  background: #F3F3F3;
  top: 1px;
  left: 1px;
}
.shortcut  > .icon {
  margin-top: .25em;
  margin-bottom: .25em;
  font-size: 32px;
  color: #888;
}
.shortcut  > .label {
  display: block;
  font-weight: 400;
  color: #666;
}
.shortcut  > .badge {
  position: absolute;
  right: 0;
  top: 0;
  background-color: #2d89ef;
  padding: 5px;
  margin: 0 !important;
  text-align: center;
  display: block;
  font-size: 9px;
  color: #fff;
}
a.shortcut {
  padding: 30px 0;
}
a.shortcut .label {
  font-size: 9px;
}



.buttonRed{
	background-color:#F00 !important;
	color:#FFF;
}
.buttonRed:hover{
	background-color:#C00 !important;
	color:#FFF;
}
.buttonBlue{
	background-color:#36F !important;
	color:#FFF;
}
.buttonBlue:hover{
	background-color:#33C !important;
	color:#FFF;
}
.buttonGreen{
	background-color:#0C0 !important;
	color:#FFF;
}
.buttonGreen:hover{
	background-color:#390 !important;
	color:#FFF;
}
.buttonBlack{
	background-color:#333 !important;
	color:#FFF;
}
.buttonBlack:hover{
	background-color:#000 !important;
	color:#FFF;
}
.buttonSilver{
	background-color:#666 !important;
	color:#FFF;
}
.buttonSilver:hover{
	background-color:#333 !important;
	color:#FFF;
}







/*
 * Metro UI CSS
 * Copyright 2012 Sergey Pimenov
 * Licensed under the MIT Lilcense
 *
 * Grid.less
 *
 */
.oh,
.ot,
.tt {
  float: left;
  margin: 0 2% 2% 0;
  width: 48%;
}
.ot {
  width: 31%;
}
.tt {
  width: 65%;
}
.cl {
  clear: both;
}
.item-padding {
  margin-right: 20px;
  margin-bottom: 5px;
}
.column-padding {
  margin: 0 10px;
}
.group-padding {
  margin: 0 40px;
}

.offset1 {
  margin-left: 80px;
}
.offset2 {
  margin-left: 160px;
}
.offset3 {
  margin-left: 240px;
}
.offset4 {
  margin-left: 320px;
}
.offset5 {
  margin-left: 400px;
}
.offset6 {
  margin-left: 480px;
}
.offset7 {
  margin-left: 560px;
}
.offset8 {
  margin-left: 640px;
}
.offset9 {
  margin-left: 720px;
}
.offset10 {
  margin-left: 800px;
}
.offset11 {
  margin-left: 880px;
}
.offset12 {
  margin-left: 960px;
}





[class*="span"] {
  float: none;
  min-height: 1px;
  margin-right: 20px;
  margin-bottom: 5px;
  *zoom: 1;
}
[class*="span"]:before,
[class*="span"]:after {
  display: table;
  content: "";
}
[class*="span"]:after {
  clear: both;
}
[class*="span"]:last-child {
  margin-right: 0;
}
[class*="span"]  > img {
  max-width: 100%;
  height: auto;
}


.grid {
  margin: 0 0 20px;
  display: block;
  height: auto;
  width: 100%;
  *zoom: 1;
}
.grid.no-margin {
  margin: 0;
}
.grid.margin-row {
  margin-bottom: 5px;
}
.grid .grid {
  margin-top: 2.5px;
  margin-bottom: 2.5px;
}
.grid .group {
  margin-right: 80px;
  float: left;
  width: auto;
  height: auto;
  min-height: 1px;
}
.grid .row {
  width: 100%;
  *zoom: 1;
}
.grid .row:before,
.grid .row:after {
  display: table;
  content: "";
}
.grid .row:after {
  clear: both;
}
.grid .row [class*="span"] {
  float: left;
}
.grid.element-border [class*="span"] {
  border: 1px #ccc dotted;
}
.grid:before,
.grid:after {
  display: table;
  content: "";
}
.grid:after {
  clear: both;
}

/* ============================== TAMANHO DE BLOCOS SEM MARGIN ==================================== */
.Taman1 {
  width: 75px;
}
.Taman2 {
  width: 150px;
}
.Taman3 {
  width: 225px;
}
.Taman4 {
  width: 300px;
}
.Taman5 {
  width: 375px;
}
.Taman6 {
  width: 450px;
}
.Taman7 {
  width: 525px;
}
.Taman8 {
  width: 610px;
}
.Taman9 {
  width: 675px;
}
.Taman10 {
  width: 750px;
}
.Taman11 {
  width: 825px;
}
.Taman12 {
  width: 900px;
}
[class*="Taman"] {
  min-height: 1px;
  display:block;
}

/* ============================== ALINHAMENTO DE TEXTO ==================================== */
.textAlingLeft{
	text-align:left;	
}
.textAlingRight{
	text-align:right;	
}
.textAlingCenter{
	text-align:center;	
}
.textAlingJustify{
	text-align:justify;	
}


/*
 * Metro UI CSS
 * Copyright 2012 Sergey Pimenov
 * Licensed under the MIT Lilcense
 *
 * Hero.less
 *
 */
.hero-unit {
  position: relative;
  margin: 0 0 10px;
  padding: 20px;
  background-color: #f1f1f1;
  width: 100%;
  *zoom: 1;
}
.hero-unit:before,
.hero-unit:after {
  display: table;
  content: "";
}
.hero-unit:after {
  clear: both;
}

.menu-pull {
  position: absolute;
  right: 10px;
  top: 10px;
  display: none;
  cursor: pointer;
  z-index: 10001;
  background: url(../images/row24.png) no-repeat;
  background-size: cover;
  height: 24px;
  width: 24px;
  margin: 0;
  padding: 0;
}
.dropdown-menu {
  position: absolute;
  background-color: #fff;
  margin-left: 0;
  list-style: none;
  top: 100%;
  z-index: 1101;
  float: left;
  border: 1px solid rgba(0, 0, 0, 0.2);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  min-width: 160px;
  padding-bottom: 5px;
  padding-top: 5px;
  display: none;
}
.dropdown-menu.place-right {
  right: 0;
  left: auto;
}
.dropdown-menu a {
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 14px;
  color: #000000;
  display: block;
  width: 120px;
  padding: 5px 20px;
  white-space: nowrap;
  font-size: 14px;
}
.dropdown-menu a:hover {
  color: rgba(0, 0, 0, 0.8);
}
.dropdown-menu a:active {
  color: rgba(0, 0, 0, 0.4);
}
.dropdown-menu a:hover {
  background-color: #2d89ef !important;
  color: #ffffff !important;
}
.dropdown-menu li {
  display: list-item;
  line-height: 20px;
}
.dropdown-menu .divider {
  height: 1px;
  margin: 9px 1px;
  overflow: hidden;
  background-color: #e5e5e5;
}
.dropdown-menu.open {
  display: block !important;
}
.popup-menu {
  margin-left: 0;
  list-style: none;
  position: absolute;
  top: 100%;
  left: -1px;
  z-index: 1;
  background-color: #fff;
  display: none;
  border: 1px #bababa solid;
}
.popup-menu li {
  float: none;
  display: block;
  border: 1px transparent solid !important;
  min-width: 150px;
}
.popup-menu li a {
  display: block;
  white-space: nowrap;
  float: none;
  height: auto;
  font-family:  'Open Sans', Verdana, Arial, Helvetica, sans-serif;
  font-weight: 400;
  font-size: 9px;
  color: #1e1e1e;
  padding: 5px  10px;
}
.popup-menu li a:hover {
  color: #fff;
}
.popup-menu li:hover {
  background-color: #008287;
}
.popup-menu li.divider {
  height: 1px !important;
  line-height: 1px !important;
  background-color: transparent !important;
  border-top: 1px #bababa solid !important;
}
.popup-menu li.divider:hover {
  background-color: transparent !important;
}
.popup-menu li.sub-menu:after {
  position: absolute;
  content: "\3009";
  display: inline-block;
  font-size: 10px;
  top: 5px;
  right: 10px;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
}
.horizontal-menu {
  background-color: #f1f1f1;
  padding: 0px;
  *zoom: 1;
}
.horizontal-menu  > ul {
  margin-left: 0;
  list-style: none;
}
.horizontal-menu  > ul li {
  float: left;
  position: relative;
  border: 1px transparent solid;
  display: block;
}
.horizontal-menu  > ul li:hover {
  border: 1px #bababa solid;
  background-color: #fff;
}
.horizontal-menu  > ul li.sub-menu {
  padding-right: 20px;
}
.horizontal-menu  > ul li.sub-menu:after {
  position: absolute;
  content: "\3009";
  display: inline-block;
  font-size: 10px;
  font-family: sans;
  top: 7px;
  right: 10px;
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  transform: rotate(90deg);
}
.horizontal-menu  > ul li a {
  float: left;
  padding: 5px  10px;
  display: block;
  z-index: 999;
  font-family:  'Open Sans', Verdana, Arial, Helvetica, sans-serif;
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 0.01em;
  line-height: 14px;
  color: #000000;
}
.horizontal-menu  > ul li a:hover {
  color: rgba(0, 0, 0, 0.8);
}
.horizontal-menu  > ul li a:active {
  color: rgba(0, 0, 0, 0.4);
}
.horizontal-menu  > ul li ul {
  margin-left: 0;
  list-style: none;
  position: absolute;
  top: 100%;
  left: -1px;
  z-index: 1;
  background-color: #fff;
  display: none;
  border: 1px #bababa solid;
}
.horizontal-menu  > ul li ul li {
  float: none;
  display: block;
  border: 1px transparent solid !important;
  min-width: 150px;
}
.horizontal-menu  > ul li ul li a {
  display: block;
  white-space: nowrap;
  float: none;
  height: auto;
  font-family:  'Open Sans', Verdana, Arial, Helvetica, sans-serif;
  font-weight: 400;
  font-size: 9px;
  color: #1e1e1e;
  padding: 5px  10px;
}
.horizontal-menu  > ul li ul li a:hover {
  color: #fff;
}
.horizontal-menu  > ul li ul li:hover {
  background-color: #008287;
}
.horizontal-menu  > ul li ul li.divider {
  height: 1px !important;
  line-height: 1px !important;
  background-color: transparent !important;
  border-top: 1px #bababa solid !important;
}
.horizontal-menu  > ul li ul li.divider:hover {
  background-color: transparent !important;
}
.horizontal-menu  > ul li ul li.sub-menu:after {
  position: absolute;
  content: "\3009";
  display: inline-block;
  font-size: 10px;
  top: 5px;
  right: 10px;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
}
.horizontal-menu  > ul li:hover > ul {
  display: block;
}
.horizontal-menu  > ul li ul li ul {
  position: absolute;
  left: 100%;
  top: -2px;
}
.horizontal-menu  > ul li.pull {
  display: none;
  float: right;
  margin-right: 5px;
  margin-top: 5px;
}
.horizontal-menu  > ul li.pull a {
  width: 24px;
  height: 20px;
  background: url(../images/pull24-dark.png) no-repeat;
  display: block;
  text-decoration: none;
  border: 0;
  cursor: pointer;
}
.horizontal-menu  > ul li.pull:hover {
  border: 1px transparent solid;
}
.horizontal-menu:before,
.horizontal-menu:after {
  display: table;
  content: "";
}
.horizontal-menu:after {
  clear: both;
}
.menu-holder {
  cursor: pointer;
  position: relative;
}
.menu-holder:after {
  position: absolute;
  content: "\3009";
  display: inline-block;
  font-size: 10px;
  left: 100%;
  top: 100%;
  margin-top: -17px;
  margin-left: -5px;
  color: #fff;
  z-index: 10001;
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  transform: rotate(90deg);
}
/*
 * Metro UI CSS
 * Copyright 2012 Sergey Pimenov
 * Licensed under the MIT Lilcense
 *
 * Sidebar.less
 */
.page-sidebar {
  display: block;
  width: 213px;
  float: left;
  min-height: 100% !important;
  height: auto;
  background-color: #EBEBEB;
  padding-top: 10px;
  padding-bottom: 10px;
  margin-top: 10px;
  margin-left: 7px;
}
.page-sidebar a {
  font-family:  'Open Sans', Verdana, Arial, Helvetica, sans-serif;
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 0.01em;
  line-height: 14px;
  color: #000000;
  display: block;
  width: 100%;
  padding: 5px 20px 5px 10px;
  white-space: nowrap;
  font-size: 14px;
  cursor: pointer;
}
.page-sidebar a:hover {
  color: rgba(0, 0, 0, 0.8);
}
.page-sidebar a:active {
  color: rgba(0, 0, 0, 0.4);
}
.page-sidebar a:hover {
  background-color: #2d89ef !important;
  color: #ffffff !important;
}
.page-sidebar li {
  display: list-item;
  line-height: 20px;
  position: relative;
}
.page-sidebar  > ul > li > a {
  font-size: 1.1em;
}
.page-sidebar  > ul > li a.lead,
.page-sidebar  > ul > li.lead a,
.page-sidebar  > ul > li.lead {
  font-weight: bold;
}
.page-sidebar  > ul > li.sticker:before {
  content: ".";
  position: absolute;
  width: 7px;
  height: 28px;
  left: -7px;
  text-indent: -9999px;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  background-color: #ebebeb;
}
.page-sidebar  > ul > li.sticker.sticker-color-blue:before {
  background-color: #2d89ef;
}
.page-sidebar  > ul > li.sticker.sticker-color-blueLight:before {
  background-color: #eff4ff;
}
.page-sidebar  > ul > li.sticker.sticker-color-blueDark:before {
  background-color: #2b5797;
}
.page-sidebar  > ul > li.sticker.sticker-color-green:before {
  background-color: #00a300 !important;
}
.page-sidebar  > ul > li.sticker.sticker-color-greenLight:before {
  background-color: #99b433 !important;
}
.page-sidebar  > ul > li.sticker.sticker-color-greenDark:before {
  background-color: #1e7145 !important;
}
.page-sidebar  > ul > li.sticker.sticker-color-red:before {
  background-color: #b91d47 !important;
}
.page-sidebar  > ul > li.sticker.sticker-color-yellow:before {
  background-color: #ffc40d !important;
}
.page-sidebar  > ul > li.sticker.sticker-color-orange:before {
  background-color: #e3a21a !important;
}
.page-sidebar  > ul > li.sticker.sticker-color-orangeDark:before {
  background-color: #da532c !important;
}
.page-sidebar  > ul > li.sticker.sticker-color-pink:before {
  background-color: #9f00a7 !important;
}
.page-sidebar  > ul > li.sticker.sticker-color-pinkDark:before {
  background-color: #7e3878 !important;
}
.page-sidebar  > ul > li.sticker.sticker-color-purple:before {
  background-color: #603cba !important;
}
.page-sidebar  > ul > li.sticker.sticker-color-darken:before {
  background-color: #1d1d1d !important;
}
.page-sidebar  > ul > li.sticker.sticker-color-white:before {
  background-color: #ffffff !important;
}
.page-sidebar  > ul > li.sticker.sticker-color-grayDark:before {
  background-color: #525252 !important;
}
.page-sidebar .divider {
  height: 1px;
  margin: 9px 1px;
  overflow: hidden;
  background-color: #e5e5e5;
}
.page-sidebar ul {
  margin-left: 0;
  list-style: none;
  background-color: #EBEBEB;
}
.page-sidebar ul.sub-menu {
  padding-top: 5px;
  padding-bottom: 5px;
}
.page-sidebar ul.sub-menu a {
  padding: 5px 20px 5px 25px;
}
.page-sidebar ul.sub-menu.light {
  background-color: #f9f9f9 !important;
}
.page-sidebar .sidebar-dropdown-menu {
  display: none;
}
.page-sidebar .sidebar-dropdown-menu.open {
  display: block;
}
.page-sidebar  > ul > li.dropdown {
  position: relative;
}
.page-sidebar  > ul > li.dropdown:after {
  content: "";
  display: block;
  position: absolute;
  top: 6px;
  left: 100%;
  margin-left: -20px;
  width: 16px;
  height: 16px;
  background: no-repeat;
  background-position: 0 -1586px;
  z-index: 200;
}
.page-sidebar  > ul > li.dropdown.active:after {
  background-position: 0 -676px;
}
/*
 * Metro UI CSS
 * Copyright 2012 Sergey Pimenov
 * Licensed under the MIT Lilcense
 *
 * Notices.less
 */
.replies {
  margin-left: 0;
  list-style: none;
}
.replies  > div,
.replies  > li,
.replies  > span {
  position: relative;
  margin: 0 10px 10px 0;
  display: block;
  float: none !important;
  width: 310px;
  height: 150px;
  font-family:  'Open Sans', Verdana, Arial, Helvetica, sans-serif;
  font-weight: 300;
  font-size: 11px;
  letter-spacing: 0.02em;
  line-height: 20px;
  height: auto;
  padding: 10px;
}
.replies  > div .avatar,
.replies  > li .avatar,
.replies  > span .avatar {
  width: 50px;
  height: 50px;
  overflow: hidden;
  display: table-cell;
  vertical-align: middle !important;
  background: #6e6e6e;
  box-shadow-bottom: inset 0px 0px 3px #fff;
}
.replies  > div .avatar img,
.replies  > li .avatar img,
.replies  > span .avatar img {
  width: 100%;
  height: 100%;
  display: inline-block !important;
  vertical-align: middle !important;
}
.replies  > div .reply,
.replies  > li .reply,
.replies  > span .reply {
  margin-left: 60px;
  margin-top: -50px;
}
.replies  > div .reply .date,
.replies  > li .reply .date,
.replies  > span .reply .date {
  float: right;
  font-size: 55%;
  color: #ffffff;
}
.replies  > div .reply .author,
.replies  > li .reply .author,
.replies  > span .reply .author {
  color: #ffffff;
}
.replies  > div .reply .text,
.replies  > li .reply .text,
.replies  > span .reply .text {
  font-family:  'Open Sans', Verdana, Arial, Helvetica, sans-serif;
  font-weight: 400;
  font-size: 9px;
  color: #000000;
  color: #ffffff;
  line-height: 16px;
}
.replies  > div .reply .text:hover,
.replies  > li .reply .text:hover,
.replies  > span .reply .text:hover {
  color: rgba(0, 0, 0, 0.8);
}
.replies  > div .reply .text:active,
.replies  > li .reply .text:active,
.replies  > span .reply .text:active {
  color: rgba(0, 0, 0, 0.4);
}
.replies  > div .reply .text:hover,
.replies  > li .reply .text:hover,
.replies  > span .reply .text:hover {
  color: #ffffff;
}
.replies  > div .sticker,
.replies  > li .sticker,
.replies  > span .sticker {
  width: 0;
  height: 0;
  border-top: 10px solid #ffffff;
  position: absolute;
  display: block;
  z-index: 1000;
}
.replies  > div .sticker.sticker-color-blue,
.replies  > li .sticker.sticker-color-blue,
.replies  > span .sticker.sticker-color-blue {
  border-color: #2d89ef !important;
}
.replies  > div .sticker.sticker-color-blueLight,
.replies  > li .sticker.sticker-color-blueLight,
.replies  > span .sticker.sticker-color-blueLight {
  border-color: #eff4ff !important;
}
.replies  > div .sticker.sticker-color-blueDark,
.replies  > li .sticker.sticker-color-blueDark,
.replies  > span .sticker.sticker-color-blueDark {
  border-color: #2b5797 !important;
}
.replies  > div .sticker.sticker-color-green,
.replies  > li .sticker.sticker-color-green,
.replies  > span .sticker.sticker-color-green {
  border-color: #00a300 !important;
}
.replies  > div .sticker.sticker-color-greenLight,
.replies  > li .sticker.sticker-color-greenLight,
.replies  > span .sticker.sticker-color-greenLight {
  border-color: #99b433 !important;
}
.replies  > div .sticker.sticker-color-greenDark,
.replies  > li .sticker.sticker-color-greenDark,
.replies  > span .sticker.sticker-color-greenDark {
  border-color: #1e7145 !important;
}
.replies  > div .sticker.sticker-color-red,
.replies  > li .sticker.sticker-color-red,
.replies  > span .sticker.sticker-color-red {
  border-color: #b91d47 !important;
}
.replies  > div .sticker.sticker-color-yellow,
.replies  > li .sticker.sticker-color-yellow,
.replies  > span .sticker.sticker-color-yellow {
  border-color: #ffc40d !important;
}
.replies  > div .sticker.sticker-color-orange,
.replies  > li .sticker.sticker-color-orange,
.replies  > span .sticker.sticker-color-orange {
  border-color: #e3a21a !important;
}
.replies  > div .sticker.sticker-color-orangeDark,
.replies  > li .sticker.sticker-color-orangeDark,
.replies  > span .sticker.sticker-color-orangeDark {
  border-color: #da532c !important;
}
.replies  > div .sticker.sticker-color-pink,
.replies  > li .sticker.sticker-color-pink,
.replies  > span .sticker.sticker-color-pink {
  border-color: #9f00a7 !important;
}
.replies  > div .sticker.sticker-color-pinkDark,
.replies  > li .sticker.sticker-color-pinkDark,
.replies  > span .sticker.sticker-color-pinkDark {
  border-color: #7e3878 !important;
}
.replies  > div .sticker.sticker-color-purple,
.replies  > li .sticker.sticker-color-purple,
.replies  > span .sticker.sticker-color-purple {
  border-color: #603cba !important;
}
.replies  > div .sticker.sticker-color-darken,
.replies  > li .sticker.sticker-color-darken,
.replies  > span .sticker.sticker-color-darken {
  border-color: #1d1d1d !important;
}
.replies  > div .sticker.sticker-color-white,
.replies  > li .sticker.sticker-color-white,
.replies  > span .sticker.sticker-color-white {
  border-color: #ffffff !important;
}
.replies  > div .sticker.sticker-left,
.replies  > li .sticker.sticker-left,
.replies  > span .sticker.sticker-left {
  border-left: 20px solid transparent !important;
  left: -20px;
}
.replies  > div .sticker.sticker-right,
.replies  > li .sticker.sticker-right,
.replies  > span .sticker.sticker-right {
  border-right: 20px solid transparent !important;
  right: -20px;
}
.notices {
  list-style: none;
  margin: 0;
  padding: 0;
}
.notices  > div,
.notices  > li,
.notices  > span,
.notices  > a {
  width: 100%;
  height: 90px;
  display: block;
  overflow: hidden;
  position: relative;
  margin-bottom: 10px;
}
.notices  > div .notice-header,
.notices  > li .notice-header,
.notices  > span .notice-header,
.notices  > a .notice-header,
.notices  > div .header,
.notices  > li .header,
.notices  > span .header,
.notices  > a .header {
  position: relative;
  background: transparent;
  font-family:  'Open Sans', Verdana, Arial, Helvetica, sans-serif;
  font-weight: 200;
  font-size: 20px;
  letter-spacing: 0.01em;
  line-height: 24px;
  font-size: 12px;
  margin-top: 5px;
  margin-left: 10px;
}
.notices  > div .notice-text,
.notices  > li .notice-text,
.notices  > span .notice-text,
.notices  > a .notice-text,
.notices  > div .text,
.notices  > li .text,
.notices  > span .text,
.notices  > a .text {
  position: relative;
  margin-right: 50px;
  margin-left: 10px;
  color: #fff;
  font-family:  'Open Sans', Verdana, Arial, Helvetica, sans-serif;
  font-weight: 300;
  font-size: 8px;
  margin-top: -5px;
  line-height: 16px;
}
.notices  > div .notice-icon,
.notices  > li .notice-icon,
.notices  > span .notice-icon,
.notices  > a .notice-icon,
.notices  > div .icon,
.notices  > li .icon,
.notices  > span .icon,
.notices  > a .icon {
  position: absolute;
  right: 10px;
  bottom: 5px;
}
.notices  > div .notice-icon img,
.notices  > li .notice-icon img,
.notices  > span .notice-icon img,
.notices  > a .notice-icon img,
.notices  > div .icon img,
.notices  > li .icon img,
.notices  > span .icon img,
.notices  > a .icon img {
  width: 32px;
  height: 32px;
}
.notices  > div .notice-image,
.notices  > li .notice-image,
.notices  > span .notice-image,
.notices  > a .notice-image,
.notices  > div .image,
.notices  > li .image,
.notices  > span .image,
.notices  > a .image {
  max-height: 48px;
  width: 48px;
  height: 48px;
  margin: 20px 20px 20px 20px;
  float: left;
}
.notices  > div .notice-image img,
.notices  > li .notice-image img,
.notices  > span .notice-image img,
.notices  > a .notice-image img,
.notices  > div .image img,
.notices  > li .image img,
.notices  > span .image img,
.notices  > a .image img {
  width: 48px;
  height: 48px;
}
.notices  > div .close,
.notices  > li .close,
.notices  > span .close,
.notices  > a .close {
  z-index: 2;
  position: absolute;
  top: 5px;
  right: 10px;
  cursor: pointer;
  font-weight: bold;
  text-decoration: none;
  color: #fff !important;
}
.notices  > div .close::before,
.notices  > li .close::before,
.notices  > span .close::before,
.notices  > a .close::before {
  content: "\00d7";
  color: #fff !important;
}
.notices  > div .image-large,
.notices  > li .image-large,
.notices  > span .image-large,
.notices  > a .image-large {
  width: 88px;
  height: 88px;
  margin: 1px 10px 1px 1px;
  overflow: hidden;
  float: left;
}
.notices  > div .image-large img,
.notices  > li .image-large img,
.notices  > span .image-large img,
.notices  > a .image-large img {
  width: 88px;
  height: 88px;
}
/*
 * Metro UI CSS
 * Copyright 2012 Sergey Pimenov
 * Licensed under the MIT Lilcense
 *
 * Tiles.less
 *
 */
.tile-group {
  margin: 0;
  margin-right: 80px;
  float: left;
  width: auto;
  height: auto;
  min-height: 1px;
  width: 802px;
}
.tile {
  display: block;
  float: left;
  background-color: #525252;
  width: 150px;
  height: 150px;
  cursor: pointer;
  box-shadow: inset 0px 0px 1px #FFFFCC;
  text-decoration: none;
  color: #ffffff;
  overflow: hidden;
  position: relative;
  font-family:  'Open Sans', Verdana, Arial, Helvetica, sans-serif;
  font-weight: 300;
  font-size: 11px;
  letter-spacing: 0.02em;
  line-height: 20px;
  margin: 0 10px 10px 0;
  overflow: hidden;
}
.tile * {
  color: #ffffff;
}
.tile .tile-content {
  width: 100%;
  height: 100%;
  padding: 0;
  padding-bottom: 30px;
  vertical-align: top;
  padding: 10px 15px;
  overflow: hidden;
  text-overflow: ellipsis;
  position: relative;
  font-family:  'Open Sans', Verdana, Arial, Helvetica, sans-serif;
  font-weight: 400;
  font-size: 9px;
  color: #000000;
  color: #ffffff;
  line-height: 16px;
}
.tile .tile-content:hover {
  color: rgba(0, 0, 0, 0.8);
}
.tile .tile-content:active {
  color: rgba(0, 0, 0, 0.4);
}
.tile .tile-content:hover {
  color: #ffffff;
}
.tile .tile-content h1,
.tile .tile-content h2,
.tile .tile-content h3,
.tile .tile-content h4,
.tile .tile-content h5,
.tile .tile-content h6,
.tile .tile-content p {
  padding: 0;
  margin: 0;
  line-height: 24px;
}
.tile .tile-content h1:hover,
.tile .tile-content h2:hover,
.tile .tile-content h3:hover,
.tile .tile-content h4:hover,
.tile .tile-content h5:hover,
.tile .tile-content h6:hover,
.tile .tile-content p:hover {
  color: #ffffff;
}
.tile .tile-content p {
  font-family:  'Open Sans', Verdana, Arial, Helvetica, sans-serif;
  font-weight: 400;
  font-size: 9px;
  color: #000000;
  color: #ffffff;
  line-height: 16px;
  overflow: hidden;
  text-overflow: ellipsis;
}
.tile .tile-content p:hover {
  color: rgba(0, 0, 0, 0.8);
}
.tile .tile-content p:active {
  color: rgba(0, 0, 0, 0.4);
}
.tile .tile-content p:hover {
  color: #ffffff;
}
.tile.icon  > .tile-content {
  padding: 0;
}
.tile.icon  > .tile-content  > img {
  position: absolute;
  width: 64px;
  height: 64px;
  top: 50%;
  left: 50%;
  margin-left: -32px;
  margin-top: -32px;
}
.tile.image  > .tile-content,
.tile.image-slider  > .tile-content {
  padding: 0;
}
.tile.image  > .tile-content  > img,
.tile.image-slider  > .tile-content  > img {
  width: 100%;
  height: auto;
  min-height: 100%;
  max-width: 100%;
}
.tile.image-set  > .tile-content {
  margin: 0;
  padding: 0;
  width: 25% !important;
  height: 50%;
  float: left;
  border: 1px #1e1e1e solid;
}
.tile.image-set  > .tile-content  > img {
  min-width: 100%;
  width: 100%;
  height: auto;
  min-height: 100%;
}
.tile.image-set .tile-content:first-child {
  width: 50% !important;
  float: left;
  height: 100%;
}
.tile.double {
  width: 310px;
}
.tile.triple {
  width: 470px;
}
.tile.quadro {
  width: 630px;
}
.tile.double-vertical {
  height: 310px;
}
.tile.triple-vertical {
  height: 470px;
}
.tile.quadro-vertical {
  height: 630px;
}
.tile .brand,
.tile .tile-status {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  min-height: 30px;
  background-color: transparent;
  *zoom: 1;
}
.tile .brand:before,
.tile .tile-status:before,
.tile .brand:after,
.tile .tile-status:after {
  display: table;
  content: "";
}
.tile .brand:after,
.tile .tile-status:after {
  clear: both;
}
.tile .brand  > .badge,
.tile .tile-status  > .badge {
  position: absolute;
  bottom: 0;
  right: 0;
  right: 5px;
  margin-bottom: 0;
  color: #ffffff;
  width: 34px;
  height: 28px;
  text-align: center;
  font-family:  'Open Sans', Verdana, Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.01em;
  line-height: 14px;
  padding-top: 3px;
}
.tile .brand  > .badge.activity,
.tile .tile-status  > .badge.activity {
  background: #2d89ef url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAGMSURBVDhPvZMtTwNBEIbv2mtScaICcQJRgSgJCQIEhqSiAlEHAlFRwU/ov0AgUEgUsrIkiJIgMOAQJFSQQAIJJBWIu95Hj2eGvXIpB3W8yWTn452Z3dld25pDmqZuFEWdcrm8jr6JK7Bt+wb9Ft85+vsXswBxHHdIfmFNi4TYG7InXAp6ss52kCTJIc6e6KzSVbrdYzrYDaSFXZU4uEQ8x3FW1ZpMJge5Tn3IdQ3kID5iw4zHTqIsUEP3TWCA7WhgDjRZg/eUFRCR3Fl3KYJjyfALIUU46jHcsSlQl8FdmQJnhrcQJFbJ6QZB0LDDMNyS4XBFo1Kp9Gw4/wi247GLHmvNuBaC47Y5gtzIQB1mBmMGdDSdTpfV+QdM8vfcsqkap6ClgQIQa+a4bXViPGRO5ILjuBqYAwk7yIfhXcNz9CljDFkkST6P4JGjnHA7d+gBxAY3tIve1Khljbi1beKvakHQp0uhfTrMjvOL9H3fX9FE8OM7yxAhdem4QWHZkSufSoTYaaVSkY9kYFmfXgyTciI3uacAAAAASUVORK5CYII%3D) 50% no-repeat;
}
.tile .brand  > .badge.alert,
.tile .tile-status  > .badge.alert {
  background: #2d89ef url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAFeSURBVDhPpZMtT8RAEIbb7YoTJ04gkQgQuBNIEpB4LD8AwQ9AkCCQhGAvQSAuKHCIE0gEP+DEISAhQYK4pE0/eWa65a7lSvh4k8nsvDv77sxs67UhSZLNNE0LZ3uO/gLj/J+hAkVRWI1+geqMCuR5fkKZoyiKViX+DuQu094wy7KhEmEYrkAk0qt4Nk5R77GszQCuE8fxIXxY8ZJjgiBY8n3/UcTwlsQDNifGmF29AcBtITyGOyan47gXXFfW2g/q+yi+VeptJhVgR1KRHp4HZI+bzknQlhYcvpQZuHRF8xmnCDyLL8MZEI9o4YkW3h1VB+o73DJp3to08l7xsw9Lng5i1EiSSV/Pcbdwzfk8MLcNqjIyye1STnHD5joln7lYcGWtXaP8gYsFfeJyHvR9waExt3wKsV74L3Brn/geu3OUDqiL1T7nNoEK8mLi9RUoZYqlsv4pqtf459/oeR8seozS7mDHCwAAAABJRU5ErkJggg%3D%3D) 50% no-repeat;
}
.tile .brand  > .badge.available,
.tile .tile-status  > .badge.available {
  background: #2d89ef url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAACXBIWXMAAA7DAAAOwwHHb6hkAAAAIGNIUk0AAHolAACAgwAA+f8AAIDoAABSCAABFVgAADqXAAAXb9daH5AAAAKvSURBVHjahJA/bJR1HMY/31977x33r2LuClc1LYM9TSAUr5gqtkVJjAkSFxYHE3VgaWRw0cUwOagxMZLApoXFBIwuHVSoQYkVMBXUpqSkMW9jaS25plh7/3rv+3scTIwixs/8PHn+2Bk/SVtN2mqxacYOKw13KfNiXtlneihmDONXqs0VVs/VXP1UqJvnc8qBeZoWYWf9JHXVqWkj2EX55G76X86R4W40aDHNzMdzLBwJLLEWm6fTI+o0knvZ+dkgO/cDfGczTNpl5gjxePrpY0SPMKwKT1A5nCe7Y4ofDgQEv/Ghn2AqunZabUmR9Fb8gQoaUVIVFTSiokaV0qDu0T694Y+rGbWktnQ5+nHiuP+IjrFjR4cqevj9wBK8beO87t6jiyzbKJAiIEWSreQxjAm7QGyeAwzRzb39i/7WFbdV2bGs0nxvs7zjxtlOgRwZPP6v7R5PmhQPUOKEneFLd4UECfqs51WXU/opDL6wb/mdDfJkEfrXgUKk2UKbiM/5BoD76d7reujOANwgJH9H8p14PDnSzBGySZsSReecDIAIDxj/jxH/LcQtW7UJ0E8f69RwuP+0Ohwb1CnTS0CCW6zK3Wb9a4AnNcgWktRoYHdpYhgtWvypfRSARVv5yVXd2smGWuzTHo7qeRZZpk7zH00cRos2ITd5yT/HQY0gPKGW3u0YPvZ06HB77tO2hx5jN5HFTNk11lgHRIs2VW5Tp8kRf5g3eYUUSa5y/eKsfn7NTvlPaCjqelwDF3bx4ADAeXeJc1xijpCYmDJ9jKrCIe0H4IaF81/56VGDJTvtPwV1IFmhTO/4AOWDSQIAWmwiRIokADEx08xeXGD5hUjxQp0GnQCdOAKS1RnNP7tO7VDOMmO9bB8qUQRghVVCW7raUOPEvH45W7IidRoA/DEAmmk0pL+n6f4AAAAASUVORK5CYII%3D) 50% no-repeat;
}
.tile .brand  > .badge.unavailable,
.tile .tile-status  > .badge.unavailable {
  background: #2d89ef url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAACXBIWXMAAA7DAAAOwwHHb6hkAAAAIGNIUk0AAHolAACAgwAA+f8AAIDoAABSCAABFVgAADqXAAAXb9daH5AAAAKASURBVHjalJK9axxXFMV/772ZzOysVqvRDgtaSSwpJYFwY3ATEpIm5KNLawgp3Ljz/5E2bu20CYQUBoMNNnaRMkUKqYiQtIgdCQ0TaVc7M29n3nspzC7GMYYcuMWFe7jnHI4YjUY453DOYYyh0+l8opT63vO8L8MwbAshqKqq0lo/c849rqrquXMOIcSbGY1GWGsxxny0urr6MI7jH5RSAFhrAZBSLvc8z3+dTqf3lFL/SCnxAIwxwdra2tP19fXPAC4vL8myjKIoAIiiiF6vR7/fJ0mS75RSH19dXX0hpbwWx8fHrKys/JwkyV1rLYeHh5yenuKc420lzjm2trbY3d3F8zzyPH8ynU6/ERcXF3fiOP7D930ODg44OjoiDMOl7AWstZRlyXA4ZH9/H2MM4/H4K+l53n3f98myjJOTE4Ig+A95kUMURZydnXF+fo5SiiiKHkjf9z9f+AaWst+HRfKL2yiKbssgCNrOOWaz2Xs/vwulFLPZjLquCcPwDcM5x//B2/dyPp9XC3/WWoQQHyQbY2i32/i+T1VVTtZ1/QogSZJlGz/02VpLkiQAlGX5l2ya5mHTNPT7fba3tynLctnAd8llWTIYDNjY2MBaS1EUP0qt9YvJZPI7wM7ODsPhEK01WmuapqFpGrTWVFXFYDBgb28PIQTX19ev67r+TYzHY7TW3W63+zKO41sAaZqSZRk3NzcAtNtter0em5ubAEwmk7/zPP9USjkWaZoyn89xziWdTudRt9v9etGFuq4B8H1/aSXP89dFUdx1zp065xBpmlLXNUIIjDG0Wq1vPc+7H4bhnVarhRCCsiwpiuJPY8xPRVH8EgQBxhistfw7ABpxTL93U9x/AAAAAElFTkSuQmCC) 50% no-repeat;
}
.tile .brand  > .badge.away,
.tile .tile-status  > .badge.away {
  background: #2d89ef url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAACXBIWXMAAA7DAAAOwwHHb6hkAAAAIGNIUk0AAHolAACAgwAA+f8AAIDoAABSCAABFVgAADqXAAAXb9daH5AAAAJ2SURBVHjajJI7iFVnFIW//d9zz52ZO2fG14gzJBgbp5JYKPh+NqKxsxWMRZoBCxu1sAuBKFaClj5KDUQhRXybCIqICjqNYjFDhtExN45e7/uc8y+L/yJGp3A1+2fDWv/ea23zlQvIp0gpRgfrWbZRNrhP0cAOopEyGGSvWmQz15zq59SeuC5LsAis0MJ85SLKG8jXY3pXnKb8/X6iBAB8KLhuzZtQf/gbrWc/WTGetSgnAg9qlCiv/pNk1RYAqz3A6jeg/SyoxMtReRNKNsLAhj24gWW0726H+B3+9Rmyd3fPp5KyXMpf/SqNL5KelEIdH5Ke9Ejj8+SnjyrLWkolZbX7f/jZk5h/e3WN7197j0I/NnMMN3MYoiXgBv6/g+rQmUJDR/Ajv4BP0eylnU5u/pgK/Vj9Ee6/411y8gm5a4b1Qfwt9uYUrnoTXBGLvzvoFCXbDLDaVcjfd38WX0JBRCnUroRW/M1qRzRSxgPt55+NPRc8FJJgbtaB4rBz+phRxtcj//hylr5s4YDScvDVT0KfCw7yGpRGIYohfS2H3v4NoL6tYL3BbWwOsoHawY3y1tDJpp46p8pp5U2UrEcLD0BnCtT4bBIXyJ0J/Pwf0eAu8ELtiROO5uQtazy9LMAvPoKGDoU00n/CSr4K2RTkFfyCMRj+OWg2Ht9RNv27+X/PId8cVN+62/SvWAngqtehdq17yjmURlHfZjRvdxi98fyFr/21GWfT5ivnkQehRfSOnqV35S4KpW4w7ZB/1NNNMYf6wzukk3ulbBI1iIJkBBZX1Bn/gby621wyRrx0DcXhQGzPYOnEY/nmKbVeXLTicNcn+DAArZ4503S5ZjkAAAAASUVORK5CYII%3D) 50% no-repeat;
}
.tile .brand  > .badge.busy,
.tile .tile-status  > .badge.busy {
  background: #2d89ef url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAACXBIWXMAAA7DAAAOwwHHb6hkAAAAIGNIUk0AAHolAACAgwAA+f8AAIDoAABSCAABFVgAADqXAAAXb9daH5AAAAKNSURBVHjajJI9a1RBGIWfGeLdmPXuKkR0Q0RTmFsFUxgQNcaPRonpbAW1sAlY2IhFfoCIVSDaaVImFhYWmkTxAwJBVgttNqTYQFAjAWPi7t3svXeOxeC3hQdeZpiZ887DmTFuchIlCUoSTLOJ6erqV7F4QYXCaTo68hgDHz82WFmZsbXauKrVWYUhBjCNBsZNTaF6HdVqAT09tzlw4BJhyD8Vx1Au36dSuWyC4LPJMlpwDur1HH19jzh48DiAefUK8+QJVCrgHHR3o2PHUH8/HD16jkKhi7m5UwTBF9zdu6RzcxOJpFRSduOG1N4u5XJ+3LlTam2Vtm+XGxlR2mgokZTOzz90o6PgpqcPpRsbP83GSKWSFEXS/v2+okjq7JRA7vp1pZLSZlPJ5OQZqx07hrVtG+b1a+zNm7B7N4ShR/8u56CtDfbswYyNYZ8+hS1bMPv2XbUKw5MGMNPTsLEBhQJIfwco+SZJAo8f+7XOzj5LR0cegIUFb/715j/lnKerVKDZhFLJWlnrN9OU/1aW/Zha8+FDA4Dublhfh+8N/yVr4etXiCIIAvj0SZa1tRcAOnECtm6FWg2M+dtsDGxu8uMsYJaX31q7unpbcYyOHEFXrsDyMtTrv5NY683VKu7iRTQ4CBKqVm/h7twhnZ9/kEhK41ju2jWpWJTa2qRdu3zl81I+r2x4WNnamv8H5fKLZHQU48bHURwXdfjwM3p6egHs7CzMzPi0swyiCA0MoKEhj76wsOiePx/AmPfGTUwgQFI7UXSP3t5BcjmPvrnp37+19Wf65fJLlpbOK02XqNdpAaClBYJgVe/enWV9fciE4TB79x6iVPLGlRVMtfpGcTymxcUpUyr5nIBvAwDWIWcndiwtQAAAAABJRU5ErkJggg%3D%3D) 50% no-repeat;
}
.tile .brand  > .badge.newMessage,
.tile .tile-status  > .badge.newMessage {
  background: #2d89ef url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAC/SURBVDhP1ZE9DgIhFIQhobDYg1haWniMbSw9j0exsfMAeg9L7Sy2kPATnCFI2LgYtjJOMjx4vPkoED+X5OK934cQ+thpFOYvSqmdMMascVDOuQMcGn1GptNaL4W1dgBkMwOSw8jeBJszIKMwexFAN0A+wnQG0Lh4wv0EJIb5AO4fRX8MoDFAlZAyPJSztOSSfiYLAYeyxTcdURcIrqSUJ7iLA4UmAdQbgnqvhakqgEoQXQtTXwEtIuCa9n8pIV67VJf6AmhGmgAAAABJRU5ErkJggg%3D%3D) 50% no-repeat;
}
.tile .brand  > .badge.paused,
.tile .tile-status  > .badge.paused {
  background: #2d89ef url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAArSURBVDhPY/j9+7fDnz9//mPBCQxQgE8NE1QN2WDUgFEDQGDUgIE3gIEBAArtNKc4HT7sAAAAAElFTkSuQmCC) 50% no-repeat;
}
.tile .brand  > .badge.playing,
.tile .tile-status  > .badge.playing {
  background: #2d89ef url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAEXSURBVDhPY4CBnz9/pvz+/dsFyiUaMEFpBiYmJhkgtf3v37/t////Z4GIEgZwA0CAkZGRBai5AmjIYSCtABXGC1AMQAIWf/78OQ/EEVA+ToDLAJBrBIDUcqBrZgNdwwMRxQQ4DYABoOYUoCGngYFsABVCAQQNgAINYCAf//XrVwGUDwfEGgDyEgfQkH5guGwGukoEKky8AUhA5sePH6DwAQOSDAC6YgIzM7MpJyfnHagQcQYAnfwGiD2BmguBhvyBCoMBMQbsYWFh0WVlZd0B5aMAnAYAbfzz79+/SqBmV6CtL6DCGACXAQ+ABliysbF1QPk4AYYBQI0rgH7VBWo+AxXCC+AGADV+AVKJQL9GAp0MYhMBGBgA8v5j1f90TA8AAAAASUVORK5CYII%3D) 50% no-repeat;
}
.tile .brand  > .badge.error,
.tile .tile-status  > .badge.error {
  background: #2d89ef url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAFiSURBVDhPjVM7TsNQELRjy8ISBQeIREtBEYnQUXCINFTkCCBxgNwAJI5AaejSpaCAEqRINBTcIQ1SbD9/mHmfZP3iSIw0ytt9O7O7thMGHpqmGVZVNQnD8AwcMde27RL8rOt6nqbpjy7sA4RTpdQKv20fcbcuy/IOZrGVbIHLpz7RHr52TJCYukuMeU+6WDBjdxej4UyLubMbm0KdBDyTzHWEyY01UEVRnA4Q8IEdaZVAFEW3yD/g+IzzFc6VuTFAHAPXO7vLKQi5q+suuOD+X15yx4ToEXON1QB3B6ZkC3Qd+q8Kaxzbo0TMCTLPefPAfPS8nTeOtnk1YEfMsf11pIm+y/P8BLusmaCZrevsLE1QO3F51FzopJyCQil2pAnFoLLxI7X6z8SxkVjgeMn4H/jGQz3Ht/BrY2MC85nrsI/sjNpDKzMTSODzHPELQ9EY1H9ndFqCHxC/JEnyrgs1guAPTvwreuY0IiIAAAAASUVORK5CYII%3D) 50% no-repeat;
}
.tile .brand  > .badge.attention,
.tile .tile-status  > .badge.attention {
  background: #2d89ef url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAEbSURBVDhPtZI9bsJAEIVZ7ANQ5gApEomChjoNBUUOkSJFivSUQE3JEThCCo4BkotcIVKKNEi2vP7hveVZrMFgKPJJo915szOzf51/Jc/zhbV2Jfc+kiR5QrLNsqzEMJJ8O0hcM1kWlWUZKtQOOo69ZGdpmn4ofB12QsI3k1BoRtP8F7Gell0GnT6rrpJ4HOfzUiU1ww7o9HepAGI2juNHyeegw7Ja3FRA9iW5jv9slSl0WqD2rEYjF7Hy68E7gCPNORpjpk44sg2CYAg969JTxVoywYIXmlyfAS77jRPDZ8PZN5j3KfiEYeh2yG07wQN5P4g/d9H9Hf5ZMkHM/QO5NbCzh6IoJgbVI/iNBdrALnY8An9X+w9rpLPbA/sADga+JgSiAAAAAElFTkSuQmCC) 50% no-repeat;
}
.tile .brand  > .name,
.tile .tile-status  > .name {
  position: absolute;
  bottom: 0;
  left: 0;
  margin-bottom: 5px;
  margin-left: 15px;
  font-family:  'Open Sans', Verdana, Arial, Helvetica, sans-serif;
  font-weight: 400;
  font-size: 9px;
  color: #ffffff;
}
.tile .brand  > .name:hover,
.tile .tile-status  > .name:hover {
  color: #ffffff;
}
.tile .brand  > .name  > [class*=icon-],
.tile .tile-status  > .name  > [class*=icon-] {
  font-size: 24px;
}
.tile .brand  > .icon,
.tile .tile-status  > .icon {
  margin: 5px 15px;
  width: 32px;
  height: 32px;
}
.tile .brand  > .icon  > [class*=icon-],
.tile .tile-status  > .icon  > [class*=icon-] {
  font-size: 32px;
}
.tile .brand  > .icon  > img,
.tile .tile-status  > .icon  > img {
  width: 100%;
  height: 100%;
}
.tile .brand  > .text,
.tile .tile-status  > .text {
  position: absolute;
  left: 60px;
  top: 5px;
  right: 50px;
  font-family:  'Open Sans', Verdana, Arial, Helvetica, sans-serif;
  font-weight: 400;
  font-size: 9px;
  color: #000000;
  color: #ffffff;
  line-height: 14px;
}
.tile .brand  > .text:hover,
.tile .tile-status  > .text:hover {
  color: rgba(0, 0, 0, 0.8);
}
.tile .brand  > .text:active,
.tile .tile-status  > .text:active {
  color: rgba(0, 0, 0, 0.4);
}
.tile .brand  > .text:hover,
.tile .tile-status  > .text:hover {
  color: #ffffff;
}
.tile:hover {
  outline: 3px #3a3a3a solid;
}




.floatForm-left {
	float:left;
	margin-right:5px; }

.floatForm-right {
	float:right;
	margin-left:5px; }
			
label {
  font-family:  'Open Sans', Verdana, Arial, Helvetica, sans-serif;
  font-weight: 300;
  font-size: 11px;
  letter-spacing: 0.02em;
  line-height: 20px;
  margin-right: 10px;
  margin-bottom: 10px;
}
label.informativo{
  font-weight: 300;
  font-size: 09px;
  line-height: 15px;
  margin-right: 0px;
  margin-bottom: 10px; }
  
fieldset {
  position: relative;
  margin-top: 30px;
  border: 2px #eaeaea solid;
  padding: 10px;
}
fieldset legend {
  padding-left: 10px;
  padding-right: 10px;
  font-family:  'Open Sans', Verdana, Arial, Helvetica, sans-serif;
  font-weight: 300;
  font-size: 11px;
  letter-spacing: 0.02em;
  line-height: 20px;
  color: #cfcfcf;
  position: absolute;
  top: -25px;
  left: -10px;
}

/*
 * Metro UI CSS
 * Copyright 2012 Sergey Pimenov
 * Licensed under the MIT Lilcense
 *
 * images.less
 *
 */
.image-collection {
  position: relative;
  margin-left: 0;
  list-style: none;
  *zoom: 1;
}
.image-collection:before,
.image-collection:after {
  display: table;
  content: "";
}
.image-collection:after {
  clear: both;
}
.image-collection  > div,
.image-collection  > li {
  width: 220px;
  height: 121px;
  overflow: hidden;
  margin-right: 20px;
  margin-bottom: 20px;
  position: relative;
  box-shadow: inset 0px 0px 1px #FFFFCC;
  float: left;
  background: #cccccc url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADAAAAAwCAYAAABXAvmHAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAP5SURBVGhD7ZdBSBRRGIB319VW8OBhAwMhgwIPQgpGHYoMDeoYeAkSDBKSEIw8BCUd7FahgZDQxZtBFw9BRkIGezA0FAo0EBIyCCrwILjq6vb9M/8uM7szu+7qaAvzweP9/3tv3vz//978703Ax8fHx2cvBLW2sbW11R4MBp+o6sjOzs7zioqKIVUPjZDWNjC+iqouV2FMNfWh4+hAKRFMJpNhtkxvKBS6iC6RF2oo9aboyrKWw2CNLfypvLx8KLi9vT2IE73aUWqMB4n+b/ZzVBtKCgKfCCYSiaTqJcmBO0DUVlnxacoK+/gn395x2uoo52iL6LBdc5AOvMHIZ+FwOIahCW1LQ18EW67Q9wC12WzNj+cOYNgKVQcZY8psyc/GxsYtVmYQZ1JZ0RWvHYiVlZVdw5A/qhtgYAPtjWwhSR6zODfPmDWz10THvEbMmc69dGAJA5pShskWweABym2XyE5hS3ckEllUPbC+vn6SLTfDeNdT35OTGGMTnC8SecP4zc3NZvQ52vtcjBdacHiOsX2qByorK5eoOkzNGU9WACNHMKZbZCJei/FfckUxE57p4aI4rGoAGz9QtZiaHU8cwPhjGPxL5Fwvd4OViuN0U2o7cdhKdnprdGbgxRaSNJkyvpOqIOMFno+w91+oGkCexCnbR57C1QEmGWIpLxDNE9bCRJfoG9FhWdAXU1Ei2apiwfDseYpxsDFngjJpdGTg9j8wjLF32YcSzWVrkXxOXzeTv9LhNmj/pqLM06hiwfCs3JIbVBVdzpMsHB0g8u9UdIUJHcfggPEi6jBV2oBi4DBLP49Nf1W04egAL5e/rpy4jcEx42ZLnWCM7QArFOvzOHNERRtuW+iR5G5Vs2Bp26jumZodSZsqyjzTKhYFH2/6eeu8VtwciOLxDIb+IJN8txZpo/89xfFA4rmzKso88yoWDNFf4fn0CiCfU9HGvp8DvHiNyB3lhXHkKPMvIBfzw3STeUZFiMfj9cgLRmsGjiuwFzC2ilWS/C+yRLBL5AIZTxkvkPnuqJiFJyexfHwYcAoHVkXnVB2g7aHRmZ950vRldT51oZNVlKyWxb6vgMDLohj9UlW5WvTjwFWKYy4X6JPD6iljz6SMpy1C9MfcjBe8vE5L5ujnMHysqhhUzfa6gZGnkSXLSSL4yrjP1BOMnZVxAv1hgjCG2G62OOOpAwLRGyUzdVFn/Ua6gfE1anzee5QnW8gKxnRizAKBMj7sXDA2wvlzXzIX6q4ugZ6vgBUMlL09wZb5yKrI9xCnVNNei95K3cZK5f0PtnKgDnhBCK8d79mlQoglS9/fS5DFEGmtByHGSuw6S/wnzJIcrqvs4+Pj41MMgcA/8Fr5zKgSl7AAAAAASUVORK5CYII%3D) 50% no-repeat;
  display: table-cell;
  vertical-align: middle !important;
  text-align: center;
}
.image-collection  > div  > img,
.image-collection  > li  > img {
  width: 100%;
  height: auto;
  min-height: 100%;
  max-width: 100%;
}
.image-collection  > div  > .overlay,
.image-collection  > li  > .overlay {
  position: absolute;
  width: 100%;
  height: 55px;
  overflow: hidden;
  background-color: #1e1e1e;
  color: #fff;
  font-size: 8px;
  text-align: left;
  line-height: 12px;
  padding: 5px 10px;
  opacity: .8;
  bottom: -55px;
}
.image-collection  > div:hover .overlay,
.image-collection  > li:hover .overlay {
  -webkit-transform: translate(0, -55px);
  -ms-transform: translate(0, -55px);
  -o-transform: translate(0, -55px);
  -moz-transform: translate(0, -55px);
  transform: translate(0, -55px);
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s easet;
}
.image-collection.p16x9  > div {
  width: 220px;
  height: 121px;
}
.image-collection.p4x3  > div {
  width: 220px;
  height: 165px;
}
.image-container {
  position: relative;
  padding: 5px 5px 50px;
  background-color: #1e1e1e;
  width: 220px;
  margin-right: 20px;
  margin-bottom: 20px;
}
.image-container img {
  width: 100%;
  height: auto;
}
.image-container  > .overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50px;
  font-size: 8px;
  color: #fff;
  line-height: 14px;
  padding: 0 5px;
  overflow: hidden;
  text-overflow: ellipsis;
}
.image-container.light {
  background-color: #ccc;
}
.image-container.light  > .overlay {
  color: #1e1e1e;
}
/*
 * Metro UI CSS
 * Copyright 2012 Sergey Pimenov
 * Licensed under the MIT Lilcense
 *
 * Code.less
 *
 */
code,
pre {
  padding: 0 3px 2px;
  font-family:  'Open Sans', Verdana, Arial, Helvetica, sans-serif;
  font-weight: 300;
  font-size: 11px;
  letter-spacing: 0.02em;
  line-height: 20px;
  font-size: 10px;
  color: #525252;
}
code {
  padding: 2px 4px;
  font-family:  'Open Sans', Verdana, Arial, Helvetica, sans-serif;
  font-weight: 400;
  font-size: 9px;
  color: #d14;
  background-color: #f7f7f9;
  border: 1px #e1e1e8 solid;
}
pre {
  display: block;
  padding: 10px;
  margin: 0;
  line-height: 14px;
  word-break: break-all;
  word-wrap: break-word;
  white-space: pre;
  white-space: pre-wrap;
  background-color: #f5f5f5;
  border: 1px solid rgba(0, 0, 0, 0.15);
}
pre.prettyprint {
  margin-bottom: 10px;
}
pre code {
  padding: 0;
  color: inherit;
  background-color: transparent;
  border: 0;
}
/*
 * Metro UI CSS
 * Copyright 2012 Sergey Pimenov
 * Licensed under the MIT Lilcense
 *
 * PageControl.less
 *
 */
.page-control {
  position: relative;
  *zoom: 1;
}
.page-control:before,
.page-control:after {
  display: table;
  content: "";
}
.page-control:after {
  clear: both;
}
.page-control  > ul {
  margin-left: 0;
  list-style: none;
  *zoom: 1;
  position: absolute;
  z-index: 5;
  width: 100%;
  background-color: rgba(217, 217, 217, 0.16);
  height: 30px;
}
.page-control  > ul:before,
.page-control  > ul:after {
  display: table;
  content: "";
}
.page-control  > ul:after {
  clear: both;
}
.page-control  > ul li:first-child {
  margin-left: 20px;
}
.page-control  > ul li {
  float: left;
  display: block;
  text-align: center;
}
.page-control  > ul li img {
  float: left;
  width: 16px;
  height: 16px;
  margin-right: 5px;
  margin-top: 3px;
}
.page-control  > ul li.active {
  border: 1px #ccc solid;
  border-bottom: 0;
  background-color: #fff;
}
.page-control  > ul li.active span,
.page-control  > ul li.active a {
  color: #2d89ef;
}
.page-control  > ul li span,
.page-control  > ul li a {
  text-decoration: none;
  display: block;
  float: left;
  padding: 5px 10px;
  color: #1e1e1e;
  font-family:  'Open Sans', Verdana, Arial, Helvetica, sans-serif;
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 0.01em;
  line-height: 14px;
  cursor: pointer;
  outline: 0;
}
.page-control.tabs-right  > ul li {
  float: right !important;
  margin-left: 10px;
}
.page-control .frames {
  margin-top: 28px;
  width: 100%;
  min-height: 50px;
  border: 1px #ccc solid;
}
.page-control .frames .frame {
  width: 100%;
  min-height: 100%;
  height: auto;
  display: none;
  padding: 20px;
}
.page-control .frames .frame.active {
  display: block;
}
.page-control ul {
  display: block;
  overflow: visible;
}
.page-control .menu-pull,
.page-control .menu-pull-bar {
  display: none;
}
/*
 * Metro UI CSS
 * Copyright 2012 Sergey Pimenov
 * Licensed under the MIT Lilcense
 *
 * Accordion.less
 */
.accordion {
  margin-left: 0;
  list-style: none;
  *zoom: 1;
  margin-bottom: 10px;
}
.accordion:before,
.accordion:after {
  display: table;
  content: "";
}
.accordion:after {
  clear: both;
}
.accordion  > li {
  margin-bottom: 5px;
  display: block;
}
.accordion  > li  > a {
  display: block;
  height: 32px;
  background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAALnSURBVEhLrZY/aNNREMeTXzPYksHBQdoMGUxbSkXSpK2gULcKCnas0MEODoIOgqWrRcHJujpEonQQh2LrVKVCgxWEtMVABMFCW0iTDg4iqNikiZ/vy2vMX2v/fOHy7t293929e/fuxe36B7q6urwtLS1DhUJh0O12+xH5ihrXFpTK5/Ovkc8sLy9/LYprUdeBDDc3N9+BHcdACgczjuN8wuC69MjkqAP5ZcZu5o/hJ+o5qnHQ29sbxtBL8Ri9Ho/H54yiAXp6es6yLgp7EkdXq9c32dEgHA4PE8ksC1/lcrkrKysrSatqiEwmkwoEAk+2t7eP8+1kW1vbj3Q6/cGq/0KRh0KhXzgZsaJ9g+8vQFl2pdQZmB0o5x6P550iX1paumc0BwC7WW9tbW0iZQ99Pt/U5ubmd0cKe6CubDZ7W2M9sMNr7K4gIsq7VlwDr9d7n1Stco4mUEfRM47rQBOJxDcJD4NYLJbD1ihORoLB4ClHdU5qUntVy36ArY8MCzgadvA0CM0UVUcKVeOghx8/9NYKS1DOLWtAEOcsq4t2plpP1E8tu4sk34y7ObQ1mFFu4YJVGOgwLftfoPoqLm1/f79/Z2dnTSnyMM8VxUcPRwesNNl5CTieKCdE5ee0UEdfATqBD/mWok9BHUZaBlJWUevKOR8MiWeMVeurwZpOBe+o5TIpXe2jAiV6CQdzSpG23q1eVFQdHjpggr6I7WlHPRxG/XxqYGDgmF1zKFA9UWzO68KZ0qK3nEDwBScRHI6ZVQcEtm4yPIJOY+uz6aZ0wZ/08QQOJumG79UVJd8vMK6DfYGdW7wlbyQrPTg8Eqs4+Q37TC23vb19cWNjI1/U7g1Fbo1HMP7AimufTD0WVMBzFq6qK9rG1RD2xkZZfx66gfGIVRnUOBD6+vp86ud8MMx0EZqFkjxKJnX2EnWqFBlVLfOMY8q59OWo62AXpp/TcjGgjqumaP62wJu/LcznoOnGu3S5/gDwHX69fcclgQAAAABJRU5ErkJggg%3D%3D) 5px no-repeat;
  background-color: rgba(217, 217, 217, 0.16);
  padding-left: 36px;
  padding-top: 5px;
  font-family:  'Open Sans', Verdana, Arial, Helvetica, sans-serif;
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 0.01em;
  line-height: 14px;
}
.accordion  > li  > div {
  border: 1px #ccc dotted;
  padding: 10px;
  margin-top: 5px;
  display: none;
}
.accordion  > li.active  > a {
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAKlSURBVEhLtZY/aNNREMeTXzOYkMGxJBkymDSGDua/QyFuERTULYJLBwdBB8HiXBSc7OxQCdJBHIqpUyodClYU8geFFBwCbSB/BJ0kKuavn3t5rX+S2D+JX7jce3fvd3fv3r17MZv+Ab/fb7fZbJd7vV7CbDa7Ebn6GtNHqNLtdteRp/P5/Oe+eBBDHYhhq9V6h+FdDFRwkDYMYxuDu6JHJo5mkF+EzzJ/xHhxmKMBB5FIJIyh5zLG6PVsNptRihEIBoNnWZdiOI2jq3+vn9JcIRwOJ4lkjYUv2u32pUKhUNSqkajX6xWPx/O42Wye5Nslp9P5tVarvdXqX5DIQ6HQd5xc06Ijg+/PQS12JalTUDuQnFssllcSeS6Xu6c0xwC72XU4HFOk7KHL5VqpVqtfDFHoAzW1Wq3bwseB3W6/T6pKnKMK1Kwr5hNerxx0oIcF6T6Dgyx02pA6JzWVSRkXYOsdbJOgkwbbSUDpvmqikGpMGPy48bSthZNEkcDdZspyh8E8t3BTKxSQ9/TwUKD6/ri0sVjM3el0diRFFubtvvg/gEjfjHO5RoELNwfV5R5UoBklnSDIjA9WMajVdSb7V3tSoHAuUEAZqSIp0VnpRX3V+JADJujz2F41pIczkH6+Eo/HT+g1Y4HqSWFzQy6c6kUYX4RNNxqNYze6PXCwN7E3By3IXHVTuuA3+vh7hEt0w9fSFUV+VGDcR+TPsHOLt+SlyPYfHB6JEk5+MHwiLdfr9W6Vy+VuX3swJHJtfBnjD7R48MmUx4IKeMrCEnxeN66R0Dc2xXpJyw2ML2uVwtBHPxqNuqSf80GS6Ra0BhV5lFTqeE5d6HxSinCplg34AgXzQfS/Y6iDPQQCgVMYSWJAOq4brv62MFZ/W5hnoNXRuzSZfgLYkUQRTJGc4wAAAABJRU5ErkJggg%3D%3D);
  background-color: #d9d9d9;
}
.accordion  > li.active  > div {
  display: block;
}
.accordion.dark  > li  > a {
  background-color: #464646;
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAIzSURBVEhLtZYhSENRFIb3HgaDwWA0LAgaBBcMggu2DTQYFwwG44JBsE6MBpOwIhO0iahYJgoqBoNhFjEqaDAIBsOCsvn99509mXub080f/t33/nPuOfedd+7d82ItUK1W++AslykYh4PSwTN8gsee5x3AF6dGIDKBAjMsMS4zKpCC3DI+QNmVaBjOwFGYx77SKlGISqUyDh+NaZObAp8JeAdff/THIQPLsMAq+03+Efj2MmfN5i6aXA8MWrkc5kz6NUg0xfx3qNJ9AUMfokpSMOnPIFaOOG+w1hCh+MjYtCzY5mENOZMbgK2HWKVwsQhavUrT8gXh11YCAXuCeCrVkM+N+vzJ9/1iYO4ctOsNwznM+PxoEx3AbuMQpjwe45KMm3Ar0APwZPN26cD9JD4Ldq2NpwAhIuZPwW21571uTA+B9ivYtBBIcekqUQ/8cOo/QCW6YtzgJe8EUgCS13UK92OUQQ2h63OuL5zBwP13/yTcVYl24arpTYFz220qEHMBXqtEx7B+a3cH07Do82hq0VGyjTu5C+AJ9d+RJvaeEugMz8NtDL1y6BTE0TFxSmxtOCcM8AQ6z9ec0AGIkYXvxBwxKQBiGpYxNOyJdqGgxNBJ6jZkAzAsQWXPQe2PtsE8rVzB102KBg4z5lgiScLkpsAnju8Z1OkZvfLvwHEQFqCO8ROYJZDOFm1/MYmmPt83nyO0+pobWn62MHGIIQPdZwtd4f6lCFb7bCmqFcNuaUAs9glLFQdwvFGvGQAAAABJRU5ErkJggg%3D%3D);
  color: #fff;
}
.accordion.dark  > li.active  > a {
  background-color: #1e1e1e;
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAHpSURBVEhLtZavT8JRFMXBGQgEg5FAYNNgIBAMBhpsEowEIpFgYLMYMBsMFht/gRNHgRn8EzDoCBY2CAQ3g4GAAz/ncUW+ym++nu3swnn3nfu47/se32BgDobDYRie8DEFozAiHXRhB9aDwWAFvjl1CqYWkDGhSDwjykgmL8QW1LgK7cEMPIA3jF/MKzTGYDBIwLYxbfJMkHMIm/B9YT4JWdiDZVa5Y/JCkBtizqXNPTXZCwa0ciXkTFoZFEoyvw/Vuh8wEEZUS8omrQ28Svh8wO8HYiy2iUu3ZRbw2MarMV6srV6tWbihywLPOH5qVUy9z8FXG/MNeD7A8y0+6xBVnOov7mFKBaJ2iHwFns+EqApot90JnQR9XAk2bRItikRUYBt+OukfoAIdFqCLzAOqrwSbNokIvl1XAOri8hWY7xM6KlCH3qPtD45hTZV2eV51KBIjfXOo5fj1iHEn8OUaNhFCTtgQeD3Cqn11FfUrdJ9fmrQ28CjAPp7agx8gpqF+VtKklSFTPHST5k3ygoEiVPUS1PlYGszTymV+ZdJ0kJCxxAZFRps0B+RoQ9VzPSjTV/4bJEZgGeoa161YwCgpM+MRWh7eWU4Vzdtzw9zXFibGCFnoXls4sO5fCrPv15Ya2i18kv4XgcAXTr+7IYi7bgIAAAAASUVORK5CYII%3D);
}

/*
 * Metro UI CSS
 * Copyright 2012 Sergey Pimenov
 * Licensed under the MIT Lilcense
 *
 * Progress.less
 */
.progress-bar {
  height: 5px;
  width: 100%;
  margin-bottom: 10px;
  *zoom: 1;
}
.progress-bar .bar {
  float: left;
  width: 0;
  background-color: #008287;
  height: 100%;
}
.progress-bar:before,
.progress-bar:after {
  display: table;
  content: "";
}
.progress-bar:after {
  clear: both;
}

/*
 * Metro UI CSS
 * Copyright 2012 Sergey Pimenov
 * Licensed under the MIT Lilcense
 *
 * ListView.less
 * Version 1.0
 */
.listview {
  margin-left: 0;
  list-style: none;
  *zoom: 1;
}
.listview li {
  margin-bottom: 10px;
  border: 4px transparent solid;
  padding: 10px;
  width: 300px;
  position: relative;
  display: block;
  cursor: pointer;
  *zoom: 1;
}
.listview li .icon {
  width: 48px;
  height: 48px;
  float: left;
}
.listview li .icon img {
  width: 100%;
  height: 100%;
}
.listview li .data {
  margin-left: 55px;
}
.listview li .data h4 {
  margin: 0;
  padding: 0 0 2px 0;
}
.listview li .data p {
  margin: 0;
  font-size: 9px;
}
.listview li .data .static-rating.small,
.listview li .data .progress-bar {
  margin-bottom: 3px;
}
.listview li:hover {
  outline: 3px #ccc solid;
}
.listview li:active {
  outline: 3px #3e3e3e solid;
}
.listview li:before,
.listview li:after {
  display: table;
  content: "";
}
.listview li:after {
  clear: both;
}
.listview.image li {
  width: 380px;
}
.listview.image li .icon {
  width: 100px;
  height: 100px;
  border: 1px #ccc solid;
}
.listview.image li .data {
  margin-left: 110px;
}
.listview.image li .data h4 {
  margin-bottom: 4px;
}
.listview.image li .data p {
  line-height: 16px;
  font-size: 10px;
  margin-bottom: 5px;
}
.listview.image li .data .static-rating.small,
.listview.image li .data .progress-bar {
  margin-bottom: 10px;
}
.listview.iconic li .icon {
  width: 32px;
  height: 32px;
  border: 1px #ccc solid;
}
.listview.iconic li .data {
  margin-left: 40px;
}
.listview.fluid li {
  float: left;
  margin-right: 10px;
}
.listview  > li.selected {
  border: 4px #2d89ef solid;
}
.listview  > li.selected:after {
  width: 0;
  height: 0;
  border-top: 40px solid #2d89ef;
  border-left: 40px solid transparent;
  position: absolute;
  display: block;
  right: 0;
  content: ".";
  text-indent: -9999px;
  top: 0;
  z-index: 1000;
}
.listview  > li.selected:before {
  position: absolute;
  content: "\2714";
  color: #fff;
  right: 5px;
  top: 0;
  font-family: Tahoma;
  z-index: 2000;
}
.listview:before,
.listview:after {
  display: table;
  content: "";
}
.listview:after {
  clear: both;
}

