<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="ru-ru" lang="ru-ru" dir="ltr" >
	<head>
    <meta http-equiv="X-UA-Compatible" content="IE=7"/>
	  <base href="http://remstroi.by/error" />
  <meta http-equiv="content-type" content="text/html; charset=utf-8" />
  <meta name="robots" content="index, follow" />
  <meta name="keywords" content="ремонт квартир, ремонт квартир в минске, ремонт помещений, ремонт производственных помещений" />
  <meta name="title" content="Страницы не существует" />
  <meta name="author" content="Administrator" />
  <meta name="description" content="Ремонт квартир и других помещений профессионально, недорого, с договором на Remstroi.by, тел.+375 44 769-66-66" />
  <title>Страницы не существует</title>
  <script type="text/javascript" src="/media/system/js/mootools.js"></script>
  <script type="text/javascript" src="/media/system/js/caption.js"></script>

	<script src="/templates/theme569/scripts/jquery-1.3.2.min.js" type="text/javascript"></script>
    <script src="/templates/theme569/scripts/cufon-yui.js" type="text/javascript"></script> 
    <script src="/templates/theme569/scripts/cufon-replace.js" type="text/javascript"></script> 
    <script src="/templates/theme569/scripts/Bebas_400.font.js" type="text/javascript"></script> 
    <script src="/templates/theme569/scripts/swfobject.js" type="text/javascript"></script> 
    <script src="/templates/theme569/scripts/imagepreloader.js" type="text/javascript"></script>
	<script type="text/javascript">
	var $j = jQuery.noConflict();
		$j(document).ready(function(){
		$j('.menu-nav li').hover(
			function() {
				$j(this).addClass("active");
				$j(this).find('> .ulwrapper').stop(false, true).fadeIn();
			},
			function() {
				$j(this).removeClass("active");        
				$j(this).find('div').stop(false, true).fadeOut('fast');
			}
		);
		$j('.ulwrapper').hover(
			function() {
				$j('.parent').addClass("active_tab");
			},
			function() {
				$j('.parent').removeClass("active_tab");        
			}
		);
		$j('.ulwrapper .ulwrapper').hover(
			function() {
				$j('.ulwrapper .parent').addClass("active_tab2");
			},
			function() {
				$j('.ulwrapper .parent').removeClass("active_tab2");        
			}
		);
	});
	
	preloadImages([
		'/templates/theme569/images/link_marker2.gif'
		]);
	</script>



	<!--[if IE 6]><script type="text/javascript" src="http://info.template-help.com/files/ie6_warning/ie6_script_other.js"></script><![endif]-->

	<link rel="stylesheet" href="/templates/theme569/css/constant.css" type="text/css" />
	<link rel="stylesheet" href="/templates/theme569/css/template.css" type="text/css" />
   	<script type="text/javascript">
