/*
Title:		Standard website style definitions
File: 		inc/style_site.css
Version: 	v2.10
Author:		Digitalization
Contact:	info@digitalization.nl
*/

/* Clear all default margins and paddings */
* {
	margin:				0px;
	padding:			0px;
}

/* Text throughout the site*/
body,td,th,p {
	font-family: 		Verdana, Arial, Helvetica, sans-serif;
	font-size: 			11px;
	color: 				#000000;
}

/* Re-set some margins */
table {
	padding-bottom:		10px;
	font-size: 			11px;
	color: 				#000000;
}

ul {
	padding-bottom:		10px;
	margin-left: 		10px;
}
      
ul li {
 	margin-left: 		10px;
    list-style: 		disc;
	line-height:		18px;
}

/* Default paragraph text */
p {
	padding-bottom:		10px;
	line-height:		18px;
}

/* Links */
a {
	color:				red;
	text-decoration:	none;
}

a:hover {
	text-decoration:	underline;	
}

/* Success message after form submit */
p.message {
	font-style:			italic;
}

/* Error message after form submit */
p.error_message {
	color:				red;
}

/* Clearing element */
.clear {
	clear: 				both;
}

/* No border for images */
img {
	border: 			none;
}

/* Form elements font style */
input, select, textarea, button, option {
	font-family: 		Verdana;
	color: 				#000000;
	font-size: 			12px;
	margin-bottom: 		1px;
	margin-top: 		1px;
}

form {
	display: 		inline;
}

/* Standard width fitting for textarea and selectboxes */
textarea {	
	border: 		1px solid #888888;
	width: 			362px;
	height: 		120px;
	padding: 		2px;
}

select {
 	border: 		1px solid #888888;
	width: 			216px;
	height: 		18px;
	padding: 		1px;
}

/* Standard width text input boxes */
.input_small {
 	border: 		1px solid #888888;
	width: 			50px;
	height: 		14px;
	padding: 		2px;
}

.input_medium {
 	border: 		1px solid #888888;
	width: 			150px;
	height: 		14px;
	padding: 		2px;
}

.input_regular {
 	border: 		1px solid #888888;
	width: 			210px;
	height: 		14px;
	padding: 		2px;
}

.input_large {
 	border: 		1px solid #888888;
	width: 			362px;
	height: 		14px;
	padding: 		2px;
}

/* Calendar input box and file input box */
.input_calendar {
 	border: 		1px solid #888888;
	width: 			180px;
	height: 		14px;
	padding: 		2px;
}

.input_file, input[type='file'] {
	width: 			221px;	
	padding: 		2px;
}

/* Checkboxes */
input[type='checkbox'] {
	margin-left: 4px;
}

/* Buttons */
button, input[type='submit'], .input_submit {

}

/* Calendar button */
button.calendar_button {
	padding-top:		0px;
	width: 				26px;
	height:				20px;
}