﻿
.dropdown-submenu {
    position: relative;
}

.dropdown-submenu>.dropdown-menu2{
    top: 0;
    right: 100%;
    margin-top: -6px;
    margin-right: -1px;
    -webkit-border-radius: 0 6px 6px 6px;
    -moz-border-radius: 0 6px 6px;
    border-radius: 0 6px 6px 6px;
}

.dropdown-submenu:hover>.dropdown-menu2{
    display: block;

}

.dropdown-submenu>a:after {
    display: block;
    content: " ";
    float: right;
    width: 0;
    height: 0;
    border-color: transparent;
    border-style: solid;
    border-width: 5px 0 5px 5px;
    border-left-color: transparent;/*#ccc;*/
    margin-top: 5px;
    margin-right: -10px;
}

.dropdown-submenu:hover>a:after {
    /*border-left-color: #fff;*/
    border-left-color: transparent;
}

.dropdown-submenu.pull-left {
    float: none;
}

.dropdown-submenu.pull-left>.dropdown-menu2{
    left: -100%;
    margin-left: 10px;
    -webkit-border-radius: 6px 0 6px 6px;
    -moz-border-radius: 6px 0 6px 6px;
    border-radius: 6px 0 6px 6px;
}
.dropdown-menu2 {
  position: absolute;
  top: 100%;
  right: 0;
  z-index: 1000;
  display: none;
  float: left;
  min-width: 160px;
  padding: 5px 0;
  margin: 2px 0 0;
  list-style: none;
  font-size: 14px;
  background-color: white;
  border: 1px solid #cccccc;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 2px;
  -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  background-clip: padding-box;
}
.dropdown-menu2.pull-right {
  right: 0;
  left: auto;
}
.dropdown-menu2 .divider {
  height: 1px;
  margin: 9px 0;
  overflow: hidden;
  background-color: #e5e5e5;
}
.dropdown-menu2 > li > a {
  display: block;
  padding: 3px 10px;
  clear: both;
  font-weight: normal;
  line-height: 1.42857;
  color: #333333;
  white-space: nowrap;
}

.dropdown-menu2 > li > a:hover, .dropdown-menu2 > li > a:focus {
  text-decoration: none;
  color: white;
  background-color: #1c7ebb;
}

.dropdown-menu2 > .active > a, .dropdown-menu2 > .active > a:hover, .dropdown-menu2 > .active > a:focus {
  color: white;
  text-decoration: none;
  outline: 0;
  background-color: #1c7ebb;
}

.dropdown-menu2 > .disabled > a, .dropdown-menu2 > .disabled > a:hover, .dropdown-menu2 > .disabled > a:focus {
  color: #999999;
}

.dropdown-menu2 > .disabled > a:hover, .dropdown-menu2 > .disabled > a:focus {
  text-decoration: none;
  background-color: transparent;
  background-image: none;
  filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
  cursor: not-allowed;
}

.open > .dropdown-menu2 {
  display: block;
}
.open > a {
  outline: 0;
}

.dropdown-menu2-right {
  left: auto;
  right: 0;
}

.dropdown-menu2-left {
  left: 0;
  right: auto;
}