@charset "UTF-8";
/* CSS Document */

/* @Default Button: Gray
===================================== */
.btn, input.btn, input[type="submit"], button,
input[type="button"]{
	display: inline-block;
	cursor: pointer;
	
	padding:6px 12px 6px 12px;
	margin-bottom: 0;
	
	background-color:#ef7318;
	background:#ef7318;
	
	-webkit-border-radius: 2px;
	-moz-border-radius: 2px;
	border-radius: 2px;
	
	border:none;
	
	color: #fff;

}

.btn:link,
.btn:visited,
.btn.visited{
	color: #fff;
}


.btn:hover, 
.btn:active, 
.btn.active{
	background-color:#646464;
	background:#646464;
}

.btn:focus {
	outline: thin dotted #878787;
	outline: 5px auto -webkit-focus-ring-color;
	outline-offset: -2px;
}
/* @end Default Button: Gray
===================================== */



/* @Form Button
===================================== */
button{
  margin: 0;
  vertical-align: middle;
  line-height: normal;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
  padding: 0;
  border: 0;
}

button,
input[type="button"]{
  cursor: pointer;
  -webkit-appearance: button;
}

input[type="file"],
input[type="image"],
input[type="submit"],
input[type="reset"],
input[type="button"],
input[type="radio"],
input[type="checkbox"] {
  width: auto;
}

/* @end Form Button
===================================== */

/* @Button Group
===================================== */
.btn-group {
  position: relative;
  font-size: 0;
  vertical-align: middle;
  white-space: nowrap;
  *margin-left: .3em;
}

.btn-group:first-child {
  *margin-left: 0;
}

.btn-group + .btn-group {
  margin-left: 5px;
}

.btn-group > .btn {
  position: relative;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}

.btn-group > .btn + .btn {
  margin-left: -1px;
}

.btn-group > .btn,
.btn-group > .dropdown-menu {
	font-size: 12px;
}

.btn-group > .btn:first-child {
  margin-left: 0;
  -webkit-border-top-left-radius: 4px;
  -moz-border-radius-topleft: 4px;
  border-top-left-radius: 4px;
  -webkit-border-bottom-left-radius: 4px;
  -moz-border-radius-bottomleft: 4px;
  border-bottom-left-radius: 4px;
}

.btn-group > .btn:last-child,
.btn-group > .dropdown-toggle {
  -webkit-border-top-right-radius: 5px;
  -moz-border-radius-topright: 5px;
  border-top-right-radius: 5px;
  -webkit-border-bottom-right-radius: 5px;
  -moz-border-radius-bottomright: 5px;
  border-bottom-right-radius: 5px;
}

.btn-group > .btn:hover,
.btn-group > .btn:focus,
.btn-group > .btn:active,
.btn-group > .btn.active {
  z-index: 2;
}

.btn-group .dropdown-toggle:active,
.btn-group.open .dropdown-toggle {
  outline: 0;
}

.btn-group > .btn + .dropdown-toggle {
  padding-left: 8px;
  padding-right: 8px;
  -webkit-box-shadow: inset 1px 0 0 rgba(255, 255, 255, 0.125), inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: inset 1px 0 0 rgba(255, 255, 255, 0.125), inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
  box-shadow: inset 1px 0 0 rgba(255, 255, 255, 0.125), inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
  height:31px;
}

.btn-group.open .dropdown-toggle {
  background-image: none;
  -webkit-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
}

.btn-group.open .btn.dropdown-toggle {
  background-color: #e6e6e6;
}


/* @Dropdown
===================================== */
.btn .caret {
  margin-top: 0px;
  margin-left: 0px;
}

.caret {
	color:#3a87ad;
  	display: block;
  	width: 0;
  	height: 0;
	
	border-top: 4px solid #3a87ad;
	border-right: 4px solid transparent;
	border-left: 4px solid transparent;
  	content: "";
}

.dropdown-menu {
	position: absolute;
	top: 100%;
	left: 0;
	z-index: 1000;
	display: none;
	float: left;
	min-width: 160px;
	padding: 5px 0;
	margin: 2px 0 0;
	list-style: none;
	
	color: #5a5a5a;
	
	background-color: #ffffff;
	
	border: 1px solid #e6e6e6;
	border: 1px solid rgba(0, 0, 0, 0.2);
	-webkit-border-radius: 6px;
    -moz-border-radius: 6px;
          border-radius: 6px;
	-webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
          box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
	-webkit-background-clip: padding-box;
    -moz-background-clip: padding;
          background-clip: padding-box;
}

.dropdown-menu a, .dropdown-menu a:visited {
  	display: block;
  	padding: 5px 20px 3px 20px;
  	clear: both;
	text-transform:uppercase;
	font-size:12px;
  	font-weight: 400;
  	line-height: 20px;
  	color: #5a5a5a;
  	white-space: nowrap;
}

.dropdown-menu li > a:hover,
.dropdown-menu li > a:focus,
.dropdown-menu .active > a,
.dropdown-menu .active > a:hover{
  color: #ffffff;
  text-decoration: none;
  background-color: #3a87ad;
}

.dropdown-menu .disabled > a,
.dropdown-menu .disabled > a:hover {
  color: #5a5a5a;
}

.dropdown-menu .disabled > a:hover {
  text-decoration: none;
  cursor: default;
  background-color: transparent;
}

.open {
  *z-index: 1000;
}

.open > .dropdown-menu {
  display: block;
}

