/*
 * Copyright (c) 2012 Thibaut Courouble
 * http://www.cssflow.com
 *
 * Licensed under the MIT License:
 * http://www.opensource.org/licenses/mit-license.php
 *
 * View the Sass/SCSS source at:
 * http://www.cssflow.com/snippets/menu-with-notification-badges/demo/scss
 *
 * Original PSD by Orman Clark: http://goo.gl/AQxlt
 */

/*@import "reset.css";*/

/*body {
  font: 13px/20px "Lucida Grande", Tahoma, Verdana, sans-serif;
  color: #404040;
  background: #ecedef;
}*/

.navBadge {
  position: relative;
  padding: 0 14px;
  height: 0px;
  line-height: 0px;
  font-size: 11px;
  font-weight: bold;
  color: #666;
  text-decoration: none;
  text-shadow: 0 1px white;
}

.navBadge .badge {
  position: absolute;
  top: -4px;
  left: -7px;
  line-height: 16px;
  height: 16px;
  padding: 0 5px;
  font-family: "Hind", sans-serif;
  color: white;
  text-shadow: 0 1px rgba(0, 0, 0, 0.25);
  border: 1px solid;
  border-radius: 10px;
  -webkit-box-shadow: inset 0 1px rgba(255, 255, 255, 0.3), 0 1px 1px rgba(0, 0, 0, 0.08);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.3), 0 1px 1px rgba(0, 0, 0, 0.08);
}

.navBadge .badge {
  background: #67c1ef;
  border-color: #30aae9;
  background-image: -webkit-linear-gradient(top, #acddf6, #67c1ef);
  background-image: -moz-linear-gradient(top, #acddf6, #67c1ef);
  background-image: -o-linear-gradient(top, #acddf6, #67c1ef);
  background-image: linear-gradient(to bottom, #acddf6, #67c1ef);
}

.navBadge .badge.green {
  background: #77cc51;
  border-color: #59ad33;
  background-image: -webkit-linear-gradient(top, #a5dd8c, #77cc51);
  background-image: -moz-linear-gradient(top, #a5dd8c, #77cc51);
  background-image: -o-linear-gradient(top, #a5dd8c, #77cc51);
  background-image: linear-gradient(to bottom, #a5dd8c, #77cc51);
}

.navBadge .badge.yellow {
  background: #faba3e;
  border-color: #f4a306;
  background-image: -webkit-linear-gradient(top, #fcd589, #faba3e);
  background-image: -moz-linear-gradient(top, #fcd589, #faba3e);
  background-image: -o-linear-gradient(top, #fcd589, #faba3e);
  background-image: linear-gradient(to bottom, #fcd589, #faba3e);
}

.navBadge .badge.red {
  background: #fd3102;
  border-color: #f52f02;
  background-image: -webkit-linear-gradient(top, #fc6441, #fd3102);
  background-image: -moz-linear-gradient(top, #fc6441, #fd3102);
  background-image: -o-linear-gradient(top, #fc6441, #fd3102);
  background-image: linear-gradient(to bottom, #fc6441, #fd3102);
}


/*Overriding mathTiles .badge*/
span.badge.yellow {
  width: auto !important;
  min-height: auto !important;
  display: inline-block !important;
}