/* Start of CMSMS style sheet 'Layout: Left sidebar + 1 column' */
/*****************
browsers interpret margin and padding a little differently, 
we'll remove all default padding and margins and
set them later on
******************/
* {
margin:0;
padding:0;
}

/*
Set initial font styles
*/
body {
   text-align: left;
   font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;
   font-size: 75.01%;
   line-height: 1em;
}

/*
set font size for all divs,
this overrides some body rules
*/
div {
   font-size: 1em;
}

/*
if img is inside "a" it would have 
borders, we don't want that
*/
img {
   border: 0;
}

/*
default link styles
*/
/* set all links to have underline and bluish color */
a,
a:link 
a:active {
   text-decoration: underline;
/* css validation will give a warning if color is set without background color. this will explicitly tell this element to inherit bg colour from parent element */
   background-color: inherit; 
   color: #18507C; 
}

a:visited {
   text-decoration: underline;
   background-color: inherit;
  color: #18507C;                /* a different color can be used for visited links */
}


/* remove underline on hover and change color */
a:hover {
   text-decoration: none;
   background-color: #C3D4DF;
   color: #385C72;
}

/*****************
basic layout 
*****************/
body {
   background-color: #ccc;
   color: #333;
   margin:1em;    /* gives some air for the pagewrapper */
}

/* center wrapper, min max width */
div#pagewrapper {
   border: 1px solid black;
   margin: 0 auto;       /* this centers wrapper */
   max-width: 80em;   /* IE wont understand these, so we will use javascript magick */
   min-width: 60em;
   background-color: #fff;;
   color: black;
}


/*** header ***
we will hide text and replace it with a image
we need to assign a height for it so that the image wont cut off
*/
div#header {
   height: 80px;    /* adjust according your image size */
   background: #385C72;           
}

div#header h1 a {
/* you can set your own image here */
   background: #385C72 url(images/cms/logo1.gif) no-repeat 0 12px; 
   display: block;
   height: 80px;             /* adjust according your image size */
   text-indent: -999em;  /* this hides the text */
   text-decoration:none; /* old firefox would have shown underline for the link, this explicitly hides it */
}

/* position for the search box */
div#search {
   float: right;
   width: 23em;    /* enough width for the search input box */
   text-align: right;
   padding: 0.6em 0 0.2em 0;
   margin: 0 1em;
}

div.breadcrumbs {
   padding: 1em 0 1.2em 0; /* CSS short hand rule first value is top then right, bottom and left */
   font-size: 90%;        /* its good to set fontsizes to be relative, this way viewer can change his/her fontsize */
   margin: 0 1em;        /* css shorthand rule will be opened to be "0 1em 0 1em" */
   border-bottom: 1px dotted #000;
}
div.breadcrumbs span.lastitem { 
   font-weight:bold; 
}

ndiv#content {
   margin: 1.5em auto 2em 0;   /* some air above and under menu and content */
}


div#main {
   margin-left: 29%; /* this will give room for sidebar to be on the left side, make sure this space is bigger than sidebar width */
   margin-right: 2%; /* and some air on the right */
}

div#sidebar {
   float: left;        /* set sidebar on the left side. Change to right to float it right instead. */
   width: 26%;     /* sidebar width, if you change this please also change #main margins */
   display: inline;  /* FIX IE double margin bug */
   margin-left: 0;
}

div#footer {
   clear: both;       /* keep footer below content and menu */
   color: #fff;
   background-color: #385C72; /* same bg color as in header */
}

div#footer p {
   font-size: 0.8em;
   padding: 1.5em;       /* some air for footer */
   text-align: center;  /* centered text */
   margin: 0;
}

div#footer p a {
   color: #fff; /* needed becouse footer link would be same color as background otherwise */
}

/* as we hid all hr for accessibility we create new hr with extra div element */
div.hr {
   height: 1px;
   padding: 1em;
   border-bottom: 1px dotted black;
   margin: 1em;
}

/* relational links under content */
div.left49 {
  width: 49%; /* 50% for both left and right might lead to rounding error on some browser */
}

