/*The main wrapper*/
#pm-wrapper
{
	margin: 5px;
	position: relative;
	min-height: 500px;
	/*background-color: white;*/ /*Uncomment this if you have dark background and can't see the text*/
}

/*Header styling*/
#pm-header
{
	width: 100%;
	color: #505050;
	padding-bottom: 20px;
}

#pm-header strong
{
	color: #333;
	font-size: 20px;
}

#pm-header p
{
	padding: 0px;
	margin: 3px;
	color: #333;
	font-size: 12px;
	line-height:20px;
}

#pm-header span
{
	color: red;
}

#pm-header .avatar
{
	float: left;
	border: none;
	margin: 5px !important;
	padding: 0 !important;
}

/*Menu Styling*/
#pm-menu
{
	color: #333;
	width: 100%;
	font-weight: bold;
}

#pm-menu a
{
	color: #333;
	display: inline-block;
	margin-right: 30px;
	font-size: 18px;
	font-weight: bold;
	text-decoration: none;
}

#pm-menu a:hover
{
	text-decoration: underline;
}

/*Notify Styling*/
#pm-notify
{
	margin: 50px 0 0 0;
	clear: both;
	color: #bf3b3b;
	height: 30px;
	width: 100%;
	text-align: center;
	font-size: 16px;
	line-height: 30px;
	font-weight: bold;
}

/*Content styling*/
#pm-content
{
	margin-top: 30px;
	margin-bottom: 10px;
	padding: 0px;
	height: auto;
	width: 100%;
	color: #333;
}

#pm-content p, #pm-content form
{
	margin: 10px 0;
}

#pm-content  hr
{
	margin-top: 5px;
	margin-bottom: 5px;
	margin-right: 5px;
	border: 0;
	border-top: 1px solid #dfdfdf;
}

#pm-content .pmtext p
{
	margin-left: 0px;
}

#pm-content textarea
{
	width: 100%;
	height: 200px;
	resize: none;
	margin-bottom: 0;
	background: #f9f9f9;
	border: 1px solid #ddd;
	box-shadow: none;
	padding: 5px 8px;
	border-radius: 0;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
}

#pm-content textarea:focus
{
	border: 1px solid #ccc;
	box-shadow: inset 1px 1px 1px rgba(0,0,0,0.1);
	outline-color: rgba(240,255,240,0.1);
}

#pm-content input[type=text]
{
	width: 45%;
}

#pm-content table
{
	width: 100%;
	border-collapse: collapse;
	border: 0px;
	text-align: left;
}

#pm-content th, #pm-content td
{
	padding: 10px;
	vertical-align: top;
	white-space: pre-line;
	background: #f0f0f0;
}

#pm-content td
{
	background: #ffffff;
}

#pm-content tr:nth-child(odd) td
{
	background: #f7f7f7;
}

#pm-content .trodd0{}
#pm-content .trodd1
{
	background-color: #ddd;
}

#pm-content img
{
	max-width: 400px;
	margin-top: 5px;
	margin-bottom: 5px;
}

#pm-content a
{
	color: #64246a;
	text-decoration: none;
}

#pm-content small
{
	font-size: 10px;
}

#pm-content .avatar
{
	float: left;
	border: none;
	margin: 0px;
	margin-bottom: 5px;
}

#pm-content blockquote
{
	color: #666;
	width: 90%;
	background: #eee;
	border: 1px solid #333;
	padding-left: 5px;
	margin-top: 5px;
	margin-bottom: 5px;
}

#pm-content input[type=submit] {
	color: #EDECEC;
	display: inline-block;
	font-size: 16px;
	font-weight: 700;
	padding: 7px 21px 7px 21px;
	text-transform: uppercase;
	border-radius: 35px;
	border: 0px;
	background: url("../../../themes/gungho/images/page_forum/green_button.png") left center no-repeat;
	background-size: auto 100%;
	cursor: pointer;
	font-family: "Roboto",sans-serif;
	float: right;
}

pre.code
{
	width: 90%;
	background: #eee;
	border: solid 1px #ccc;
	padding: 5px;
	overflow: auto;
	white-space: pre-wrap;
	font-size: 95%; /*If font is too small try increasing this*/
}

/*Footer styling*/
#pm-footer
{
	text-align: center;
	font-size: 10px;
	border: 1px solid #333;
	width: 100%;
	color: #333;
}

#pm-footer a, #pm-footer a:hover, #pm-footer a:visited
{
	color: #64246a;
	text-decoration: none;
}

/*Auto-suggest*/
#results
{
	width:250px;
	border: solid 1px #333;
	display: none;
	position: absolute;
	background: white;
}

#results ul, #results li
{
	padding: 0px;
	margin: 0px;
	border: 0px;
	list-style: none;
}

#results li
{
	border-top: solid 1px #333;
}

#results li a
{
	display: block;
	padding: 5px;
	text-decoration: none;
	color: #64246a;
	font-weight: normal;
}

#results li a:hover
{
	background: #333;
	color: white;
}

@media screen and (max-width: 640px) {
	#pm-menu a {
		display: block;
	}
}