/*
 * Use this file in case you don't feel comfortable writing LESS. I do highly
 * recommend taking the time to learn at least the basics of LESS as it will
 * greatly help you in customizing Bootstrap. Here are some of the high-
 * lights of a preprocessor like LESS:
 *
 * - Store information in variables for optimal reuse:
 *
    @brand-color: #4fc6eb;
    .header { color: @brand-color; }
 *
 * - Nest your selectors, i.e. .header .button { ... } can be written as:
 *
    .header {
        .button { ... }
    }
 *
 * - Write reusable mixins for handling otherwise tedious code:
 *
    .border-radius(@radius) {
        -webkit-border-radius: @radius;
           -moz-border-radius: @radius;
                border-radius: @radius;
    }
    .round { .border-radius(10px); }
 *
 * Other features include mathematical operations, extend/inheritance, import
 * of partials and more.
 *
 * If we still don't have you convinced, then simply put your good ol' CSS in
 * this file and it will be automatically included in Vanilla.
 *
 * Happy theming!
 */

/* For search hits */
.DataList .Title,
.DataList .Title a,
.DataList.DataList-Search a{
	font-weight: bold!important;
	font-size: 110%;
}
.DataList.SearchResults .Title,
.DataList.SearchResults .Title a {
	font-size: 120%;
}
mark, .mark {
  background-color: #f9e59b !important;
}

/* offset nested categories */
.Box.BoxCategories > ul > li.ClearFix.Depth2 > a:before {
	content: "\00a0-\00a0";
	display: inline;
}
.Box.BoxCategories > ul > li.ClearFix.Depth3 > a:before {
	content: "\00a0\00a0\00a0-\00a0";
	display: inline;
}
.DataList.CategoryList li.Depth2 .ItemContent.Category {
	padding-left: 24px;
}
.DataList.CategoryList li.Depth3 .ItemContent.Category {
	padding-left: 48px;
}

/* topic category color */
.Meta .MItem.Category a {
    background-color: #507CA9;
}

/* advanced editor format dropdown */
.editor-insert-dialog.Flyout.MenuItems a {
	display: block;
}

/* Home page title */
h1.H {
	padding: 0;
	margin: 0;
	margin-bottom: 10px;
}h1.HomepageTitle {
	padding: 0;
	margin: 0;
}
