/* Simple fluid media
   Note: Fluid media requires that you remove the media's height and width attributes from the HTML
   http://www.alistapart.com/articles/fluid-images/ 
*/
img, object, embed, video {
	max-width: 100%;
	clear: right;
}

/* IE 6 does not support max-width so default to width 100% */
.ie6 img {
	width:100%;
}

/*
	Dreamweaver Fluid Grid Properties
	----------------------------------
	dw-num-cols-mobile:		24;
	dw-num-cols-tablet:		24;
	dw-num-cols-desktop:	24;
	dw-gutter-percentage:	5;
	
	Inspiration from "Responsive Web Design" by Ethan Marcotte 
	http://www.alistapart.com/articles/responsive-web-design
	
	and Golden Grid System by Joni Korpi
	http://goldengridsystem.com/
*/

.fluid {
	clear: both;
	width: 100%;
	float: left;
	display: block;
}

.fluidList {
    list-style:none;
    list-style-image:none;
    margin:0;
    padding:0;        
}

/* Mobile Layout: 480px and below. */

#linkNetBlock {
	width: 100%;
	position: absolute;
	z-index: 1;
	margin-top: 1%;
}

#linkNetPanel {
	width: 40%;
	margin-top: 16%;
	margin-left: 2%;
	margin-bottom: 2%;
	position: relative;
	float: left;
	z-index: 20;
}

#linkNetTitle {
	width: 90%;
	margin-top: 0%;
	margin-left: 0%;
	margin-bottom: 3%;
	margin-right: 0%;
}

#userLabel {
	width: 100%;
	margin-left: 0%;
}
#userInput {
	width: 100%;
	margin-left: 0%;
	clear: both;
}
#passwordLabel {
	width: 100%;
	margin-left: 0%;
}
#passwordInput {
	width: 100%;
	margin-left: 0%;
	clear: both;
}
#logInButton {
	width: 100%;
	margin-left: 0%;
	margin-bottom: 5%;
}

#linkNetLinks {
	width: 100%;
	margin-left: 0%;
	display: none;
	z-index: 20;
}

#linkNetLinksMobile {
	width: 55%;
	margin-left: 2%;
	clear: left;
	margin-top: 0%;
	margin-bottom: 2%;
	position: relative;
	float: left;
	display: inline;
	z-index: 20;
}

#outageBlock {
	width: 35%;
	clear: none;
	margin-top: 7.5%;
	margin-left: 23%;
	position: relative;
	z-index: 20;
	margin-bottom: 0%;
	float: left;
}

#homeContentBlock {
	width: 96%;
	margin-left: 2%;
	margin-top: 2%;
	margin-bottom: 2%;
	position: relative;
	float: left;
}

#homeText {
	width: 100%;
	margin-bottom: 3%;
}

#homeImage {
	width: 40%;
}

.zeroMargin_mobile {

margin-left: 0;
}
.hide_mobile {
display: none;
}

/* Tablet Layout: 481px to 768px. Inherits styles from: Mobile Layout. */

@media only screen and (min-width: 481px) {

#linkNetBlock {
	width: 55%;
}

#linkNetPanel {
	width: 28%;
}

#linkNetTitle {
	width: 50%;
}

#userLabel {
	width: 100%;
}
#userInput {
}
#passwordLabel {
	width: 100%;
}
#passwordInput {
	width: 100%;
}
#logInButton {
	width: 100%;
}

#linkNetLinks {
	width: 100%;
	margin-left: 0%;
	display: inline;
}

#linkNetLinksMobile {
	width: 20%;
	margin-left: 0%;
	clear: none;
	display: none;
}

#outageBlock {
	clear: none;
	position: relative;
	margin-top: 5.0%;
	margin-left: 5%;
	width: 17%;
}

#homeContentBlock {
	width: 40%;
	margin-left: 6%;
	margin-top: 2%;
	margin-bottom: 2%;
	z-index: 20;
	clear: none;
}

#homeText {
}

#homeImage {
}

.hide_tablet {
display: none;
}
.zeroMargin_tablet {
margin-left: 0;
}
}

/* Desktop Layout: 769px to a max of 1232px.  Inherits styles from: Mobile Layout and Tablet Layout. */

@media only screen and (min-width: 769px) {

#linkNetBlock {
	width: 42%;
}

#linkNetPanel {
	width: 22%;
	margin-top: 8.5%;
	margin-bottom: 5%;
}

#linkNetTitle {
}

#userLabel {
}
#userInput {
}
#passwordLabel {
}
#passwordInput {
}
#logInButton {
}

#linkNetLinks {
}

#linkNetLinksMobile {
}

#outageBlock {
	margin-top: 3.8%;
	margin-left: 4%;
}

#homeContentBlock {
	width: 52%;
	margin-left: 0%;
}

#homeText {
}

#homeImage {
}

.zeroMargin_desktop {
margin-left: 0;
}
.hide_desktop {
display: none;
}
}