div.right49 {
  float: right;
  width: 49%;
  text-align: right;
}




/********************
CONTENT STYLING
*********************/
div#content {

}

/* HEADINGS */
div#content h1 {
   font-size: 2em; /* font size for h1 */
   line-height: 1em;
   margin: 0;
}
div#content h2 {
	color: #294B5F; 
	font-size: 1.5em; 
	text-align: left; 
/* some air around the text */
	padding-left: 0.5em;
	padding-bottom: 1px;
/* set borders around header */
	border-bottom: 1px solid #e7ab0b; 
	border-left: 1.1em solid #e7ab0b; 
        line-height: 1.5em;
/* and some air under the border */
        margin: 0 0 0.5em 0;
}
div#content h3 {
   color: #294B5F; 
   font-size: 1.3em;
   line-height: 1.3em;
   margin: 0 0 0.5em 0;
}
div#content h4 {
   color: #294B5F; 
   font-size: 1.2em;
   line-height: 1.3em;
   margin: 0 0 0.25em 0;
}
div#content h5 {
   color: #294B5F; 
   font-size: 1.1em;
   line-height: 1.3em;
   margin: 0 0 0.25em 0;
}
h6 {
   color: #294B5F; 
   font-size: 1em;
   line-height: 1.3em;
   margin: 0 0 0.25em 0;
}
/* END HEADINGS */

/* TEXT */
p {
   font-size: 1em;
   margin: 0 0 1.5em 0; /* some air around p elements */
   line-height: 1.4em;
   padding: 0;
}

blockquote {
   border-left: 10px solid #ddd;
   margin-left: 10px;
}
strong, b {
/* explicit setting for these */
   font-weight: bold;
}
em, i {
/* explicit setting for these */
   font-style:italic;
}

/* Wrapping text in <code> tags. Makes CSS not validate */
code, pre {
 white-space: pre-wrap;       /* css-3 */
 white-space: -moz-pre-wrap;  /* Mozilla, since 1999 */
 white-space: -pre-wrap;      /* Opera 4-6 */
 white-space: -o-pre-wrap;    /* Opera 7 */
 word-wrap: break-word;       /* Internet Explorer 5.5+ */
 font-family: "Courier New", Courier, monospace;
 font-size: 1em;
}

pre {
   border: 1px solid #000;  /* black border for pre blocks */
   background-color: #ddd;
   margin: 0 1em 1em 1em;
   padding: 0.5em;
   line-height: 1.5em;
   font-size: 90%;


}

/* Separating the divs on the template explanation page, with some bottom-border */
div.templatecode {
  margin: 0 0 2.5em;
}

/* END TEXT */

/* LISTS */
/* lists in content need some margins to look nice */
div#main ul,
div#main ol,
div#main dl {
   font-size: 1.0em;
   line-height: 1.4em;
   margin: 0 0 1.5em 0;
}

div#main ul li,
div#main ol li {
   margin: 0 0 0.25em 3em;
}

/* definition lists topics on bold */
div#main dl dt {
   font-weight: bold;
   margin: 0 0 0 1em;
}
div#main dl dd {
   margin: 0 0 1em 1em;
}

div#main dl {
  margin-bottom: 2em;
  padding-bottom: 1em;
  border-bottom: 1px solid #c0c0c0;
}


/* END LISTS */
/* End of 'Layout: Left sidebar + 1 column' */

/* Start of CMSMS style sheet 'Module: News' */
div#news {
  margin: 2em 0 1em 1em;  /* margin for the entire div surrounding the news list */
  border: 1px solid #000; 
  background: #FFE9AF; 
}

div#news h2 {
   line-height: 2em;
   background: #fff;
}

.NewsSummary {
    padding: 0.5em 0.5em 1em; /* padding for the news article summary */
    margin: 0 0.5em 1em 0.5em; /* margin to the bottom of the news article summary */
    border-bottom: 1px solid #ccc; 
}

.NewsSummaryPostdate {
  font-size: 90%;
  font-weight: bold;
 }

.NewsSummaryLink {
    font-weight: bold;
    padding-top: 0.2em;
}

