﻿@import url("core.css");

/* 

  --styles.css--
  The standard layout definitions for the LA Law Library website.

*/



body
{
    margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
    padding: 0;
    text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
    background-color: #CCCCCC;
}


.smaller
{
    margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
    padding: 0;
    text-align: left;
    color: #000000;
    font-family: Arial, Helvetica, sans-serif;
    font-size: smaller;
}


/* Get rid of */
#mainContent #Text .Accordion
{
    width: 100%;
}

#mainContent #Text .Accordion h2, #mainContent #TextNoFeature .Accordion h2
{
    background-color: #4B5760;
    color: #FFFFFF;
    font-weight: bolder;
    padding-top: .5em;
    padding-right: .5em;
    padding-bottom: .5em;
    padding-left: .5em;
    text-decoration: underline;
    color: #E0B12E;
    cursor: pointer;
}

#mainContent #Text .AccordionContent, #mainContent #TextNoFeature .AccordionContent
{
    padding-top: 1em;
    padding-right: .5em;
    padding-bottom: 1em;
    padding-left: .5em;
}
/* End get rid of */


#container #mainContent #accordion
{
}

#container #mainContent #accordion h2
{
    font-size: 1em;
    background-color: #4B5760;
    font-weight: bolder;
    padding-top: .5em;
    padding-right: .5em;
    padding-bottom: .5em;
    padding-left: .5em;
    text-decoration: underline;
}

#container #mainContent #accordion h2 a:link, #container #mainContent #accordion h2 a:visited
{
    color: #E0B12E;
}


#container #mainContent #accordion .accordion-content
{
    padding-top: 1em;
    padding-right: .5em;
    padding-bottom: 1em;
    padding-left: .5em;
    vertical-align: top;
}





/* Tips for Elastic layouts 
1. Since the elastic layouts overall sizing is based on the user's default fonts size, they are more unpredictable. Used correctly, they are also more accessible for those that need larger fonts size since the line length remains proportionate.
2. Sizing of divs in this layout are based on the 100% font size in the body element. If you decrease the text size overall by using a font-size: 80% on the body element or the #container, remember that the entire layout will downsize proportionately. You may want to increase the widths of the various divs to compensate for this.
3. If font sizing is changed in differing amounts on each div instead of on the overall design (ie: #sidebar1 is given a 70% font size and #mainContent is given an 85% font size), this will proportionately change each of the divs overall size. You may want to adjust based on your final font sizing.
*/
#container
{
    width: 768px; /* this width will create a container that will fit in an 800px browser window if text is left at browser default font sizes */
    background: #2F3940;
    background-image: url(../../images/bkgrnd.jpg);
    margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
    border: 1px solid #000000;
    text-align: left; /* this overrides the text-align: center on the body element. */
    position: relative;
}


#header
{
    padding-top: 0;
    padding-right: 0px;
    padding-bottom: 0;
    padding-left: 0px;
    background-color: #455660;
}

#header img
{
    border: 0;
    margin: 0;
}

#header #Logo
{
}

#header #Border
{
    text-align: right;
    height: 8px;
    background-color: #A73036;
    clear: both;
}

#header h1
{
    margin: 0; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */
    padding: 10px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}



/* Tips for sidebar1:
1. Be aware that if you set a font-size value on this div, the overall width of the div will be adjusted accordingly.
2. Since we are working in ems, it's best not to use padding on the sidebar itself. It will be added to the width for standards compliant browsers creating an unknown actual width. 
3. Space between the side of the div and the elements within it can be created by placing a left and right margin on those elements as seen in the ".thrColElsHdr #sidebar1 p" rule.
*/
#sidebar1
{
    float: left;
    width: 187px; /* since this element is floated, a width must be given */
    background: #2F3940; /* top and bottom padding create visual space within this div */
    padding-top: 2em;
    padding-right: 0;
    padding-bottom: 1em;
    padding-left: 0;
    vertical-align: top;
    text-align: left;
    overflow: hidden;
}

