
/* ANIMATION */

.spin {
  -webkit-animation: spin 2s infinite linear;
  -moz-animation: spin 2s infinite linear;
  -o-animation: spin 2s infinite linear;
  animation: spin 2s infinite linear;
}
@-moz-keyframes spin {
  0% {
    -moz-transform: rotate(0deg);
  }
  100% {
    -moz-transform: rotate(359deg);
  }
}
@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
  }
}
@-o-keyframes spin {
  0% {
    -o-transform: rotate(0deg);
  }
  100% {
    -o-transform: rotate(359deg);
  }
}
@-ms-keyframes spin {
  0% {
    -ms-transform: rotate(0deg);
  }
  100% {
    -ms-transform: rotate(359deg);
  }
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(359deg);
  }
}

.avataruploader,
.avatar{
width:96px;
height:96px;
}
.avatar{
border-radius: 48px;
box-shadow: 0 1px 5px #999 inset;
}
.avatarinstruction{
text-align: center;
font-size: 12px;
height:96px;
border-radius: 48px;
background:url(img/overlay.png);
padding:40px 0 0;
color:#999;
}




.border{
border:1px solid #aaa;
border-radius: 2px;
box-shadow: 0 1px 3px #ccc inset;
}

.bordertop{border-top:1px solid #aaa;}
.borderright{border-right:1px solid #aaa;}
.borderbottom{border-bottom:1px solid #aaa;}
.borderleft{border-left:1px solid #aaa;}
/* BUTTONS */



.button.transparent{
background: transparent;
border: 1px solid hsla(0,0%,0%,0);
box-shadow: none;
}

.button.transparent.active{
background:#32a5cf;
color:#fff;
}

.button.transparent.disabled:hover{
color:#ccc;
color:hsla(0,0%,60%,0.5);
}

.button:hover,
.table .hover td,
.scrolltable .hover td,
.fileitem:hover,
a.entity:hover{
color:#000;
background: #ddd;
text-decoration: none;
}
.button{
display:inline-block;
font: 12px arial, sans-serif;
text-decoration:none;
color:#000;
text-align:left;
margin:2px 0;
cursor:default;
padding: 6px 15px;
background: #ddd;
border-radius: 2px;
border:0;
outline: none;
}
.button.active,
.button.active:focus,
.button:active,
.table .active td,
.scrolltable .active td,
.fileitem.active{
background:#5990E9;
color:#fff;
text-decoration: none;
}
.button:focus,
.button:hover{
background: #c6c6c6;
color: #000;
text-decoration: none;
}
.button.dark{
color:#fff;
background-color:#5c5c5c;
}
.button.dark:hover{
background: #404040;
}
.button[disabled=disabled],
.button.disabled{
color:#ccc;
color:hsla(0,0%,60%,0.5);
background: #f0f0f0;
}

.table .button.disabled{
background:transparent;
color:hsla(0,0%,60%,0.5);
}

input.button{
line-height: normal!important;
}

input.button.left{
width:auto;
}

input::-moz-focus-inner{ 
border: 0;
padding: 0;
}

#menu .button,
#moremenu .button,
#sidebar .button,
#sidebar .button.active,
#sidebar .button:active,
#sidebar .button:focus{
outline: none;
text-transform: none;
border-radius: 0;
border:0;
box-shadow: none;
}

#menu .button,
#moremenu .button{
border:0;
padding:5px 20px;
}

#sidebar .button,
.big.button{
padding:10px 30px;
}

.roundbutton{
display: inline-block;
padding: 6px 0 0 0;
color: #333;
background: #ccc;
width: 25px;
height: 25px;
text-align: center;
text-decoration: none;
border-radius: 15px;
}
.roundbutton.symbol{
padding: 6px 0 0 0;
}
.roundbutton:hover{
background: #444;
color:#fff;
text-decoration: none;
}

.button.left{
margin-right:2px;
}

.right .button.left{
margin-right:0;
margin-left:2px;
}

.squarebutton{
border-radius: 0;
}
.asterisk{
color:#c00;
}
.required.error{
border-color:#c02;
}
.dimmed{
color:#aaa;
color:hsla(0,0%,0%,0.35);
}

.darkblue{color:#0099CC;}
.darkpurple{color:#9933CC;}
.darkgreen{color:#669900;}
.darkorange{color:#FF8800;}
.darkred{color:#CC0000;}
.darkgray{color:#5c5c5c;}

.pink      {color:#E60099;}
.magenta   {color:#CC00CC;}
.plum      {color:#9900CC;}
.indigo    {color:#6600CC;}
.blue      {color:#4D4DFF;}
.sky       {color:#00AAFF;}
.cyan      {color:#00B3B3;}
.mint      {color:#009973;}
.teal      {color:#008040;}
.green     {color:#00B300;}
.lime      {color:#88CC00;}
.yellow    {color:#E6E600;}
.amber     {color:#FFBF00;}
.orange    {color:#FF8000;}
.red       {color:#CC0000;}

.gray{color:#999;}
.silver{color:#ccc;}
.white{color:#fff;}

.bgpink      {background-color:#E60099;}
.bgmagenta   {background-color:#CC00CC;}
.bgplum      {background-color:#9900CC;}
.bgindigo    {background-color:#6600CC;}
.bgblue      {background-color:#4D4DFF;}
.bgsky       {background-color:#00AAFF;}
.bgcyan      {background-color:#00B3B3;}
.bgmint      {background-color:#009973;}
.bgteal      {background-color:#008040;}
.bggreen     {background-color:#00B300;}
.bglime      {background-color:#88CC00;}
.bgyellow    {background-color:#E6E600;}
.bgamber     {background-color:#FFBF00;}
.bgorange    {background-color:#FF8000;}
.bgred       {background-color:#CC0000;}

.bggray      {background-color:#999;}
.bgsilver    {background-color:#ccc;}
.bgwhite     {background-color:#FFFFFF;}

.button.bgpink      {background-color:#E60099;color:#fff;}
.button.bgmagenta   {background-color:#CC00CC;color:#fff;}
.button.bgplum      {background-color:#9900CC;color:#fff;}
.button.bgindigo    {background-color:#6600CC;color:#fff;}
.button.bgblue      {background-color:#4D4DFF;color:#fff;}
.button.bgsky       {background-color:#00AAFF;color:#fff;}
.button.bgcyan      {background-color:#00B3B3;color:#fff;}
.button.bgmint      {background-color:#009973;color:#fff;}
.button.bgteal      {background-color:#008040;color:#fff;}
.button.bggreen     {background-color:#00B300;color:#fff;}
.button.bglime      {background-color:#88CC00;color:#fff;}
.button.bgyellow    {background-color:#E6E600;color:#333;}
.button.bgamber     {background-color:#FFBF00;color:#333;}
.button.bgorange    {background-color:#FF8000;color:#fff;}
.button.bgred       {background-color:#CC0000;color:#fff;}

.button.bgpink:hover,
.button.bgpinkhover:hover       {background-color:#B30077;color:#fff;}
.button.bgmagenta:hover,
.button.bgmagentahover:hover    {background-color:#990099;color:#fff;}
.button.bgplum:hover,
.button.bgplumhover:hover       {background-color:#730099;color:#fff;}
.button.bgindigo:hover,
.button.bgindigohover:hover     {background-color:#4C0099;color:#fff;}
.button.bgblue:hover,
.button.bgbluehover:hover       {background-color:#1A1AFF;color:#fff;}
.button.bgsky:hover,
.button.bgskyhover:hover        {background-color:#0088CC;color:#fff;}
.button.bgcyan:hover,
.button.bgcyanhover:hover       {background-color:#008080;color:#fff;}
.button.bgmint:hover,
.button.bgminthover:hover       {background-color:#00664D;color:#fff;}
.button.bgteal:hover,
.button.bgtealhover:hover       {background-color:#004D26;color:#fff;}
.button.bggreen:hover,
.button.bggreenhover:hover      {background-color:#008000;color:#fff;}
.button.bglime:hover,
.button.bglimehover:hover       {background-color:#669900;color:#fff;}
.button.bgyellow:hover,
.button.bgyellowhover:hover     {background-color:#B3B300;color:#333;}
.button.bgamber:hover,
.button.bgamberhover:hover      {background-color:#CC9900;color:#333;}
.button.bgorange:hover,
.button.bgorangehover:hover     {background-color:#CC6600;color:#fff;}
.button.bgred:hover,
.button.bgredhover:hover  {background-color:#990000;color:#fff;}

.button.bggrayhover:hover      {background-color:#999;}
.button.bgsilverhover:hover    {background-color:#ccc;}
.button.bgtinhover:hover       {background-color:#e6e6e6;}
.button.bgwhitehover:hover     {background-color:#FFFFFF;}

.button.transparenthover:hover     {background-color:transparent;}

.button.pink      {color:#E60099;}
.button.magenta   {color:#CC00CC;}
.button.plum      {color:#9900CC;}
.button.indigo    {color:#6600CC;}
.button.blue      {color:#4D4DFF;}
.button.sky       {color:#00AAFF;}
.button.cyan      {color:#00B3B3;}
.button.mint      {color:#009973;}
.button.teal      {color:#008040;}
.button.green     {color:#00B300;}
.button.lime      {color:#88CC00;}
.button.yellow    {color:#E6E600;}
.button.amber     {color:#FFBF00;}
.button.orange    {color:#FF8000;}
.button.red       {color:#CC0000;}

.button.pinkhover:hover      {color:#E60099;}
.button.magentahover:hover   {color:#CC00CC;}
.button.plumhover:hover      {color:#9900CC;}
.button.indigohover:hover    {color:#6600CC;}
.button.bluehover:hover      {color:#4D4DFF;}
.button.skyhover:hover       {color:#00AAFF;}
.button.cyanhover:hover      {color:#00B3B3;}
.button.minthover:hover      {color:#009973;}
.button.tealhover:hover      {color:#008040;}
.button.greenhover:hover     {color:#00B300;}
.button.limehover:hover      {color:#88CC00;}
.button.yellowhover:hover    {color:#E6E600;}
.button.amberhover:hover     {color:#FFBF00;}
.button.orangehover:hover    {color:#FF8000;}
.button.redhover:hover       {color:#CC0000;}

/* DISPLAY */

.none{display:none;}
.inline{display:inline;}
.inlineblock{display:inline-block;}
.block{display:block;}



.fileitem{
padding: 1px;
}
.fileitem .label{
font: 11px arial,sans-serif;
padding: 8px 5px 8px 34px;
}

/* TEXT STYLES */

.small{
font-size: smaller;
}

.ellipsis{
overflow: hidden;
text-overflow: ellipsis;
}

.nowrap{
white-space: nowrap;
}

.wordwrap{
white-space: pre;
white-space: pre-wrap;
white-space: pre-line;
white-space: -pre-wrap;
white-space: -o-pre-wrap;
white-space: -moz-pre-wrap;
word-wrap: break-word;
}

.r{
text-align: right;
}

.c{
text-align: center;
}

.l{
text-align: left; 
}

.b{
font-weight:bold;
}

.i{
font-style: italic;
}

.entity{
display:inline-block;
padding:5px 15px;
}

.large{
font:21px arial,sans-serif;
}

.entity.large{
padding:0 15px;
}

.uppercase{
text-transform: uppercase;
}

.lowercase{
text-transform: lowercase;
}

.capitalize{
text-transform: capitalize;
}
.smallcaps{
font-variant: small-caps;
}/* GDI/DirectWrite */

body.gdi h1,
body.gdi h2,
body.gdi h3,
body.gdi #logo{
  text-shadow:0 0 1px hsla(0,0%,50%,0.5);
}
/* GEOMETRY */

#html body .pad{padding:5px;}
#html body .padtop{padding-top:5px;}
#html body .padbottom{padding-bottom:5px;}
#html body .padvertical{padding-top:5px;padding-bottom:5px;}
#html body .padleft{padding-left:5px;}
#html body .padright{padding-right:5px;}
#html body .padhorizontal{padding-left:5px;padding-right:5px;}

#html body .halfpad{padding:2px;}
#html body .halfpadtop{padding-top:2px;}
#html body .halfpadbottom{padding-bottom:2px;}
#html body .halfpadvertical{padding-top:2px;padding-bottom:2px;}
#html body .halfpadleft{padding-left:2px;}
#html body .halfpadright{padding-right:2px;}
#html body .halfpadhorizontal{padding-left:2px;padding-right:2px;}

#html body .nopad{padding:0;}
#html body .nopadtop{padding-top:0;}
#html body .nopadbottom{padding-bottom:0;}
#html body .nopadvertical{padding-top:0;padding-bottom:0;}
#html body .nopadleft{padding-left:0;}
#html body .nopadright{padding-right:0;}
#html body .nopadhorizontal{padding-left:0;padding-right:0;}

#html body .unpadleft{margin:-10px 5px -10px -10px;}
#html body .unpadright{margin:-10px -10px 5px 10px;}

#html body .doublepad{padding:10px;}
#html body .doublepadtop{padding-top:10px;}
#html body .doublepadbottom{padding-bottom:10px;}
#html body .doublepadvertical{padding-top:10px;padding-bottom:10px;}
#html body .doublepadleft{padding-left:10px;}
#html body .doublepadright{padding-right:10px;}
#html body .doublepadhorizontal{padding-left:10px;padding-right:10px;}

#html body .nomargintop{margin-top:0;}
#html body .margintop{margin-top:5px;}
#html body .unmargintop{margin-top:-5px;}
#html body .doublemargintop{margin-top:10px;}
#html body .undoublemargintop{margin-top:-10px;}

#html body .nomarginright{margin-right:0;}
#html body .marginright{margin-right:5px;}
#html body .unmarginright{margin-right:-5px;}
#html body .doublemarginright{margin-right:10px;}
#html body .undoublemarginright{margin-right:-10px;}

#html body .nomarginbottom{margin-bottom:0;}
#html body .marginbottom{margin-bottom:5px;}
#html body .unmarginbottom{margin-bottom:-5px;}
#html body .doublemarginbottom{margin-bottom:10px;}
#html body .undoublemarginbottom{margin-bottom:-10px;}

#html body .nomarginleft{margin-left:0;}
#html body .marginleft{margin-left:5px;}
#html body .unmarginleft{margin-left:-5px;}
#html body .doublemarginleft{margin-left:10px;}
#html body .undoublemarginleft{margin-left:-10px;}

#html body .nomarginvertical{margin-top:0;margin-bottom:0;}
#html body .marginvertical{margin-top:5px;margin-bottom:5px;}
#html body .unmarginvertical{margin-top:-5px;margin-bottom:-5px;}
#html body .doublemarginvertical{margin-top:10px;margin-bottom:10px;}
#html body .undoublemarginvertical{margin-top:-10px;margin-bottom:-10px;}

#html body .nomarginhorizontal{margin-left:0;margin-right:0;}
#html body .marginhorizontal{margin-left:5px;margin-right:5px;}
#html body .unmarginhorizontal{margin-left:-5px;margin-right:-5px;}
#html body .doublemarginhorizontal{margin-left:10px;margin-right:10px;}
#html body .undoublemarginhorizontal{margin-left:-10px;margin-right:-10px;}

#html body .nomargin{margin:0;}
#html body .margin{margin:5px;}
#html body .unmargin{margin:-5px;}
#html body .doublemargin{margin:10px;}
#html body .undoublemargin{margin:-10px;}

.overflowhide{overflow:hidden;}
.overflowauto{overflow:auto;}

.half,
.quarter,
.thirdquarter,
.eighth,
.full,
.quarterwidth,
.halfwidth,
.thirdquarterwidth,
.singlewidth,
.onehalfwidth,
.doublewidth,
.triplewidth,
.quadruplewidth{
width:100%; 
}

.unpadleft,
.unpadright,
.unpadtop{
margin:-10px -10px 5px -10px;
}

img{
max-width:100%;
}
.contain{
-webkit-background-size:contain;
   -moz-background-size:contain;
     -o-background-size:contain;
        background-size:contain;  
background-position:center center;
background-repeat: no-repeat;
}
.cover{
overflow:hidden;
-webkit-background-size:cover;
   -moz-background-size:cover;
     -o-background-size:cover;
        background-size:cover;
background-position:50% 20%;
background-repeat: no-repeat;
}
.cover img{
width:100%;
min-height:100%;
max-height:inherit;
opacity:0;
}


.imgwrapper{
  display: inline-block;
  float: left;
  margin: 0 10px 10px 0;
}

.c .imgwrapper,
.r .imgwrapper{
  float: none;
}

.imgwrapper .description{
  font-size: smaller;
  text-align: center;
}

.icon{
height:30px;
width:30px;
overflow:hidden;
text-align: center;
}
.button .icon.left{
margin:-7px 5px -7px -20px;
}
.icon img{
height:30px;
}

td .icon{
height:28px;
width:28px;
overflow:hidden;
background:#ccc;
text-align: center;
margin:-4px -3px -3px -3px;
}
td .icon img{
height:28px;
}

.big .icon{
height:36px;
width:36px;
overflow:hidden;
text-align: center;
margin:-10px 5px -10px -18px;
}
.big .icon.right{
margin:-10px -18px -10px 5px;
border-radius: 30px;
}
.big .icon img{
height:36px;
}

/* INPUTS */

fieldset{
border: 0;
}

.label{
font-weight: bold;
}

input{
line-height:normal!important;
}

textarea,
input.text{
padding:5px;
font:12px arial,sans-serif;
border:1px #aaa solid;
margin: 2px 0;
border-radius: 2px;
box-shadow: 0 1px 3px #ccc inset;
resize: none;
}

textarea{
height:90px;
}
textarea,textarea.text{
font-family: Consolas,monospace;
}

.file{
overflow:hidden;
position:relative;
}

.file input{
position:absolute;
font: 500px monospace;
position: absolute;
z-index: 1;
top:0;
right:0;
padding:0;
margin: 0;
opacity:0;
filter: alpha(opacity=0);
}

input.search{
background: url(img/search.png) center right no-repeat #fff;
padding-right:24px; 
}

select{
font:12px arial,sans-serif;
padding: 4px;
margin: 2px 0;
border-radius: 2px;
box-shadow: 0 1px 3px #ccc inset;
border:1px #aaa solid;
background: #fff;
}
option.disabled{
  color:#999;
}

.checkbox,.radio{
vertical-align: middle;
display: inline-block;
}

input[type=checkbox],input[type=radio]{
  height:16px;
  width: 16px;
  margin: 6px 2px 0 0;
  -moz-transform: scale(1.25);
}

.text.left,
.select.left{
margin-right:2px;
}

.right .text.left,
.right .select.left{
margin-right:0;
margin-left:2px;
}

.item{
background:#f0f0f0;
margin-bottom: 2px; 
-webkit-transition: background 0.2s ease-in-out;
   -moz-transition: background 0.2s ease-in-out;
    -ms-transition: background 0.2s ease-in-out;
        transition: background 0.2s ease-in-out;
}

.item:hover{
background:#e9e9e9;
-webkit-transition: background 0.2s ease-in-out;
   -moz-transition: background 0.2s ease-in-out;
    -ms-transition: background 0.2s ease-in-out;
        transition: background 0.2s ease-in-out;
}

.card{
background:#f6f6f6;
border: 1px solid #ccc;
border-radius: 2px;
margin-bottom: 2px; 
}

.note{
background:#ffa;
border: 1px solid #ccc;
border-radius: 2px;
margin-bottom: 2px; 
}

#layer{
background: hsla(0,0%,0%,0.65);
position: fixed;
z-index: 3;
top: 0;
left: 0;
right: 0;
bottom: 0;
text-align: center;
padding: 50px 20px;
display: none;
}
#layerclose{
position:fixed;
font-size:24px;
line-height:40px;
height:40px;
width:40px;
color:#999;
text-decoration: none;
border-radius:20px;
text-align:center;
right:20px;
top:20px; 
background: #ccc;
background: hsla(340,0%,50%,0.5);
-webkit-transition-property: all;
   -moz-transition-property: all;
        transition-property: all;
-webkit-transition-duration: 600ms;
   -moz-transition-duration: 600ms;
        transition-duration: 600ms;
}
#layerclose.hover,
#layerclose:hover{
color:#fff;
background: #f05;
background: hsla(340,100%,50%,0.5);
-webkit-transition-duration: 600ms;
   -moz-transition-duration: 600ms;
        transition-duration: 600ms;
}
#layercontent{
text-align:left;
margin:0 auto;
position:relative;
width:600px;
background: hsla(0,0%,100%,0.9);
box-shadow: 0 0 16px #000;
border-radius: 2px;
-webkit-transition: -webkit-transform 300ms ease-in-out;
   -moz-transition: -moz-transform 300ms ease-in-out;
        transition: transform 300ms ease-in-out;
-webkit-transform: scale(1.0) translateY(0px);
   -moz-transform: scale(1.0) translateY(0px);
        transform: scale(1.0) translateY(0px);
}
#layercontent.zoomin{
-webkit-transform: scale(1.1) translateY(-20px);
   -moz-transform: scale(1.1) translateY(-20px);
        transform: scale(1.1) translateY(-20px);
}
#layercontent.zoomout{
-webkit-transform: scale(0.8) translateY(20px);
   -moz-transform: scale(0.8) translateY(20px);
        transform: scale(0.8) translateY(20px);
}
#layercontent .panel{
background: #fff;
border-radius: 2px;
}

.fade{
position:relative;
height:0;
background:url(img/fade.png) repeat-x top left;
margin-top:-48px;
padding-bottom:48px;
}
/* OPACITY */

.invisible{
opacity:0;
filter:alpha(opacity=0);
}
.opaque{
opacity:0.5;
filter:alpha(opacity=50);
}
.transparent{
background-color: transparent;
}
.halftransparent{
background-color: hsla(0,100%,100%,0.5);
}
.blur{
-webkit-filter:blur(2px);
   -moz-filter:blur(2px); 
        filter:blur(2px);
}
.unselectable{
-webkit-touch-callout: none;
  -webkit-user-select: none;  
   -khtml-user-select: none;
     -moz-user-select: none;  
      -ms-user-select: none;  
       -o-user-select: none;  
          user-select: none;
cursor:default;
}
.paginator{
padding: 20px 0;
}
.paginator .button{
  height:24px;
  margin:1px;
}
.paginator .symbol-ellipsis-h{
  padding:7px;
  color: #ccc;
}.panel{
display: block;
color:#353535;
}



a.panel:hover,
a.panel:active,
a.panel:focus{
text-decoration: none;
}

/* PATCHES */

/* mozilla specific */

@-moz-document url-prefix() {
}

/* chrome specific */

@media screen and (-webkit-min-device-pixel-ratio:0){
}

@media screen{
  @-ms-viewport{
    width: device-width;
  }
}


/* POSITIONS */

.absolute{
position: absolute;
}

.relative{
position: relative;
}

.left{
float:left;
}

.right{
float:right;
}

.center{
margin-left:auto;
margin-right:auto;
}

.clearleft{
clear:left;
}

.clearright{
clear:right;
}

.clear{
clear:both;
}

.clearafter:after {
content: ".";
display: block;
clear: both;
visibility: hidden;
line-height: 0;
height: 0;
}

*{
-webkit-box-sizing: border-box;
   -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
     -o-box-sizing: border-box;
        box-sizing: border-box;
}

input[type=file],input[type=checkbox]{
cursor:default;
}

ul, ol, blockquote{
padding: 0 0 0 20px;
}

html{
position: relative;
min-height:100%;
}

body{
color:#353535;
background:#fff;
font-family:arial,sans-serif;
font-size:13px;
line-height:1.5;
margin: 0;
}

a{
text-decoration:none;
cursor: pointer;
color:#5990E9;
}
a:hover,a:focus{
text-decoration:underline;
}
code,.code{
white-space:pre-wrap;
font-family:consolas,monospace;
}

pre,.pre{
background:#e6e6e6;
border:2px solid #ccc;
}

h1{
font-size:30px;
line-height:42px;
}

h2{
font-size:25px;
line-height:42px;
}

h3{
font-size:20px;
line-height:32px;
}

h1,h2,h3,
h1 a,h2 a,h3 a{
margin: 0;
color:#000;
font-weight:normal;
font-family:arial,sans-serif;
}

h1 a:hover,
h2 a:hover,
h3 a:hover{
text-decoration:none;
}

label{
font-weight: bold;
padding-top: 5px;
padding-bottom: 5px;
}

p{
margin-bottom:10px;
}

pre{
margin-bottom:10px;
}

ul, ol{
padding:0 16px;
margin-bottom:10px;
}

pre{
display:block;
padding:10px;
overflow: auto;
}
/*!
 *  Font Awesome 4.2.0 by @davegandy - http://fontawesome.io - @fontawesome
 *  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
 */
/* FONT PATH
 * -------------------------- */
@font-face {
  font-family: 'FontAwesome';
  src: url('symbol.eot?v=4.2.0');
  src: url('symbol.eot?#iefix&v=4.2.0') format('embedded-opentype'), 
       url('symbol.woff?v=4.2.0') format('woff'), 
       url('symbol.ttf?v=4.2.0') format('truetype'), 
       url('symbol.svg?v=4.2.0#fontawesomeregular') format('svg');
  font-weight: normal;
  font-style: normal;
}
.symbol{
font: 14px/12px FontAwesome;
  text-rendering: auto;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}

.symbol-inverse {
  color: #ffffff;
}
/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
   readers do not read off random characters that represent icons */
.symbol-glass:before {
  content: "\f000";
}
.symbol-music:before {
  content: "\f001";
}
.symbol-search:before {
  content: "\f002";
}
.symbol-envelope-o:before {
  content: "\f003";
}
.symbol-heart:before {
  content: "\f004";
}
.symbol-star:before {
  content: "\f005";
}
.symbol-star-o:before {
  content: "\f006";
}
.symbol-user:before {
  content: "\f007";
}
.symbol-film:before {
  content: "\f008";
}
.symbol-th-large:before {
  content: "\f009";
}
.symbol-th:before {
  content: "\f00a";
}
.symbol-th-list:before {
  content: "\f00b";
}
.symbol-check:before {
  content: "\f00c";
}
.symbol-remove:before,
.symbol-close:before,
.symbol-times:before {
  content: "\f00d";
}
.symbol-search-plus:before {
  content: "\f00e";
}
.symbol-search-minus:before {
  content: "\f010";
}
.symbol-power-off:before {
  content: "\f011";
}
.symbol-signal:before {
  content: "\f012";
}
.symbol-gear:before,
.symbol-cog:before {
  content: "\f013";
}
.symbol-trash-o:before {
  content: "\f014";
}
.symbol-home:before {
  content: "\f015";
}
.symbol-file-o:before {
  content: "\f016";
}
.symbol-clock-o:before {
  content: "\f017";
}
.symbol-road:before {
  content: "\f018";
}
.symbol-download:before {
  content: "\f019";
}
.symbol-arrow-circle-o-down:before {
  content: "\f01a";
}
.symbol-arrow-circle-o-up:before {
  content: "\f01b";
}
.symbol-inbox:before {
  content: "\f01c";
}
.symbol-play-circle-o:before {
  content: "\f01d";
}
.symbol-rotate-right:before,
.symbol-repeat:before {
  content: "\f01e";
}
.symbol-refresh:before {
  content: "\f021";
}
.symbol-list-alt:before {
  content: "\f022";
}
.symbol-lock:before {
  content: "\f023";
}
.symbol-flag:before {
  content: "\f024";
}
.symbol-headphones:before {
  content: "\f025";
}
.symbol-volume-off:before {
  content: "\f026";
}
.symbol-volume-down:before {
  content: "\f027";
}
.symbol-volume-up:before {
  content: "\f028";
}
.symbol-qrcode:before {
  content: "\f029";
}
.symbol-barcode:before {
  content: "\f02a";
}
.symbol-tag:before {
  content: "\f02b";
}
.symbol-tags:before {
  content: "\f02c";
}
.symbol-book:before {
  content: "\f02d";
}
.symbol-bookmark:before {
  content: "\f02e";
}
.symbol-print:before {
  content: "\f02f";
}
.symbol-camera:before {
  content: "\f030";
}
.symbol-font:before {
  content: "\f031";
}
.symbol-bold:before {
  content: "\f032";
}
.symbol-italic:before {
  content: "\f033";
}
.symbol-text-height:before {
  content: "\f034";
}
.symbol-text-width:before {
  content: "\f035";
}
.symbol-align-left:before {
  content: "\f036";
}
.symbol-align-center:before {
  content: "\f037";
}
.symbol-align-right:before {
  content: "\f038";
}
.symbol-align-justify:before {
  content: "\f039";
}
.symbol-list:before {
  content: "\f03a";
}
.symbol-dedent:before,
.symbol-outdent:before {
  content: "\f03b";
}
.symbol-indent:before {
  content: "\f03c";
}
.symbol-video-camera:before {
  content: "\f03d";
}
.symbol-photo:before,
.symbol-image:before,
.symbol-picture-o:before {
  content: "\f03e";
}
.symbol-pencil:before {
  content: "\f040";
}
.symbol-map-marker:before {
  content: "\f041";
}
.symbol-adjust:before {
  content: "\f042";
}
.symbol-tint:before {
  content: "\f043";
}
.symbol-edit:before,
.symbol-pencil-square-o:before {
  content: "\f044";
}
.symbol-share-square-o:before {
  content: "\f045";
}
.symbol-check-square-o:before {
  content: "\f046";
}
.symbol-arrows:before {
  content: "\f047";
}
.symbol-step-backward:before {
  content: "\f048";
}
.symbol-fast-backward:before {
  content: "\f049";
}
.symbol-backward:before {
  content: "\f04a";
}
.symbol-play:before {
  content: "\f04b";
}
.symbol-pause:before {
  content: "\f04c";
}
.symbol-stop:before {
  content: "\f04d";
}
.symbol-forward:before {
  content: "\f04e";
}
.symbol-fast-forward:before {
  content: "\f050";
}
.symbol-step-forward:before {
  content: "\f051";
}
.symbol-eject:before {
  content: "\f052";
}
.symbol-chevron-left:before {
  content: "\f053";
}
.symbol-chevron-right:before {
  content: "\f054";
}
.symbol-plus-circle:before {
  content: "\f055";
}
.symbol-minus-circle:before {
  content: "\f056";
}
.symbol-times-circle:before {
  content: "\f057";
}
.symbol-check-circle:before {
  content: "\f058";
}
.symbol-question-circle:before {
  content: "\f059";
}
.symbol-info-circle:before {
  content: "\f05a";
}
.symbol-crosshairs:before {
  content: "\f05b";
}
.symbol-times-circle-o:before {
  content: "\f05c";
}
.symbol-check-circle-o:before {
  content: "\f05d";
}
.symbol-ban:before {
  content: "\f05e";
}
.symbol-arrow-left:before {
  content: "\f060";
}
.symbol-arrow-right:before {
  content: "\f061";
}
.symbol-arrow-up:before {
  content: "\f062";
}
.symbol-arrow-down:before {
  content: "\f063";
}
.symbol-mail-forward:before,
.symbol-share:before {
  content: "\f064";
}
.symbol-expand:before {
  content: "\f065";
}
.symbol-compress:before {
  content: "\f066";
}
.symbol-plus:before {
  content: "\f067";
}
.symbol-minus:before {
  content: "\f068";
}
.symbol-asterisk:before {
  content: "\f069";
}
.symbol-exclamation-circle:before {
  content: "\f06a";
}
.symbol-gift:before {
  content: "\f06b";
}
.symbol-leaf:before {
  content: "\f06c";
}
.symbol-fire:before {
  content: "\f06d";
}
.symbol-eye:before {
  content: "\f06e";
}
.symbol-eye-slash:before {
  content: "\f070";
}
.symbol-warning:before,
.symbol-exclamation-triangle:before {
  content: "\f071";
}
.symbol-plane:before {
  content: "\f072";
}
.symbol-calendar:before {
  content: "\f073";
}
.symbol-random:before {
  content: "\f074";
}
.symbol-comment:before {
  content: "\f075";
}
.symbol-magnet:before {
  content: "\f076";
}
.symbol-chevron-up:before {
  content: "\f077";
}
.symbol-chevron-down:before {
  content: "\f078";
}
.symbol-retweet:before {
  content: "\f079";
}
.symbol-shopping-cart:before {
  content: "\f07a";
}
.symbol-folder:before {
  content: "\f07b";
}
.symbol-folder-open:before {
  content: "\f07c";
}
.symbol-arrows-v:before {
  content: "\f07d";
}
.symbol-arrows-h:before {
  content: "\f07e";
}
.symbol-bar-chart-o:before,
.symbol-bar-chart:before {
  content: "\f080";
}
.symbol-twitter-square:before {
  content: "\f081";
}
.symbol-facebook-square:before {
  content: "\f082";
}
.symbol-camera-retro:before {
  content: "\f083";
}
.symbol-key:before {
  content: "\f084";
}
.symbol-gears:before,
.symbol-cogs:before {
  content: "\f085";
}
.symbol-comments:before {
  content: "\f086";
}
.symbol-thumbs-o-up:before {
  content: "\f087";
}
.symbol-thumbs-o-down:before {
  content: "\f088";
}
.symbol-star-half:before {
  content: "\f089";
}
.symbol-heart-o:before {
  content: "\f08a";
}
.symbol-sign-out:before {
  content: "\f08b";
}
.symbol-linkedin-square:before {
  content: "\f08c";
}
.symbol-thumb-tack:before {
  content: "\f08d";
}
.symbol-external-link:before {
  content: "\f08e";
}
.symbol-sign-in:before {
  content: "\f090";
}
.symbol-trophy:before {
  content: "\f091";
}
.symbol-github-square:before {
  content: "\f092";
}
.symbol-upload:before {
  content: "\f093";
}
.symbol-lemon-o:before {
  content: "\f094";
}
.symbol-phone:before {
  content: "\f095";
}
.symbol-square-o:before {
  content: "\f096";
}
.symbol-bookmark-o:before {
  content: "\f097";
}
.symbol-phone-square:before {
  content: "\f098";
}
.symbol-twitter:before {
  content: "\f099";
}
.symbol-facebook:before {
  content: "\f09a";
}
.symbol-github:before {
  content: "\f09b";
}
.symbol-unlock:before {
  content: "\f09c";
}
.symbol-credit-card:before {
  content: "\f09d";
}
.symbol-rss:before {
  content: "\f09e";
}
.symbol-hdd-o:before {
  content: "\f0a0";
}
.symbol-bullhorn:before {
  content: "\f0a1";
}
.symbol-bell:before {
  content: "\f0f3";
}
.symbol-certificate:before {
  content: "\f0a3";
}
.symbol-hand-o-right:before {
  content: "\f0a4";
}
.symbol-hand-o-left:before {
  content: "\f0a5";
}
.symbol-hand-o-up:before {
  content: "\f0a6";
}
.symbol-hand-o-down:before {
  content: "\f0a7";
}
.symbol-arrow-circle-left:before {
  content: "\f0a8";
}
.symbol-arrow-circle-right:before {
  content: "\f0a9";
}
.symbol-arrow-circle-up:before {
  content: "\f0aa";
}
.symbol-arrow-circle-down:before {
  content: "\f0ab";
}
.symbol-globe:before {
  content: "\f0ac";
}
.symbol-wrench:before {
  content: "\f0ad";
}
.symbol-tasks:before {
  content: "\f0ae";
}
.symbol-filter:before {
  content: "\f0b0";
}
.symbol-briefcase:before {
  content: "\f0b1";
}
.symbol-arrows-alt:before {
  content: "\f0b2";
}
.symbol-group:before,
.symbol-users:before {
  content: "\f0c0";
}
.symbol-chain:before,
.symbol-link:before {
  content: "\f0c1";
}
.symbol-cloud:before {
  content: "\f0c2";
}
.symbol-flask:before {
  content: "\f0c3";
}
.symbol-cut:before,
.symbol-scissors:before {
  content: "\f0c4";
}
.symbol-copy:before,
.symbol-files-o:before {
  content: "\f0c5";
}
.symbol-paperclip:before {
  content: "\f0c6";
}
.symbol-save:before,
.symbol-floppy-o:before {
  content: "\f0c7";
}
.symbol-square:before {
  content: "\f0c8";
}
.symbol-navicon:before,
.symbol-reorder:before,
.symbol-bars:before {
  content: "\f0c9";
}
.symbol-list-ul:before {
  content: "\f0ca";
}
.symbol-list-ol:before {
  content: "\f0cb";
}
.symbol-strikethrough:before {
  content: "\f0cc";
}
.symbol-underline:before {
  content: "\f0cd";
}
.symbol-table:before {
  content: "\f0ce";
}
.symbol-magic:before {
  content: "\f0d0";
}
.symbol-truck:before {
  content: "\f0d1";
}
.symbol-pinterest:before {
  content: "\f0d2";
}
.symbol-pinterest-square:before {
  content: "\f0d3";
}
.symbol-google-plus-square:before {
  content: "\f0d4";
}
.symbol-google-plus:before {
  content: "\f0d5";
}
.symbol-money:before {
  content: "\f0d6";
}
.symbol-caret-down:before {
  content: "\f0d7";
}
.symbol-caret-up:before {
  content: "\f0d8";
}
.symbol-caret-left:before {
  content: "\f0d9";
}
.symbol-caret-right:before {
  content: "\f0da";
}
.symbol-columns:before {
  content: "\f0db";
}
.symbol-unsorted:before,
.symbol-sort:before {
  content: "\f0dc";
}
.symbol-sort-down:before,
.symbol-sort-desc:before {
  content: "\f0dd";
}
.symbol-sort-up:before,
.symbol-sort-asc:before {
  content: "\f0de";
}
.symbol-envelope:before {
  content: "\f0e0";
}
.symbol-linkedin:before {
  content: "\f0e1";
}
.symbol-rotate-left:before,
.symbol-undo:before {
  content: "\f0e2";
}
.symbol-legal:before,
.symbol-gavel:before {
  content: "\f0e3";
}
.symbol-dashboard:before,
.symbol-tachometer:before {
  content: "\f0e4";
}
.symbol-comment-o:before {
  content: "\f0e5";
}
.symbol-comments-o:before {
  content: "\f0e6";
}
.symbol-flash:before,
.symbol-bolt:before {
  content: "\f0e7";
}
.symbol-sitemap:before {
  content: "\f0e8";
}
.symbol-umbrella:before {
  content: "\f0e9";
}
.symbol-paste:before,
.symbol-clipboard:before {
  content: "\f0ea";
}
.symbol-lightbulb-o:before {
  content: "\f0eb";
}
.symbol-exchange:before {
  content: "\f0ec";
}
.symbol-cloud-download:before {
  content: "\f0ed";
}
.symbol-cloud-upload:before {
  content: "\f0ee";
}
.symbol-user-md:before {
  content: "\f0f0";
}
.symbol-stethoscope:before {
  content: "\f0f1";
}
.symbol-suitcase:before {
  content: "\f0f2";
}
.symbol-bell-o:before {
  content: "\f0a2";
}
.symbol-coffee:before {
  content: "\f0f4";
}
.symbol-cutlery:before {
  content: "\f0f5";
}
.symbol-file-text-o:before {
  content: "\f0f6";
}
.symbol-building-o:before {
  content: "\f0f7";
}
.symbol-hospital-o:before {
  content: "\f0f8";
}
.symbol-ambulance:before {
  content: "\f0f9";
}
.symbol-medkit:before {
  content: "\f0fa";
}
.symbol-fighter-jet:before {
  content: "\f0fb";
}
.symbol-beer:before {
  content: "\f0fc";
}
.symbol-h-square:before {
  content: "\f0fd";
}
.symbol-plus-square:before {
  content: "\f0fe";
}
.symbol-angle-double-left:before {
  content: "\f100";
}
.symbol-angle-double-right:before {
  content: "\f101";
}
.symbol-angle-double-up:before {
  content: "\f102";
}
.symbol-angle-double-down:before {
  content: "\f103";
}
.symbol-angle-left:before {
  content: "\f104";
}
.symbol-angle-right:before {
  content: "\f105";
}
.symbol-angle-up:before {
  content: "\f106";
}
.symbol-angle-down:before {
  content: "\f107";
}
.symbol-desktop:before {
  content: "\f108";
}
.symbol-laptop:before {
  content: "\f109";
}
.symbol-tablet:before {
  content: "\f10a";
}
.symbol-mobile-phone:before,
.symbol-mobile:before {
  content: "\f10b";
}
.symbol-circle-o:before {
  content: "\f10c";
}
.symbol-quote-left:before {
  content: "\f10d";
}
.symbol-quote-right:before {
  content: "\f10e";
}
.symbol-spinner:before {
  content: "\f110";
}
.symbol-circle:before {
  content: "\f111";
}
.symbol-mail-reply:before,
.symbol-reply:before {
  content: "\f112";
}
.symbol-github-alt:before {
  content: "\f113";
}
.symbol-folder-o:before {
  content: "\f114";
}
.symbol-folder-open-o:before {
  content: "\f115";
}
.symbol-smile-o:before {
  content: "\f118";
}
.symbol-frown-o:before {
  content: "\f119";
}
.symbol-meh-o:before {
  content: "\f11a";
}
.symbol-gamepad:before {
  content: "\f11b";
}
.symbol-keyboard-o:before {
  content: "\f11c";
}
.symbol-flag-o:before {
  content: "\f11d";
}
.symbol-flag-checkered:before {
  content: "\f11e";
}
.symbol-terminal:before {
  content: "\f120";
}
.symbol-code:before {
  content: "\f121";
}
.symbol-mail-reply-all:before,
.symbol-reply-all:before {
  content: "\f122";
}
.symbol-star-half-empty:before,
.symbol-star-half-full:before,
.symbol-star-half-o:before {
  content: "\f123";
}
.symbol-location-arrow:before {
  content: "\f124";
}
.symbol-crop:before {
  content: "\f125";
}
.symbol-code-fork:before {
  content: "\f126";
}
.symbol-unlink:before,
.symbol-chain-broken:before {
  content: "\f127";
}
.symbol-question:before {
  content: "\f128";
}
.symbol-info:before {
  content: "\f129";
}
.symbol-exclamation:before {
  content: "\f12a";
}
.symbol-superscript:before {
  content: "\f12b";
}
.symbol-subscript:before {
  content: "\f12c";
}
.symbol-eraser:before {
  content: "\f12d";
}
.symbol-puzzle-piece:before {
  content: "\f12e";
}
.symbol-microphone:before {
  content: "\f130";
}
.symbol-microphone-slash:before {
  content: "\f131";
}
.symbol-shield:before {
  content: "\f132";
}
.symbol-calendar-o:before {
  content: "\f133";
}
.symbol-fire-extinguisher:before {
  content: "\f134";
}
.symbol-rocket:before {
  content: "\f135";
}
.symbol-maxcdn:before {
  content: "\f136";
}
.symbol-chevron-circle-left:before {
  content: "\f137";
}
.symbol-chevron-circle-right:before {
  content: "\f138";
}
.symbol-chevron-circle-up:before {
  content: "\f139";
}
.symbol-chevron-circle-down:before {
  content: "\f13a";
}
.symbol-html5:before {
  content: "\f13b";
}
.symbol-css3:before {
  content: "\f13c";
}
.symbol-anchor:before {
  content: "\f13d";
}
.symbol-unlock-alt:before {
  content: "\f13e";
}
.symbol-bullseye:before {
  content: "\f140";
}
.symbol-ellipsis-h:before {
  content: "\f141";
}
.symbol-ellipsis-v:before {
  content: "\f142";
}
.symbol-rss-square:before {
  content: "\f143";
}
.symbol-play-circle:before {
  content: "\f144";
}
.symbol-ticket:before {
  content: "\f145";
}
.symbol-minus-square:before {
  content: "\f146";
}
.symbol-minus-square-o:before {
  content: "\f147";
}
.symbol-level-up:before {
  content: "\f148";
}
.symbol-level-down:before {
  content: "\f149";
}
.symbol-check-square:before {
  content: "\f14a";
}
.symbol-pencil-square:before {
  content: "\f14b";
}
.symbol-external-link-square:before {
  content: "\f14c";
}
.symbol-share-square:before {
  content: "\f14d";
}
.symbol-compass:before {
  content: "\f14e";
}
.symbol-toggle-down:before,
.symbol-caret-square-o-down:before {
  content: "\f150";
}
.symbol-toggle-up:before,
.symbol-caret-square-o-up:before {
  content: "\f151";
}
.symbol-toggle-right:before,
.symbol-caret-square-o-right:before {
  content: "\f152";
}
.symbol-euro:before,
.symbol-eur:before {
  content: "\f153";
}
.symbol-gbp:before {
  content: "\f154";
}
.symbol-dollar:before,
.symbol-usd:before {
  content: "\f155";
}
.symbol-rupee:before,
.symbol-inr:before {
  content: "\f156";
}
.symbol-cny:before,
.symbol-rmb:before,
.symbol-yen:before,
.symbol-jpy:before {
  content: "\f157";
}
.symbol-ruble:before,
.symbol-rouble:before,
.symbol-rub:before {
  content: "\f158";
}
.symbol-won:before,
.symbol-krw:before {
  content: "\f159";
}
.symbol-bitcoin:before,
.symbol-btc:before {
  content: "\f15a";
}
.symbol-file:before {
  content: "\f15b";
}
.symbol-file-text:before {
  content: "\f15c";
}
.symbol-sort-alpha-asc:before {
  content: "\f15d";
}
.symbol-sort-alpha-desc:before {
  content: "\f15e";
}
.symbol-sort-amount-asc:before {
  content: "\f160";
}
.symbol-sort-amount-desc:before {
  content: "\f161";
}
.symbol-sort-numeric-asc:before {
  content: "\f162";
}
.symbol-sort-numeric-desc:before {
  content: "\f163";
}
.symbol-thumbs-up:before {
  content: "\f164";
}
.symbol-thumbs-down:before {
  content: "\f165";
}
.symbol-youtube-square:before {
  content: "\f166";
}
.symbol-youtube:before {
  content: "\f167";
}
.symbol-xing:before {
  content: "\f168";
}
.symbol-xing-square:before {
  content: "\f169";
}
.symbol-youtube-play:before {
  content: "\f16a";
}
.symbol-dropbox:before {
  content: "\f16b";
}
.symbol-stack-overflow:before {
  content: "\f16c";
}
.symbol-instagram:before {
  content: "\f16d";
}
.symbol-flickr:before {
  content: "\f16e";
}
.symbol-adn:before {
  content: "\f170";
}
.symbol-bitbucket:before {
  content: "\f171";
}
.symbol-bitbucket-square:before {
  content: "\f172";
}
.symbol-tumblr:before {
  content: "\f173";
}
.symbol-tumblr-square:before {
  content: "\f174";
}
.symbol-long-arrow-down:before {
  content: "\f175";
}
.symbol-long-arrow-up:before {
  content: "\f176";
}
.symbol-long-arrow-left:before {
  content: "\f177";
}
.symbol-long-arrow-right:before {
  content: "\f178";
}
.symbol-apple:before {
  content: "\f179";
}
.symbol-windows:before {
  content: "\f17a";
}
.symbol-android:before {
  content: "\f17b";
}
.symbol-linux:before {
  content: "\f17c";
}
.symbol-dribbble:before {
  content: "\f17d";
}
.symbol-skype:before {
  content: "\f17e";
}
.symbol-foursquare:before {
  content: "\f180";
}
.symbol-trello:before {
  content: "\f181";
}
.symbol-female:before {
  content: "\f182";
}
.symbol-male:before {
  content: "\f183";
}
.symbol-gittip:before {
  content: "\f184";
}
.symbol-sun-o:before {
  content: "\f185";
}
.symbol-moon-o:before {
  content: "\f186";
}
.symbol-archive:before {
  content: "\f187";
}
.symbol-bug:before {
  content: "\f188";
}
.symbol-vk:before {
  content: "\f189";
}
.symbol-weibo:before {
  content: "\f18a";
}
.symbol-renren:before {
  content: "\f18b";
}
.symbol-pagelines:before {
  content: "\f18c";
}
.symbol-stack-exchange:before {
  content: "\f18d";
}
.symbol-arrow-circle-o-right:before {
  content: "\f18e";
}
.symbol-arrow-circle-o-left:before {
  content: "\f190";
}
.symbol-toggle-left:before,
.symbol-caret-square-o-left:before {
  content: "\f191";
}
.symbol-dot-circle-o:before {
  content: "\f192";
}
.symbol-wheelchair:before {
  content: "\f193";
}
.symbol-vimeo-square:before {
  content: "\f194";
}
.symbol-turkish-lira:before,
.symbol-try:before {
  content: "\f195";
}
.symbol-plus-square-o:before {
  content: "\f196";
}
.symbol-space-shuttle:before {
  content: "\f197";
}
.symbol-slack:before {
  content: "\f198";
}
.symbol-envelope-square:before {
  content: "\f199";
}
.symbol-wordpress:before {
  content: "\f19a";
}
.symbol-openid:before {
  content: "\f19b";
}
.symbol-institution:before,
.symbol-bank:before,
.symbol-university:before {
  content: "\f19c";
}
.symbol-mortar-board:before,
.symbol-graduation-cap:before {
  content: "\f19d";
}
.symbol-yahoo:before {
  content: "\f19e";
}
.symbol-google:before {
  content: "\f1a0";
}
.symbol-reddit:before {
  content: "\f1a1";
}
.symbol-reddit-square:before {
  content: "\f1a2";
}
.symbol-stumbleupon-circle:before {
  content: "\f1a3";
}
.symbol-stumbleupon:before {
  content: "\f1a4";
}
.symbol-delicious:before {
  content: "\f1a5";
}
.symbol-digg:before {
  content: "\f1a6";
}
.symbol-pied-piper:before {
  content: "\f1a7";
}
.symbol-pied-piper-alt:before {
  content: "\f1a8";
}
.symbol-drupal:before {
  content: "\f1a9";
}
.symbol-joomla:before {
  content: "\f1aa";
}
.symbol-language:before {
  content: "\f1ab";
}
.symbol-fax:before {
  content: "\f1ac";
}
.symbol-building:before {
  content: "\f1ad";
}
.symbol-child:before {
  content: "\f1ae";
}
.symbol-paw:before {
  content: "\f1b0";
}
.symbol-spoon:before {
  content: "\f1b1";
}
.symbol-cube:before {
  content: "\f1b2";
}
.symbol-cubes:before {
  content: "\f1b3";
}
.symbol-behance:before {
  content: "\f1b4";
}
.symbol-behance-square:before {
  content: "\f1b5";
}
.symbol-steam:before {
  content: "\f1b6";
}
.symbol-steam-square:before {
  content: "\f1b7";
}
.symbol-recycle:before {
  content: "\f1b8";
}
.symbol-automobile:before,
.symbol-car:before {
  content: "\f1b9";
}
.symbol-cab:before,
.symbol-taxi:before {
  content: "\f1ba";
}
.symbol-tree:before {
  content: "\f1bb";
}
.symbol-spotify:before {
  content: "\f1bc";
}
.symbol-deviantart:before {
  content: "\f1bd";
}
.symbol-soundcloud:before {
  content: "\f1be";
}
.symbol-database:before {
  content: "\f1c0";
}
.symbol-file-pdf-o:before {
  content: "\f1c1";
}
.symbol-file-word-o:before {
  content: "\f1c2";
}
.symbol-file-excel-o:before {
  content: "\f1c3";
}
.symbol-file-powerpoint-o:before {
  content: "\f1c4";
}
.symbol-file-photo-o:before,
.symbol-file-picture-o:before,
.symbol-file-image-o:before {
  content: "\f1c5";
}
.symbol-file-zip-o:before,
.symbol-file-archive-o:before {
  content: "\f1c6";
}
.symbol-file-sound-o:before,
.symbol-file-audio-o:before {
  content: "\f1c7";
}
.symbol-file-movie-o:before,
.symbol-file-video-o:before {
  content: "\f1c8";
}
.symbol-file-code-o:before {
  content: "\f1c9";
}
.symbol-vine:before {
  content: "\f1ca";
}
.symbol-codepen:before {
  content: "\f1cb";
}
.symbol-jsfiddle:before {
  content: "\f1cc";
}
.symbol-life-bouy:before,
.symbol-life-buoy:before,
.symbol-life-saver:before,
.symbol-support:before,
.symbol-life-ring:before {
  content: "\f1cd";
}
.symbol-circle-o-notch:before {
  content: "\f1ce";
}
.symbol-ra:before,
.symbol-rebel:before {
  content: "\f1d0";
}
.symbol-ge:before,
.symbol-empire:before {
  content: "\f1d1";
}
.symbol-git-square:before {
  content: "\f1d2";
}
.symbol-git:before {
  content: "\f1d3";
}
.symbol-hacker-news:before {
  content: "\f1d4";
}
.symbol-tencent-weibo:before {
  content: "\f1d5";
}
.symbol-qq:before {
  content: "\f1d6";
}
.symbol-wechat:before,
.symbol-weixin:before {
  content: "\f1d7";
}
.symbol-send:before,
.symbol-paper-plane:before {
  content: "\f1d8";
}
.symbol-send-o:before,
.symbol-paper-plane-o:before {
  content: "\f1d9";
}
.symbol-history:before {
  content: "\f1da";
}
.symbol-circle-thin:before {
  content: "\f1db";
}
.symbol-header:before {
  content: "\f1dc";
}
.symbol-paragraph:before {
  content: "\f1dd";
}
.symbol-sliders:before {
  content: "\f1de";
}
.symbol-share-alt:before {
  content: "\f1e0";
}
.symbol-share-alt-square:before {
  content: "\f1e1";
}
.symbol-bomb:before {
  content: "\f1e2";
}
.symbol-soccer-ball-o:before,
.symbol-futbol-o:before {
  content: "\f1e3";
}
.symbol-tty:before {
  content: "\f1e4";
}
.symbol-binoculars:before {
  content: "\f1e5";
}
.symbol-plug:before {
  content: "\f1e6";
}
.symbol-slideshare:before {
  content: "\f1e7";
}
.symbol-twitch:before {
  content: "\f1e8";
}
.symbol-yelp:before {
  content: "\f1e9";
}
.symbol-newspaper-o:before {
  content: "\f1ea";
}
.symbol-wifi:before {
  content: "\f1eb";
}
.symbol-calculator:before {
  content: "\f1ec";
}
.symbol-paypal:before {
  content: "\f1ed";
}
.symbol-google-wallet:before {
  content: "\f1ee";
}
.symbol-cc-visa:before {
  content: "\f1f0";
}
.symbol-cc-mastercard:before {
  content: "\f1f1";
}
.symbol-cc-discover:before {
  content: "\f1f2";
}
.symbol-cc-amex:before {
  content: "\f1f3";
}
.symbol-cc-paypal:before {
  content: "\f1f4";
}
.symbol-cc-stripe:before {
  content: "\f1f5";
}
.symbol-bell-slash:before {
  content: "\f1f6";
}
.symbol-bell-slash-o:before {
  content: "\f1f7";
}
.symbol-trash:before {
  content: "\f1f8";
}
.symbol-copyright:before {
  content: "\f1f9";
}
.symbol-at:before {
  content: "\f1fa";
}
.symbol-eyedropper:before {
  content: "\f1fb";
}
.symbol-paint-brush:before {
  content: "\f1fc";
}
.symbol-birthday-cake:before {
  content: "\f1fd";
}
.symbol-area-chart:before {
  content: "\f1fe";
}
.symbol-pie-chart:before {
  content: "\f200";
}
.symbol-line-chart:before {
  content: "\f201";
}
.symbol-lastfm:before {
  content: "\f202";
}
.symbol-lastfm-square:before {
  content: "\f203";
}
.symbol-toggle-off:before {
  content: "\f204";
}
.symbol-toggle-on:before {
  content: "\f205";
}
.symbol-bicycle:before {
  content: "\f206";
}
.symbol-bus:before {
  content: "\f207";
}
.symbol-ioxhost:before {
  content: "\f208";
}
.symbol-angellist:before {
  content: "\f209";
}
.symbol-cc:before {
  content: "\f20a";
}
.symbol-shekel:before,
.symbol-sheqel:before,
.symbol-ils:before {
  content: "\f20b";
}
.symbol-meanpath:before {
  content: "\f20c";
}
/* TABLE */

table{
border-spacing:0;
}

.rawtable th,
.rawtable td{
padding:0 10px 10px 0;
}

.table{
border-collapse:collapse;
border:0;
width: 100%;
}

.table th,
.table td{
padding:5px 5px 4px 5px;
border-bottom:1px solid #fff;
background:#e6e6e6;
color:#000;
}
.lighttable th,
.lighttable td{
padding:6px 5px 5px 5px;
border-bottom:1px solid #ddd;
background:transparent;
color:#000;
}

.table th{
background:#ddd;
}

.table .transparent{
background: transparent;
}

.table.grid td{
border-right:1px solid #fff;  
}
.lighttable.grid td{
border-right:1px solid #ddd;
}

.table td:last-child{
border-right:0;
}
.table td.inactive{
background: #ececec;
color:#ccc;
}
.lighttable td.inactive{
background: transparent;
}

.table td.active{
background: #32a5cf;
color:#fff;
}

.table.clickable td{
  cursor: default;
}

.table th a{
color:#000;
text-decoration: none;
}

.table tr.disabled td{
color:#ccc;
background: #e6e6e6;
}
.table tr.disabled td{
background: transparent;
color:#999;
}
.table tr.disabled:hover td{
background: #ddd;
}
.table tr.disabled.active td{
color:#fff;
background: #ccc;
}
.table.fixedlayout{
table-layout:fixed;
}
.table.fixedlayout th,
.table.fixedlayout td{
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}


/* SCROLLTABLE */

.scrolltable{
overflow: hidden;
padding: 1px;
}
.scrolltable table{
border-collapse: collapse;
min-width: 100%;
cursor: default;
}
.scrolltable td, .scrolltable th {
height: 20px;
padding:6px 5px 5px 5px;
white-space: nowrap;
max-width:300px;
text-overflow:ellipsis;
cursor: default;
border-bottom:1px solid #fff;
background:#e6e6e6;
color:#000;
}
.scrolltable td{
background-color: #efefef;
}
.scrolltable th{
border: 0;
color:#000;
background:#ddd;
}
.scrolltable .body{
overflow: auto;
}
.scrolltable .body table th{
line-height: 0;
height: 0;
overflow: hidden;
padding: 0 5px;
}
.scrolltable .header{
overflow: hidden;
height: 30px;
margin-bottom: 1px;
background:#ddd;
padding-right: 16px;
}
.scrolltable .header table{
overflow:initial;
}
.scrolltable th a{
color: #000;
text-decoration: none;
}.rotate90 {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1);
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  transform: rotate(90deg);
}
.rotate180 {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
}
.rotate270 {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
  -webkit-transform: rotate(270deg);
  -moz-transform: rotate(270deg);
  -ms-transform: rotate(270deg);
  -o-transform: rotate(270deg);
  transform: rotate(270deg);
}
.fliphorizontal {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1);
  -webkit-transform: scale(-1, 1);
  -moz-transform: scale(-1, 1);
  -ms-transform: scale(-1, 1);
  -o-transform: scale(-1, 1);
  transform: scale(-1, 1);
}
.flipvertical {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1);
  -webkit-transform: scale(1, -1);
  -moz-transform: scale(1, -1);
  -ms-transform: scale(1, -1);
  -o-transform: scale(1, -1);
  transform: scale(1, -1);
}