@charset "UTF-8";

html{
	height: 100%;
}

body{
	height: 100%;
	margin: 0px;
	background-color: rgb(232, 232, 232);
}

#Full_Height_Wrapper{
	position: relative;
	margin: 0px auto;
	width: 85%;
	max-width: 1000px;
	min-width: 800px;
	min-height: 100%;
	background-color: rgb(255, 255, 255);
	box-shadow: 0px 0px 25px rgb(135, 135, 135);
}

#Header{
	width: 100%;
	height: 150px;
	background-color: rgb(103, 170, 239);
	border-bottom: 3px solid rgb(187, 187, 187);
}

#Header_Content_Centering_Wrapper{
	position: relative;
	margin: 0px auto;
	width: 800px;
	height: inherit;
	background-image: url('Gradient_Background.png');
}

#Click_Modifiers_Logo{
	position: absolute;
	left: 0px;
	top: 0px;*/
	width: 150px;
	height: 150px;
}

#Click_Modifiers_Title{
	position: absolute;
	left: 150px;
	top: 15px;*/
	width: 420px;
	height: 80px;
}

/* Navigation menubar */
#Navigation_Menubar{
	position: absolute;
	bottom: 0px;
	margin: 0px 0px 0px 160px;
	height: 42px;
	background-color: rgb(88, 88, 88);
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
}

/* Navigation menubar entries */
#Navigation_Menubar>ul{
	margin: 0px;
	padding: 5px;
	vertical-align: middle;
	list-style: none;
}

/* Navigation menubar entries - list properties */
#Navigation_Menubar>ul>li{
	float: left;
}

/* Navigation menubar entries - link properties */
#Navigation_Menubar>ul>li>a{
	position: relative;
	padding: 8px 18px;
	height: 16px; /* The height of the block will vary a little between browsers if not explicitly set. */
	display: block;
	color: rgb(255, 255, 255);
	font-family: "Arial", sans-serif;
	font-weight: bold;
	font-size: 14px;
	text-decoration: none;
}

/* Navigation menubar hovered entries */
#Navigation_Menubar>ul>li>a:hover{
	border-radius: 5px;
	background-color: rgb(232, 232, 232);
	color: rgb(0, 0, 0);
}

#Content{
	padding: 25px;
	/* Can't easilly make Content div the full height of the page so specify backgrounds in the parent div instead. */
	overflow: auto;
}

div.Content_Section{
	overflow: auto;
	margin-bottom: 2em;
}

.Content_Section_Title{
	margin: 0em 0em 0.5em;
	border-bottom: 2px solid rgb(175, 175, 175);
	font-family: "Helvetica", "Arial", sans-serif;
	font-size: x-large;
}

div.Content_Subsection{
	overflow: auto;
	margin-left: 1em;
	margin-bottom: 1em;
}

.Content_Subsection_Title{
	margin: 0em 0em 0.333em;
	border-bottom: 1px solid rgb(175, 175, 175);
	font-family: "Helvetica", "Arial", sans-serif;
	font-size: large;
}

.Error_Message{
	font-weight: bold;
	color: rgb(255, 0, 0);
}

.Float_Left{
	float: left;
}

.Float_Right{
	float: right;
}

.Clear_Floats_On_Both_Sides{
	clear: both;
}

.Padded_List>li{
	margin-bottom: 0.75em;
}

ul.Unbulleted_List{
	list-style-type: none;
	margin: 0px;
	padding: 0px;
}

.Warning_Message{
	font-weight: bold;
	color: rgb(255, 0, 0);
}

div.Captioned_Content>div{
	font-size: smaller;
	text-align: center;
}

.Install_Button{
	margin: 10px;
	padding: 10px 25px;
	display: inline-block;
	background: #62c52b;
	border-radius: 5px;
	background: linear-gradient(180deg, rgb(0, 255, 0), rgb(64, 176, 16));
	color: rgb(0, 0, 0);
	font-size: 24px;
	text-decoration: none;
	text-align: center;
	text-shadow: 2px 2px 2px rgb(136, 136, 136);
	box-shadow: 0px 0px 2px rgb(136, 136, 136);
	transition: box-shadow 0.25s ease;
}

.Install_Button:hover{
	box-shadow: 0px 0px 5px rgb(136, 136, 136);
}

.Install_Button>.Subtext{
	margin: 0px;
	font-size: 12px;
	text-align: center;
}

#FooterPlaceholder{
	height: 43px;
}

#Footer{
	position: relative;
	bottom: 43px;
	margin: 0px auto -43px;
	width: 85%;
	max-width: 1000px;
	min-width: 800px;
	height: 40px;
	background-color: #67aaef;
	border-top: 3px solid rgb(160, 160, 160);
}

#Copyright{
	padding: 10px;
	font-size: small;
	text-align: center;
}