/*	Begin Styles Definitions for CKEditor
	[
      { name: 'Splash Container', element: 'div', attributes: { 'class': 'splash-container' } },
      { name: 'Board', element: 'p', attributes: { 'class': 'board' } },

      { name: 'Board Member', element: 'p', attributes: { 'class': 'board-member' } },

      { name: 'Board Member Title', element: 'p', attributes: { 'class': 'board-member-title' } },
      { name: 'Board Member Name', element: 'p', attributes: { 'class': 'board-member-name' } },
      { name: 'Left Justify', element: 'p', attributes: { 'class': 'left-justify' } },
      { name: 'Splash Logo', element: 'p', attributes: { 'class': 'splash-logo' } },
      { name: 'B', element: 'span', attributes: { 'class': 'b' } }

    ]
	
End Styles Definitions for CKEditor */

/* CSS to match style mapping *//* Sometimes only class is specified (no Tag specified) becauseLevels can translate to one of H1 to H6 or DIV (depending on options)Paragraph styles can translate to P or SPAN when inside of a heading (H1-H6)*//* From Level Definitions */
                .splash - container - advisory {
margins: auto;
display: flex;
    justify - content: center;
    font - family: Verdana, Arial, Geneva, Helvetica;
    font - size: 20px;
}
		
		.splash - container {
margin: 25px;
    font - family: Verdana, Arial, Geneva, Helvetica;
    font - size: 10px;
}
		
		.board {
			margin-left: 20px;
padding: 5px;
		}
		
		.board - member {
margin: 5px;
display: flex;
    flex - direction: row;
    flex - wrap: wrap;
}
		
		.board - member - title {
    min - width: 250px;
}
		
		.board - member - name {
    padding - left: 20px;
}

left - justify {
    justify - content: left;
}
		
		.splash - logo {
display: block;
    margin - left: auto;
    margin - right: auto;
    max - width: 100 %;
height: auto;
}

b {
			font-size: larger;
font - weight: 600;
		}
/* From Field Definitions */SPAN.Note{ }
SPAN.Popup{ }