﻿/*
Theme Name: cmc
*/


/* =Reset
-------------------------------------------------------------- */

/*! normalize.css v2.0.1 | MIT License | git.io/normalize */

/* ==========================================================================
   HTML5 display definitions
   ========================================================================== */

/*
 * Corrects `block` display not defined in IE 8/9.
 */
@import url("box.css");
@import url("cmc.css");

article,
details,
figcaption,
figure,
footer,
header,
hgroup,
nav,
section,
summary {
    display: block;
}

/*
 * Corrects `inline-block` display not defined in IE 8/9.
 */

audio,
canvas,
video {
    display: inline-block;
}

/*
 * Prevents modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */

audio:not([controls]) {
    display: none;
    height: 0;
}

/*
 * Addresses styling for `hidden` attribute not present in IE 8/9.
 */

[hidden] {
    display: none;
}

/* ==========================================================================
   Base
   ========================================================================== */

/*
 * 1. Sets default font family to sans-serif.
 * 2. Prevents iOS text size adjust after orientation change, without disabling
 *    user zoom.
 */

html {
    font-family: sans-serif; /* 1 */
    -webkit-text-size-adjust: 100%; /* 2 */
    -ms-text-size-adjust: 100%; /* 2 */
}

/*
 * Removes default margin.
 */

body {
    margin: 0;
    background: #898989;
}

/* ==========================================================================
   Links
   ========================================================================== */

/*
 * Addresses `outline` inconsistency between Chrome and other browsers.
 */

a:focus {
    outline: thin dotted;
}

/*
 * Improves readability when focused and also mouse hovered in all browsers.
 */
p{padding: 4px 0; margin: 0;}
a:active,
a:hover {
    outline: 0;
}

a, a:link, a:visited {
    text-decoration: none;
    color: #333;
}

a:hover {
    color: #000;
}


/* ==========================================================================
   Typography
   ========================================================================== */

/*
 * Addresses `h1` font sizes within `section` and `article` in Firefox 4+,
 * Safari 5, and Chrome.
 */

body {
    font-family: Arial, Helvetica, sans-serif;
}

h1, h2, h3, h4 {
    font-family: Helvetica, Arial, Sans-Serif;
    font-weight: normal;
    margin-bottom: 5px;
    margin-top: 5px;
}

h1, h2 {
    font-size: 14px;
}

h3 {
    font-size: 20px;
}

h4 {
    font-size: 18px;
}

h5, h6 {
    font-size: 18px;
    margin-bottom: 5px;
    margin-top: 5px;
}

/*
 * Addresses styling not present in IE 8/9, Safari 5, and Chrome.
 */

abbr[title] {
    border-bottom: 1px dotted;
}

/*
 * Addresses style set to `bolder` in Firefox 4+, Safari 5, and Chrome.
 */

b,
strong {
    font-weight: bold;
}

/*
 * Addresses styling not present in Safari 5 and Chrome.
 */

dfn {
    font-style: normal;
}

/*
 * Addresses styling not present in IE 8/9.
 */

mark {
    background: #ff0;
    color: #000;
}


/*
 * Corrects font family set oddly in Safari 5 and Chrome.
 */

code,
kbd,
pre,
samp {
    font-family: monospace, serif;
    font-size: 1em;
}

/*
 * Improves readability of pre-formatted text in all browsers.
 */

pre {
    white-space: pre;
    white-space: pre-wrap;
    word-wrap: break-word;
}

/*
 * Sets consistent quote types.
 */

q {
    quotes: "\201C" "\201D" "\2018" "\2019";
}

/*
 * Addresses inconsistent and variable font size in all browsers.
 */

small {
    font-size: 80%;
}

/*
 * Prevents `sub` and `sup` affecting `line-height` in all browsers.
 */

sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}

sup {
    top: -0.5em;
}

sub {
    bottom: -0.25em;
}

/* ==========================================================================
   Embedded content
   ========================================================================== */

/*
 * Removes border when inside `a` element in IE 8/9.
 */

img {
    border: 0;
}

/*
 * Corrects overflow displayed oddly in IE 9.
 */

svg:not(:root) {
    overflow: hidden;
}

/* ==========================================================================
   Figures
   ========================================================================== */

