/*
Title: body_spring.css
Website: The Dales Diary
URL: http://thedalesdiary.co.uk
Author: James Ashberry
Copyright: © 2009 Lazy Grace Ltd
Date Created: 23/09/2009
Version: n/a
Purpose: Body background for Spring - determins screen size and allocates background image accordingly.
Comments: includes/date.php determins the date and selects the relevant style sheet for the body background image. This is the Spring stylesheet. 
*/

/* XGA eXtended Graphics Array 1024×768 */
.body1024 {
	padding: 0;
	margin: 0;
	background-image: url(../images/body/1024.jpg);
	background-repeat: no-repeat;
	background-position: top;
	background-attachment: fixed;
}
/* WXGA Widescreen eXtended Graphics Array 1152×864 */
.body1152 {
	padding: 0;
	margin: 0;
	background-image: url(../images/body/1152.jpg);
	background-repeat: no-repeat;
	background-position: top;
	background-attachment: fixed;
}
/* WXGA Widescreen eXtended Graphics Array 1280×768 */
/* WXGA Widescreen eXtended Graphics Array 1280×800 */
/* SXGA Super eXtended Graphics Array 1280×960 */
/* SXGA Super eXtended Graphics Array 1280×1024 */
.body1280 {
	padding: 0;
	margin: 0;
	background-image: url(../images/body/1280.jpg);
	background-repeat: no-repeat;
	background-position: top;
	background-attachment: fixed;
}
/* WXGA Widescreen eXtended Graphics Array 1366×768 */
.body1366 {
	padding: 0;
	margin: 0;
	background-image: url(../images/body/1366.jpg);
	background-repeat: no-repeat;
	background-position: top;
	background-attachment: fixed;
}
/* WSXGA Widescreen Super eXtended Graphics Array 1440×900 */
.body1440 {
	padding: 0;
	margin: 0;
	background-image: url(../images/body/1440.jpg);
	background-repeat: no-repeat;
	background-position: top;
	background-attachment: fixed;
}
/* Ultra eXtended Graphics Array 1600×1200 */
/* WSXGA Widescreen Super eXtended Graphics Array Plus	1680×1050 */
.body1680 {
	padding: 0;
	margin: 0;
	background-image: url(../images/body/1680.jpg);
	background-repeat: no-repeat;
	background-position: top;
	background-attachment: fixed;
}
/* Full High Definition	1920×1080 */
/* WUXGA Widescreen Ultra eXtended Graphics Array 1920×1200 */
.body1920 {
	padding: 0;
	margin: 0;
	background-image: url(../images/body/1920.jpg);
	background-repeat: no-repeat;
	background-position: top;
	background-attachment: fixed;
}