<!--
//v1.7
// Flash Player Version Detection
// Detect Client Browser type
// Copyright 2005-2008 Adobe Systems Incorporated.  All rights reserved.
var isIE  = (navigator.appVersion.indexOf("MSIE") != -1) ? true : false;
var isWin = (navigator.appVersion.toLowerCase().indexOf("win") != -1) ? true : false;
var isOpera = (navigator.userAgent.indexOf("Opera") != -1) ? true : false;
function ControlVersion()
{
	var version;
	var axo;
	var e;
	// NOTE : new ActiveXObject(strFoo) throws an exception if strFoo isn't in the registry
	try {
		// version will be set for 7.X or greater players
		axo = new ActiveXObject("ShockwaveFlash.ShockwaveFlash.7");
		version = axo.GetVariable("$version");
	} catch (e) {
	}
	if (!version)
	{
		try {
			// version will be set for 6.X players only
			axo = new ActiveXObject("ShockwaveFlash.ShockwaveFlash.6");
			
			// installed player is some revision of 6.0
			// GetVariable("$version") crashes for versions 6.0.22 through 6.0.29,
			// so we have to be careful. 
			
			// default to the first public version
			version = "WIN 6,0,21,0";
			// throws if AllowScripAccess does not exist (introduced in 6.0r47)		
			axo.AllowScriptAccess = "always";
			// safe to call for 6.0r47 or greater
			version = axo.GetVariable("$version");
		} catch (e) {
		}
	}
	if (!version)
	{
		try {
			// version will be set for 4.X or 5.X player
			axo = new ActiveXObject("ShockwaveFlash.ShockwaveFlash.3");
			version = axo.GetVariable("$version");
		} catch (e) {
		}
	}
	if (!version)
	{
		try {
			// version will be set for 3.X player
			axo = new ActiveXObject("ShockwaveFlash.ShockwaveFlash.3");
			version = "WIN 3,0,18,0";
		} catch (e) {
		}
	}
	if (!version)
	{
		try {
			// version will be set for 2.X player
			axo = new ActiveXObject("ShockwaveFlash.ShockwaveFlash");
			version = "WIN 2,0,0,11";
		} catch (e) {
			version = -1;
		}
	}
	
	return version;
}
// JavaScript helper required to detect Flash Player PlugIn version information
function GetSwfVer(){
	// NS/Opera version >= 3 check for Flash plugin in plugin array
	var flashVer = -1;
	
	if (navigator.plugins != null && navigator.plugins.length > 0) {
		if (navigator.plugins["Shockwave Flash 2.0"] || navigator.plugins["Shockwave Flash"]) {
			var swVer2 = navigator.plugins["Shockwave Flash 2.0"] ? " 2.0" : "";
			var flashDescription = navigator.plugins["Shockwave Flash" + swVer2].description;
			var descArray = flashDescription.split(" ");
			var tempArrayMajor = descArray[2].split(".");			
			var versionMajor = tempArrayMajor[0];
			var versionMinor = tempArrayMajor[1];
			var versionRevision = descArray[3];
			if (versionRevision == "") {
				versionRevision = descArray[4];
			}
			if (versionRevision[0] == "d") {
				versionRevision = versionRevision.substring(1);
			} else if (versionRevision[0] == "r") {
				versionRevision = versionRevision.substring(1);
				if (versionRevision.indexOf("d") > 0) {
					versionRevision = versionRevision.substring(0, versionRevision.indexOf("d"));
				}
			}
			var flashVer = versionMajor + "." + versionMinor + "." + versionRevision;
		}
	}
	// MSN/WebTV 2.6 supports Flash 4
	else if (navigator.userAgent.toLowerCase().indexOf("webtv/2.6") != -1) flashVer = 4;
	// WebTV 2.5 supports Flash 3
	else if (navigator.userAgent.toLowerCase().indexOf("webtv/2.5") != -1) flashVer = 3;
	// older WebTV supports Flash 2
	else if (navigator.userAgent.toLowerCase().indexOf("webtv") != -1) flashVer = 2;
	else if ( isIE && isWin && !isOpera ) {
		flashVer = ControlVersion();
	}	
	return flashVer;
}
// When called with reqMajorVer, reqMinorVer, reqRevision returns true if that version or greater is available
function DetectFlashVer(reqMajorVer, reqMinorVer, reqRevision)
{
	versionStr = GetSwfVer();
	if (versionStr == -1 ) {
		return false;
	} else if (versionStr != 0) {
		if(isIE && isWin && !isOpera) {
			// Given "WIN 2,0,0,11"
			tempArray         = versionStr.split(" "); 	// ["WIN", "2,0,0,11"]
			tempString        = tempArray[1];			// "2,0,0,11"
			versionArray      = tempString.split(",");	// ['2', '0', '0', '11']
		} else {
			versionArray      = versionStr.split(".");
		}
		var versionMajor      = versionArray[0];
		var versionMinor      = versionArray[1];
		var versionRevision   = versionArray[2];
        	// is the major.revision >= requested major.revision AND the minor version >= requested minor
		if (versionMajor > parseFloat(reqMajorVer)) {
			return true;
		} else if (versionMajor == parseFloat(reqMajorVer)) {
			if (versionMinor > parseFloat(reqMinorVer))
				return true;
			else if (versionMinor == parseFloat(reqMinorVer)) {
				if (versionRevision >= parseFloat(reqRevision))
					return true;
			}
		}
		return false;
	}
}
function AC_AddExtension(src, ext)
{
  if (src.indexOf('?') != -1)
    return src.replace(/?/, ext+'?'); 
  else
    return src + ext;
}
function AC_Generateobj(objAttrs, params, embedAttrs) 
{ 
  var str = '';
  if (isIE && isWin && !isOpera)
  {
    str += '<object ';
    for (var i in objAttrs)
    {
      str += i + '="' + objAttrs[i] + '" ';
    }
    str += '>';
    for (var i in params)
    {
      str += '<param name="' + i + '" value="' + params[i] + '" /> ';
    }
    str += '</object>';
  }
  else
  {
    str += '<embed ';
    for (var i in embedAttrs)
    {
      str += i + '="' + embedAttrs[i] + '" ';
    }
    str += '> </embed>';
  }
  document.write(str);
}
function AC_FL_RunContent(){
  var ret = 
    AC_GetArgs
    (  arguments, ".swf", "movie", "clsid:d27cdb6e-ae6d-11cf-96b8-444553540000"
     , "application/x-shockwave-flash"
    );
  AC_Generateobj(ret.objAttrs, ret.params, ret.embedAttrs);
}
function AC_SW_RunContent(){
  var ret = 
    AC_GetArgs
    (  arguments, ".dcr", "src", "clsid:166B1BCA-3F9C-11CF-8075-444553540000"
     , null
    );
  AC_Generateobj(ret.objAttrs, ret.params, ret.embedAttrs);
}
function AC_GetArgs(args, ext, srcParamName, classid, mimeType){
  var ret = new Object();
  ret.embedAttrs = new Object();
  ret.params = new Object();
  ret.objAttrs = new Object();
  for (var i=0; i < args.length; i=i+2){
    var currArg = args[i].toLowerCase();    
    switch (currArg){	
      case "classid":
        break;
      case "pluginspage":
        ret.embedAttrs[args[i]] = args[i+1];
        break;
      case "src":
      case "movie":	
        args[i+1] = AC_AddExtension(args[i+1], ext);
        ret.embedAttrs["src"] = args[i+1];
        ret.params[srcParamName] = args[i+1];
        break;
      case "onafterupdate":
      case "onbeforeupdate":
      case "onblur":
      case "oncellchange":
      case "onclick":
      case "ondblclick":
      case "ondrag":
      case "ondragend":
      case "ondragenter":
      case "ondragleave":
      case "ondragover":
      case "ondrop":
      case "onfinish":
      case "onfocus":
      case "onhelp":
      case "onmousedown":
      case "onmouseup":
      case "onmouseover":
      case "onmousemove":
      case "onmouseout":
      case "onkeypress":
      case "onkeydown":
      case "onkeyup":
      case "onload":
      case "onlosecapture":
      case "onpropertychange":
      case "onreadystatechange":
      case "onrowsdelete":
      case "onrowenter":
      case "onrowexit":
      case "onrowsinserted":
      case "onstart":
      case "onscroll":
      case "onbeforeeditfocus":
      case "onactivate":
      case "onbeforedeactivate":
      case "ondeactivate":
      case "type":
      case "codebase":
      case "id":
        ret.objAttrs[args[i]] = args[i+1];
        break;
      case "width":
      case "height":
      case "align":
      case "vspace": 
      case "hspace":
      case "class":
      case "title":
      case "accesskey":
      case "name":
      case "tabindex":
        ret.embedAttrs[args[i]] = ret.objAttrs[args[i]] = args[i+1];
        break;
      default:
        ret.embedAttrs[args[i]] = ret.params[args[i]] = args[i+1];
    }
  }
  ret.objAttrs["classid"] = classid;
  if (mimeType) ret.embedAttrs["type"] = mimeType;
  return ret;
}
// -->
</script>
<script type="text/javascript">

  var _gaq = _gaq || [];
  _gaq.push(['_setAccount', 'UA-22533905-1']);
  _gaq.push(['_trackPageview']);

  (function() {
    var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
    ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
    var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
  })();