/*
 * Addresses margin not present in IE 8/9 and Safari 5.
 */

figure {
    margin: 0;
}

/* ==========================================================================
   Forms
   ========================================================================== */

/*
 * Define consistent border, margin, and padding.
 */

fieldset {
    border: 1px solid #c0c0c0;
    margin: 0 2px;
    padding: 0.35em 0.625em 0.75em;
}

/*
 * 1. Corrects color not being inherited in IE 8/9.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 */

legend {
    border: 0; /* 1 */
    padding: 0; /* 2 */
}

/*
 * 1. Corrects font family not being inherited in all browsers.
 * 2. Corrects font size not being inherited in all browsers.
 * 3. Addresses margins set differently in Firefox 4+, Safari 5, and Chrome
 */

button,
input,
select,
textarea {
    font-family: inherit; /* 1 */
    font-size: 100%; /* 2 */
    margin: 0; /* 3 */
}

/*
 * Addresses Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */

button,
input {
    line-height: normal;
}

/*
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Corrects inability to style clickable `input` types in iOS.
 * 3. Improves usability and consistency of cursor style between image-type
 *    `input` and others.
 */

button,
html input[type="button"], /* 1 */
input[type="reset"],
input[type="submit"] {
    -webkit-appearance: button; /* 2 */
    cursor: pointer; /* 3 */
}

/*
 * Re-set default cursor for disabled elements.
 */

button[disabled],
input[disabled] {
    cursor: default;
}

/*
 * 1. Addresses box sizing set to `content-box` in IE 8/9.
 * 2. Removes excess padding in IE 8/9.
 */

input[type="checkbox"],
input[type="radio"] {
    box-sizing: border-box; /* 1 */
    padding: 0; /* 2 */
}

/*
 * 1. Addresses `appearance` set to `searchfield` in Safari 5 and Chrome.
 * 2. Addresses `box-sizing` set to `border-box` in Safari 5 and Chrome
 *    (include `-moz` to future-proof).
 */

input[type="search"] {
    -webkit-appearance: textfield; /* 1 */
    -moz-box-sizing: content-box;
    -webkit-box-sizing: content-box; /* 2 */
    box-sizing: content-box;
}

/*
 * Removes inner padding and search cancel button in Safari 5 and Chrome
 * on OS X.
 */

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
}

/*
 * Removes inner padding and border in Firefox 4+.
 */

button::-moz-focus-inner,
input::-moz-focus-inner {
    border: 0;
    padding: 0;
}

/*
 * 1. Removes default vertical scrollbar in IE 8/9.
 * 2. Improves readability and alignment in all browsers.
 */

textarea {
    overflow: auto; /* 1 */
    vertical-align: top; /* 2 */
}

/* ==========================================================================
   Tables
   ========================================================================== */

/*
 * Remove most spacing between table cells.
 */

table {
    border-collapse: collapse;
    border-spacing: 0;
}


/* Alignment */
.alignleft {
	display: inline;
	float: left;
	margin-right: 15px;
}
.alignright {
	display: inline;
	float: right;
	margin-left: 15px;
}
.aligncenter {
	clear: both;
	display: block;
	margin: 0 auto 10px;
}

/* Text meant only for screen readers */
.assistive-text {
	clip: rect(1px 1px 1px 1px); /* IE6, IE7 */
	clip: rect(1px, 1px, 1px, 1px);
	position: absolute !important;
}


/* =Layout
----------------------------------------------- */


#page {
        width: 988px; 
        margin: 0px auto; 
        background: url(images/background.jpg);
}

#main { 
        float: left;
}

#primary {
        width: 610px; 
        float: left;
        margin-right: 2px;
}

#secondary {
        width: 300px; 
        float: right;
        /*padding-top: 20px;*/
        padding-right: 3px;
}


/* = Header
----------------------------------------------- */

#headwidgets {
        height: auto;
        /*padding: 4px 5px;*/
        width: 100%;
}
#headwidgets .widget {
        float: right;
        margin-right: 10px;
}

#masthead {
        clear: both;
}


.site-description {
        font-size: 14px;
        margin-left: 20px; 
        margin-bottom: 15px; 
        display: none;
}

/* =Menu Below Header
----------------------------------------------- */


