body {
	font-family: "Droid Sans", sans-serif;
}
#left {
    float: left;
    width: 66%;
    height: 100%;
    overflow-y: scroll;
    padding-right: 10px;
}
#right {
    float: right;
    width: 30%;
    height: 100%;
    overflow-y: scroll;
}
table.contents,
table.service,
table.parameters {
	width: 100%;
	border-collapse: collapse;
}
table.contents td,
table.service td,
table.parameters td {
	padding: 5px;
}
div.serviceHeading h2 {
    margin-top: 0;
}
table.service tr {
	border: 2px solid black;
	padding-bottom: 15px;
}
table.contents thead,
table.parameters thead {
	font-weight: bold;
	text-align: left;
}
table.contents thead tr th,
table.parameters thead tr th {
	border-bottom: 1px solid black;
}
table.contents tbody tr td,
table.parameters tbody tr td {
	border-bottom: none;
	padding-bottom: 3px;
	vertical-align: top;
}
table.contents tr:nth-child(even),
table.parameters tr:nth-child(even) {
	background-color: #e8e8e8;
}
div.method {
    border: 2px solid black;
    margin-bottom: 10px;
}
div.methodHeader {
    padding: 5px;
    cursor: pointer;
}
div.methodHeader .methodName {
    font-weight: bold;
    float: left;
    width: 25%;
    word-wrap: break-word
}
div.methodHeader .methodDescription {
    float: right;
    width: 70%
}
div.methodHeader .methodExpand, div.methodHeader .methodCollapse {
    font-weight: bold;
    float: right;
    width: 4%;
    text-align: right
}
div.methodBody {
    padding: 5px;
    border-top: 2px solid black;
}