﻿/* CSS Document */

/* CSS Document */

body
{
/* text attributes (may be overridden in div tags)do not put any attributes here to allow default font and color and size to inherit from the workarea*/
font-family:Arial, Helvetica, sans-serif;
font-size:12px;

/* color of page background - default is #FFFFFF*/
background-color:#000000;

/*background image (tiled or stationary) - example given is single image centered on background*/
background-position:center;
background-repeat:no-repeat;
/* select repeat to allow to tile on background */
background-repeat:no-repeat;
/*make these 0px if you want the page to go to the edges of the browser; if site is completely left-aligned, add to margin*/
margin:0px;
padding:0px;
}

/*this next group changes the look of the schoolmaster.master template */
.trtitle
{
    
}

.mainlogo
{
}

.maintitle
{
    color: rgb(255,230,0);

}

.links
{
        color: rgb(255,230,0);

}

.footer
{
}
/* end of schoolmaster.master section*/
/* school_container holds the school website area */

#school_container
{
padding: 0px;
margin:0px;
width:950px;
}
/* school_header - attributes for the school_header from content block */
#school_header
{
float:left;
margin:0px;
padding:0px; /* may have to be changed according to design*/
width:950px;
border: solid 2px rgb(255,230,0);
}
/* school_subheader is optional area for horizontal menu */
#school_subheader
{
float:left;
clear:both;
margin:0px;
padding:0px;
width:100%;
}
/* school_maincontent holds the menus and content blocks of the school website */
#school_maincontent
{
float:left;
clear:both;
margin:0px;
padding:0px; /* may have to be changed according to design*/
width:950px; /* if this area stretches too far, change and adjust by pixels*/
background-color:#FFCC00;
}

#school_menu_container
{
float: left; /*may float right or left depending on template design*/
margin:0px;
padding:0px;
width:946px; /* may have to be adjusted according to menu style*/
background-color:#000000;
border: solid 2px rgb(255,230,0);

}
/* school_content holds content block; depending on template, you may have to create more than one school div tag (e.g. school content1, school_content2, etc) */

#school_content
{
float: left;
margin:0px;
padding:0px;
clear:both;

}

#school_footer
{
float:left;
clear:both;
margin:0px;
padding:0px;
width:100%;
}

/* NOTES: Padding should be at least 3 px minimum when applying to style sheet. Factor in all the sizes of content to make sure that they do not add up to more than 950 px*/
