/* Adjusts title art segments so that they shrink and stack */

@media screen and (min-width: 1024px) /* 1024 and larger screen */
{

	/* 1
	*/


	.weird-word-announcement
	{
		display: inline-block;
		max-width: 70%;
		float: left;
		clear: right;
	}

	.genericSlideshowContainer
	{
		display: block;
		position:relative;
		overflow: hidden;
		float: right;
		margin-top: 0px;
		top: -80px;
	}

	.recent-entries
	{
		display: block;
		max-height: 100%;
		float: left;
		font-size: 100%;
		position: relative;
		max-width: 400px;
		clear: both;
	}

	footer
	{
		position: relative;
		display: block;
		width: 100%;
		float: left;
		clear: both;
	}

}

@media screen and (min-width: 800px) and (max-width: 1023px) /* between 800 and 1023  (-224)*/
{
	/* 2
	*/

	.weird-word-announcement
	{
	}

	.genericSlideshowContainer
	{
	}

	.recent-entries
	{
	}

	footer
	{
	}
}

@media screen and (min-width: 768px) and (max-width: 799px) /* between 768 and 799  (-32)*/
{
	/* 3
	*/

	.weird-word-announcement
	{
		max-width: 100%;
	}

	.genericSlideshowContainer
	{
	}

	.recent-entries
	{
	}

	footer
	{
	}

}

@media screen  and (min-width: 600px) and (max-width: 767px) /* between 600 and 767  (-168)*/
{
	/* 4
	*/
	.genericSlideshowContainer
	{
		margin-top: 0px;
	}

	.recent-entries
	{
		top: 80px;
	}

	footer
	{
	}


}

@media screen and (min-width: 480px) and (max-width: 599px) /* between 480 and 599  Mobile Landscape */
{
	/* 5
	*/

	.weird-word-announcement
	{
		max-width: 220px;
	}


	.genericSlideshowContainer
	{
		clear: right;
	}


	.recent-entries
	{
		max-width: 220px;
	}

	footer
	{
	}

}

@media screen and (max-width: 479px) /* Up to 479 (includes 320) Mobile Portrait */
{
	/* 6
	*/

	.genericSlideshowContainer
	{
	}

	footer
	{
	}


}