.main-navigation {
	clear: both;
	display: block;
	float: left;
	width: 100%;
        background: url('images/bg_menu_t.jpg') repeat-x;
        height: 40px;
}

.main-navigation ul {
	list-style: none;
	margin: 0;
    padding-left: 10px;
}
.main-navigation ul ul ul {
	padding-left:0px;
border-left: 1px solid #FFFFFF;
}
.main-navigation li {
	float: left;
    height: 39px;
	position: relative;
        font-size: 13px;
        line-height: 15px;
        text-transform: inherit;
    background: url(images/sp-menu.png) right top no-repeat;
    padding: 0px 0px 1px 0px;
font-weight: bold;
}
.main-navigation a {
	display: block;
	text-decoration: none;
        line-height: 23px;
        color: #fff;
      
            padding: 10px 15px;
 

}
li.current-menu-item a {
    background: url(images/bg_menu_t_hover.jpg) right top repeat-x;

    color: #ff6600;
  
   

}
.main-navigation li:hover a {
 
    background: url(images/bg_menu_t_hover.jpg) right top repeat-x;
    color: #ff6600;
   

}
.main-navigation ul ul {
	display: none;
	float: left;
	position: absolute;
		top: 40px;
		left: -10px;
	z-index: 99999;
   
}
.main-navigation ul ul ul {
	left: 100%;
	top: 0;
}
.main-navigation ul ul a {
	width: 240px;
}
.main-navigation ul ul li {
    float: left;

    position: relative;
    text-transform: inherit;
    background: url("images/bg_menu_sub.png") repeat scroll 0 0;
    padding: 0px 7px 7px 7px;
}
.main-navigation ul ul li a{
    background: none!important;
border-bottom: 1px dotted #5195db !important;
border-radius: none!important;
color: #fff !important;
}
.main-navigation li:hover > a {
         color: #ff6600;
}
.main-navigation ul ul :hover > a {
color: #ff6600;
}
.main-navigation ul ul a:hover {
color: #000!important;
}
.main-navigation ul li:hover > ul {
	display: block;
}
.main-navigation li.current_page_item a,
.main-navigation li.current-menu-item a {
}

/* Small menu */
.menu-toggle {
	cursor: pointer;
}
.main-small-navigation .menu {
	display: none;
}


/* = Menu in widget area above header
----------------------------------------------- */

#headwidgets .widget_nav_menu {
	display: block;
	float: right;
}
#headwidgets .widget_nav_menu ul  {
	list-style: none;
	margin: 0;
	padding-left: 0;
}
#headwidgets .widget_nav_menu li {
	float: left;
	position: relative;
        padding: 6px;
        font-size: 14px;
}
#headwidgets .widget_nav_menu a {
	display: block;
	text-decoration: none;
}
#headwidgets .widget_nav_menu ul ul {
        background: #fff;
	-moz-box-shadow: 0 3px 3px rgba(0,0,0,0.2);
	-webkit-box-shadow: 0 3px 3px rgba(0,0,0,0.2);
	box-shadow: 0 3px 3px rgba(0,0,0,0.2);
	display: none;
	float: left;
	position: absolute;
		top: 2.0em;
		left: 0em;
	z-index: 99999;
}
#headwidgets .widget_nav_menu ul ul ul {
	left: 100%;
	top: 0;
}
#headwidgets .widget_nav_menu ul ul a {
	width: 200px;
}
#headwidgets .widget_nav_menu ul ul li {
}
#headwidgets .widget_nav_menu li:hover > a {
}
#headwidgets .widget_nav_menu ul ul :hover > a {
}
#headwidgets .widget_nav_menu ul ul a:hover {
}
#headwidgets .widget_nav_menu ul li:hover > ul {
	display: block;
}
#headwidgets .widget_nav_menu li.current_page_item a,
#headwidgets .widget_nav_menu li.current-menu-item a {
}



/* =Content
----------------------------------------------- */

.page-header {
        border-bottom: 5px solid #F1F1F1;
width: 96%;
}
.post {
        padding-bottom: 15px;
}
.sticky {
}
.hentry {
	margin: 0 0 2.0em;
}
.entry-meta {
	clear: both;
        font-size: 14px;
}
.byline {
	display: none;
}
.single .byline,
.group-blog .byline {
	display: inline;
}

