﻿/*
	|- CssClass=weblogfields----------------------------------|
	|														  |
	| |--ID=weblogfield[fieldname] class="weblogfield"------| |
	| | |--(1)-----------| |--(2)------------| |--(3)-----| | |														
	| | |				 | |				 | |	      | | |
	| | |----------------| |-----------------| |----------| | |
    | |-----------------------------------------------------| |
	|													      |
	| |--ID=weblogfield[fieldname] class="weblogfield"------| |
	| | |--(1)-----------| |--(2)------------| |--(3)-----| | |														
	| | |				 | |				 | |	      | | |
	| | |----------------| |-----------------| |----------| | |
    | |-----------------------------------------------------| |
	|														  |
	|---------------------------------------------------------|													    

(1)
	ID=weblogfield[fieldname]label class=weblogfieldlabel

(2)
	ID=weblogfield[fieldname]input class=weblogfieldinput

(3)
	RequiredFieldValidator:
		ID=weblogfield[fieldname]reqvalidator class=weblogfieldreqvalidator
	
	RegularExpressionValidator	
		ID=weblogfield[fieldname]regvalidator class=weblogfieldregvalidator
*/


/*	All the fields in the Blog 
	are surrounded by this class */
.weblogfields
{
	width: 65%; 
}

/*	set style for all field groups
	margin up to prev. field group */
.weblogfield
{
	margin-top: 10px;
}

/*	set style for all labels */
.weblogfieldlabel
{
	font-weight: bold;	
	margin-bottom: 5px; 
}


.weblogfieldinput input, .weblogfieldinput textarea
{
	width: 100%; 
}


.weblogfieldinput
{
	margin-bottom: 5px; 
}


/*	Every input has a class using the name of the field */
div#weblogfieldsummaryinput textarea
{
	height: 100px;
}

div#weblogfielddescriptioninput textarea
{
	height: 200px;
}

.weblogfieldreqvalidator
{
	float:right;
	position:absolute;
	margin-left: 10px; 
	     
}

.weblogfieldregvalidator
{
	float:right;
	position:absolute;   
	margin-left: 10px;
}


.weblogfieldsavecss input
{
	width: 80px;

}