#sidebar1 #LoginStatus
{
    border: 1px solid #5e6a6c;
    padding: .75em;
    margin: 1em;
}

#sidebar1 #LoginStatus .LoginName
{
    color: #E0B12E;
    font-size: 1em;
    font-weight: bolder;
    display: block;
}


#sidebar1 #LoginStatus a.LoginLink:link, #sidebar1 #LoginStatus a.LoginLink:visited
{
    color: #E0B12E;
    font-size: 1em;
    display: block;
}

/* End sidebar1 */




#sidebar2
{
    float: right;
    width: 130px; /* since this element is floated, a width must be given */ /*background: #ffffff;  the background color will be displayed for the length of the content in the column, but no further */
    padding: 0em 10px 1em 10px;
}

#sidebar1 h3, #sidebar1 p, #sidebar2 p, #sidebar2 h3
{
    /*margin-left: 10px;  the left and right margin should be given to every element that will be placed in the side columns  	margin-right: 10px;*/
    margin-top: 0em;
}

#sidebar2 ul
{
    padding-left: 0px;
    margin-left: 0px;
    list-style-type: none;
}

/* Tips for mainContent:
1. If you give this #mainContent div a font-size value different than the #sidebar1 div, the margins of the #mainContent div will be based on its font-size and the width of the #sidebar1 div will be based on its font-size. You may wish to adjust the values of these divs.
2. The space between the mainContent and sidebar1 is created with the left margin on the mainContent div.  No matter how much content the sidebar1 div contains, the column space will remain. You can remove this left margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends.
3. To avoid float drop, you may need to test to determine the approximate maximum image/element size since this layout is based on the user's font sizing combined with the values you set. However, if the user has their browser font size set lower than normal, less space will be available in the #mainContent div than you may see on testing.
4. In the Internet Explorer Conditional Comment below, the zoom property is used to give the mainContent "hasLayout." This avoids several IE-specific bugs that may occur.
*/
#mainContent
{
    float: left;
    padding-bottom: 1em;
    padding-top: 2em;
    padding-left: 20px;
    vertical-align: top;
    width: 561px;
    overflow: hidden;
}


#mainContent #Text
{
    width: 411px;
    float: left;
    padding-bottom: 2em;
}

#mainContent #TextNoFeature
{
    width: 541px;
    float: left;
    padding-bottom: 2em;
    padding-right: 20px;
}

#mainContent h4
{
    font-family: Arial, Helvetica, sans-serif;
    font-size: 12px;
    font-weight: bold;
    margin-bottom: -15px;
}

#mainContent h5
{
    font-family: Arial, Helvetica, sans-serif;
    font-size: 9px;
    font-weight: normal;
}


#mainContent #Text p, #mainContent #TextNoFeature p
{
    font-size: .9em;
    margin-top: 0em;
}

#mainContent #Text h3, #mainContent #TextNoFeature h3
{
    margin-top: 1.5;
}

#mainContent #Text .emphasis, #mainContent #TextNoFeature emphasis
{
    font-family: "Times New Roman" , Times, serif;
    font-size: 1em;
    font-style: italic;
    color: #666666;
    line-height: 1.4em;
}

#footer
{
    clear: both;
    padding: 0 10px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
    background-color: #000000;
    background-image: url(../../images/homeimages/FooterBlend2.jpg);
}
#footer p
{
    color: #FFFFFF;
    font-size: .85em;
    text-align: center;
    margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
    padding: 10px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
}

#container #footer p a:link
{
    color: #ffffff;
}

#container #footer p a:visited
{
    color: #e4e4e4;
}

#container #footer p a:hover
{
    color: #ffcc00;
}





/* Miscellaneous classes for reuse */
.fltrt
{
    /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
    float: right;
    margin-left: 8px;
}
.fltlft
{
    /* this class can be used to float an element left in your page */
    float: left;
    margin-right: 8px;
}


.clearfloat
{
    /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
    clear: both;
    height: 0;
    font-size: 0px;
    line-height: 0px;
}





/* Classes and IDs defining the site's global navigation */


#GlobalNavigation
{
    font-size: 1.125em;
}