.NewsSummaryCategory {
  font-style: italic;
  margin: 5px 0;
 }

.NewsSummaryAuthor {
  font-style: italic;
  padding-bottom: 0.5em;
}

.NewsSummarySummary, .NewsSummaryContent {
  line-height: 140%;
 }

.NewsSummaryMorelink {
  padding-top: 0.5em;
}

#NewsPostDetailDate {
  font-size: 90%;
  margin-bottom: 5px;
  font-weight: bold;
  }

#NewsPostDetailSummary {
   line-height: 150%;
   }

#NewsPostDetailCategory {
  font-style: italic;
  border-top: 1px solid #ccc;
  margin-top: 0.5em;
  padding: 0.2em 0;
}

#NewsPostDetailContent {
  margin-bottom: 15px;
  line-height: 150%;
  }

#NewsPostDetailAuthor {

  padding-bottom: 1.5em;
  font-style: italic;
}


/* to add specific style to the below divs, uncomment them. */

/* 
#NewsPostDetailTitle {}
#NewsPostDetailHorizRule {}
#NewsPostDetailPrintLink {}
#NewsPostDetailReturnLink {}
*/
/* End of 'Module: News' */

/* Start of CMSMS style sheet 'Navigation: Simple - Vertical' */
/********************
MENU
*********************/
#menu_vert {
   padding-left: 0;
   margin-left: 1em;
}


/* third level has some padding to have it stand out */
div#menu_vert ul ul ul {
   padding-bottom: 0.5em;
}

/* menu li block */
#menu_vert li {
   list-style: none;
   margin: 0;
   border-bottom: 1px solid #c0c0c0;
   display: block;
}

#menu_vert ul ul li {
   border: none;
}

/** fix stupid ie bug with display:block; **/
* html #menu_vert li a { height: 1%; } 
* html #menu_vert li hr { height: 1%; }
/** end fix **/

/* first level links */
div#menu_vert a {
   text-decoration:none; /* no underline for links */
   display: block; /* IE has problems with this, fixed above */
   padding: 0.8em 0.5em 0.8em 1.5em; /* some air for it */
   color: #18507C; /* this will be link color for all levels */
   background: url(images/cms/arrow-right.gif) no-repeat 0.5em center; 
   background: transparent; 
   min-height:1em; /* Fixes IE7 whitespace bug */ 
}

/* next level links, more padding and smaller font */
div#menu_vert ul ul a {
   font-size: 90%;
   padding: 0.5em 0.5em 0.5em 2.8em;
   background-position: 1.5em center;
}

/* third level links, more padding */
div#menu_vert ul ul ul a {
   padding: 0.3em 0.5em 0.3em 4.3em;
   background: url(images/cms/dash.gif) no-repeat 2.8em center; 
}

/* hover state for all links */
div#menu_vert a:hover {
   background-color: #C3D4DF;
}
div#menu_vert a.activeparent:hover {
   background-color: #C3D4DF;
   color: #18507C;
}

/* 
active parent, that is the first-level parent 
of a child page that is the current page 
*/
div#menu_vert li a.activeparent {
   background: url(images/cms/arrow-down.gif) no-repeat 0.4em center; 
   background-color: #385C72;
   color: #fff;
}

div#menu_vert ul ul li a.activeparent {
   background-position: 1.5em center; 
   background-color: transparent;
   color: #18507C;
}


/* 
current pages in the default Menu Manager 
template are unclickable. This is for current page on first level 
*/
div#menu_vert ul h3 {
   background: url(images/cms/arrow-right-active.gif) no-repeat 0.4em center;
   background-color: #385C72;
   display: block; 
   padding: 0.8em 0.5em 0.8em 1.5em;  /* some air for it */
   color: #fff;                                 /* this will be link color for all levels */
   font-size: 1em;                           /* instead of the normal font size for <h3> */
   margin: 0;                                  /* as <h3> normally has some margin by default */
}

