/*
Theme Name: Theme Starter
Theme URI: https://playground.ultimatelybetter.com
Description: Custom theme.
Author: Ultimately Better
Author URI: https://ultimatelybetter.com
Version: 2.1.4.1
GitHub Theme URI: UBLtd/wp-theme-starter
Primary Branch: full-site-editing
*/

/* RESETS */
* { margin: 0; padding: 0; }
*, *:before, *:after { box-sizing: border-box; }

img {
	border: 0;
	height: auto;
	max-width: 100%;
}
b, strong { font-weight: 700; }

input,
select,
textarea {
	font: inherit;
	padding: 5px;
}

p, ul, ol, table, blockquote, dl { margin-bottom: 25px; }

ul, ol, dl { margin-left: 2em; }

nav ul {
	line-height: 1;
	list-style: none;
	margin: 0 0;
}
nav li {
	display: inline-block;
	width: auto;
}
nav a {
	display: block;
	padding: 10px;
}

nav li ul {
	position: absolute;
	width: auto;
	left: -999em;
	z-index: 10;
}
nav li ul ul {
	margin: -1em 0 0 10em;
}

nav li:hover ul ul,
nav li.sfhover ul ul {
	left: -999em;
}
nav li:hover ul,
nav :focus + ul,
nav ul:focus-within,
nav li li:hover ul {
	left: auto;
}



.textcenter,
.center { text-align: center; }

.textright { text-align: right; }