#GlobalNavigation a:link, #GlobalNavigation a:visited
{
    text-decoration: none;
    color: #FFFFFF;
}

#GlobalNavigation a:hover
{
    color: #F0B213;
}

#GlobalNavigation ul
{
    list-style-position: outside;
    list-style-type: none;
    padding-left: 12px;
    margin: 0em;
}

#GlobalNavigation ul li
{
    background: transparent url(../../images/navigation/bullet-primary-off.gif) no-repeat;
    background-position: 0em 6px;
    padding-left: 12px;
    text-transform: lowercase;
    line-height: 1.5em;
    margin-bottom: .5em;
}



#GlobalNavigation ul li.Current
{
    background: transparent url(../../images/navigation/bullet-primary-on.gif) no-repeat;
    background-position: 0px 6px;
    padding-left: 12px;
    color: #F0B213;
}

#GlobalNavigation ul li.Current a:link, #GlobalNavigation ul li.Current a:visited
{
    color: #F0B213;
}

#GlobalNavigation ul li.Current ul a:link, #GlobalNavigation ul li.Current ul a:visited
{
    color: #FFFFFF;
}

#GlobalNavigation ul li.Current ul a:hover
{
    color: #F0B213;
}

#GlobalNavigation ul li ul
{
    font-size: 0.7em;
    background-color: #5e6a6c;
    margin-left: -18px;
    margin-top: .5em;
    margin-bottom: .5em;
    list-style-type: none;
    padding-top: .5em;
    padding-bottom: .5em;
}

#GlobalNavigation ul li ul li
{
    background: transparent url(../../images/navigation/bullet-secondary-off.gif) no-repeat;
    background-position: 0em 4px;
    text-transform: uppercase;
    margin-bottom: .5em;
    padding-left: 18px;
}

/*Whole background behind nav title*/
#GlobalNavigation ul li ul li.Current
{
    background: transparent url(../../images/navigation/bullet-secondary-on.gif) no-repeat;
    background-position: 0em 4px;
    padding-left: 18px;
    text-transform: uppercase;
}

/*Background Just nav title*/
#GlobalNavigation ul li ul li.Current a:link, #GlobalNavigation ul li ul li.Current a:visited
{
    color: #F0B213;
}


#GlobalNavigation ul li ul li ul
{
    padding-left: 0em;
    margin-left: 0px;
    list-style-type: none;
    font-size: 1em;
    padding-top: .25em;
    padding-bottom: .25em;
}

#GlobalNavigation ul li ul li ul li
{
    list-style-type: none;
    list-style-image: none;
    color: #FFFFFF;
    margin-left: -18px;
    padding-left: 18px;
    background: none;
    margin-bottom: .25em;
}

#GlobalNavigation ul li.Current ul li.Current ul a:link, #GlobalNavigation ul li.Current ul li.Current ul a:visited
{
    color: #ffffff;
    background: none;
}

#GlobalNavigation ul li.Current ul li.Current ul a:hover
{
    color: #F0B213;
    background: none;
}



#GlobalNavigation ul li ul li ul li.Current
{
    list-style-image: none;
    background: none;
    background-color: #990000;
    margin-left: -18px;
    padding-left: 18px;
}

/*Rollover affect, all navigation*/
#GlobalNavigation a:hover
{
    color: #F0B213;
    text-decoration: none;
}


/**** FORM LAYOUT ****/

div.row
{
    clear: both;
    padding-top: .5em;
    width: 40em;
}

div.row span.label
{
    float: left;
    width: 9em;
    font-weight: bolder;
    padding-right: 1em;
    text-align: right;
}

div.row span.formw
{
    float: right;
    width: 30em;
    text-align: left;
}

div.row span.formw input.button
{
    border: 1px solid #000000;
    background-color: #2F3940;
    color: #E0B12E;
}













/** CSS-FRIENDLY ASP CLASSES *************************************/



.AspNet-FormView
{
    margin-bottom: 2em;
    margin-top: 1em;
}