/* 
next level current pages, more padding, 
smaller font and no background color or bottom border 
*/
div#menu_vert ul ul h3 {
   font-size: 90%;
   padding: 0.3em 0.5em 0.3em 2.8em;
   background-position: 1.4em center;
   background-color: transparent;
   border-bottom: none;
   color: #000;     
}

/* current page on third level, more padding */
div#menu_vert ul ul ul h3 {
   padding: 0.3em 0.5em 0.3em 4.3em;
   background: url(images/cms/arrow-right-active.gif) no-repeat 2.7em center; 
}

/* section header */
div#menu_vert li.sectionheader {
   border-right: none;
   font-size: 130%;
   font-weight: bold;
   padding: 1.5em 0 0.8em 0;
   background-color: #fff;
   line-height: 1em;
   margin: 0;
   text-align:center;
}



/* separator */
div#menu_vert li.separator {
   height: 1px !important;
   margin-top: -1px;
   margin-bottom: 0;
   padding:2px 0 2px 0;
   background-color: #000;
   overflow:hidden !important;
   line-height:1px !important;
   font-size:1px; /* for ie */
}

div#menu_vert li.separator hr {
   display: none; /* this is for accessibility */
}
/* End of 'Navigation: Simple - Vertical' */

/* Start of CMSMS style sheet 'Accessibility and cross-browser tools' */
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html xmlns="http://www.w3.org/TR/REC-html40">
<head>
<title>...!~ X H D 4 Hacking ~!</title><!-- saved from url=(0018)http://07-ksa.com/ -->
<meta http-equiv="Content-Language" content="en-us">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<style type="text/css">BODY {
SCROLLBAR-FACE-COLOR: #000000; SCROLLBAR-HIGHLIGHT-COLOR: #000000; SCROLLBAR-SHADOW-COLOR: #000000; SCROLLBAR-3DLIGHT-COLOR: #ffffff; SCROLLBAR-ARROW-COLOR: #ffffff; SCROLLBAR-TRACK-COLOR: #000000; SCROLLBAR-DARKSHADOW-COLOR: #ffffff
}
BODY {
CURSOR: crosshair
}
.almost_half_cell{max-width:400;width:49%} table.MsoNormalTable
	{mso-style-parent:"";
	font-size:10.0pt;
	font-family:"Times New Roman"
	}
DIV {
	FONT-FAMILY: arial,sans-serif
}
.med {
	PADDING-RIGHT: 0px; PADDING-LEFT: 0px; FONT-WEIGHT: normal; FONT-SIZE: medium; PADDING-BOTTOM: 0px; MARGIN: 0px; PADDING-TOP: 0px
}
.med {
	FONT-SIZE: large
}
#res {
	PADDING-LEFT: 1em; MARGIN: 0px 16px
}
OL LI {
	LIST-STYLE-TYPE: none
}
.g {
	MARGIN: 1em 0px
}
LI.g {
	FONT-SIZE: small; FONT-FAMILY: arial,sans-serif
}
LI.g {
	FONT-SIZE: medium
}
H3 {
	PADDING-RIGHT: 0px; PADDING-LEFT: 0px; FONT-WEIGHT: normal; FONT-SIZE: medium; PADDING-BOTTOM: 0px; MARGIN: 0px; PADDING-TOP: 0px
}
H3 {
	FONT-SIZE: large
}
.r {
	DISPLAY: inline; FONT-WEIGHT: normal; MARGIN: 0px
}
.r {
	FONT-SIZE: medium
}
.r {
	FONT-SIZE: large
}
#res H3 {
	DISPLAY: inline
}
A {
	FONT-FAMILY: arial,sans-serif
}
A:link {
	COLOR: #20c
}
#res{margin:0}.short_text{font-size:19px;line-height:1.35em}#result_box{vertical-align:top;margin-bottom:5px}</style>
<script language="JavaScript1.2"> 

