/*======================================================================================*\
* Copyright (c) 2008 BLUEWING - All Rights Reserved.
* ======================================================================================
* No part of this file may be reproduced or transmitted in any form or by any means, 
* electronic or mechanical, including photocopying and recording, for any purpose 
* without the express written permission of the owner of copyright.
* ======================================================================================
* @filesource       root/view/stylesheets/forms.css
* @copyright        Copyright 2007, Bluewing, Florian Tschoerner
* @link             http://www.bluewing.biz
* @package          bluewing
* @since            Bluewing v 3.0.1
* @version          
* @modifiedby       
* @lastmodified     03.06.2009
* @license          http://www.opensource.org/licenses/mit-license.php The MIT License
\*======================================================================================*/

/*======================================================================================*\
 * ALL MEDIA
\*======================================================================================*/

@media all {

}

/*======================================================================================*\
 * SCREEN
\*======================================================================================*/

@media screen {
	/*	forms
	------------------------------------------------*/

	form {
		margin:0px 0px 0px 0px;
		padding:0px 0px 0px 0px;
	}
		form ul {
			display:block;
			width:100%;
			list-style-type:none;
			margin:0px 0px 0px 0px;
			padding:0px 0px 0px 0px;
		}
			form ul li {
				text-align:right;
				margin:2px 0px 2px 0px;
			}
				form ul li em {
					color:rgb(255,0,0);
					margin:0px 5px 0px 0px;
				}
				form ul li.error {
					text-align:left;
				}
				form ul li.legend {
					text-align:left;
					font-size:1.2em;
					font-variant:small-caps;
					font-weight:bold;
				}
				form ul li.message {
					text-align:left;
				}
				form ul li.buttons {
					text-align:center;
				}
			form ul li input {
				width:50%;
				font-size:1em;
				border:inset 1px;
				background-color:rgb(245,245,245);
			}
			form ul li input.file {
			}
			form ul li input.svnr {
				width:10%;
				margin-right:0.8%;
			}
			form ul li input.zip {
				width:10%;
				margin-right:0.8%;
			}
			form ul li input.city {
				width:39%;
			}
				form ul li input:focus {
					border:solid 1px rgb(255,0,0);
					background-color:rgb(255,255,255);
				}
			form ul li input.checkbox {
				width:15px;
				margin:0px 5px 0px 5px;
			}
			form ul li input.radio {
				width:15px;
				margin:0px 5px 0px 5px;
			}
			form ul li select {
				width:50%;
				font-size:1em;
				border:inset 1px;
				background-color:rgb(245,245,245);
			}
				form ul li select:focus {
					border:solid 1px rgb(255,0,0);
					background-color:rgb(255,255,255);
				}
					form ul li select.select_hour {
						width:50px;
					}
					form ul li select.select_minutes {
						width:50px;
					}
					form ul li select.sselect_seconds {
						width:50px;
					}
					form ul li select.select_day {
						width:50px;
					}
					form ul li select.select_month {
						width:50px;
					}
					form ul li select.select_year {
						width:70px;
					}
			form ul li textarea {
				width:50%;
				font-size:1em;
				border:inset 1px;
				background-color:rgb(245,245,245);
			}
				form ul li textarea:focus {
					border:solid 1px rgb(255,0,0);
					background-color:rgb(255,255,255);
				}
			form ul li button {
			}

	form.styled {
		display:block;
	}
	form.styled ul {
		border:solid 1px rgb(153,153,153);
		background-color:rgb(230,230,230);
		margin:0px 0px 10px 0px;
	}
		form.styled ul li {
			margin:2px 5px 2px 5px;
		}

}

/*======================================================================================*\
 * PRINT
\*======================================================================================*/
@media print {
}

/*======================================================================================*/