/******* Do not edit this file *******
Woody Code Snippets CSS and JS
Saved: Nov 05 2023 | 13:20:29 */
/** Custom TOC Plus CSS code **/
#toc_container li,
#toc_container ul {
	margin: 0;
	padding: 0
}
/* Styling for the default (no bullet) class */
#toc_container.no_bullets li,
#toc_container.no_bullets ul,
#toc_container.no_bullets ul li,
.toc_widget_list.no_bullets,
.toc_widget_list.no_bullets li {
	background: 0 0;
	list-style-type: none;
	list-style: none
}
/* Custom-styled "have_bullets" class. I added bullets & change left margin here to
   bring them inside the box */
#toc_container.have_bullets li {
	padding-left: 0px;
	list-style: disc!important;
	color:  #333!important;
	margin: 0 0 0 1.1em;
}

#toc_container ul ul {
	margin-left: 0.7em; /* change list indentation from 1.5em */
}
/* Change the bullet style for the first (H3) sublist */
#toc_container.have_bullets li li{
	margin-left: 0.7em; /* change list indentation from 1.5em */
	list-style: circle!important;
}
/* Change the bullet style for the 3rd (H4) sublist */
#toc_container.have_bullets li li li{
	margin-left: 0.7em; /* change list indentation from 1.5em */
	list-style: square!important;
}
/* TOC container styling. The default border width of 1px cannot be changed in the plugin settings
   so I set it and the custom color here */
#toc_container {
	background: #EDEFF2!important; /* changed from #F9F9F */
	border: 2px solid #A9ABAD!important; /* Border is now thicker */
	border-radius: 3px!important; /* Rounded corners */
	padding: 10px;
	margin-bottom: 1em;
	width: calc(100% - 24px)!important; /** FIXES THE RIGHT HAND SIDE OVERRUN ISSUE */
	display: table;
/*	font-size: 95%; */
}
/*
#toc_container.toc_light_blue {
	background: #edf6ff;
}
*/
/* 
#toc_container.toc_white {
	background: #fff
}

#toc_container.toc_black {
	background: #000
}
*//*
#toc_container.toc_transparent {
	background: none transparent
}*/

#toc_container p.toc_title {
	text-align: center;
	font-weight: 700;
	font-size: 1.5em; /* Larger font size */
	color: #680E4B; /* Set the color to match the menu header */
	margin: 0;
	padding: 0
}
/*
#toc_container.toc_black p.toc_title {
	color: #aaa
}*/
/*
#toc_container span.toc_toggle {
	font-weight: 400;
	font-size: 90%
}
*/
#toc_container p.toc_title+ul.toc_list {
	margin-top: 0.5em; /* REduced from 1em */
}
/*
.toc_wrap_left {
	float: left;
	margin-right: 10px
}

.toc_wrap_right {
	float: right;
	margin-left: 10px
}
*/
#toc_container a {
	text-decoration: none;
	text-shadow: none;
	font-weight: 500; /* Adds bold to the text links */
}

#toc_container a:hover {
	text-decoration: underline
}
/*
.toc_sitemap_posts_letter {
	font-size: 1.5em;
	font-style: italic
} 
*/