@charset "UTF-8";
@charset "UTF-8";
/* CSS Document */


/* --------------------------- */
/* FONT SPECS */
/* --------------------------- */

/*increased global font size from default of 14px to 16px with an adjustment of default line hight from 1.428 to 1.5 */
* {
   font-size: 16px;
   line-height: 1.5;
}

/* keeps the content font size at readable but smaller size for screens less than 767px */
@media (max-width: 767px) {    
	.containerContent { 
		font-size: 16px; 
	}
}

/* in content and right nav link style */
a:link {
	color:#336633;
	text-decoration: none;
}

a:active {
	color:#336633;
	text-decoration: underline;
}

a:visited {
	color:#336633;
	text-decoration: none;
}
	 
a:hover {
	color:#336633;
	text-decoration: underline;
}

/* WHITE FONT LINK STYLE USED IN EXAM AND BLOG BOXES IN SIDEBAR */

.white:link {
	color:#FFFFFF;
	text-decoration: none;
	font-size: 14px;
}

.white:active {
	color:#FFFFFF;
	text-decoration: underline;
	font-size: 14px;
}

.white:visited {
	color:#FFFFFF;
	text-decoration: none;
	font-size: 14px;
}
	 
.white:hover {
	color:#FFFFFF;
	text-decoration: underline;
	font-size: 14px;
}

/* nav bar link colors */
.navbar-nav > li > a:link {
	color:#336633;
}

/* stylized the See Also text */
.sideBarHeadline {
	color:#336633;
	font-weight: bold;
	font-size:18px;
}
	
/* stylizes the text on top of the bgimages */
h1 {
	font-size: 40px;
	color:#FFF;
	vertical-align:text-bottom;
	margin-top:40px;
	text-shadow:
	-1px -1px 0 #666,  
	1px -1px 0 #666,
	-1px 1px 0 #666,
	1px 1px 0 #666;
	letter-spacing: 1px;
}

.homeText {
	color:#336633 !important;
	text-shadow:
	-1px -1px 0 #fff,  
	1px -1px 0 #fff,
	-1px 1px 0 #fff,
	1px 1px 0 #fff;
	margin-top:140px;

}

.mediatorText {
	font-size: 26px;
	color:#336633 !important;
	vertical-align:text-bottom;
	margin-top:40px;
	margin-left:40px;
	text-shadow:
	-1px -1px 0 #fff,  
	1px -1px 0 #fff,
	-1px 1px 0 #fff,
	1px 1px 0 #fff;
	text-shadow: none;
	letter-spacing: 3px;
	font-family: 'Felipa', cursive;
}
.mediatorTextName {
		font-size: 20px;
}

/* changes the top margin on the home page text */
@media (max-width: 650px) {    
	.homeTextresize {
	margin-top:20px;
	}
}

/* reduces font size on Mediation page - text on top of the bgimage */
@media (max-width: 767px) {    
	.h1resize {
		font-size: 18px;
		color:#FFF;
		vertical-align:text-bottom;
		margin-top:40px;
		text-shadow:
		-1px -1px 0 #666,  
		1px -1px 0 #666,
		-1px 1px 0 #666,
		1px 1px 0 #666;
		letter-spacing: 1px;
	}
}
@media (max-width: 750px) {    
	
	.h1mediatorresize {
		font-size: 18px;
		letter-spacing: 1px;
	}
	
	.h1mediatornameresize {
		font-size: 16px;
	}
}

/* does the indentation on the MCLE page */
.indent {
	margin-left:40px;
}


/* --------------------------- */
/* LAYOUT SPECS */
/* --------------------------- */

/* adds a margin above and below the content area and right nav bar */
.containerContent {
	margin-top:30px;
	margin-bottom:30px;
}

.containerContentHome {
	margin-top:50px;
	margin-bottom:50px;
}

/* vertical divider */
.divider-vertical {
    height: 475px;                   
    border-left: 1px solid gray;     
    float: left;                     
    opacity: 0.5;                    
    margin: 0px 45px 0px 20px; 
}