.DetailsForm .AspNet-FormView
{
    float: right;
    margin-top: 2em;
    width: 300px;
}

.DetailsForm .AspNet-FormView .AspNet-FormView-Data .FormRow
{
    clear: both;
    width: 300px;
}

.DetailsForm .AspNet-FormView .AspNet-FormView-Data .FormRow .FormHeader, .DetailsForm .AspNet-FormView .AspNet-FormView-Data .FormRow .FormField
{
    vertical-align: top;
    padding-left: 5px;
    padding-right: 5px;
    padding-top: .2em;
    padding-bottom: .2em;
    margin: 0px;
}

.DetailsForm .AspNet-FormView .AspNet-FormView-Data .FormRow .FormHeader
{
    float: left;
    background-color: #4B5760;
    color: #E0B12E;
    font-weight: bolder;
    width: 80px;
}


.DetailsForm .AspNet-FormView .AspNet-FormView-Data .FormRow .FormField
{
    float: right;
    width: 200px;
}

.DetailsForm .AspNet-FormView .AspNet-FormView-Data .FormRow .FormField input
{
    background-color: #DDDDDD;
    width: 180px;
    border: 0;
    padding-top: .25em;
    padding-right: .5em;
    padding-bottom: .25em;
    padding-left: .5em;
}




/**/






.UserEntryForm .AspNet-FormView .AspNet-FormView-Data .FormRow .FormField .button
{
    border: 1px solid #000000;
    width: auto;
}



/**/

.AdminDetails .AspNet-DetailsView
{
    border: 1px solid #4B5760;
    margin-bottom: 2em;
    border-collapse: collapse;
    margin-top: 2em;
    background-color: #FFFFFF;
}

.AdminDetails .AspNet-DetailsView .AspNet-DetailsView-Data ul li
{
    list-style-type: none;
    vertical-align: top;
    clear: both;
}


.AdminDetails .AspNet-DetailsView .AspNet-DetailsView-Data .AspNet-DetailsView-Name
{
    font-weight: bolder;
    margin-right: 20px;
    text-align: right;
}


.AdminDetails .AspNet-DetailsView .AspNet-DetailsView-Data .AspNet-DetailsView-Value
{
}


.AdminDetails .AspNet-DetailsView .AspNet-DetailsView-Data .AspNet-DetailsView-Alternate .AspNet-DetailsView-Name
{
}


.AdminDetails .AspNet-DetailsView .AspNet-DetailsView-Data .AspNet-DetailsView-Alternate .AspNet-DetailsView-Value
{
}




.InputText, .InputTextActive
{
    font-size: 1em;
    padding-left: .5em;
    padding-right: .5em;
    font-family: Arial, Helvetica, Sans-Serif;
}

.InputText
{
    border: 1px solid #EFEFEF;
    background-color: #EFEFEF;
}

.InputTextActive
{
    border: 1px solid #000000;
    background-color: #FFFF00;
}

table.AdminTable
{
    border: 1px solid #4B5760;
    margin-bottom: 2em;
    border-collapse: collapse;
    margin-top: 2em;
    float: left;
}

table.AdminTable tr
{
    border-top: 1px solid #9EA0A2;
    text-align: left;
}


table.AdminTable th, table.AdminTable td
{
    vertical-align: top;
    padding-left: .5em;
    padding-right: .5em;
    padding-top: .2em;
    padding-bottom: .2em;
    margin: 0px;
}

table.AdminTable th
{
    background-color: #4B5760;
    color: #E0B12E;
    font-weight: bolder;
}

table.AdminTable td
{
}

.ModalBackground
{
    background-image: url(../../images/transparency.gif);
}

.ModalWindow
{
    background-color: #FFFFFF;
    padding: 2em;
}

.GroupHeader
{
    padding-top: .25em;
    padding-bottom: .25em;
    padding-left: 1em;
    padding-right: 2em;
    vertical-align: top;
    background-color: #9EA0A2;
    border: 1px solid #000000;
    color: #000000;
    font-weight: normal;
    font-size: 1.2em;
    font-weight: bolder;
    margin-bottom: 1.25em;
    margin-top: 1.25em;
}