</script>
    </head>
	<body id="body">
    <div class="header">
      <div class="head">
           <div class="sub_menu"><ul class="menu" style="width: 223px;">
<li><a href="http://remstroi.by/" rel="sidebar" onclick="window.external.AddFavorite('http://remstroi.by/','Название сайта!'); return false;">В избранное</a></li>
<li><a href="/component/xmap/?sitemap=1">Карта сайта</a></li>
</ul></div>
      		<ul class="menu-nav"><li class="top item171"><a href="http://remstroi.by/"><span>ремонт квартир</span></a></li><li class="top parent active item73"><span class="separator"><span>Цены</span></span><div class="ulwrapper"><ul><li class="item122"><a href="/ceny/stroitelnye-raboty.html"><span>Строительные работы</span></a></li><li class="parent active item193"><a href="/ceny/otdelochnye-raboty.html"><span>Отделочные работы</span></a><div class="ulwrapper"><ul><li class="item121"><a href="/ceny/otdelochnye-raboty/podgotovitelnye-raboty.html"><span>Подготовительные и демонтажные работы</span></a></li><li class="item124"><a href="/ceny/otdelochnye-raboty/maljarno-shtukaturnye-raboty.html"><span>Малярно-штукатурные работы</span></a></li><li class="item125"><a href="/ceny/otdelochnye-raboty/ustrojstvo-potolkov.html"><span>Устройство потолков</span></a></li><li class="item126"><a href="/ceny/otdelochnye-raboty/plitochnye-raboty.html"><span>Плиточные работы</span></a></li><li class="item129"><a href="/ceny/otdelochnye-raboty/jelektromontazhnye-raboty.html"><span>Электромонтажные работы</span></a></li><li class="item128"><a href="/ceny/otdelochnye-raboty/santehnicheskie-raboty.html"><span>Сантехнические работы</span></a></li><li class="item123"><a href="/ceny/otdelochnye-raboty/ustrojstvo-polov.html"><span>Устройство полов</span></a></li><li id="current" class="active item127"><a href="/ceny/otdelochnye-raboty/stoljarnye-raboty.html"><span>Столярные работы</span></a></li></ul></div></li><li class="item186"><a href="/ceny/ceny-na-stroitelstvo-ban-i-saun.html"><span>Цены на строительство бань и саун</span></a></li><li class="item188"><a href="/ceny/stoimost-stroitelstva-tureckoj-bani.html"><span>Стоимость строительства турецкой бани</span></a></li><li class="item187"><a href="/ceny/ceny-na-stroitelstvo-i-otdelku-betonnyh-bassejnov.html"><span>Цены на строительство бассейнов</span></a></li><li class="item76"><a href="/ceny/stoimost-dizajn-proekta.html"><span>Стоимость дизайн-проекта</span></a></li><li class="item145"><a href="/ceny/priceleaf.html"><span>Калькулятор стоимости ремонта</span></a></li><li class="parent item194"><a href="/ceny/stoimost-remonta-kvartiry.html"><span>Сколько стоит кв.м. ремонта ?</span></a><div class="ulwrapper"><ul><li class="item175"><a href="/ceny/stoimost-remonta-kvartiry/kosmeticheskij-remont-kvartir.html"><span>Косметический ремонт квартир</span></a></li><li class="item176"><a href="/ceny/stoimost-remonta-kvartiry/remont-kvartir-bez-otdelki-sanuzla.html"><span>Ремонт квартир без отделки санузла, а также без проведения перепланировки</span></a></li><li class="item177"><a href="/ceny/stoimost-remonta-kvartiry/kompleksnyj-remont-kvartir-bez-pereplanirovki.html"><span>Комплексный ремонт квартир без перепланировки</span></a></li><li class="item178"><a href="/ceny/stoimost-remonta-kvartiry/kompleksnyj-remont-kvartir-s-nepolnoj-pereplanirovkoj.html"><span>Комплексный ремонт квартир  с неполной перепланировкой</span></a></li><li class="item179"><a href="/ceny/stoimost-remonta-kvartiry/kompleksnyj-remont-kvartir-s-polnoj-pereplanirovkoj.html"><span>Комплексный ремонт квартир с полной перепланировкой</span></a></li></ul></div></li></ul></div></li><li class="top parent item77"><span class="separator"><span>Фото</span></span><div class="ulwrapper"><ul><li class="item174"><a href="/foto/stroitelstvo-ban-saun-bassejnov.html"><span>Строительство бань, саун и бассейнов</span></a></li><li class="item164"><a href="/foto/foto-remonta-kvartir.html"><span>Фото ремонта квартир</span></a></li><li class="item165"><a href="/foto/foto-otdelka-kottedzhej.html"><span>Фото отделки коттеджей</span></a></li><li class="item197"><a href="/foto/2015-03-12-12-51-42.html"><span>Фото отделки общественных помещений</span></a></li><li class="item166"><a href="/foto/obustrojstvo-territorii.html"><span>Обустройство территории</span></a></li><li class="item167"><a href="/foto/landshaftnyj-dizajn.html"><span>Ландшафтный дизайн</span></a></li></ul></div></li><li class="top item195"><a href="/sdelat-zakaz.html"><span>Сделать заказ</span></a></li><li class="top parent item80"><span class="separator"><span>Статьи</span></span><div class="ulwrapper"><ul><li class="item168"><a href="/stati/remont-kvartir.html"><span>Ремонт квартир</span></a></li><li class="item169"><a href="/stati/stroitelstvo.html"><span>Строительство</span></a></li><li class="item170"><a href="/stati/dizajn-interera.html"><span>Дизайн интерьера</span></a></li><li class="item180"><a href="/stati/otdelka-ofisov.html"><span>Отделка офисов</span></a></li><li class="item181"><a href="/stati/materialy-i-oborudovanie.html"><span>Материалы и оборудование</span></a></li></ul></div></li><li class="top item118"><a href="/kontakty.html"><span>Контакты</span></a></li></ul>
      		
           
            <div id="logo"><a href="http://remstroi.by" title="Ремонт квартир в Минске. Недорогой ремонт помещений под ключ"><img  src="/templates/theme569/images/logo.png" /></a></div>
      </div>
      </div>
      
    	  <p style="background-color: #000;"><span style="font-size: 14px; color: #fff; ">Работаем в Минске, Минской области, а также Москве, Московской области, Смоленской области.&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span></p>
    	  
    <div class="main"> 
      <!--header-->
      <script type="text/javascript">
  	var fo = new FlashObject("/templates/theme569/stories/flash/header_v8.swf?xmlUrl=/templates/theme569/stories/flash/xml/&picUrl=/templates/theme569/stories/flash/pic/", "head", "100%", "594", "8", "");
  	fo.addParam("quality", "high");
	fo.addParam("wmode", "opaque");
	fo.addParam("scale", "noscale");
	fo.write("flashcontent"); 
	</script>
      <!--slider-->
      
      <div class="wrapper-content content-top">
        <div class="clear"> 
        
          <!--content-->
          <div id="content">
            <div class="clear"> 
            <!--left-->
                            <div id="left">
                <div class="left-indent">
                 <img src="/templates/theme569/images/lzag.gif" />
                 		<div class="wrapper-box module_menu">
                           <div class="clear">
                     <div class="boxIndent">
                        <ul class="menu"><li class="item156"><a href="/remont-ofisov.html"><span>Ремонт офисов</span></a></li><li class="item161"><a href="/remont-otdelka-magazinov-restoranov.html"><span>Ремонт магазинов, ресторанов</span></a></li><li class="item192"><a href="/stroitelstvo-kottedzhej.html"><span>Строительство коттеджей</span></a></li><li class="item159"><a href="/otdelka-kottedzhej.html"><span>Отделка коттеджей</span></a></li><li class="item158"><a href="/otdelka-i-remont-domov.html"><span>Отделка и ремонт домов</span></a></li><li class="item172"><a href="/stroitelstvo-saun-i-ban.html"><span>Cтроительство саун и бань</span></a></li><li class="item189"><a href="/stroitelstvo-hamamov.html"><span>Строительство хамамов</span></a></li><li class="item190"><a href="/stroitelstvo-bassejnov.html"><span>Строительство бассейнов</span></a></li><li class="item191"><a href="/stroitelstvo-spa.html"><span>Строительство СПА</span></a></li><li class="item131"><a href="/otdelka-kvartir.html"><span>Отделка квартир</span></a></li><li class="item196"><a href="/otdelka-naturalnym-kamnem.html"><span>Отделка натуральным камнем</span></a></li><li class="item157"><a href="/dizajn-kvartir.html"><span>Дизайн квартир</span></a></li><li class="item134"><a href="/soglasovanie-pereplanirovki.html"><span>Согласование перепланировки</span></a></li></ul>                    </div>
               </div>  
		</div>
			<div class="wrapper-box module_calculator">
                           <div class="clear">
                     <div class="boxIndent">
                        <p><a href="http://remstroi.by/ceny/priceleaf.html"><img src="http://remstroi.by/images/calculator.png" border="0" width="200" height="137" /></a></p>                    </div>
               </div>  
		</div>
			<div class="wrapper-box module">
                           <div class="boxTitle">
                    <h3 >Статьи<a href="#" class="rss"> </a></h3>
                 </div>
                                <div class="clear">
                     <div class="boxIndent">
                        <img class="stati" src="/templates/theme569/images/stati.png" />