.entry-content,
.entry-summary {
	padding:0 10px;
    color: #545454;
}
.page-links {
	clear: both;
	margin: 0 0 1.5em;
}

.entry-head {
        width: 100%;
}

.entry-date {
        background: url(images/tab.png) top left no-repeat;
        height: 60px;
        width: 68px;
        margin: 0 15px 0 -50px;
        float: left;
        text-align: center;
        padding-top: 8px;
}
.date-month {
        font-family: 'PT Sans Narrow', Arial, Helvetica, sans-serif;
        font-size: 16px;
        text-transform: uppercase;
        color: #5e5e5e;
        text-shadow: #eee 1px 1px;
}
.date-day {
        font-family: 'PT Sans Narrow', Arial, Helvetica, sans-serif;
        font-size: 24px;
        color: #5e5e5e;
        text-shadow: #eee 1px 1px;
        line-height: 18px;
}
.cat-links {
        
font-size: 14px;
    font-weight: normal;
    text-transform: uppercase;
}
.entry-title {
        margin-bottom: 0px;font-weight: bold; font-size: 16px;
}
.form-allowed-tags {
        display: none;
}
.more-link {
        clear: both;
        display: block;
        margin-top: 15px;
        font-size: 14px;
        text-transform: uppercase;
        -webkit-border-radius: 4px;
        -moz-border-radius: 4px;
	border-radius: 4px;
}



/* =Media
----------------------------------------------- */

.site-header img,
.entry-content img,
.comment-content img,
.widget img {
	max-width: 100%; /* Fluid images for posts, comments, and widgets */
}
.site-header img,
.entry-content img,
img[class*="align"],
img[class*="wp-image-"] {
	height: auto; /* Make sure images with WordPress-added height and width attributes are scaled correctly */
}
.site-header img,
.entry-content img,
img.size-full {
	max-width: 100%;
	width: auto; /* Prevent stretching of full-size images with height and width attributes in IE8 */
}
.site-header img {
        float: left;
}


.entry-content img.wp-smiley,
.comment-content img.wp-smiley {
	border: none;
	margin-bottom: 0;
	margin-top: 0;
	padding: 0;
}
.wp-caption {
	border: 1px solid #ccc;
	max-width: 100%;
}
.wp-caption.aligncenter,
.wp-caption.alignleft,
.wp-caption.alignright {
	margin-bottom: 1.5em;
}
.wp-caption img {
	display: block;
	margin: 1.2% auto 0;
	max-width: 98%;
}
.wp-caption-text {
	text-align: center;
}
.wp-caption .wp-caption-text {
	margin: 0.8075em 0;
}
.site-content .gallery {
	margin-bottom: 1.5em;
}
.gallery-caption {
}
.site-content .gallery a img {
	border: none;
	height: auto;
	max-width: 90%;
}
.site-content .gallery dd {
	margin: 0;
}
.site-content .gallery-columns-4 .gallery-item {
}
.site-content .gallery-columns-4 .gallery-item img {
}

/* Make sure embeds and iframes fit their containers */
embed,
iframe,
object {
	max-width: 100%;
}


/* =Navigation
----------------------------------------------- */

.site-content .site-navigation {
	margin: 0 0 1.5em;
	overflow: hidden;
}
.site-content .nav-previous {
	float: left;
	width: 50%;
}
.site-content .nav-next {
	float: right;
	text-align: right;
	width: 50%;
}

/* =Comments
----------------------------------------------- */
#comments {
        border-top: 1px dashed #ccc;
}
.comments-title {
	color: #666;
	font-size: 18px;
	font-weight: normal;
	line-height: 1.6em;
	padding: 0 0 1.6em;
	text-transform: uppercase;
}

