/* 
	This style sheet contains examples of common CSS authoriing mistakes
 */

.e1 {
	font-size: 2 px;	/* space between number and unit */	
}


.li_bez {
	font-family: arial;
	font-size : 11px;
	color : #F5F5F5;
	background-attachment : scroll;
	list-style-type: none;
}

li {
	font-family: arial;
	font-size : 11px;
	color : #F5F5F5;
	background-attachment : scroll;
	list-style-type: square;
}
.e2 {
	font-size: 11px;
	/* missing length unit */
	font-weight : bold;
	font-family : Arial;
	font-style : normal;
	color : #DED8C5;
}

.e3 {
	font-family: arial;
	/* missing generic font - should add sans-serif */
	font-size : 11px;
	color : #F5F5F5;
	background-attachment : scroll;
	line-height: 160%;	
}

.e4 {
	/* the font property requires a font size value */
	font-size : 11px;
	font-style : normal;
	font-family : Arial, Helvetica, sans-serif;
	font-variant : normal;
	color : White;
}

.e5 {
	font-family: arial;
	/* missing generic font - should add sans-serif */
	font-size : 10 px;
	color : #E9E7E2;
	background-attachment : scroll;
	font : Verdana, Geneva, Arial, Helvetica, sans-serif;
}



.e6 {
	background: red;
	background-color: blue; /*  shorthand background property already defines background-color */
}

.e_7 { /* selectors shouldn't contain underscores */ }
.1e8 { /* selectors shouldn't start with a number  */ }

BODY {

scrollbar-face-color: #979797;
scrollbar-shadow-color: #979797;
scrollbar-highlight-color: #979797;
scrollbar-3dlight-color: #979797;
scrollbar-darkshadow-color: #c8c8c8;
scrollbar-track-color: #5f5f5f;
scrollbar-arrow-color: #FFFFFF;

 }
