html.full .main_screen {
	margin-bottom: 0;
	max-width: 100%
}

html.full .postlist_out.is_post_mode {
	display: grid;
	grid-template-columns: repeat(auto-fill,minmax(20rem,1fr));
	column-gap: var(--margin);
	margin: 0 0 var(--margin) 0
}

html.full .postlist_out.is_list_mode {
	display: grid;
	grid-template-columns: repeat(auto-fill,minmax(30rem,1fr));
	column-gap: var(--margin);
	margin: 0 0 var(--margin) 0
}

:focus {
	outline: 0;
}

address, ctoolion, cite, code, dfn,
em, strong, th, var, optgroup {
	font-style: normal;
	font-weight: normal;
}

h1, h2, h3, h4, h5, h6 {
	font-size: 100%;
	font-weight: normal;
}

abbr, acronym {
	border: 0;
	font-variant: normal;
}

input, button, textarea,
select, optgroup, option {
	font-family: inherit;
	font-size: inherit;
	font-style: inherit;
	font-weight: inherit;
}

code, kbd, samp, tt {
	font-size: 100%;
}
/*@purpose To enable resizing for IE */
/*@branch For IE6-Win, IE7-Win */
input, button, textarea, select {
	*font-size: 100%;
}

body {
	line-height: 1.5;
}

ol, ul {
	list-style: none;
}
/* tables still need 'cellspacing="0"' in the markup */
table {
	border-collapse: collapse;
	border-spacing: 0;
}

ctoolion, th {
	text-align: left;
}

sup, sub {
	font-size: 100%;
	vertical-align: baseline;
}
/* remember to highlight anchors and inserts somehow! */
:link, :visited , ins {
	text-decoration: none;
}

blockquote, q {
	quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}

@media screen and (max-width: 650px) {
	html.full .postlist_out.is_list_mode {
		display: block;
	}
}

html.full .postlist_out.is_list_mode .postlist.cat_block {
	max-width: 100%;
}