/*
 * Welcome to the Custom CSS Editor
 *
 * CSS (Cascading Style Sheets) is a language that helps
 * the browser render your website. You may remove these
 * lines and get started with your own customizations.
 *
 * The generated code will be placed after the theme
 * stylesheets, which means that your rules can take
 * precedence and override the theme CSS rules. Just
 * write here what you want to change, you don't need
 * to copy all your theme's stylesheet content.
 *
 * Getting started with CSS (tutorial):
 * http://bit.ly/css-getting-started
 */

/* An example of a Custom CSS Snippet */
.site {
    max-width:100%;
}
.site-header {
    max-width:100%;
}
.full-width .site-content {
    max-width:1000px;
}
p {
  -moz-hyphens: none;
  -ms-hyphens: none;
  -webkit-hyphens: none;
  hyphens: none;
}
p a {
    color:#297B48;
	opacity: 1;
	filter: alpha(opacity=100);
 	-webkit-transition: opacity 0.35s linear;
}
p a:hover {
    opacity: 0.6;
	filter: alpha(opacity=60);
 	-webkit-transition: opacity 0.8s linear;
}
.site-title a, h1, h2, h3, h4, h5, h6, h1 a, h2 a, h3 a, h4 a, h5 a, h6 a, .widget-title, a:hover, .entry-meta a:hover {
    color: #F12B24;
}
.site-description {
    color:#fff;
}

.widget-title {
    font-size: 1.4em !important;
}
.footer-sidebar .widget .widget-title, .primary-sidebar .widget .widget-title {
    font-weight: 100;
}
.site-navigation {
    font-family: Special Elite;
    font-size:1.4em !important;
}

.primary-navigation a {
    padding: 5px 15px 0 15px;
}
.primary-navigation li {
    line-height:43px;    
}
.entry-meta .tag-links a {
	opacity: 1;
	filter: alpha(opacity=100);
 	-webkit-transition: opacity 0.25s linear;	   
}
.entry-meta .tag-links a:hover {
	opacity: 0.5;
	filter: alpha(opacity=50);
 	-webkit-transition: opacity 0.25s linear;
}
#supplementary a, #primary-sidebar a, .menu-item, .entry-title, .site-title {
	opacity: 1;
	filter: alpha(opacity=100);
 	-webkit-transition: opacity 0.35s linear;
}
#supplementary a:hover, #primary-sidebar a:hover, .menu-item:hover, .entry-title:hover, .site-title:hover  {
	opacity: 0.6;
	filter: alpha(opacity=60);
 	-webkit-transition: opacity 0.8s linear;
}

.textwidget img, #wp-calendar a {
	opacity: 1;
	filter: alpha(opacity=50);
 	-webkit-transition: opacity 0.25s linear;
}
.textwidget img:hover, #wp-calendar a:hover  {
	opacity: 0.5;
	filter: alpha(opacity=100);
 	-webkit-transition: opacity 0.25s linear;
}
.wp-caption img[class*="wp-image-"] {
    border: none;
}
.code-embed-infos a, .code-embed-infos span {
    color: #ffffee !important;
    background: #000 !important;
    border: none !important;
    border-radius: 0.3em 0.3em 0 0;
    padding: 0.2em 1em 0 1em !important;
    font-family: Special Elite !important;
    text-decoration: none;
    margin-right: 1em;
}
pre[class*="language-"] {
    border: 5px solid #000;
}
.ui-dialog {
    border: 6px solid #000 !important;
}
.ui-dialog-title {
    font-family: Special Elite !important;
}
.custom-tooltip {
    font-family: Special Elite !important;
    border: 5px solid #297B48;
}