/* this css file have 3 categories of settings for controls on the page. Specific setting category is applied according to the clients resolution

/* following three css classes will be used for 1280x1024 resolution*/

.label1280
{
	font-size: 14pt;
	color: black;
	font-family: tahoma;
}
.textBox1280
{
	width: 150;
	height: 50;	
}
.button1280
{
	width: 150;
	height: 50;
}
.image1280
{
	/*background-image: url(1280.jpg);*/
	width: 1259;
	height: 121;    	
}

/* following three css classes will be used for 1024x768 resolution*/
.label1024
{
	font-size: 11pt;
	color: black;
	font-family: tahoma;
}
.textBox1024
{
	width: 120;
	height: 40;	
}
.button1024
{
	width: 120;
	height: 40;
}
.image1024
{
	/*background-image: url(1024.jpg);*/
	width: 1003;
	height: 97;    	
}

/* following three css classes will be used for 800x600 resolution*/
.label800
{
	font-size: 8pt;
	color:  black ;
	font-family: tahoma;
}
.textBox800
{
	width: 80;
	height: 30;		
}
.button800
{
	width: 80;
	height: 30;	
}
.image800
{
	/*background-image: url(800.jpg);*/
	width: 779;
	height: 76;    	
}