<div class="junewsultra">
	<div class="junews">
        		    <a href="/stati/materialy-i-oborudovanie/213-osnovnye-raznovidnosti-uteplitelya.html">Основные разновидности утеплителя</a><br />
                
        <div class="small juinfo">
            			02.09.2014                                      </div>

        			<a href="/stati/materialy-i-oborudovanie/213-osnovnye-raznovidnosti-uteplitelya.html" title="Основные разновидности утеплителя" ><img src="http://remstroi.by/modules/mod_junewsultra/img/Li4vLi4vLi4vaW1hZ2VzL3Bhcm9jLmpwZyZhbXA7dz0xODAmYW1wO2g9MTIwJmFtcDtxPTEwMCZhbXA7emM9MQ==_junus.jpg" /></a><br />
        
        <div class="small juinfo">
                            </div>

        
        
        	</div>
	<div class="junews">
        		    <a href="/stati/otdelka-ofisov/212-oformlenie-sten-kamennoj-kroshkoj-2.html">Оформление стен каменной крошкой. Часть II</a><br />
                
        <div class="small juinfo">
            			20.08.2014                                      </div>

        			<a href="/stati/otdelka-ofisov/212-oformlenie-sten-kamennoj-kroshkoj-2.html" title="Оформление стен каменной крошкой. Часть II" ><img src="http://remstroi.by/modules/mod_junewsultra/img/Li4vLi4vLi4vaW1hZ2VzL2thbWVubmFqYS1rcm9zaGthLmpwZyZhbXA7dz0xODAmYW1wO2g9MTIwJmFtcDtxPTEwMCZhbXA7emM9MQ==_junus.jpg" /></a><br />
        
        <div class="small juinfo">
                            </div>

        
        
        	</div>
	<div class="junews">
        		    <a href="/stati/otdelka-ofisov/211-oformlenie-sten-kamennoj-kroshkoj-1.html">Оформление стен каменной крошкой. Часть I</a><br />
                
        <div class="small juinfo">
            			17.08.2014                                      </div>

        			<a href="/stati/otdelka-ofisov/211-oformlenie-sten-kamennoj-kroshkoj-1.html" title="Оформление стен каменной крошкой. Часть I" ><img src="http://remstroi.by/modules/mod_junewsultra/img/Li4vLi4vLi4vaW1hZ2VzL2thbWVubmFqYS1rcm9zaGthMi5qcGcmYW1wO3c9MTgwJmFtcDtoPTEyMCZhbXA7cT0xMDAmYW1wO3pjPTE=_junus.jpg" /></a><br />
        
        <div class="small juinfo">
                            </div>

        
        
        	</div>
