
/* guille */

.dropdown {
  	position: relative;
}
.dropdown-toggle:focus {
	outline: 0;
}
.dropdown-menu {
  	position: absolute;
  	top: 100%;
  	left: 0;
  	z-index: 1000;
  	display: none;
  	float: left;
  	min-width: 160px;
  	padding: 5px 0;
  	margin: 2px 30px;
  	list-style: none;
  	font-size: 13.5px;
  	text-align: left;
  	background-color: #ffffff;
  	border: 1px solid #cccccc;
  	border: 1px solid rgba(0, 0, 0, 0.15);
  	border-radius: 3px; -webkit-border-radius: 3px;
  	-webkit-box-shadow: 0 4px 8px rgba(0, 0, 0, 0.175);
  	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.175);
  	background-clip: padding-box;
  	behavior: url(/Styles/PIE.htc);
}
.dropdown-menu.pull-right {
  	right: 0;
  	left: auto;
}
.dropdown-menu .divider {
  	height: 1px;
  	margin: 9px 0;
  	overflow: hidden;
  	background-color: #e5e5e5;
}
.dropdown-menu > li > a {
  	display: block;
  	padding: 6px 20px;
  	clear: both;
  	font-weight: normal;
  	line-height: 1.42857143;
  	color: #444;
  	text-decoration: none;
  	white-space: nowrap;
}
.dropdown-menu > li > a:hover,
.dropdown-menu > li > a:focus {
  	text-decoration: none;
  	color: #292929;
  	background-color: #e9e9e9;
}
.dropdown-menu > .active > a,
.dropdown-menu > .active > a:hover,
.dropdown-menu > .active > a:focus {
  	color: #ffffff;
  	text-decoration: none;
  	outline: 0;
  	background-color: #428bca;
}
.dropdown-menu > .disabled > a,
.dropdown-menu > .disabled > a:hover,
.dropdown-menu > .disabled > a:focus {
  	color: #777777;
}
.dropdown-menu > .disabled > a:hover,
.dropdown-menu > .disabled > a:focus {
  	text-decoration: none;
 	background-color: transparent;
  	background-image: none;
  	filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
  	cursor: not-allowed;
}
.open > .dropdown-menu {
	display: block;
}
.open > a {
	outline: 0;
}

.dropdown-menu-right {
	left: auto;
	right: 0;
}

.dropdown-menu-left {
	left: 0;
	right: auto;
}

.dropdown-header {
	display: block;
	padding: 3px 20px;
	font-size: 12px;
  	line-height: 1.42857143;
	color: #777777;
	white-space: nowrap;
}

.dropdown-backdrop {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	top: 0;
	z-index: 990;
}

.pull-right > .dropdown-menu {
	right: 0;
	left: auto;
}

.dropup .caret,
.navbar-fixed-bottom .dropdown .caret {
	border-top: 0;
	border-bottom: 4px solid;
	content: "";
}

.dropup .dropdown-menu,
.navbar-fixed-bottom .dropdown .dropdown-menu {
	top: auto;
	bottom: 100%;
	margin-bottom: 1px;
}

.navbar {
	position: relative;
	min-height: 50px;
	margin-bottom: 20px;
	border: 1px solid transparent;
}

.navbar-default .navbar-nav > .open > a, .navbar-default .navbar-nav > .open > a:hover, .navbar-default .navbar-nav > .open > a:focus {
    background-color: #e7e7e7;
    color: #555;
}

.navbar-right {
	float: right !important;
}

.navbar-right .dropdown-menu {
 	left: auto;
 	right: 0;
}