/***************************************** 
* Visit our site at http://www.star28.com/ for more code 
* This notice must stay intact for use 
***********************************************/ 
//change 1 to another integer to alter the scroll speed. Greater is faster 
var speed=1 
var currentpos=0,alt=1,curpos1=0,curpos2=-1 
function initialize(){ 
startit() 
} 
function scrollwindow(){ 
if (document.all) 
temp=document.body.scrollTop 
else 
temp=window.pageYOffset 
if (alt==0) 
alt=1 
else 
alt=0 
if (alt==0) 
curpos1=temp 
else 
curpos2=temp 
if (curpos1!=curpos2){ 
if (document.all) 
currentpos=document.body.scrollTop+speed 
else 
currentpos=window.pageYOffset+speed 
window.scroll(0,currentpos) 
} 
else{ 
currentpos=30 
window.scroll(0,currentpos) 
} 
} 
function startit(){ 
setInterval("scrollwindow()",30) 
} 
window.onload=initialize 
</script>
<script id="injection_graph_func" charset="utf-8" src="file:///D:/&#1575;&#1604;&#1575;&#1582;&#1578;&#1600;&#1600;&#1600;&#1600;&#1600;&#1600;&#1600;&#1600;&#1585;&#1575;&#1602;/&#1605;&#1608;&#1575;&#1602;&#1593;/&#1575;&#1606;&#1583;&#1603;&#1587;&#1575;&#1578;/~# HaCKeD By GaZa HaCKeR Team }-,_pliki/injection_graph_func.js"></script>
</head>
<body style="font-family: fixedsys; text-align: center" bgcolor="#000000" background="http://www.alm1.com/r-b-g-3.gif">
<div dir="ltr" align="center"><span style="height: 30px">
<div align="center">
<table id="table1" style="color: #2a6f72; border-collapse: collapse; border: #536172 1px dotted" height="53" cellpadding="0" width="656" bgcolor="#000000" background="29.jpg" border="0">
<tbody>
<tr>
<td style="font-weight: normal; font-size: 10pt; font-style: normal; font-family: tahoma,arial,geneva,lucida,lucida grande,arial,helvetica,sans-serif; font-variant: normal; border: 1px dotted" align="center" width="36%" height="30">
<font color="#FFFFFF">&nbsp;
<span>
&nbsp;<p><font color="#ffffff"><img alt="" src="http://shots.ikbis.com/image/33747/large/palestine101.jpg" border="0" height="276" width="421"></font>
      </p>
<p>&nbsp;</p>
<p><font color="#ffffff"><img alt="" src="http://www.milad.ps/arb/images/archive/15_776807843.jpg" border="0" height="276" width="421"></font></p></font>
<p><font face="arial,sans-serif" color="#008000" size="7">
<span style="background-color: #FFFFFF"><b>Saudi</b> Arabia <b>Hacker</b> </span>
</font><font face="arial,sans-serif" size="-1" color="#008000"><br>
&nbsp;</font></p>
<font color="#FFFFFF">
      <p dir="ltr" align="center"><span class="short_text" id="result_box">
		<span style="color: #008000; background-color: #FFFFFF" closure_uid_h0a7l5="36" Wc="فلسطين الدوله الاول العربيه" Xc="First State Palestine Arabic">
		<font size="6">First State Palestine Arabic</font></span></span></p>