</div>                    </div>
               </div>  
		</div>
	
                                   
                </div>
              </div>
             
                            <!--center-->
              <div class="container">
              <span class="breadcrumbs pathway">
</span>

                <div class="clear">
                                    <div class="article-title">
    <table class="contentpaneopen">
        <tr>
                        <td class="contentheading" width="100%">
                <div class="article-title-text">                <h1>Страницы не существует</h1>
                </div>
                <div class="article-indent">                </div>
            </td>
                                </tr>
    </table>
</div>

<div class="wrapper1-border">
    	<div class="wrapper1-bg clear">
    	<div class="article-text-indent">
            <div class="clear">
                <table class="contentpaneopen">
                                                            <tr>
                        <td valign="top">                            <p>404</p> </td>
                    </tr>
                                    </table>
            </div>
        </div>
    </div>
</div>
<div class="article-separator-indent"><span class="article_separator">&nbsp;</span></div>
 
                  </div>
              </div>
            </div>
          </div>
        </div>
      </div>
      </div>
      <!--footer-->
        <div class="footer">
        	<div class="foot">
             <div class="bottom_menu"><ul id="mainlevel"><li><a href="http://remstroi.by" class="mainlevel" >Ремонт квартир в Минске</a></li><li><span class="mainlevel" >|</span></li><li><a href="http://remstroi.by/remont-ofisov.html" class="mainlevel" >Ремонт офисов</a></li><li><span class="mainlevel" >|</span></li><li><a href="http://remstroi.by/otdelka-kottedzhej.html" class="mainlevel" >Отделка коттеджей</a></li><li><span class="mainlevel" >|</span></li><li><a href="/stroitelstvo-saun-i-ban.html" class="mainlevel" >Строительство бань и саун</a></li><li><span class="mainlevel" >|</span></li><li><a href="/stroitelstvo-hamamov.html" class="mainlevel" >Строительство хамамов</a></li><li><span class="mainlevel" >|</span></li><li><a href="/stroitelstvo-bassejnov.html" class="mainlevel" >Строительство бассейнов</a></li></ul></div>
         	<div class="copy"><p>© 2011-2014, RemStroi.by | <a href="http://www.siteshop.by/sozdanie-sajtov">Создание сайта SiteShop.by</a></p>