.divider-vertical-long {
    height: 700px;                   
    border-left: 1px solid gray;     
    float: left;                     
    opacity: 0.5;                    
    margin: 0px 45px 0px 20px; 
}

.divider-vertical-xlong {
    height: 750px;                   
    border-left: 1px solid gray;     
    float: left;                     
    opacity: 0.5;                    
    margin: 0px 45px 0px 20px; 
}

.divider-vertical-xxlong {
    height: 850px;                   
    border-left: 1px solid gray;     
    float: left;                     
    opacity: 0.5;                    
    margin: 0px 45px 0px 20px; 
}

/* Exam and Blog Boxes */
.greenBox {
	background-color: #336633;
}

.greenboxFormat {
	text-align: center;
	margin: 3px;
	font-size: 14px; 
	color: white;
}

.blogboxDateFont {
	font-size: 12px;
	padding-top: 10px;
}

.blogHR {
margin-top: 5px;
margin-bottom:5px;
}


/* hides vertical divider when page reformats in screens less than 1000px */
@media (max-width: 1000px) {
	.divider-vertical {
		display: none;
	 }
	.divider-vertical-long {
		display: none;
	 }
	.divider-vertical-xlong {
		display: none;
	 }
	.divider-vertical-xxlong {
		display: none;
	 }
}

/* stylizes the footer area and spacing */
.kgfooter {
	padding:10px;
	background-color:#f4f4f4;
	text-align:center;
}

/* indents the seminars */
.seminarIndent {
	margin-left:25px;
}


/* --------------------------- */
/* PRINTING STYLES */
/* --------------------------- */

/* hides URLs when printing */
@media print {
	a[href]:after {
		content: "" !important;
	}
}

/* hides an element from being printed used on Top Nav, right side SO-ME icon */
@media print {
  .hidden-print {
    display: none !important;
  }
}

/*modified footer for printing */
@media print {
	.footer-print {
		margin-top:-20px;
	}
}

@media print {
	.footer-printHome {
		margin-top:-40px;
	}
}


@media print {
	.container-fluid {
		width: 7.0in;
		margin-left:-5px;
	}
}

@media print {
	.container-fluidHome {
		width: 7.0in;
		margin-left:-5px;
		padding-top:140px;
	}
}
		
@media print {
* {
   font-size: 15px;
   line-height: 1.5;
}
}
	

/* --------------------------- */
/* SOCIAL MEDIA SPECS */
/* --------------------------- */

/* adds spacing around SoMe icons */
.fa {
	padding:10px 10px 20px 0px;
}

/* moves the SoMe icons in the right nav to stay in alignment with the bullets on screens less than 1000px */
@media (max-width: 1000px) {    
	.some {
		margin-left:40px;
	}
}

/* makes the SoMe icons larger than default on screens less than 767px */
@media (max-width: 767px) {    
	.fa {
		font-size:24px !important;
	}
}

 
/* --------------------------- */
/* IMAGE SPECS */
/* --------------------------- */

/* sets images to 100% of screen size */
img {
	display: inline-block;
	height: auto;
	max-width: 100%;
 }

/* scales KG logo image keeping correct aspect ratio */
.imgscale {
	height: auto; 
    width: auto; 
    max-width: 126px; 
    max-height: 117px;
}

/* resizes the KG logo on the home page for screens less than 768px */
@media screen and (max-width: 768px) {
	.imgscale {
		width: auto; 
		max-height: 70px;
	}
}


/* LARGE BACKGROUND IMAGES */

/* default position and size for all pages */ 
.bgimgDefault {
	background-position: center center;
	background-size: cover;
	height: 250px;
}

/* positions top edge and text on all pages except the home page */
.bgimgAlt {
	margin-top:0px;
	text-align:right;
}

