body {
	font: 100%/100% "Trebuchet MS", sans-serif;
	text-align: left;	
	height: 100%;
	background-color: rgb(255, 255, 255);
}

.code {
	font: 90%/90% "Courier", sans-serif;
	text-align: left;
	padding: 20px
}

.header {
	margin: 0px 0px 0px 0px;
	padding: 0px 0px 0px 4px;
	background-color: rgb(0, 51, 153);
}
	.header h1 {
		margin: 0px 0px 0px 0px;
		padding: 10px 0px 15px 0px;
		color:white;
	}
	.header input {
		margin-bottom: 5px
	}

.footer {
	margin: 0px 0px 0px 0px;
	background-color: rgb(237, 237, 237);
}
	.footer h3 {
		margin: 0px 0px 0px 0px;
		padding: 10px 0px 15px 10px;
	}
	.footer table {
		margin-left:10px;
	}

input[type='button'], input[type='submit']{
    cursor: pointer;
    /*opacity: 0;
    width: 24px;
    height: 24px;
    font-size: 0;
    position: absolute;*/
}

/*css for dropdown filter*/
.dropdownfilter {
	display: inline;
	position: relative;
	margin: 0px;
	border: 2px;
	padding: 1px 6px 1px 2px;
}

.dropdownfilter-content {
	display: inline;
	position: absolute;
	background-color: #ffffff;
	min-width: 247px;
	min-height: 29px;
	max-height:500px;
	overflow: auto;
	border: 1px solid #000000;
	border-left: 0px;
	padding-left: 0px;
	z-index: 1;
}
	.dropdownfilter-content a {
		cursor: pointer;
		color: black;
		text-decoration: none;
		display: block;
		font-family:Arial;
		font-size:13px;
		padding-left: 3px;
	}
	.dropdownfilter-content a:hover {
		background-color: rgb(30,144,235);
		color: white;
	}
#filterinput {
	height: 27px;
	width: 242px;
	margin: 0px;
	border: 1px;
	padding: 0px 0px 0px 3px;
	background-color:#FFFFBB;
}
#tagfilterinput {
	height: 27px;
	width: 242px;
	margin: 0px;
	border: 1px;
	padding: 0px 0px 0px 3px;
	background-color:#FFFFBB;
}

/*css for dropdown menu*/
.dropdownmenu {
	display:inline-block;
}
.dropdownmenubtn {
	cursor: pointer;
}
.dropdownmenu-content {
	display: none;
	position: absolute;
	background-color: rgb(239,239,239);
	min-width: 80px;
	border: 1px solid #000000;
	z-index: 2;
}
	.dropdownmenu-content a {
		font-family:Arial;
		font-size:13px;
		float: none;
		color: black;
		padding: 10px 10px;
		text-decoration: none;
		display: block;
		text-align: left;
	}
	.dropdownmenu-content a:hover {
		background-color: rgb(30,144,235);
		color: white;
	}
.show {
	display: block;
}

/*css for preview pane*/
.preview-content {
	display: none;
	overflow-y:scroll;
	float: right;
	background-color: rgb(239,239,239);
	width:55%;
	border: 1px solid #000000;
	z-index: 3;
}


