﻿@import url('layout.css');
body {
	color: #000000;
	font-size: 14px;
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	background-color: #d3d9d6;
}
hr { 
    display: block;
    margin-top: 0.5em;
    margin-bottom: 0.5em;
    margin-left: auto;
    margin-right: auto;
    border-style: inset;
    border-width: 1px;
} 
#container {
	background-color: #fff;
	min-width: 320px;
	max-width: 1000px;
	width: auto;
	margin: 0px auto;
	border-top: 0px;
	border-right: 1px solid #b7b7b7;
	border-bottom: 0px;
	border-left: 1px solid #b7b7b7;
}
#masthead {
	text-align: right;
	min-width: 320px;
	max-width: 1000px;
	height: 200px;
	background: #000000;
	background-image: url('../images/CinciNatty_Logo_Header.gif');
	background-position: center;
	background-repeat: no-repeat;
}
#column_full {
	min-width: 320px;
	background-color: #ffffff;
}
#column_l {
	min-width: 320px;
	width: 65%;
	background-color: #ffffff;
}
#column_r {
	min-width: 220px;
	width: 20%;
	background-color: #FFCC00;
}
#column_r h3 {
	margin: 7px;
}
#column_r img {
	margin: 7px;
	background-position: center;
	width: 200px;
}
#footer {
	min-width: 320px;
	max-width: 1000px;
	text-align: center;
	background-color: #545454;
	padding-top: 5px;
	padding-bottom: 5px;
}
.container_justified{
	width: 100%;
	text-align: justify;
}
.container_center{
	width: 100%;
	text-align: center;
}
.container_justified img{
	max-width: 65%;
}
.container_center img{
	max-width: 65%;
}

/* Styles for Masthead */
#masthead img {
	float: left;
}
#masthead p {
	font-size: 12px;
	color: #ffffff;
	margin: 10px 10px 0px;
}
#column_r p {
	font-size: 12px;
	margin: 7px;
}
/* Styles for Navigation */
#navigation {
	background-color: #545454; /*dark grey*/
}

/*Nav bar - Strip the ul of padding and list styling*/
ul {
	list-style-type:none;
	margin:0;
	padding:0;
	position: absolute;
}

/*Nav bar items - Create a horizontal list with spacing*/
li {
	display:inline-block;
	float: left;
	margin-right: 1px;
}

/*Nav bar item links - Style for menu links*/
li a {
	display:block;
	min-width:100px;
	height: 50px;
	text-align: center;
	line-height: 50px;
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
	color: #fff;  /*white*/
	background: #545454; /*dark grey*/
	text-decoration: none;
}

/*Nav bar item hover: top level links - Hover state for top level links*/
li:hover a {
	background: #003366; /*dark blue*/
	color: #fff; /*white*/
}

/*Nav bar item hover: dropdown links - Style for dropdown links*/
li:hover ul a {
	background: #cdc9c9; /*light grey*/
	color: #000000; /*black*/
	height: 40px;
	line-height: 40px;
}

/*Nav bar item hover: dropdown links hover - Style*/
li:hover ul a:hover {
	background: #2F3036; /*very dark grey*/
	color: #fff; /*white*/
}

/*Dropdown items - Hide dropdown links*/
li ul {
	display: none;
}

/*Dropdown items - Make dropdown vertical*/
li ul li {
	display: block;
	float: none;
}

/*Prevent text wrapping*/
li ul li a {
	width: auto;
	min-width: 75px;
	padding: 0 10px;
}

/*Dropdown items - Display on hover of bar or items*/
ul li a:hover + .nav-sub1, .nav-sub1:hover {
	display: block;
}

/*Style 'show menu' label button and hide it by default*/
.show-menu {
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
	text-decoration: none;
	color: #fff; /*white*/
	background: #003366; /*dark blue*/
	text-align: center;
	padding: 10px 0;
	display: none;
}

/*Hide checkbox*/
input[type=checkbox]{
    display: none;
}

/*Show menu when invisible checkbox is checked*/
input[type=checkbox]:checked ~ #menu{
    display: block;
}

/*Responsive Styles*/
@media screen and (max-width : 800px){
	/*Display 'show menu' link*/
	.show-menu {
		display:block;
	}
	
	/*Make dropdown links appear inline*/
	ul {
		position: static;
		display: none;
	}
	/*Create vertical spacing*/
	li {
		margin-bottom: 1px;
	}
	/*Make all menu links full width*/
	ul li, li a {
		width: 100%;
	}
	
	li ul a {
		background: #cdc9c9; /*light grey*/
		color: #2f3036; /*very dark grey*/
		height: 40px;
		line-height: 40px;
	}

	li ul, li ul li {
		display: block;
		background: #cdc9c9; /*light grey*/
	}
	
	
	#masthead {
		height: 200px;
		background: #000000;
		background-image: url('../images/CinciNatty_Logo_Header_Small.gif');
		background-position: center;
		background-repeat: no-repeat;
	}
	
	
	/*Move columns and resize*/
	#column_full, #column_l, #column_r {
		float: none;
		width: 98%;
		max-width: 98%;
		text-align: center;
		padding: 5px;
		clear: both;
	}
}



/* Styles for Footer */
#footer p {
	font-size: 14px;
	line-height: 16px;
	color: #ffffff;
	margin: 1px;
	padding: 1px;
}
#footer a {
	color: #ffffff;
	text-decoration: underline;
}
#footer a:hover {
	color: #ffffff;
	text-decoration: none;
}
/* Styles for Links */
a {
	color: #003366;
	text-decoration: underline;
}
a:hover {
	color: #808080;
	text-decoration: underline;
}
.style_bold {
	font-weight: bold;
}
.style_italic {
	font-style: italic;
}