.nopassword,
.nocomments {
	color: #aaa;
	font-size: 24px;
	font-weight: 100;
	margin: 26px 0;
	text-align: center;
}
.commentlist {
	list-style: none;
	margin: 0 auto;
	width: 100%;
        padding-left: 0px;
}
.content .commentlist,
.page-template-sidebar-page-php .commentlist {
	width: 100%; /* reset the width for the one-column and sidebar page layout */
}
.commentlist > li.comment {
	background: #f6f6f6;
	border: 1px solid #ddd;
	-moz-border-radius: 3px;
	border-radius: 3px;
	margin: 0 0 1.625em;
	padding: 1.425em;
	position: relative;
        box-shadow: -1px 1px 1px #CCC;
}
.commentlist .pingback {
	margin: 0 0 1.625em;
	padding: 0 1.625em;
}
.commentlist .children {
	list-style: none;
	margin: 0;
}
.commentlist .children li.comment {
	background: #fff;
	border-left: 1px solid #ddd;
	-moz-border-radius: 0 3px 3px 0;
	border-radius: 0 3px 3px 0;
	margin: 1.625em 0 0;
	padding: 1.625em;
	position: relative;
}
.commentlist .children li.comment .fn {
	display: block;
}
.comment-meta .fn {
	font-style: normal;
}
.comment-meta {
	color: #666;
	font-size: 12px;
	line-height: 2.2em;
}
.commentlist .children li.comment .comment-meta {
	line-height: 1.625em;
	margin-left: 50px;
}
.commentlist .children li.comment .comment-content {
	margin: 1.625em 0 0;
}
.comment-meta a {
	font-weight: bold;
}
.comment-meta a:focus,
.comment-meta a:active,
.comment-meta a:hover {
}
.commentlist .avatar {
	-moz-border-radius: 3px;
	border-radius: 3px;
	-webkit-box-shadow: 0 1px 2px #ccc;
	-moz-box-shadow: 0 1px 2px #ccc;
	box-shadow: 0 1px 2px #ccc;
	padding: 0;
	top: 20px;	
        margin-right: 20px;
        float: left;
}

.commentlist > li.pingback:before {
	content: '';
}
.commentlist .children .avatar {
	background: none;
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;
	left: 2.2em;
	padding: 0;
	top: 2.2em;
}
a.comment-reply-link {
	background: #eee;
	-moz-border-radius: 3px;
	border-radius: 3px;
	color: #666;
	display: inline-block;
	font-size: 12px;
	padding: 0 8px;
	text-decoration: none;
}
a.comment-reply-link:hover,
a.comment-reply-link:focus,
a.comment-reply-link:active {
	background: #888;
	color: #fff;
}
a.comment-reply-link > span {
	display: inline-block;
	position: relative;
	top: -1px;
}

/* Post author highlighting */
.commentlist > li.bypostauthor {
	background: #ddd;
	border-color: #d3d3d3;
}
.commentlist > li.bypostauthor .comment-meta {
	color: #575757;
}
.commentlist > li.bypostauthor .comment-meta a:focus,
.commentlist > li.bypostauthor .comment-meta a:active,
.commentlist > li.bypostauthor .comment-meta a:hover {
}
.commentlist > li.bypostauthor:before {
	content: url(images/comment-arrow-bypostauthor.png);
}

/* Post Author threaded comments */
.commentlist .children > li.bypostauthor {
	background: #ddd;
	border-color: #d3d3d3;
}

/* sidebar-page.php comments */
/* Make sure we have room for our comment avatars */
.page-template-sidebar-page-php .commentlist > li.comment,
.page-template-sidebar-page-php.commentlist .pingback {
	margin-left: 102px;
	width: auto;
}
/* And a full-width comment form */
.page-template-sidebar-page-php #respond {
	width: auto;
}

/* Comment Form */
#respond {
	background: #ddd;
	border: 1px solid #d3d3d3;
	-moz-border-radius: 3px;
	border-radius: 3px;
	padding: 1.625em;
	position: relative;
}

