/* width */
::-webkit-scrollbar {
  width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 5px;
}
 
/* Handle */
::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 5px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #777; 
}

body { background-color: #f3f6ee; margin: 0; font-family: 'Source Code Pro', sans-serif; }

.fl-right { float: right; }
.fl-left { float: left; }
.clear { clear: both; }

a { text-decoration: none; }
a:link, a:visited {
	color: white;
	transition: 0.5s;
}
a:link:hover, a:visited:hover {
	color: #008585;
	transition: 0.5s;
}

h1 {
	text-indent: 20px;
	color: #008563;
}
h2 {
	text-indent: 20px;
	color: #008563;
}
h3 {
	text-indent: 10px;
	color: #008563;
}
p {
	text-indent: 40px;
	color: #6e8745;
	text-align: justify;
}
li { color: #6e8745; }

table {
	width: 100%;
	border: solid 1px gray;
	border-collapse: collapse;
	color: #008563;
}
td {
	border: solid 1px gray;
	text-align: left;
	padding: 4px;
}
.rnthl {
	
}
.rntcyellow { color: #ffbf00; }
.rntcred { color: red; }
.rntcgreen { color: #33cc33; }
.rntcorange { color: #ff8000; }
.rntcblue { color: blue; }
.rntclblue { color: darkblue; }

.home-menu {
	position: fixed;
	top: 0;
	min-height: 60px;
	width: 100%;
	border: solid 1px #8eac5e;
	border-width: 1px 0px 1px 0px;
	z-index: 1;
	background: rgba(142, 172, 94, 0.7);
}

.footer {
	position: fixed;
	bottom: 0px;
	width: 100%;
	height: 30px;
	border: solid 1px #8eac5e;
	border-width: 1px 0px 1px 0px;
	margin-top: 100px;
	background: rgba(142, 172, 94, 0.7);
}
.footer > ul { margin: 6px; }
.footer > ul > li {
	float: left;
	margin-right: 40px;
}

.account {
	margin: 16px;
	border: solid 1px #8eac5e;
	border-radius: 5px;
	padding: 4px;
}

.container {
	margin: auto;
	width: 60%;
}

.project {
	display: inline-block;
	width: 32%;
	border-radius: 5px;
	vertical-align: top;
	margin-bottom: 40px;
}
.project > img {
	width: 100%;
	background-color: #008585;
	border-radius: 5px;
}
.project > hr { width: 95%; }
.project > p {
	text-indent: 20px;
	font-size: 14px;
	margin: 0 6px 0 6px;
}
.project-head {
	text-align: center;
	background-color: #70c2c2;
}
.project-head > img {
	width: 30%;
}

.board-head {
	position: relative;
	background-color: #70c2c2;
	padding-left: 5%;
}
.board-head > div {
	position: absolute;
	left: calc(5% + 6px);
	top: 6px;
	color: whitesmoke
}
.board-head > img { width: 10%; }

#dropdown-btn {
	margin-top: 20px;
	display: none;
	border: solid 1px;
	border-radius: 3px;
	cursor: pointer;
}
#dropdown-btn > div {
	border: solid 1px;
	width: 14px;
	margin: 3px;
}

#main-nav {
	display: block;
	margin-top: 6px;
}
#main-nav > ul {
	list-style-type: none;
}
#main-nav > ul > li {
	float: left;
	font-size: 18px;
	margin: 4px;
	margin-right: 20px;
}

.dropdown-menu {
    display: none;
    list-style-type: none;
    position: absolute;
    z-index: 1;
    background: rgba(142, 172, 94, 0.9);
    padding: 0;
    border-radius: 5px;
    overflow: hidden;
}
.dropdown-menu li {
    display: block;
    padding: 6px 20px 6px 20px;
    margin: 4px;
    border-style: solid;
    border-width: 0 0 1px 0;
}
.dropdown:hover .dropdown-menu {
    display: block;
}

#searchInputCnt {
	width: 330px;
	height: 60px;
}
#searchInputCnt > input {
    width: 300px;
    padding: 5px;
    font-size: 16px;
    margin: 16px;
    border-radius: 5px;
    border: 1px;
    outline: none;
}
#search-menu {
    list-style-type: none;
    padding: 0;
    width: 400px;
    height: 500px;
    border-radius: 5px;
    overflow-y: auto;
    position: relative;
    
}
#search-menu li {
    padding: 10px;
    border-bottom: 1px solid #ccc;
    cursor: pointer;
    background: rgba(100, 100, 100, 0.8);
}
#search-menu li:hover {
    background-color: #f4f4f4;
    a:visited {color: black;}
}

@media only screen and (max-width: 600px) {
	#dropdown-btn { display: block; }
	#main-nav { display: none; }
	#main-nav > ul > li { clear: left; }
	#searchInputCnt { width: 180px; }
	#searchInputCnt > input { width: 150px; }
	.account {
		margin-left: 6px;
		margin-right: 6px;
	}
	#search-menu {
		width: 340px;
		left: -80px;
	}
	h1 {
		text-indent: 10px;
		font-size: 20px;
	}
	h2 {
		text-indent: 10px;
		font-size: 15px;
	}
	h3 {
		text-indent: 10px;
		font-size: 10px;
	}
	p {
		text-indent: 20px;
		font-size: 10px;
	}
	ul > li { font-size: 10px; }
	.container { width: 90%; }
	.project { width: 30%; }
	.project > p {
		text-indent: 6px;
		font-size: 6px;
		margin: 0 4px 0 4px;
	}
	table { font-size: 10px; }
}

@media only screen and (max-width: 768px) and (min-width: 601px) {
	#searchInputCnt { width: 180px; }
	#searchInputCnt > input { width: 150px; }
	.account {
		margin-left: 6px;
		margin-right: 6px;
	}
	#main-nav > ul > li {
		margin-right: 12px;
	}
	#searchInputCnt > input {
		margin-left: 0px;
	}
	.container { width: 80%; }
	h1 { font-size: 25px; }
	h2 { font-size: 20px; }
	p { font-size: 15px; }
	ul > li { font-size: 15px; }
	.project > p {
		text-indent: 8px;
		font-size: 10px;
		margin: 0 4px 0 4px;
	}
}