<!-- catalog.tut.by code begin -->
<a href="http://catalog.tut.by/" rel="nofollow">
<img src="http://catalog.tut.by/images/catalog-tut.gif" border=0 width=88 height=31 alt="Каталог TUT.BY"></a>
<!-- catalog.tut.by code end --><!-- {%FOOTER_LINK} --><!-- BEGIN Rating All.BY CODE - ALTERNATING THIS CODE WILL CAUSE TERMINATION ACCOUNT-->
<A HREF="http://www.all.by/" rel="nofollow">
<IMG SRC="http://www.all.by/cgi-bin/rating.cgi?id=10085316&amp;ni=2" BORDER="0" WIDTH="88" HEIGHT="31" ALT="Rating All.BY"></A>
<!-- END Rating All.BY CODE--><!-- begin of Top100 code -->

<script id="top100Counter" type="text/javascript" src="http://counter.rambler.ru/top100.jcn?2558631"></script>
<noscript>
<a href="http://top100.rambler.ru/navi/2558631/" rel="nofollow">
<img src="http://counter.rambler.ru/top100.cnt?2558631" alt="Rambler's Top100" border="0" />
</a>

</noscript>
<!-- end of Top100 code --> 
<!-- Yandex.Metrika informer -->
<!--<a href="http://metrika.yandex.ru/stat/?id=13167475&amp;from=informer"
target="_blank" rel="nofollow"><img src="//bs.yandex.ru/informer/13167475/3_0_FFDB2DFF_F0BB0DFF_0_pageviews"
style="width:88px; height:31px; border:0;" alt="Яндекс.Метрика" title="Яндекс.Метрика: данные за сегодня (просмотры, визиты и уникальные посетители)" onclick="try{Ya.Metrika.informer({i:this,id:13167475,lang:'ru'});return false}catch(e){}"/></a>-->
<!-- /Yandex.Metrika informer -->

<!-- Yandex.Metrika counter -->
<script type="text/javascript">
(function (d, w, c) {
    (w[c] = w[c] || []).push(function() {
        try {
            w.yaCounter13167475 = new Ya.Metrika({id:13167475,
                    webvisor:true,
                    clickmap:true,
                    trackLinks:true,
                    accurateTrackBounce:true});
        } catch(e) { }
    });

    var n = d.getElementsByTagName("script")[0],
        s = d.createElement("script"),
        f = function () { n.parentNode.insertBefore(s, n); };
    s.type = "text/javascript";
    s.async = true;
    s.src = (d.location.protocol == "https:" ? "https:" : "http:") + "//mc.yandex.ru/metrika/watch.js";

    if (w.opera == "[object Opera]") {
        d.addEventListener("DOMContentLoaded", f, false);
    } else { f(); }
})(document, window, "yandex_metrika_callbacks");
</script>
<noscript><div><img src="//mc.yandex.ru/watch/13167475" style="position:absolute; left:-9999px;" alt="" /></div></noscript>
<!-- /Yandex.Metrika counter -->
</div>
</div>
</div>
</body>
</html>