#respond logged-in-as {
        padding-bottom: 0px;
}
#respond input[type="text"],
#respond textarea {
	background: #fff;
	border: 4px solid #eee;
	-moz-border-radius: 5px;
	border-radius: 5px;
	-webkit-box-shadow: inset 0 1px 3px rgba(204,204,204,0.95);
	-moz-box-shadow: inset 0 1px 3px rgba(204,204,204,0.95);
	box-shadow: inset 0 1px 3px rgba(204,204,204,0.95);
	position: relative;
	padding: 10px;
	text-indent: 80px;
}
#respond .comment-form-author,
#respond .comment-form-email,
#respond .comment-form-url,
#respond .comment-form-comment {
	position: relative;
}
#respond .comment-form-author label,
#respond .comment-form-email label,
#respond .comment-form-url label,
#respond .comment-form-comment label {
	background: #eee;
	-webkit-box-shadow: 1px 2px 2px rgba(204,204,204,0.8);
	-moz-box-shadow: 1px 2px 2px rgba(204,204,204,0.8);
	box-shadow: 1px 2px 2px rgba(204,204,204,0.8);
	color: #555;
	display: inline-block;
	font-size: 13px;
	left: 4px;
	min-width: 60px;
	padding: 4px 10px;
	position: relative;
	top: 40px;
	z-index: 1;
}
#respond input[type="text"]:focus,
#respond textarea:focus {
	text-indent: 0;
	z-index: 1;
}
#respond textarea {
	resize: vertical;
	width: 95%;
}
#respond .comment-form-author .required,
#respond .comment-form-email .required {
	color: #bd3500;
	font-size: 22px;
	font-weight: bold;
	left: 75%;
	position: absolute;
	top: 10px;
	z-index: 1;
}
#respond .comment-notes,
#respond .logged-in-as {
	font-size: 13px;
}
#respond p {
	margin: 10px 0;
}
#respond .form-submit {
	float: right;
	margin: -20px 0 10px;
}
#respond input#submit {
	background: #555;
	border: none;
	-moz-border-radius: 3px;
	border-radius: 3px;
	-webkit-box-shadow: 0px 1px 2px rgba(0,0,0,0.3);
	-moz-box-shadow: 0px 1px 2px rgba(0,0,0,0.3);
	box-shadow: 0px 1px 2px rgba(0,0,0,0.3);
	color: #eee;
	cursor: pointer;
	font-size: 16px;
	margin: 20px 0 0;
	padding: 5px 15px 5px 15px;
	position: relative;
	left: 30px;
        text-shadow: #000 1px 1px 1px;
        font-family: 'PT Sans Narrow', Arial, Helvetica, sans-serif;
}
#respond input#submit:active {
	background: #1982d1;
	color: #bfddf3;
}
#respond #cancel-comment-reply-link {
	color: #666;
	margin-left: 10px;
	text-decoration: none;
}
#respond .logged-in-as a:hover,
#respond #cancel-comment-reply-link:hover {
	text-decoration: underline;
}
.commentlist #respond {
	margin: 1.625em 0 0;
	width: auto;
}
#reply-title {
	color: #373737;
	font-size: 24px;
	font-weight: bold;
	line-height: 30px;
        text-shadow: #eee 1px 1px 1px;
}
#cancel-comment-reply-link {
	color: #888;
	display: block;
	font-size: 10px;
	font-weight: normal;
	line-height: 2.2em;
	letter-spacing: 0.05em;
	position: absolute;
	right: 1.625em;
	text-decoration: none;
	text-transform: uppercase;
	top: 1.1em;
}
#cancel-comment-reply-link:focus,
#cancel-comment-reply-link:active,
#cancel-comment-reply-link:hover {
	color: #ff4b33;
}
#respond label {
	line-height: 2.2em;
}
#respond input[type=text] {
	display: block;
	height: 24px;
	width: 75%;
}
#respond p {
	font-size: 12px;
}
p.comment-form-comment {
	margin: 0;
}
.form-allowed-tags {
	display: none;
}



/* =Widgets
----------------------------------------------- */

.widget {
	margin: 0;
}

/* Search widget */
#searchsubmit {
	display: none;
}

#secondary .widget-title {
     background: #F3F3F3;
padding: 5px 5px 5px 10px;
color: #005D9B;
text-shadow: #eee 1px 1px;
font-weight: bold;
text-transform: none;
font-size: 12px;
margin: 0 0px 5px 0px;
width: 274px;
border: 1px solid #ECECEC;
border-bottom: 3px solid #ddd;
text-transform: uppercase;
font-family: tahoma;
}

#secondary .widget {
       padding-right: 5px;
       padding-left: 5px;
margin-bottom: 25px;
}

#secondary ul {
       padding: 0 0 5px 0px;
       margin: 0 ;
       list-style: none;
}
#secondary li ul {
       margin-left: 15px;
}