.bgimageAbout {
	background-image: url('../images/about_k_gallo.jpg');
	max-height:250px;
	background-position: left !important;
}
@media screen and (max-width: 768px) {
	.bgimageAbout {
		margin-left:-125px;
	}
}


.bgimageCalendar {
	background-image: url('../images/calendar.jpg');
}

.bgimageCases {
	background-image: url('../images/cases_handled.jpg');
}

.bgimageContact {
	background-image: url('../images/contact.jpg');
}

.bgimageDRSM {
	background-image: url('../images/discovery_referee.jpg');
}

.bgimageFee {
	background-image: url('../images/fee_schedule.jpg');
}

.bgimageForms {
	background-image: url('../images/discovery_forms.jpg');
}

/* note home image has extra spacing due to KG logo and left aligns text */
.bgimageHome {
	background-image: url('../images/home_bay_bridge.jpg');
	margin-top:140px;
}
@media screen and (max-width: 768px) {
	.bgimageHome {
		margin-top:20px;
	}
}

.bgimageMediation {
	background-image: url('../images/mediation.jpg');
}

.bgimageMCLE {
	background-image: url('../images/mcle.jpg');
	background-position:top;
}

.bgimageExams {
	background-image: url('../images/exams.jpg');
	background-position:top;
}

.bgimageMCLESeminars {
	background-image: url('../images/seminars_desks_books.jpg');
	background-position:top;
}

.bgimageSiteMap {
	background-image: url('../images/site_map.jpg');
}


/* Member of image */
.memberImage {
	margin-left: 10px;
	width: 110px;
}

@media (max-width: 1000px) {
	.memberImageMargin {
		margin-left: -50px;
	 }
}
/* --------------------------- */
/* TOP HORIZONTAL NAV SPECS */
/* --------------------------- */

/* sets the navigation text hight and color style */
.navbar-nav li a {
    height: 30px;
	padding-top: 0;
	background-color:#FFFFFF;
	border:0px;
}

/* places the nav bar to the right edge with some padding */
.navbar-right {
	padding-right:20px;
}

/* sets the background and text color of the active page text */
.active a {
    background-color: #FFFFFF !important;
	color:#999999 !important;
}


/* TESTING HEADER TO MOBILE AT 1200 */
@media (max-width: 1200px) {
    .navbar-header {
        float: none;
    }
    .navbar-left,.navbar-right {
        float: none !important;
    }
    .navbar-toggle {
        display: block;
    }
    .navbar-collapse {
        border-top: 1px solid transparent;
        box-shadow: inset 0 1px 0 rgba(255,255,255,0.1);
    }
    .navbar-fixed-top {
        top: 0;
        border-width: 0 0 1px;
    }
    .navbar-collapse.collapse {
        display: none!important;
    }
    .navbar-nav {
        float: none!important;
        margin-top: 7.5px;
    }
    .navbar-nav>li {
        float: none;
    }
    .navbar-nav>li>a {
        padding-top: 10px;
        padding-bottom: 10px;
    }
    .collapse.in{
        display:block !important;
    }
   .navbar-nav .open .dropdown-menu {
       position: static;
       float: none;
       width: auto;
       margin-top: 0;
       background-color: transparent;
       border: 0;
       -webkit-box-shadow: none;
       box-shadow: none;
    }
}
<!-- modifies the nav bar height HOME PAGE -->
.nav-bar { 
	min-height: 75px;
}

.navbar-fixed-top,.navbar-brand {
	min-height: 140px;
	background:#FFFFFF;
}

@media screen and (max-width: 768px) {
	.navbar-fixed-top, .navbar-brand {
		min-height: 65px;
	}
}

<!-- modifies the nav bar height ALL OTHER PAGES -->
.nav-barAlt { 
	min-height: 65px;
}

.navbar-fixed-topAlt {
	min-height: 65px;
	background:#FFFFFF;
}

@media screen and (max-width: 768px) {
	.navbar-fixed-topAlt {
		min-height: 65px;
	}
}



