/*****************************************************************************************
* Application: KeyMaker                                                                  *
*                                                                                        *
* Page name:   style.css                                                                 *
*                                                                                        *
* Programmer:  Timothy D. Johnson                                                        *
*                                                                                        *
* Version:     1.0                                                                       *
*                                                                                        *
* Description: Provides the formatting for the KeyMaker web application interface.       *
*                                                                                        *
* Date:        04/15/2020                                                                *
******************************************************************************************
*                                      FILE UPDATES                                      *
******************************************************************************************
* Programmer:                                                                            *
*                                                                                        *
* Version:                                                                               *
*                                                                                        *
* Changes:                                                                               *
*                                                                                        *
* Date:                                                                                  *
*****************************************************************************************/

body
{
	background-color: #eeeeee;
	font-family: arial, helvetica;
	color: #555;
	font-size: 12px;
}

.text_outlining
{
	text-align: center;
	font-size: 24px;
	font-weight: bold;
	padding: 0px;
	color: white;
	text-shadow:
		-1px -1px 0 #000,
		1px -1px 0 #000,
		-1px 1px 0 #000,
		1px 1px 0 #000;
	letter-spacing: 1px;
}

#page_header
{
	border:1px solid #a1a1a1;
	border-bottom: none;
	width: 80%;
	margin: 0 auto;

	/* IE10 Consumer Preview */ 
	background-image: -ms-linear-gradient(bottom, #ffffff 0%, #ffdd55 100%);

	/* Mozilla Firefox */ 
	background-image: -moz-linear-gradient(bottom, #ffffff 0%, #ffdd55 100%);

	/* Opera */ 
	background-image: -o-linear-gradient(bottom, #ffffff 0%, #ffdd55 100%);

	/* Webkit (Safari/Chrome 10) */ 
	background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #ffffff), color-stop(1, #ffdd55));

	/* Webkit (Chrome 11+) */ 
	background-image: -webkit-linear-gradient(bottom, #ffffff 0%, #ffdd55 100%);

	/* W3C Markup, IE10 Release Preview */ 
	background-image: linear-gradient(to top, #ffffff 0%, #ffdd55 100%);
}

#page_content
{
	border: 1px solid #a1a1a1;
	background: #ffffff;
	width: 80%;
	margin: 0 auto;
	border-top: none;
	border-bottom: none;
}

#page_footer
{
	border: 1px solid #a1a1a1;
	border-top: none;
	width: 80%;
	margin: 0 auto;

	/* IE10 Consumer Preview */ 
	background-image: -ms-linear-gradient(bottom, #ffdd55 0%, #ffffff 100%);

	/* Mozilla Firefox */ 
	background-image: -moz-linear-gradient(bottom, #ffdd55 0%, #ffffff 100%);

	/* Opera */ 
	background-image: -o-linear-gradient(bottom, #ffdd55 0%, #ffffff 100%);

	/* Webkit (Safari/Chrome 10) */ 
	background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #ffdd55), color-stop(1, #ffffff));

	/* Webkit (Chrome 11+) */ 
	background-image: -webkit-linear-gradient(bottom, #ffdd55 0%, #ffffff 100%);

	/* W3C Markup, IE10 Release Preview */ 
	background-image: linear-gradient(to top, #ffdd55 0%, #ffffff 100%);
}

.example
{
	font-style: italic;
	font-size: 12px;
}

.button_style
{
	font-size: 10px;
	font-family: arial;
	color: #ffffff;
	width: 150px;
	height: 25px;
	background-color: #82cffd;
	border: 2px outset #0099ff;
	text-align: center;
}

.button_style:hover
{
	font-size: 10px;
	font-family: arial;
	color: #00688b;
	width: 150px;
	height: 25px;
	background-color: #bfefff;
	border: 2px inset #0099ff;
}

.slider
{
	-webkit-appearance: none;
	width: 250px;
	height: 10px;
	border-radius: 5px;
	background: #d3d3d3;
	outline: none;
	opacity: 0.7;
	-webkit-transition: .2s;
	transition: opacity .2s;
}

.slider::-webkit-slider-thumb
{
	-webkit-appearance: none;
	appearance: none;
	width: 15px;
	height: 15px;
	border-radius: 50%;
	background: #0099ff;
	cursor: pointer;
}

.slider::-moz-range-thumb
{
	width: 15px;
	height: 15px;
	border-radius: 50%;
	background: #0099ff;
	cursor: pointer;
}