#wp-calendar {
	empty-cells: show;
	margin-left: 15px;
	width: 90%;
        margin-top: 10px;
        background: #eee;
        border: 1px solid #ccc;
}

#wp-calendar #next a {
	padding-right: 10px;
	text-align: right;
}

#wp-calendar #prev a {
	padding-left: 10px;
	text-align: left;
}

#wp-calendar a {
	display: block;
	text-decoration: none;
        font-weight: bold;
}

#wp-calendar td {
	color: #333333;
	letter-spacing: normal;
	padding: 4px 0;
	text-align: center;
}

#wp-calendar #today {
	background: #fff;
	color: #111;
}

#wp-calendar th {
	font-style: normal;
	text-transform: capitalize;
        text-align: center;
        padding-top: 6px;
}

#wp-calendar caption {
        font-size: 15px;
        font-weight: bold;
        padding-bottom: 4px;
}

/* ==========================================================================
   Footer
   ========================================================================== */

#divider {
        width: 1000px;
}
#colophon {
        width: 100%; 
        margin: 0px auto;
        clear: both;
}
#colophon a:hover {
	border: none;
	text-decoration: none;
	color: #ccc;
	}
#colophon h5 {
        color: #333;
        font-size: 18px;
}
#colophon ul {
       padding-left: 0px;
       margin-left: 0px;
       list-style-position: inside;
}
#colophon li ul {
       margin: 0px 0px 5px 15px;
}
#colophon li {
       margin-bottom: 5px;
}

#colophon .widget {
        margin-bottom: 15px;
}
.site-info {
        text-align: center;
        font-size: 13px;
        font-family: 'Amaranth', Georgia, Times, serif;}
.footer-1 {
	float: left;
	width: 310px;
	margin-right: 25px;
	padding: 0px;
	display: inline;
}
	
.footer-2 {
	float: left;
	width: 310px;
	margin: 0px;
	padding: 0px;
	display: inline;
}
	
.footer-3 {
	float: right;
	width: 310px;
	margin: 0px;
	padding: 0px;
	display: inline;
}

.gradient {
    background: #499bea; /* Old browsers */
    background: -moz-linear-gradient(top,  #499bea 49%, #207ce5 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(49%,#499bea), color-stop(100%,#207ce5)); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top,  #499bea 49%,#207ce5 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top,  #499bea 49%,#207ce5 100%); /* Opera 11.10+ */
    background: -ms-linear-gradient(top,  #499bea 49%,#207ce5 100%); /* IE10+ */
    background: linear-gradient(to bottom,  #499bea 49%,#207ce5 100%); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#499bea', endColorstr='#207ce5',GradientType=0 ); /* IE6-9 */
}
.odd {
    background: none repeat scroll 0 0 #E3E3E3 !important;
}
.even {
    background: none repeat scroll 0 0 #F6F6F6 !important;
}

ul#menu-menu-dich-vu {
    list-style-type: square;
    list-style-position: inside;
    border-bottom: 1px solid #EBEBEB;
    padding: 0px;
}
ul#menu-menu-dich-vu li a {
    text-decoration: none;
    font-size: 12px;
text-transform: uppercase;
}
ul#menu-menu-dich-vu li.current-menu-item a {
    background: transparent;
}
ul#menu-menu-dich-vu li {
    background: #f8f8f8;
    padding: 10px 5px;
    border-top: 1px solid #EBEBEB;
    border-right: 1px solid #EBEBEB;
    border-left: 1px solid #EBEBEB;
    border-bottom: 1px solid #FFF;
    color: #DDD;
}
ul#menu-menu-dich-vu li:hover {
    background: #086FFF;
    color: #FFFFFF;
    -webkit-transition: 0.3s all ease;
            -moz-transition: 0.3s all ease;
            -o-transition: 0.3s all ease;
            -ms-transition: 0.3s all ease;
            transition: 0.3s all ease;
}
ul#menu-menu-dich-vu li:hover a {
    color: #FFFFFF;
}
.category-item img:hover {
    opacity: 0.5;
}


