@import url(https://fonts.googleapis.com/css?family=Open+Sans:400italic,700italic,700,300,400);

body { 
font-family: "Open Sans"; 
color:#000000; 
font-size:11px;
margin: 0px;

}

#Password1
{
	
	padding: 10px;
	border: 1px solid rgba(128,128,128,0.5);
	width: 300px;
	color: #000;
	font-size: 14px;
	line-height: 20px;
	padding-top: 5px;
	padding-bottom: 5px;
	outline: none;
} 

#Password1:focus, #Password1:active{
    border-color: #000;	
}
input[type=text]{
	
	padding: 10px;
	border: 1px solid rgba(128,128,128,0.5);
	width: 300px;
	color: #000;
	font-size: 14px;
	line-height: 20px;
	padding-top: 5px;
	padding-bottom: 5px;
	outline: none;
}

input[type=text]:active, input[type=text]:focus{
	border-color: #000;	
}

input[type=submit]
{
    
    padding: 10px;
    text-align: center;
    min-width:120px;
    cursor: pointer;
    font-size: 14px;
    line-height:16px;
    vertical-align: top;
    border-radius: 3px;
    color: rgb(255,255,255);
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.5);
    background: rgb(80,114, 130);
    background: -moz-linear-gradient(top, rgb(80,114,130) 0%, rgb(36,33,35) 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgb(80,114,130)), color-stop(100%, rgb(36,33,35))); 
    background: -webkit-linear-gradient(top, rgb(80,114,130) 0%, rgb(36, 33, 35) 100%);
    background: -o-linear-gradient(top, rgb(80,114,130) 0%, rgb(36,33,35) 100%);
    background: -ms-linear-gradient(top, rgb(80,114,130) 0%, rgb(36,33,35) 100%);
    background: linear-gradient(to bottom, rgb(80, 114, 130) 0%, rgb(36, 33, 35) 100%);
    filter: progid:dximagetransform.microsoft.gradient(startColorstr='#507282', endColorstr='#242123', GradientType=0);
}   

#RightSide
{
  float: right; 
  width: 50%; 
  height:100%;
  position: absolute; 
  left: 50%;
}

#Table1
{
    float:right;  
    width: 100%;
}

.check_item {
  line-height: 18px;
  font-size: 14px;
  margin-bottom: 5px;
  vertical-align: top;
}
.check_item input[type=checkbox] {
  margin-right: 5px;
  margin-left: 5px;
  width: 14px;
  height: 14px;
}

.select {
  
  vertical-align: top;
  position: relative;
  width: 200px;
  line-height: 35px;
  height: 35px;
  font-size: 14px;
  background: #FFF;
  color: #000;
  overflow: hidden;
  background: url("../javascript/select_dn.png") 175px center no-repeat #FFF;
  margin-bottom: 5px;
}
.select .sel_items {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  border: 1px solid rgba(128,128,128,0.5);
  height: 33px;
}
.select .sel_item {
  padding-left: 10px;
  cursor: pointer;
  display: none;
}
.select .sel_item.selected {
  display: block;
}
.select.open {
  overflow: visible;
  z-index: 999;
}
.select.open .sel_items {
  height: auto;
  padding-bottom: 5px;
  background: #FFF;
}
.select.open .sel_item {
  display: block;
}
.select.open .sel_item:hover {
  background: #00adee;
}
.select.openup .sel_items {
  top: auto;
  bottom: 0;
}