.EventItem
{
    padding-left: 1em;
    margin-bottom: 3em;
}

.EventItem h3
{
    margin-bottom: 0px;
}


.IssueBox
{
    font-size: .85em;
    font-family: Verdana;
    padding-top: 5px;
    padding-bottom: 5px;
    padding-right: 10px;
    padding-left: 10px;
    margin-top: 2.5em;
    margin-left: 30px;
    margin-right: 30px;
    margin-bottom: .5em;
    border: 1.5px solid #000000;
    background-color: #d79200;
    text-align: center;
    color: #990000;
}

.IssueBox a:link
{
    color: #990000;
    text-decoration: none;
}

.IssueBox a:visited
{
    color: #990000;
    text-decoration: none;
}

.IssueBox a:hover
{
    color: #000000;
    text-decoration: underline;
}



.FeedBackForm
{
    z-index: 0;
    padding: 1em;
    background-color: #CCCCCC;
    border: 0;
    padding: 2em;
    border: 2px solid #666666;
    top: 200px;
    position: absolute;
}



/** SEARCH INTERFACE **/

.QuickSearch
{
}

.QuickSearch img.SearchButton
{
    vertical-align: top;
}


.QuickSearch input.SearchTerm
{
    width: 115px;
    height: 22px;
    border: 1px solid #000000;
    vertical-align: top;
}



#container #header #GlobalSearch
{
    position: absolute;
    top: 25px;
    right: 10px;
    z-index: 10;
    color: #FFFFFF;
}

#Container #Header #GlobalSearch .QuickSearch input.SearchTerm
{
    width: 60px;
    border: 1px solid #000000;
    color: #000000;
    height: 22px;
}

input.TextBox, textarea.TextBox
{
    text-align: left;
    vertical-align: top;
}



/* Agenda */
#agandaGuid li
{
    float: left;
    width: auto;
    list-style: none;
}


.dark
{
    background-color: #e4e4e4;
    height:30px;
    padding-top:0px;
    margin-top:0px;
}


.list li
{
    list-style: none;
    width: 320px;
}

.list li span
{
    margin-right: 0px;
    padding-right: 10px;
    text-align: right;
    margin-right: 0px;
    margin-top: 5px;
    position: relative;
    float: right;
    bottom: 20px;
    display:inline;
    
}

.list li strong:last-child
{
    bottom: 0px;

}
li span:last-child
{
    bottom: 0px;

}

.list
{
    padding-left: 0px;
    margin-left: 0px;
    width: 340px;
}

img
{
    border: none;
}

<!--Left Column Pullout Start-->

#Slideout_Container {
	float:left;
}

#slideout {
			position: fixed;
			top: 200px;
			left: 0;
			width: 105px;
			padding: 12px 0;
			text-align: center;
			background: #ed1c24;
			-webkit-transition-duration: 1.0s;
			-moz-transition-duration: 1.0s;
			-o-transition-duration: 1.0s;
			transition-duration: 1.0s;
			-webkit-border-radius: 0 5px 5px 0;
			-moz-border-radius: 0 5px 5px 0;
			border-radius: 0 5px 5px 0;
		}
		#slideout_inner {
			position: fixed;
			top: 200px;
			left: -250px;
			background: #ed1c24;
			width: 200px;
			padding: 25px;
			height: 140px;
			-webkit-transition-duration: 1.0s;
			-moz-transition-duration: 1.0s;
			-o-transition-duration: 1.0s;
			transition-duration: 1.0s;
			text-align: left;
			-webkit-border-radius: 0 0 5px 0;
			-moz-border-radius: 0 0 5px 0;
			border-radius: 0 0 5px 0;
		}
		
		#slideout_inner textarea {
			width: 190px;
			height: 100px;
			margin-bottom: 6px;
		}
		
		#slideout_inner p {
			color: #ffffff;
		}
		#slideout:hover {
			left: 250px;
		}
		#slideout:hover #slideout_inner {
			left: 0;
		}
<!--Left Column Pullout End-->