/*Menu Gioi thieu*/
ul#menu-gioi-thieu-cmc {
    list-style-type: square;
    list-style-position: inside;
    border-bottom: 1px solid #EBEBEB;
    padding: 0px;
}
ul#menu-gioi-thieu-cmc li a {
    text-decoration: none;
    font-size: 12px;
text-transform: uppercase;
}
ul#menu-gioi-thieu-cmc li.current-menu-item a {
    background: transparent;
}
ul#menu-gioi-thieu-cmc li {
    background: #f8f8f8;
    padding: 10px 5px;
    border-top: 1px solid #EBEBEB;
    border-right: 1px solid #EBEBEB;
    border-left: 1px solid #EBEBEB;
    border-bottom: 1px solid #FFF;
    color: #DDD;
}
ul#menu-gioi-thieu-cmc li:hover {
    background: #086FFF;
    color: #FFFFFF;
    -webkit-transition: 0.3s all ease;
            -moz-transition: 0.3s all ease;
            -o-transition: 0.3s all ease;
            -ms-transition: 0.3s all ease;
            transition: 0.3s all ease;
}
ul#menu-gioi-thieu-cmc li:hover a {
    color: #FFFFFF;
}

/*Form login Document*/
#loginform {
    width: 300px !important;
    margin:10px auto 200px auto;
    border: 1px solid #DDD;
    padding: 20px;
    position: relative;
    background: #E7E7E7;
}
#loginform:hover {
    border:1px solid #00A6E7;
    background: #FAFAFA;
    -webkit-transition: 0.3s all ease;
    -moz-transition: 0.3s all ease;
    -o-transition: 0.3s all ease;
    -ms-transition: 0.3s all ease;
    transition: 0.3s all ease;
}
#loginform label{
    width: 120px;
    padding-right: 20px;
}
#loginform input{
    padding: 5px;
}
#loginform #user_login {
    width: 200px;
    border: 1px solid #ccc;
    color:  #00A6E7;
    font-size: 16px;
    font-weight: bold;
    font-style: italic;
}
#loginform #user_pass {
    width: 200px;
    margin-left: 2px;
    border: 1px solid #ccc;
    color:  #00A6E7;
    font-size: 16px;
    font-weight: bold;
}
#loginform .login-username {
    padding: 10px 0;
}
#loginform .login-password {
    padding: 10px 0;
    margin-bottom: 10px;
}
#loginform .button-primary {
    background: none repeat scroll 0 0 #00BFF3;
border-radius: 3px 3px 3px 3px;
border: 2px solid #00A6E7;
color: #FFFFFF;
padding: 5px;

}
#loginform .login-remember {
    position: absolute;
    left: 20px;
    bottom: 20px;
}
#loginform .login-submit {
    text-align: right;
}
.notice-document-page {
    font-size: 12px;
    text-align: center;
    margin-top: 20px;
}
.breadcrumbs {
    background: #F7F7F7;
    padding: 5px;
    color: #364E71;
    border: 1px solid #EEE;
    font-weight: bold;
    margin-bottom: 5px;
}

/*Border Slider*/
.border-slider {
    background: url(images/border-bg.png) repeat-x;
    height: 8px;
}
/*Tin tuc khac*/
.tin-tuc-khac {

}
.tin-tuc-khac h3 {
    font-size: 12px;
    line-height: 20px;
    font-weight: bold;
    width: 668px;
    border-bottom: 1px dashed #C7C7C7;
    margin: 5px 0;
    padding: 0;
    color: #FA8514;
    text-transform: uppercase;
}
.tin-tuc-khac ul {
    list-style-position: inside;
    padding: 0;
    margin: 0;
    font-size: 12px;
}
.tin-tuc-khac li {
    list-style: none;
    background: url("images/icon_news.png") no-repeat scroll 0 3px rgba(0, 0, 0, 0);
    padding-left: 22px;
}

/*slide show long*/
.slideshow_description.slideshow_transparent{opacity: 0.6 !important; bottom:8px !important;right: 10px !important; display: inline-block !important; border-radius:5px; width: auto !important;}
.slideshow_description.slideshow_transparent h2{display: inline-block;}
.slideshow_description.slideshow_transparen :hover{opacity: 0.6 !important;}
.slideshow_content img{width:988px!important; height: 390px!important; }