/**
* Stylish Select 0.4.9 - $ plugin to replace a select drop down box with a stylable unordered list
* http://github.com/scottdarby/Stylish-Select/
*
* Copyright (c) 2009 Scott Darby
*
* Requires: jQuery 1.3 or newer
*
* Dual licensed under the MIT and GPL licenses.
*/

/**
* Hide lists on page load
---------------------------------------------------------*/

.stylish-select .SSContainerDivWrapper,
.stylish-select .SSContainerDivWrapper2,
.stylish-select .SSContainerDivWrapper3 {
  left: -9999px;
}

/*
* Red example
---------------------------------------------------------*/
.stylish-select .SSContainerDivWrapper {
  margin: 0;
  padding: 0;
  width: 164px;
  position: absolute;
  top: 34px;
  left: 0;
  z-index: 2;
}
.stylish-select .SSContainerDivWrapper2 {
  margin: 0;
  padding: 0;
  width: 100%;
  position: absolute;
  top: 32px;
  left: 0;
  z-index: 2;
}
.stylish-select .SSContainerDivWrapper3 {
  margin: 0;
  padding: 0;
  width: 100%;
  position: absolute;
  top: 30px;
  left: 0;
  z-index: 2;
}

.stylish-select ul.newList {
  margin: 0;
  padding: 0;
  list-style: none;
  color: #000;
  background: #fff;
  border: 1px solid #ccc;
  overflow: auto;
}

.stylish-select ul.newList li {
  width: 100%;
  background: none;
}

.stylish-select ul.newList * {
  margin: 0;
  padding: 0;
}

.stylish-select ul.newList a {
  color: #000;
  text-decoration: none;
  display: block;
  padding: 2px 8px;
  background: none;
  line-height: 22px;
  /*font-size:14px;*/
  font-weight: normal;
  width: 100%;
}

.stylish-select .my-dropdown2 {
  display: none;
}

.stylish-select .newListSelected {
  width: 164px;
  color: #000;
  height: 34px;
  padding: 0;
  float: right;
  background: url(../images/select-background.png) right 0 no-repeat #ffffff;
  border-radius: 3px;
  color: #4c4c4c;
  border-bottom: solid 1px #cccccc;
  outline: none;
  line-height: 34px;
}
.stylish-select .newListSelected2 {
  width: 100%;
  color: #000;
  height: 38px;
  padding: 0;
  float: right;
  background: url(../images/select.jpg) right 0 no-repeat #ffffff;
  border-radius: 3px;
  color: #4c4c4c;
  border: solid 1px #cccccc;
  outline: none;
  line-height: 38px;
}
.stylish-select .newListSelected3 {
  width: 100%;
  color: #000;
  height: 30px;
  padding: 0;
  float: right;
  background: url(../images/selects.gif) right 0 no-repeat #ffffff;
  border-radius: 1px;
  color: #4c4c4c;
  outline: none;
  line-height: 30px;
  font-size: 14px;
  margin: 6px 7px;
  float: left;
}

.stylish-select ul.newList li a:focus {
  -moz-outline-style: none;
}

.stylish-select .selectedTxt {
  width: 134px;
  overflow: hidden;
  height: 34px;
  padding: 0 20px 0 10px;
}
.stylish-select .selectedTxt2 {
  width: 100%;
  overflow: hidden;
  height: 32px;
  padding: 0 20px 0 10px;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.stylish-select .selectedTxt3 {
  width: 107px;
  overflow: hidden;
  height: 30px;
  padding: 0 20px 0 10px;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.stylish-select .hiLite {
  background: #f5f5f5 !important;
}

.stylish-select .newListHover {
  background: #e6e6e6 !important;
  color: #000 !important;
  cursor: default;
}

.stylish-select .newListDisabled {
  opacity: 0.6;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=60)";
  filter: alpha(opacity=60);
}

.stylish-select .newListItemDisabled {
  opacity: 0.6;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=60)";
  filter: alpha(opacity=60);
}

.stylish-select .newListOptionDisabled {
  opacity: 0.6;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=60)";
  filter: alpha(opacity=60);
}

.stylish-select .newListSelHover,
.stylish-select .newListSelFocus {
  /*background-position:0 -22px;*/
  cursor: default;
}

.stylish-select .newListOptionTitle {
  font-weight: bold;
}

.stylish-select .newListOptionTitle ul {
  margin: 3px 0 0;
}

.stylish-select .newListOptionTitle li {
  font-weight: normal;
}
