﻿/* CSS Document */

body
{
/* text attributes (may be overridden in div tags) do not put any attributes here if you want the default font and color and size to inherit from the workarea*/
color:#000000;
font-family:Arial, Helvetica, sans-serif;
font-size: 12px;

/*color of page background  - default is #FFFFFF */
background-color:rgb(0,0,255);

/*background image (tiled or stationary) - example given is single image centered on background*/
background-image: url(ARROWD.GIF);
background-position:center;
/* 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 a
{
    color:rgb(255,255,255);
}

.mainlogo a
{
    color:rgb(255,255,255);
}

.maintitle a
{
    color:rgb(255,255,255);
}

.links a
{
    color:rgb(255,255,255);
}

.footer
{
    color:rgb(0,0,255);
}

#school_emergency
{
    color:rgb(255,255,255); 
}

/* end of schoolmaster.master section */

/* school_container holds the school website area */

#school_container
{
padding:2px;
margin:auto;
width:953px;
border:2px solid rgb(0,0,255);
background-color:rgb(255,255,255);
float:left;
}

/* school_header - attributes for the school_header from content block */
#school_header
{
margin:auto;
padding:0px; /* may have to be changed according to design */
/*background-image:url(../../highpoint/images/highpoint_banner.jpg);
background-repeat:no-repeat;
height:207px;*/
width:100%;
}

/* school_subheader is optional area for horizontal menu */
#school_subheader
{
float:left;
margin:0px;
padding:0px; /* may have to be changed according to design */
width:100%;
border-top: 2px solid rgb(0,0,255);
border-bottom: 2px solid rgb(0,0,255);
}
#school_subheader_photos
{
float:left;
margin:0px;
padding:0px; /* may have to be changed according to design */
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:100%; /*if this area stretches too far, change and adjust by pixels*/
}

#school_menu_container
{
float:left; /* may float right or left depending on template design */
margin:0px;
padding:0px;
background-color:#33FF99;
width:200px; /* may have to be adjusted according to menu style */
}
/* school_content holds content block; depending on template, you may have to create more than one school_content div tag e.g. school_content1, school_content2, etc. */

#school_content
{
float:left;
margin:0px;
padding:5px;
width:500px;
}
#school_content_left
{
    float:left;
    width:190px;
     border:1px solid rgb(0,0,255);
     padding:5px;
     margin:5px;
}
#school_content_interior
{
float:left;
margin:0px;
padding:5px;
padding-left:10px;
width:940px;
}
#school_content_right
{
float:right;
margin:5px;
margin-top:5px;
padding:0px;
width:210px;
}

#quicklinks
{
    float:left;
    width:200px;
    border:1px solid rgb(0,0,255);
    margin-bottom:5px;
}
#bell_schedule
{
    float:left;
    width:200px;
    border:1px solid rgb(0,0,255);
}

#school_footer
{
float:left;
clear:both;
margin:0px;
padding:5px;
width:100%;
border-top:2px solid rgb(0,0,255);
}

