/**********************************************
	Styles below control the news nav block
**********************************************/
/* main div surrounding entire news nav */
.nw_nav {
}

/* name of post */
.nw_nav .nw_post_name {
}

/* name of post when it is not a link to news page */
.nw_nav .nw_post_name .no_link{
	padding-left: 2px;
}

/* actual post content */
.nw_nav .nw_post {
	padding-left: 2px;
	margin-top: 5px;
}

.nw_nav .nw_post_date {
	color: gray;
	font-size: 9px;
	padding-left: 2px;
}

/* separator between posts */
.nw_nav .nw_post_sep {
	border-bottom: silver dotted 1px;
	margin-top: 2px;
	margin-bottom: 10px;
}

.nw_nav li {
	margin-bottom: 10px;
	padding-bottom: 15px;
	border-bottom: silver dotted 1px;	
}
.nw_nav li.first {
	margin-top: 0;
}
.nw_nav li.last {
	border: 0;
	margin-bottom: 0;
	padding-bottom: 0;
}


/* anchor for 'read all' button */
.nw_read_all_btn {
	background-image: url(https://www.littlegallery.com/squirrelcart/modules/news/templates/images/news_read_all.png);
	width: 96px;
	height: 27px;
	display: block;
	margin-top: 10px;
}



/**********************************************
	Styles below control the news page
**********************************************/
.nw_page {
	text-align: left;
}

/* header and footer at the top & bottom of the page */
.nw_page .nw_header,
.nw_page .nw_footer {
	padding: 0 5px 0 5px;
}

/* header img */
.nw_header_img img {
	border: 0;
	margin-bottom: 10px;
}

/* div surrounding all posts */
.nw_page .nw_posts {
	margin-top: 20px;
}

/* name of post */
.nw_page .nw_post_name {
	font-size: 16px;
	color: blue;
}

/* date posted */
.nw_page .nw_post_date {
	color: gray;
}

/* link to section on post */
.nw_post .nw_section_link {
	color: gray;
	text-decoration: none;
}
.nw_post .nw_section_link:hover {
	text-decoration: underline;
}

/* div containing entire header for each post */
.nw_post_header {
	position: relative;
	padding: 6px 6px 0 2px;
	height: 45px;
	margin: auto 6px;
	background: url(https://www.littlegallery.com/squirrelcart/modules/news/templates/images/news_post_header_mid.png) repeat-x;	
}

/* left img for post header */
.nw_post_header_left {
	position: absolute;
	left: -6px;
	top: 0;
}

/* right img for post header */
.nw_post_header_right {
	position: absolute;
	right: -6px;
	top: 0;
}

/* actual post content */
.nw_page .nw_post_content {
	padding: 5px;
}

/* separator between posts */
.nw_page .nw_post_sep {
	margin-bottom: 20px;
	border-bottom: #dfdfdf dotted 1px;
	line-height: 1px;
}

/*
	iframe for showing full HTML files as posts 
	don't set a height property for this...it should be set to 0px below, because it
	is automatically set via javascript in the news_post_iframe template
	
	"display: none;" is used to temporarily hide the iframe until its sized, so you don't get an awkward
	change in size during page load
*/
.nw_page iframe {
	width: 100%;
	margin: 0;
	height: 0;
	visibility: hidden;
}

/* this is a div containing links to each news section */
.nw_sections {
	margin-bottom: 10px;
	margin-left: -2px;
}

.nw_sections .nav_links li
,.nw_sections .nav_links li a {
	display: inline;
	width: auto;
}


/**********************************************
	Styles below control the archives
**********************************************/
/* main div surrounding archive links */
.nw_archives {
	margin: 10px auto 20px 5px;
	overflow: auto;
	width: 100%;
}

/* surrounds an entire year of archives */
.nw_archives_year_box {
	float: left;
	width: 140px;
	margin-bottom: 20px;
}

/* actual year, e.g. 2006 */
.nw_archives_year {
	font-size: 16px;
	font-weight: bold;
	margin-bottom: 5px;
}

/* surrounds month links */
.nw_archives_months {
	font-size: 14px;
	color: silver;
}

/***************************************************************
	Styles below control the opt in section of the account form
***************************************************************/
/* div surrounding opt in section (and fieldset) */
.news_optin {
	margin-top: 15px;
}

/* fieldset surrounding opt in section */
.news_optin_fs {
	padding-top: 10px;
	padding-bottom: 10px;
}

.news_optin_header {
	font-size: 12px;
	margin-bottom: 10px;
}

.news_optin_footer {
	margin-bottom: 10px;
	padding: 0 30px;
}

/* div surrounding the groups */
.news_optin_groups {
	text-align: center;
	width: 100%;
	overflow: hidden;
}

/* div surrounding a single group */
.news_optin_group {
	width: 49%;
}

/* div surrounding a group when only one group exists */
.news_optin_group_lone {
	margin-left: auto;
	margin-right: auto;
}

/* div surrounding a group when more than one group exists */
.news_optin_group_multi {
	float: left;
}

/* align the group name and checkbox */
.news_optin_group input,
.news_optin_group .news_optin_group_name {
	vertical-align: middle;
}

.news_optin_footer {
	margin-top: 10px;
	color: gray;
}