﻿/* -------------------------------------
   GhostNetwork Website CSS For The News
----------------------------------------*/
#newsWrap {
	height: 30px;
	background-color: #262626;
	position: relative;
	display: block;
	width: 100%;
	overflow: hidden;
}
#newsCaption {
	color: white;
	background: url(./images/pointer.png) no-repeat;
	padding-left: 10px;
	padding-top: 4px;
	font-size: 120%;	
}
#newsContainer {
	height: 100%;
	top: 0px;
	position: absolute;
	display: block;
	background-color: #262626;
	color: white;
	width: 100%;	
	font-size: 120%;	
}
#news1 {
	transition: opacity 1s;
	padding-top: 4px;
}
#news2 {
	transition: opacity 1s;
	position: absolute;
	padding-top: 4px;
	top: 0px;
	margin-top: 0px;
}
/* ------------------------------------------
Media CSS for Different Device Screen sizes
---------------------------------------------*/
    @media only screen and (min-width : 1px) {
		#newsWrap {
			display : none;
		}
    }   
    @media only screen and (min-width : 768px) {
		#newsWrap {
			display : block;
		}
		#newsCaption {
			height: 100%;
			width: 150px;
			left: -135px;
			position: absolute;
		}
		#newsContainer {
			left: 20px;
		}
    }
    @media only screen and (min-width : 992px) {
    	#newsWrap {
			display : block;
		}
    	#newsCaption {
			height: 100%;
			width: 150px;
			left: -80px;
			position: absolute;
		}
		#newsContainer {
			left: 75px;
		}
    }   
    @media only screen and (min-width : 1200px) {
		#newsWrap {
			display : block;
		}
		#newsCaption {
			height: 100%;
			width: 150px;
			left: 0px;
			position: absolute;
		}
		#newsContainer {
			left: 155px;
		}
    }