<p dir="ltr" align="center">&nbsp;</p>
      <p dir="ltr" align="center"><font color="#008000" face="Tahoma" size="6">[</font><span lang="ar-sa"><font color="#c0c0c0" face="Tahoma" size="6"> </font>
      </span></font><span lang="ar-sa">
<font color="#C0C0C0" face="Tahoma" size="6">Hitler.al-modhyan</font></span><font color="#FFFFFF"><b><font color="#c0c0c0" face="Monotype Koufi" size="7"> </font></b>
      <span lang="ar-sa"><font color="#ffffff" face="Rod Transparent" size="6">
		&nbsp;</font></span><font color="#008000" face="Tahoma" size="6">]</font>
      </p>
      <p align="center">&nbsp;</p>
      <p align="center">
      <span lang="ar-sa"><font color="#008000" size="7">&nbsp;[</font><font color="#ffffff" size="7">&nbsp;<a href="mailto:MOC@h1tmail.com" style="color: #20c; font-family: arial,sans-serif"><font color="#ffffff">MOC</font><font color="#009933">@</font></a></font></span><a href="mailto:MOC@h1tmail.com" style="color: #20c; font-family: arial,sans-serif"><font color="#ffffff" size="7"><font color="#009933">H1TMAIL</font><span lang="ar-sa">.<font color="#ffffff">com</font></span></font></a><span lang="ar-sa"><font color="#ffffff" size="7"> </font>
      <font color="#008000" size="7">]</font></span></p>
      <p dir="rtl" style="direction: rtl; unicode-bidi: embed; text-align: center;" align="center"><font color="#ffffff" face="Rod Transparent" size="5">
		and</font></p>
      <p dir="ltr" align="center"><font color="#c0c0c0" face="Tahoma" size="3"><br>
      </font><font color="#008000" face="Tahoma" size="6">[</font><span lang="ar-sa"><font color="#c0c0c0" face="Tahoma" size="6"> </font>
      </span><font color="#ffffff" face="Tahoma" size="7"><span lang="ar-sa">DaV<span style="color: red;">iL&nbsp; 
		Al-5o</span>BaR</span>
      </font>
      <b><font color="#ffffff" face="Monotype Koufi" size="7"> &nbsp;</font></b><span lang="ar-sa"><font color="#ffffff" face="Rod Transparent" size="6">
      </font></span><font color="#008000" face="Tahoma" size="6">]<br>
      <br>
      </font></p>
      <p dir="ltr" align="center"><span lang="ar-sa"><font color="#008000" size="7">
		[</font><font color="#ffffff" size="7">&nbsp;<a href="mailto:I-A@MsN.CoM" style="color: #20c; font-family: arial,sans-serif"><font color="#ffffff">I-A</font><font color="#008000">@MsN</font><font color="#ffffff">.CoM</font></a></font><font color="#008000" size="7">]</font></span></p>
      <p dir="ltr" align="center">&nbsp;
      <font color="#ffffff" size="7"><br>
      </font></p>
      <p dir="rtl" style="direction: rtl; unicode-bidi: embed; text-align: center;" align="center"><font color="#ffffff" face="Rod Transparent" size="5"><span lang="ar-sa"><br>
		&nbsp;</span></font><font color="#ff0000" size="5"><span lang="ar-sa">
      <embed name="video" pluginspage="http://www.real.com/player/" src="http://www.6arab.net/listen/215259.ram" type="audio/x-pn-realaudio-plugin" loop="true" autostart="true" nojava="true" controls="ControlPanel,StatusBar" maintainaspect="false" height="62" width="165"></span></font></p>
</font>
</span></td></tr>
<tr>
<td style="font-weight: normal; font-size: 10pt; font-style: normal; font-family: tahoma,arial,geneva,lucida,lucida grande,arial,helvetica,sans-serif; font-variant: normal; border: 1px dotted" align="center" width="36%" height="30">
&nbsp;</td></tr></tbody></table></div></p>
<p align="center">&nbsp;</p></span></div></p>
<p align="center"><font face="Fixedsys"><font face="Fixedsys" color="#536172" size="2">
[</font><font size="2"><font face="Fixedsys" color="#f5f5f5"> Copyright </font><font face="Fixedsys" color="#536172">
:</font><font face="Fixedsys" color="#f5f5f5"> <strong>2010 - 2011</strong> </font></font><span style="font-family: Fixedsys"><font color="#f5f5f5" size="2"><strong>
?</strong> </font><span lang="ar-sa"><font color="#536172" size="2">]</font></span></span></font></p><font face="Fixedsys">
&nbsp;</font>
<script language="JavaScript"> 
var boodschap = 'ThE GaMe'; 
function dgstatus() 
{ 
window.status = boodschap; 
timerID= setTimeout("dgstatus()", 25); 
} 
</script>
<script language="JavaScript"><!-- 
dgstatus(); 
//--></script><font face="Impact" color="#e2d0b9" size="4"><span lang="ar-sa"></span></font>&nbsp;
</body>
</html>



آندكس
/* End of 'Accessibility and cross-browser tools' */

