bplist00_WebSubresources_WebMainResource_WebSubframeArchives&#'+/38<@EINRVZ^bgkquy} _WebResourceResponse_WebResourceData^WebResourceURL_WebResourceMIMETypeObplist00 Y$archiverX$versionT$topX$objects_NSKeyedArchiver _WebResourceResponse! )/078?KWZNS.objectsWNS.keys@ABCDEFGHIJLMNOPQRSTUV VServerTVary]Last-Modified]Accept-Ranges_Content-EncodingTDate]Cache-Control^Content-LengthZConnectionTEtag\Content-TypeVApache_Accept-Encoding_Wed, 05 Nov 2008 18:07:16 GMTUbytesTgzip_Wed, 19 Nov 2008 03:41:43 GMT[max-age=300T1067Uclose_"3b7829-ab8-45af50cdadd00"-gzip12noop6_NSMutableDictionary\NSDictionary12rss6_NSHTTPURLResponseInternal12uvvw6_NSHTTPURLResponse]NSURLResponse$)2DILbd  '3579uz   "$&(*,.07<JXkp~%GLPfsx{xO /** * Purpose: Called when you need to make AJAX call for getting tool content * This method creates XMLHttpRequest object to communicate with the * servlet */ function getTool(url, divID) { var httpRequest; //alert("getTool(): EPIC_adSection=" + EPIC_adSection+'----'); if (window.ActiveXObject) { httpRequest = new ActiveXObject("Microsoft.XMLHTTP"); } else if (window.XMLHttpRequest) { httpRequest = new XMLHttpRequest(); } re = '\\?'; myArray = url.match(re); if(EPIC_adSection!=''){ if(myArray!=null && myArray.length>0) url=url+'&adsec='+EPIC_adSection; else url=url+'?adsec='+EPIC_adSection; } //HIGH LOAD POLL REMOVE if(url.indexOf("/poll/user.do") > 0) { //COMMENT IN THE FOLLOWING LINE TO DISABLE LIVE POLLS //return false; } //END: HIGH LOAD POLL REMOVE httpRequest.open("GET", url, true); httpRequest.onreadystatechange = function() {processRequest(divID, httpRequest); } ; httpRequest.send(null); } /** * This is the call back method * If the call is completed when the readyState is 4 * and if the HTTP is successfull when the status is 200 * update the toolSection DIV */ function processRequest(divID, httpRequest) { if (httpRequest.readyState == 4) { //alert(httpRequest.status); if(httpRequest.status == 200) { //get the text sent by the url var toolText = httpRequest.responseText; //alert(toolText); //Update the HTML updateHTML(toolText, divID); //allow for callback hook for executing code after getTool completes if (typeof getToolHook == 'function') { getToolHook(); } } else { //alert("Error loading page\n"+ httpRequest.status +":"+ httpRequest.statusText); } } } /** * This function parses the XML and updates the * HTML DOM by creating a new text node is not present * or replacing the existing text node. */ function updateHTML(toolText, divID) { // Get the reference of the DIV in the HTML DOM by passing the ID var toolSection = document.getElementById(divID); //alert("divID=" + divID); // + ", toolText=" + toolText); toolSection.innerHTML = toolText; } _9http://www.dispatch.com/live/static/javascript/getTool.js_application/x-javascript Obplist00 Y$archiverX$versionT$topX$objects_NSKeyedArchiver _WebResourceResponse! )/078?KWZNS.objectsWNS.keys@ABCDEFGHIJLMNOPQRSTUV VServerTVary]Last-Modified]Accept-Ranges_Content-EncodingTDate]Cache-Control^Content-LengthZConnectionTEtag\Content-TypeVApache_Accept-Encoding_Wed, 28 Feb 2007 17:24:48 GMTUbytesTgzip_Wed, 19 Nov 2008 03:41:45 GMT[max-age=300S125Uclose_"981cf-93-42a8ca6bc7800"-gzip12noop6_NSMutableDictionary\NSDictionary12rss6_NSHTTPURLResponseInternal12uvvw6_NSHTTPURLResponse]NSURLResponse$)2DILbd  &2468 "$&(*,38FTglz  @EI_lqtxObody {background: #fff;} a:link, a:visited {color: #009; text-decoration: none;} a:hover, a:active {color: #c00; text-decoration: underline;}_Hhttp://www.dispatch.com/live/export-content/sites/dispatch/css/basic.cssXtext/css  Obplist00 Y$archiverX$versionT$topX$objects_NSKeyedArchiver _WebResourceResponse! )/078?KWZNS.objectsWNS.keys@ABCDEFGHIJLMNOPQRSTUV VServerTVary]Last-Modified]Accept-Ranges_Content-EncodingTDate]Cache-Control^Content-LengthZConnectionTEtag\Content-TypeVApache_Accept-Encoding_Mon, 09 Jan 2006 17:45:23 GMTUbytesTgzip_Wed, 19 Nov 2008 03:42:55 GMT[max-age=300T1604Uclose_"c89-1442-409f0903472c0"12noop6_NSMutableDictionary\NSDictionary12rss6_NSHTTPURLResponseInternal12uvvw6_NSHTTPURLResponse]NSURLResponse$)2DILbd  '3579  &(*,.02468:<>EJXfy~(-3NSWmzxOB// Property of the Columbus Dispatch - use of these routines not allowed without permission //-------------------------------------------------------------- // Tab_Create Creates Tab Object //-------------------------------------------------------------- function Tab_Create(NewTabSetName){ this.TabSetName = NewTabSetName; this.ActiveColor = "yellow"; this.InactiveColor = "white"; this.ActiveBackgroundImage = "/shared/images/tab-corner-dkblu.gif"; this.InactiveBackgroundImage = "/shared/images/tab-corner-666.gif"; this.Activate = Tab_Activate; //deb alert("Setup:"+NewTabName); } //-------------------------------------------------------------- // Tab_Activate Activates a Tab within Tab Object //-------------------------------------------------------------- function Tab_Activate(Tab) { //deb alert("Tab_Activate"+Tab); var MaxTabs = 10; var TabNameParts = Tab.split("_"); var TabId = TabNameParts[0]; //alert(TabId); var TabGroup = TabNameParts[1].substr(0,1); //alert(TabGroup); var TabNumber = TabNameParts[1].substr(1); //alert(TabNumber); // Hide Everything for (i=1; i <= MaxTabs; i++) { TabName = TabId+ "_"+ TabGroup + i; //deb alert(TabName); try { GetReference(TabName + "_Info").style.visibility = 'hidden'; GetReference(TabName + "_Info").style.display = 'none'; GetReference(TabName).style.cssText = "color:" + this.InactiveColor + "; background: url('" + this.InactiveBackgroundImage + "') no-repeat right top;"; // deb alert(TabName + ":"+GetReference(TabName).style.cssText); throw "error"; } catch(error) { // alert("no tab" + error) } } //Activate selected Tab GetReference(Tab + "_Info").style.visibility = 'visible'; GetReference(Tab + "_Info").style.display = 'block'; GetReference(Tab).style.cssText = "color:" + this.ActiveColor + "; background: url('" + this.ActiveBackgroundImage + "') no-repeat right top;"; // deb alert(Tab + ":"+GetReference(Tab).style.cssText); } //-------------------------------------------------------------- // GetReference Returns the Reference for a field based on browser //-------------------------------------------------------------- function GetReference(field) { var Refer; // DOM capable, ie, Netscape 7 if (parseInt(navigator.appVersion) >=5) { Refer=document.getElementById(field);} // IE else if (document.all) { Refer=document.all[field];} // Netscape 4 else if (document.layers) { Refer=document.layers[field];} //alert("here"); return(Refer); } //-------------------------------------------------------------- // Activate Original Tab Function - only so old software does not have to be upgraded //-------------------------------------------------------------- function Activate(Tab) { var Tab_Tmp = new Tab_Create('Tab_8'); Tab_Tmp.ActiveColor="red"; Tab_Tmp.Activate(Tab); } //-------------------------------------------------------------- // GetUrlValue Returns the value for a parameter from the url //-------------------------------------------------------------- function GetUrlValue(parameter) { var urlEnd = document.URL.indexOf('?'); var values = new Array(); var fields; if (urlEnd != -1) { var params = document.URL.substring(urlEnd+1, document.URL.length).split('&'); for(i=0; i?KWZNS.objectsWNS.keys@ABCDEFGHIJLMNOPQRSTUV VServerTVary]Last-Modified]Accept-Ranges_Content-EncodingTDate]Cache-Control^Content-LengthZConnectionTEtag\Content-TypeVApache_Accept-Encoding_Mon, 28 Nov 2005 16:27:23 GMTUbytesTgzip_Wed, 19 Nov 2008 03:41:45 GMT[max-age=300S861Uclose_"c87-86c-406a293eb90c0"-gzip12noop6_NSMutableDictionary\NSDictionary12rss6_NSHTTPURLResponseInternal12uvvw6_NSHTTPURLResponse]NSURLResponse$)2DILbd  '3579  (*,.02468:<>@GLZh{*.4SX\rxOl // this function is needed to work around // a bug in IE related to element attributes function hasClass(obj) { var result = false; if (obj.getAttributeNode("class") != null) { result = obj.getAttributeNode("class").value; } return result; } function stripe(id) { // the flag we'll use to keep track of // whether the current row is odd or even var even = false; // if arguments are provided to specify the colours // of the even & odd rows, then use the them; // otherwise use the following defaults: var evenColor = arguments[1] ? arguments[1] : "#fff"; var oddColor = arguments[2] ? arguments[2] : "#eee"; // obtain a reference to the desired table // if no such table exists, abort var table = document.getElementById(id); if (! table) { return; } // by definition, tables can have more than one tbody // element, so we'll have to get the list of child // <tbody>s var tbodies = table.getElementsByTagName("tbody"); // and iterate through them... for (var h = 0; h < tbodies.length; h++) { // find all the <tr> elements... var trs = tbodies[h].getElementsByTagName("tr"); // ... and iterate through them for (var i = 0; i < trs.length; i++) { // avoid rows that have a class attribute // or backgroundColor style if (! hasClass(trs[i]) && ! trs[i].style.backgroundColor) { // get all the cells in this row... var tds = trs[i].getElementsByTagName("td"); // and iterate through them... for (var j = 0; j < tds.length; j++) { var mytd = tds[j]; // avoid cells that have a class attribute // or backgroundColor style if (! hasClass(mytd) && ! mytd.style.backgroundColor) { mytd.style.backgroundColor = even ? evenColor : oddColor; } } } // flip from odd to even, or vice-versa even = ! even; } } } _Ihttp://www.dispatch.com/wwwstatic/sites/dispatch/shared/scripts/stripe.js  Obplist00 Y$archiverX$versionT$topX$objects_NSKeyedArchiver _WebResourceResponse! )/078?KWZNS.objectsWNS.keys@ABCDEFGHIJLMNOPQRSTUV VServerTVary]Last-Modified]Accept-Ranges_Content-EncodingTDate]Cache-Control^Content-LengthZConnectionTEtag\Content-TypeVApache_Accept-Encoding_Mon, 24 Mar 2008 19:14:09 GMTUbytesTgzip_Wed, 19 Nov 2008 03:42:55 GMT[max-age=300T1099Uclose_"22dbe5-136b-44933a3e9a240"12noop6_NSMutableDictionary\NSDictionary12rss6_NSHTTPURLResponseInternal12uvvw6_NSHTTPURLResponse]NSURLResponse$)2DILbd  '3579 "$&2468:<>@BDFHJQVdr(49?]bf|xOk// // Script used by 10TV and ONN Search Forms to set the form's Action // function SetSearchParameters(sSite) { var Form = document.SearchForm; var sSearch = Form.SearchSelect.options[Form.SearchSelect.selectedIndex].value; var sKeywords = ""; var sSearchUrl; if (Form.combobox == "1") { sKeywords = Form.txtkeywords.value; if (sKeywords == 'Type here.') { sKeywords = ''; } Form.keywords.options[Form.keywords.selectedIndex].value = sKeywords; } else { sKeywords = Form.keywords.value; } //if if (Form.story) { Form.story.value = "/shared/pdSearch/BM_SearchEngine.php"; } //if switch (sSearch) { case "alive": Form.aff.value = "50"; Form.story.value = "shared/pdSearch/Search.php"; Form.action = ""; return; case "archive": Form.aff.value = "12"; Form.action = "http://search.dispatch.com/sp"; break; case "travel": Form.aff.value = "4"; //Form.action = "http://search.dispatch.com/sp"; Form.action = "/dispatch/contentbe/shared/pdSearch/BM_SearchEngine.php"; //Form.sec.value = "searchtravel"; Form.adsec.value = "searchtravel"; break; case "pets": Form.aff.value = "2"; //Form.action = "http://search.dispatch.com/sp"; Form.action = "/dispatch/contentbe/shared/pdSearch/BM_SearchEngine.php"; //Form.sec.value = "searchpets"; Form.adsec.value = "searchpets"; break; case "recipes": Form.aff.value = "41"; Form.action = "http://www.dispatchkitchen.com"; break; case "10tv": //Form.aff.value = "49"; Form.story.value = ""; Form.action = "/live/contentbe/shared/pdSearch/BM_SearchEngine.php"; break; //Form.aff.value = "49"; //Form.story.value = "shared/pdSearch/Search.php"; //Form.action = "http://www.10tv.com"; //break; case "onn": Form.aff.value = "43"; Form.story.value = "shared/pdSearch/Search.php"; Form.action = "http://www.ohionewsnow.com"; break; case "dispatch": Form.aff.value = "6"; Form.story.value = ""; Form.action = "/dispatch/contentbe/shared/pdSearch/BM_SearchEngine.php"; break; case "directory": Form.aff.value = "9"; Form.story.value = ""; Form.action = "/dispatch/contentbe/shared/pdSearch/BM_SearchEngine.php"; break; case "other": Form.action = ""; Form.sec.value = "searchnews"; Form.adsec.value = "searchnews"; break; case "test": Form.action = "http://gaffa.dispatch.org"; break; case "buckeye": Form.aff.value = "42"; Form.action = "http://www.buckeyextra.com"; break; case "health": Form.aff.value = "47"; Form.action = ""; Form.sec.value = "searchhealth"; Form.adsec.value = "searchhealth"; break; case "thisweek": Form.aff.value = "48"; Form.action = "http://www.thisweeknews.com"; break; case "cars": Form.aff.value = "46"; Form.action = ""; break; case "classifieds": Form.aff.value = "45"; Form.action = ""; break; case "pd_events": Form.story.value = "shared/pdSearch/EventCal.php"; Form.aff.value = "39"; Form.action = ""; break; case "google": Form.story.value = ""; Form.action = "http://www.google.com/search"; Form.q.value = sKeywords; break; //Calendar of Events searches default: var sStory = "search"; Form.story.value = "search"; Form.action = "http://www.dispatch.com/dispatch/contentbe/EPIC_shim.php"; switch (sSearch) { case "movies": Form.tp.value = "10"; Form.sb.value = "en"; break; case "events": Form.tp.value = ""; Form.sb.value = "en"; break; case "restaurants": sStory = "res_search"; Form.story.value = "res_search"; Form.tp.value = ""; Form.sb.value = "vn"; break; case "places": Form.tp.value = ""; Form.sb.value ="vn"; break; } //switch //Form.story.value = sStory; Form.en.value = sKeywords //Form.action = "http://www.columbusalive.com"; break; } //switch // Allow the ability to force staying in the same wrapper switch(sSite) { case 'dispatch': switch(sSearch) { case "archive": //case "pets": //case "travel": case "10tv": case "ONN": case "movies": case "events": case "restaurants": case "places": break; case "pets": case "travel": default: Form.story.value = ""; Form.action = "/dispatch/contentbe/shared/pdSearch/BM_SearchEngine.php"; break; } //switch //break; case 'external': switch(sSearch) { case "archive": //case "pets": //case "travel": case "10tv": case "ONN": case "movies": case "events": case "restaurants": case "places": break; case "pets": case "travel": default: Form.story.value = ""; Form.action = "http://www.dispatch.com/dispatch/contentbe/shared/pdSearch/BM_SearchEngine.php"; break; } //switch //break; default: break; } //switch return; } //function SetSearchParameters _Shttp://www.dispatch.com/wwwstatic/sites/dispatch/shared/pdSearch/BM_SearchEngine.js !" Obplist00 Y$archiverX$versionT$topX$objects_NSKeyedArchiver _WebResourceResponse! )/078?KWZNS.objectsWNS.keys@ABCDEFGHIJLMNOPQRSTUV VServerTVary]Last-Modified]Accept-Ranges_Content-EncodingTDate]Cache-Control^Content-LengthZConnectionTEtag\Content-TypeVApache_Accept-Encoding_Fri, 14 Sep 2007 12:25:45 GMTUbytesTgzip_Wed, 19 Nov 2008 03:36:59 GMT[max-age=300T2237Uclose_"8b2-14e4-43a178dd44440"-gzip12noop6_NSMutableDictionary\NSDictionary12rss6_NSHTTPURLResponseInternal12uvvw6_NSHTTPURLResponse]NSURLResponse$)2DILbd  '3579   %')+-/13579;=DIWex}',2RW[q~xO var subcat; //------------------------- // Extracts the values from the url //------------------------- function getValues() { var urlEnd = document.URL.indexOf('?'); var values = new Array(); var names; if (urlEnd != -1) { var params = document.URL.substring(urlEnd+1, document.URL.length).split('&'); for(i=0; i?KWZNS.objectsWNS.keys@ABCDEFGHIJLMNOPQRSTUV VServerTVary]Last-Modified]Accept-Ranges_Content-EncodingTDate]Cache-Control^Content-LengthZConnectionTEtag\Content-TypeVApache_Accept-Encoding_Wed, 16 Apr 2008 16:48:36 GMTUbytesTgzip_Wed, 19 Nov 2008 03:41:46 GMT[max-age=300T1355Uclose_"2e7590-a5e-44b0049bc4100"-gzip12noop6_NSMutableDictionary\NSDictionary12rss6_NSHTTPURLResponseInternal12uvvw6_NSHTTPURLResponse]NSURLResponse$)2DILbd  '3579  "$&(*,.:<>@BDFHJLNPRY^lz 0<AGinrxO ^// script.aculo.us scriptaculous.js v1.8.1, Thu Jan 03 22:07:12 -0500 2008 // Copyright (c) 2005-2007 Thomas Fuchs (http://script.aculo.us, http://mir.aculo.us) // // Permission is hereby granted, free of charge, to any person obtaining // a copy of this software and associated documentation files (the // "Software"), to deal in the Software without restriction, including // without limitation the rights to use, copy, modify, merge, publish, // distribute, sublicense, and/or sell copies of the Software, and to // permit persons to whom the Software is furnished to do so, subject to // the following conditions: // // The above copyright notice and this permission notice shall be // included in all copies or substantial portions of the Software. // // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. // // For details, see the script.aculo.us web site: http://script.aculo.us/ var Scriptaculous = { Version: '1.8.1', require: function(libraryName) { // inserting via DOM fails in Safari 2.0, so brute force approach document.write('\n'); } if (position == 'x05') { document.write (''); } if (position == 'x04') { document.write (''); } if (position == 'Position1') { document.write (' \n'); document.write (' \n'); document.write (' \n'); } if (position == 'x01') { document.write ('\n'); document.write ('\n'); document.write ('\n'); document.write ('\n'); } if (position == 'Bottom') { document.write (' \n'); document.write (' \n'); document.write (' \n'); } if (position == 'x10') { document.write (''); } } _whttp://adsrv.dispatch.com/RealMedia/ads/adstream_mjx.ads/www.dispatch.com/local_news/1270055060@Position3,Top,x05,x04,Position1,x01,Bottom,x10??hpnewslead,%20pos1,%20DNF,%20Metro_State,%20Page_1,%20No%20Headline%20Identified,%20Monique%20Curet%20and%20Doug%20HaddixXE&src=dispatch&story=/live/content/local_news/stories/2007/06/17/Farmcash.ART_ART_06-17-07_A1_0V70K8Q.html&XE 4567Obplist00 Y$archiverX$versionT$topX$objects_NSKeyedArchiver _WebResourceResponse )/0788 #A)#A5H~*+!-.WNS.base[NS.relative_ohttp://imagec05.247realmedia.com/RealMedia/ads/Creatives/CDispatch/DP_House_775_ads/gasbuddy_775.gif/11806124961234X$classesZ$classname456UNSURLV%NSURLXNSObjectYimage/gif9:;=>?ISZNS.objectsWNS.keys@ABCDEFGHJKLMNOPQR VServer]Last-Modified]Accept-RangesZConnectionTDate^Content-LengthTEtag\Content-TypeSP3p_Apache/2.0.52 (Red Hat)_Thu, 31 May 2007 11:54:56 GMTUbytesZkeep-alive_Wed, 19 Nov 2008 03:42:35 GMTU14345_"d094c1-3809-c4710400"_GCP="NON NID PSAa PSDa OUR IND UNI COM NAV STA",policyref="/w3c/p3p.xml"12fggh6_NSMutableDictionary\NSDictionary12jkk6_NSHTTPURLResponseInternal12mnno6_NSHTTPURLResponse]NSURLResponse$)2DILbd #/135 !#%'13579;=?ACELZhsx'qvzpO8 GIF89a޲޽ޯߌ׽صֵާŽДֵ֥֭Δ㽿ťΜֵĸεÌݜΔޔέŔńޡǭvᔵƥʥԄŜ{ՓBm{Ŕ{–ssΌsȌkkccTʁ|Zs[vhRRhsws}SJhBnr{Ba{Bow<:Tzkssp1~_c[rRR1{1{kkNq){`lRlZ_)sFkkcg!s!s]c{JJLc\`sO`{Z{cRRk1X}ckJJ.1ccJRJOh11=Pp1Rp1B'SyBJN>Gc$,Im&#JrNw:>Z1A_:bZ)1 :k1155c#1R:d*-F5c 3Y/Tv1^)I_ )T )J)R)[ "4!C !G R!S!JZ /G gBD:J :! 1&:B1 & )1 :!)! NETSCAPE2.0!,,_H*\ȰÇ#JH"W3jȱǏ CIɓ(S\ɲ˗0cʜI͕ɳg:Iѝ  `SJzX$uŠ@섳h/]Vmp3|KݻxO5/A81j(aq#ArF2#̙3Ϡ,Yt*S.cC6۸mwo5j>\q9q+Hi]3?ҧľAɟOGO?Û(htQ ,(QJ-SL5UUYaUW_5VYdV[(]u^'`b-Ƙc6HYeaYghj&[lنmq)sЅ9uaݙ&ygz|W~矀*)8aO ((O2uSJaZ}W`%8)(^2E`bob"\X 0>1/@!qPR-$+pe.We6ЀBI v^j-yGw|Ew>P !&䇢\ "QHt4S'Otb(5o|IbpڄYzbwHA <(p\I;[.'*<0#T!Nr Wץ8g Ik45N6K(pNZL$ɯ,.857N[& * @t 4Xh`@Xh$Гb2p/X `*Ќu R\@|>etmDiB`+l r32bN<ƺA+&K܍iV3 Mx[-ZQzf'`nDQ`D NA'&`EJ KԠK̈%0j0MDR܉FD1Obd5W8C{1Qvhpah6KU8b_advam/f+` sQF~hO4<¥0 1"z;,#ENrf"ʓ MxI6a JDPLbn*NO܀mP$*<P0R<x `/SJJh =xآs E-zKP|l@6VQ _@×@x`"*r\b ^`t& L5zݧ460`P*<:JSX7]Uq*kaz֓ m~N.X:A^a R`b#G].% 0`Q/` i^MPMA 80$` P а P\ H, %P0Hga  8 ` apsq8ڰp pO\Ű i0 À` `à&FAkO@ ԰ 0=i` Ʌ )@L0 6 a/ kN]I,7^e}A}4ry;p:1yu *''H~ VL$aPQpXUm@LofWsEN&mҔrֆT9aF`OLx+XmcYnoeuu[EɄ66hakr;Mk_W%ǃiC֖ 6ߴqN`fq! p @ P @@ pu I!zZZ v_BаRP puᰇ0dUFHn0 P0@ @x y0 `xPv۠p `0 0PȌ##䩍Ő\xk/O 0?P @ ÐH& Yр1L`i ԰s0 PQp@JFI4赑isk:!."aj0y H0aU$9`We ab.aPmĄlba$tb7T OYH'qb:o.hfei֩X8 GD}'vW}I4W @C'&ffDaVb۴䘂Nz XpEN+ Q?ٔ5a6<J  Z o3tR h !k0۠ p an  0Ljl8@ ps`zxP \a0*PŰ0*0 ` ˆwƀ0 *` 0zC `  Zv #k 0 HРn 0pH`W 0: Kpa 0zT*%VF}[*K⥶&ad>_0mm:qHY#k4B+T/4 F` RW.(tMn ZCbGaeD`J.˂+(Djśq$MBjrq" &WB%qnScX P p?0Y Z _  ƨv v4LQ1$$  S1'pVA 0f  I u02 %xW0@ fk xI3% hPJ? ¹ C 2 e)P@0p@@1`v/p2zؠ `&J61pn6@@ 8nPPFP`P:%XJƥ'IÑ`4rp:[@d=WG7`{ZdW DʴsdnELZ9o$8˛qDY>N[b46ûLW MJBX 1Pcp (Ӡ;o/;A@%|_P0:tPBD,80 3Y[pL ̰ $ !+e _(P C I,"4@@Ǐ U' $)9m} P'1 W&qn?`h0«) {1P&PuAPALPVТ14-ω Ā$`8 , % @||S,B 0Dyo} h'  +P`++a8pP? JH%P Be` p LP50 ~Q80HUl%{Ё40qj;&!Μ1~VL!riECt+髊DYmAD'G="ն bqbL$@NO@tf)o.C ? / G@`PF >p@ =q<S  *nj( XB^<Pw])$ @ P@pG@'xPs GР( $8s p ɖp&_  8]1 l0  |&a6PBUP:Ҁ%S}ҞԞdBU-<:jj  ̀5)D=|8CA&R˜D{^}|#F>.*ᕥ5>2PKD,$H?k~p'E9)d v|ճ&ςQ>.Hԝ]_E慛j4`~)K;Es/}> 1R\G* YJމxAZ}\4j\[[E9()[nFO>sLjut A 0Z%N`}( 78eԁ 8yAञz@`#gx L  8"yaU|&ct:` TXY&0 R}҄j u!zHgمL,1@HfQvg p*(Axy*pop K/ M5%SO5T3FU 5@5T`U8^;ip˭}j(5I`{0 Q"'83!]}'7,KR*1ycW|@*`>A08!!P_>o%,v  #yH\fXK}d 8%p-H@ c>R10y!;TF$ . mfb*чz) 6>`.Ay 12&XD@avs~}+ |ˆHoC0Tb L;^g(A0eMqS HeSʄr^%+[0W╯5AˆRŐL ó2X &0x[*rrm 2 \f 2[DaD5]PP ^f@±P!gVf #%- ̀DA_bK']SDQD >@Geo|VFveiY#*A;Y>IVzt >6ӄa Y (  (3Ohga.}Û?-Bp>HG |G:Q y; X.r @jc;&vT&@"}C<~pgDϘ'  zc QPv }Ѓ>  9!z|)/A#J1(3>|"lP gCjPn?$ r A(Y?AA0p2[ ;A #$LVp-tav_PX6<<Vj-aX8='>$Vb,pBeBꅛgZdFmj'ZfVHmsň{mޅ!HG0mrFwݛf@88p#S&\ } ,IAlP#TZ ڊ|D ,a 1`A&T@<Pa 43Xu-^1앰ME>lgVy[lgd77bC]7χ~_ CЁP <@~Np"nا?Bn9+'_@1T_2 2 1 C p@̀@8+"a:H @{"&0/ ˻0A0&`Nj%( G-@,W 05ӫ5JZ5͂Β=ګ=c=ޛߣۭ⓾180%2T5d6.8;4 >?[ AE @?DB?KDdFT@H4@IDKMN|PRSTUlEWXYA[ B\E $$F&F'(4cBeBegFj#jƙɚɛ&o0ǠtCudDA3yTz |G[~t" ĂQ$RT/aȻbE#ȈAZȋE"O$5\XI#`dBdBg|F CltDŽ5IL#3ʣLw$ĦzGJJ JʯKDȲ\Hlȴ\˶jKZ*Q!L],_<,,Fc+fcɖ|I06ƌ$4DTtO !,, H*\8ѣJD8jTXiDǏ CIɓ(S\ɲ˗0cʜIfȉ8s4!ć&XcF \ʴӧPJJЫX3hքE1"MJٳhӪ]˖@.'$L8ehH#­\!`GLR L(.QĐ!Wκf24Vb3 zcb 5DҥA)_vTJG'v!EF:Fa>,9SS.J/<{c_@B:ݕW|V Tq!r*wPEtHQ'} r~XS{Ruf0Tj0zO vH@F[DmTQ[UxfF` TE 5Ta@e`gA Q?\ l@#FxrT0OHYsЁGH %X"Eabh+qt&JGVjb f\x**ff)fuMJ -X Grƅְ ڰxY,b%lqdkz^Gr쫡j@V?~&"Fc dke,qi-]k ǪfZDl 4d]-mU@'ml ?y' FFl&& slALbli\l[`(H8p !R+]8bG/bvdpx~܍s| -*~5`uOMkٲ7Av{?i<@`>xH,kzll2dwUw,mK-Pْݞ@{C"d[|T@4lVC0~HFG"|h l"D&r,3y@x#&Dh)bS dMhZV%!$} 26p-B6;qpE C3WԭTl?DlɆt؎gDo<饸so[s>^M VCդczcsqIH|XG? q|2?&%Jsm 7?(M' w5] ؋MU={FpbG-@#a'RD!Q, Kh 3?5 \(Cv $ h ;P Sm Yl.a ŦgK@rֱM\b]T4A^2@Wk&.J.,#)eֱM>9U=gz((ک["QpQC q;&^zy)3ˆaUEfF{[(Ab)uzO P9#F F?W#@X@Vr5󙶁$A7b͚,6A7^iA(AMö L-@B@1A{PFmhӉ2:]_[JoA*[9E~E9]xQm!RJģ ƍ>*ܬ @ ` D~ *!6 ; "1H A`BA ,s s/<#(n|O5AL$3L"yCUU.x_MHY*9Q; BA t|/Sk (jtS(f, UҘ3#GGwGuWeg`u}FDX "r{bTQ  dP>kkg$1M]c҂c~cJx\1>4d5B! 0'` 7nP#]vevDz8;WT7==)3HGW;92dqC^g^0c=|8g' 3~HobQ)#KӈT>S=T86:Dz7AKvVUDu02kHLh=VX63eQ QU \@N`%zB@ 0Pp( y@:0(WP!a. (Mwhr:5Eh//c+:И(1$+/%29 #cFّ $Y(*,ْq.29!,, ըiC`A9YN#>Cq?2ıGBɨdG(SNZP#0aD͛ )gQ@S MŪѣ^)]ʴӧPJJ(Q,Uz5֩~J٥f9˶۷p 4H7B J["FIɔ(Ylc]y3Nc>E5(Rq͚`$tY?׺E nLٸs:x[ƍ=iĊHD)ʹTfA~;塚`]N_>jq5D}Xr-Ga=$ҵa%@! T$ d HTHx5 QpHTq`5#Sh{J]ģ%~fH \VEM{T7FiR~\@ #JLߐ\J^Xh*uO^d]iX>.%%KVdkJIRNBɔqٔ;2g|e+~ 8` *Hs >ᄗ %pB a6c?p6ȳQT(9FkcZdzX.kӳ&QEcyl yl$ kBzeƅ\VCka$JZ2x]~ \%ieY~pӕ~ ::Vm~q 4Ӯm=>H範aZH ^l5mI*q~y5#뮋X{ݶqNj]SËT $עj-йd`L<%1TM4^ J8t1.Kw EalgM]GkB lwSJm)h8l>lor=-Pc|Wƀ1(H *л!RD)~[%A`%Mj<ek31[w@6ae'aBa lkUkSlj]33gp*c!)dJ0@rˑ=3:ʸM[mI6d(u t4mv>QoZVI l4 h6I|' D&8ԡb$ʰ49razcVFʤk_qeXST!Ň9߼2/ښfbM\XυrzA{R#Xi8SH L#JpR`s$&FyHxEadCI+HAJ Ѐj2Ccѓ0aEQTv%0Е|Qyۈ+E)4drQwcLNI+$}_,?EbѥQ)*J8Um5fl0k*KEaYjVA?j#y+I$+:P2 SF6 `B,qaa`"G֘VR12x iN%&خs)DQ DAzزlMؒ6P/,(^Ʋ  yͅWU3 ssOmb/xZR'SA+K~E!&˾6D6΀] CQaM>%^3Txǃ]`3oeP.TyG8]`N k4ulnb^'鐾]Q2Kጶ|EZԩvlf9b+{,P혻'Pf~U2FQY,#dE])JqtoT)tfR,-`dͣ no7M[MJmqXOcYu]1 gB'&wMM[<12\)Rݬ%Ws#QHy9q~Jb.3DgrSɻY'ĒbO;};_ohttp://imagec05.247realmedia.com/RealMedia/ads/Creatives/CDispatch/DP_House_775_ads/gasbuddy_775.gif/1180612496Yimage/gif 9:;7Obplist00 Y$archiverX$versionT$topX$objects_NSKeyedArchiver _WebResourceResponse )/078?ISZNS.objectsWNS.keys@ABCDEFGHJKLMNOPQR VServer]Last-Modified]Accept-RangesZConnectionTDate^Content-LengthTEtag\Content-TypeSP3p_Apache/2.0.52 (Red Hat)_Mon, 17 Nov 2008 20:55:15 GMTUbytesZkeep-alive_Wed, 19 Nov 2008 03:41:24 GMTT4303_"b90002-10cf-cbb4b2c0"_GCP="NON NID PSAa PSDa OUR IND UNI COM NAV STA",policyref="/w3c/p3p.xml"12fggh6_NSMutableDictionary\NSDictionary12jkk6_NSHTTPURLResponseInternal12mnno6_NSHTTPURLResponse]NSURLResponse$)2DILbd #/135 )+-/13579;EGIKMOQSUWY`n|!:pOGIF89a66 qPee٭II҆QQgef*!gXXYMMM877Ӛs { 紴R0/ܫ{yzlją铅lPPTHժwna22ڻږ**䱱##k<<ᨪ򦐒xx%%&t ڷVV{ 6,--ӎG< %AA66!!BAB 𘧮g[߻rrՋvv ~ў;%#JDDzkk륦̕xȓoo?EIkkȎ00ONOٟf77#334 ݎ?5mlnqx|rqs`^_^^uj෸JHIޯ.,-h**u55|--ٷ-#RQR^Wm77?>>!,UT8@AܸXȰÇ#J((ŋ-^ؘǏ C`DUDzK.1IMrɳgLy>/JHG(]DZTDĴիjʵׯ 0FkZ+B -&YZVݻx˷^Ltþ)kR<"KrT73G)DrB6At-S^ 29+ )  7ǂG\9A?>M^ŋoh z~r>Oߥ?7ƀclAlD2Q"=DZ̥pb!<fQ\aPvPśF`XO=@*& 3Pmߓ !38y1nL`"̐`9aRiiK[*6N p!r4UhD#(0#-@)8d i8Ѕ0B&~6ZE՗+-Jd<,%Sy,l?8 Ѐ6 b3TV7X hJF2z3P*>p@ YhaW$D!$PJX Y5lÜd@9Zp k(=-4 l!'pt`LU#HDWȸ/a|$2R!Ȁ1Όh3Āƈ4E ," rHb7<+(`HEȢ'lw@e@2(&(`ha(:XM ^7ؾofz,d o@ɨ4v[Lt i" ЬUXhK{Z+U <drp!H!Ǡ=64A ed#hB P DA ߠ-hP:"` [॔"&BC>'͜dzR=@\UDiZՍHr\4P#N܀>O41aqBF9P[T(D]VҷئhA(s#;eVL^ʇU  T[ +<cmά/`RFlIpR? b*p#(C  . 6 PHxt14h4 B1|y0fקq,hFB ͮ,H(%4f*AiIngvB RP3ZUIl7Hz o+`` b 8c[ !tTwx40qːF r @7mls6]S) `Z\fA I'z#$+ސ8`xG iG71o(BX3qkTQƷõ {X] \ Ơծ]#֊r~hrc.TJxwKӪ壭c?1Bu ?0K ` 6@0e ! *`00ˠ0 @n6 )>Rr"}:58R),xrlpfkv Pƴ02gs} { xΰ {wg&Q BYǂ1x>:]R<`]9rfx}]x[ w@V  %eK݀mxFVc0  ͐Ѕ* `s e&otwTT{d8Qq|ׁ ؇%\X!~\0-Mx!0{ [<[ x0!&&@s* * G YBh&-ȠGz ) !@ `uP}hX؄H@h&c2c r[0 20f͂rGY #0&銰*D CP&* ,R" D Ƞ * MDǖ)P t e @菪GA9)abrGrA Q p [P B! @ 2 y*8 8 *Ȱ BEm PZ !0cR o8IQ a@V) 1ɞYRy!Y*@$E*@6 , $$@R* L0Z*pVyI I5J 2J9ɟc8h ;cɠ ʠ PÐÀy{$0 ++ mà *@$T+/:C:tZvrJst8Nt"Zz*+/:Wz3* WjQ`:Zzz*Zzګ*Pzj݀ Pzؚںڭ -0DPz蚮* ڮN0ZzZ?` ;_http://imagec05.247realmedia.com/RealMedia/ads/Creatives/CDispatch/DP_RosatiWindows_search_HP30_08/3_rosati_logo_ad2.gif/1226955315 =>? O{bplist00 Y$archiverX$versionT$topX$objects_NSKeyedArchiver _WebResourceResponse (./67;UVWXYZ[\]^_\`abcde6fgknU$null  !"#$%&%'R$6S$10R$2S$13R$7R$3S$11R$8R$4S$14R$9R$0V$classR$5S$12R$1#AQS#A1@5)*!,-WNS.base[NS.relative_ehttp://oascentral.admission.net/RealMedia/ads/adstream_jx.ads/www.dispatch.com/TopJobs/1815407979@x010123X$classesZ$classname345UNSURLV%NSURLXNSObject_application/x-javascript89:<=>ITZNS.objectsWNS.keys?@ABCDEFGHJKLMNOPQRS VServerZConnectionTDateZSet-Cookie^Content-LengthWExpiresVPragmaZKeep-Alive\Content-TypeSP3p_Apache/2.0.52 (Red Hat)_Wed, 19 Nov 2008 03:42:36 GMT_OAX=GF9LykkjiywAAAxU; expires=Thu, 31-Dec-2020 23:59:59 GMT; path=/; domain=.admission.net, NSC_f3dfo6efm_Qppm_iuuq=441147343660;path=/T1694_Tue, 25 Apr 1995 09:30:27 -0700Xno-cache_timeout=15, max=9939_GCP="NON NID PSAa PSDa OUR IND UNI COM NAV STA",policyref="/w3c/p3p.xml"01hiij5_NSMutableDictionary\NSDictionary01lmm5_NSHTTPURLResponseInternal01oppq5_NSHTTPURLResponse]NSURLResponse$)2DILbd   (*,.  "$&(*579;=?ACEGIKR]bm|kp(-0LQUirwOdocument.write ('\n'); document.write (''); _ehttp://oascentral.admission.net/RealMedia/ads/adstream_jx.ads/www.dispatch.com/TopJobs/1815407979@x01 ABCDO ubplist00 Y$archiverX$versionT$topX$objects_NSKeyedArchiver _WebResourceResponse% )/078<\]^_`abcdefghijklmnopqr7stuy|U$null  !"#$%&'(R$6S$10R$2S$13R$7R$3S$11R$8R$4S$14R$9R$0V$classR$5S$12R$1#A47#AS@Հ$#ALS@Հ*+!-.WNS.base[NS.relative_Phttp://view.admission.net/admission/spotlight/js/spotlight.js?pa=columbusspotlights&classification=topjobs¶ms=detaillink%2Cjobtitle%2Cemployer&layout=rf:columbusspotlights:ldr_columbus.swf&spotw=728&spoth=90&brandingboximg1=http%3A%2F%2Fview.admission.net%2Fabc%2Fassets%2Fcolumbusspotlights%2Fmr-ldr_columbus_monster_logo.jpg&brandingboximg1url=http%3A%2F%2Fautos.admission.net%2Fredir.php%3Fdesturl%3Dhttp%3A%2F%2Fwww.columbusjobs.com&link1url=http%3A%2F%2Fautos.admission.net%2Fredir.php%3Fdesturl%3Dhttp%3A%2F%2Fwww.columbusjobs.com%2Fmonster&link2url=http%3A%2F%2Fautos.admission.net%2Fredir.php%3Fdesturl%3Dhttp%3A%2F%2Fmy.columbusjobs.monster.com%2Fresume%2Flistresumes.aspx&bannerid=AdMission/TopJobs_022108_Columbus-TopJobs_022108_Columbus728x90&trackingid=www.dispatch.com/TopJobs/L24&campaignid=AdMission/TopJobs_022108_Columbus&resellerid=ColumbusDispatch&trackingredirecturl=http://oascentral.admission.net/RealMedia/ads/click_lx.ads/www.dispatch.com/TopJobs/L24/123/x01/AdMission/TopJobs_022108_Columbus/TopJobs_022108_Columbus728x90.html/4746394c796b6b6a6979774141417855%3F_RM_ACTION_=1234X$classesZ$classname456UNSURLV%NSURLXNSObject_application/javascript9:;#=>?M[ZNS.objectsWNS.keys@ABCDEFGHIJKL !NOPQRSTUVWXYZ "VServerTVary]Last-Modified]Cache-Control_Content-EncodingTDate^Content-LengthWExpiresZConnectionWX-Cache\Content-TypeSVia^X-Cache-LookupVApache_Accept-Encoding,User-Agent_Tue, 04 Nov 2008 01:30:47 GMTVpublicTgzip_Wed, 19 Nov 2008 03:42:39 GMTT2802_Wed, 19 Nov 2008 03:47:39 GMTZkeep-alive_MISS from cache01.gc_&1.0 cache01.gc:80 (squid/2.6.STABLE13)_MISS from cache01.gc:8012vwwx6_NSMutableDictionary\NSDictionary12z{{6_NSHTTPURLResponseInternal12}~~6_NSHTTPURLResponse]NSURLResponse$)2DILbd#+79;= "$&(*,:<>@BDFHJLNPRTV]bp~$+0PUu */3GUO var spQStr = {"link1url": "http://autos.admission.net/redir.php?desturl=http://www.columbusjobs.com/monster","bannerid": "AdMission/TopJobs_022108_Columbus-TopJobs_022108_Columbus728x90","link2url": "http://autos.admission.net/redir.php?desturl=http://my.columbusjobs.monster.com/resume/listresumes.aspx","spotw": 728,"pa": "columbusspotlights","params": "detaillink,jobtitle,employer","layout": "rf:columbusspotlights:ldr_columbus.swf","resellerid": "ColumbusDispatch","trackingredirecturl": "http://oascentral.admission.net/RealMedia/ads/click_lx.ads/www.dispatch.com/TopJobs/L24/123/x01/AdMission/TopJobs_022108_Columbus/TopJobs_022108_Columbus728x90.html/4746394c796b6b6a6979774141417855?_RM_ACTION_=","campaignid": "AdMission/TopJobs_022108_Columbus","trackingid": "www.dispatch.com/TopJobs/L24","spoth": 90,"classification": "topjobs","brandingboximg1": "http://view.admission.net/abc/assets/columbusspotlights/mr-ldr_columbus_monster_logo.jpg","brandingboximg1url": "http://autos.admission.net/redir.php?desturl=http://www.columbusjobs.com"}; var now = new Date(); var uid = now.getTime(); var spotlightID = "spotlight" + uid; var extParams; var gDebugLevel = 0; eval('function onError'+uid+'(msg) { if ("" == "1") alert("Error: "+msg); }'); function PBObj(){ ua = navigator.userAgent; this.bWin = !!ua.match(/win/i); this.bMac = !!ua.match(/mac/i); this.bIE4 = !!ua.match(/msie\s+4\./i); this.bIE5 = !!ua.match(/msie\s+5\./i); this.bIE6 = !!ua.match(/msie\s+6\./i); this.bIE7 = !!ua.match(/msie\s+7\./i); this.bIE4plus = (this.bIE4 || this.bIE5 || this.bIE6 || this.bIE7); this.bNS4 = !!document.layers; this.bNS7 = !!ua.match(/netscape\/7/i); this.bMOZ = (!!ua.match(/gecko/i) && !this.bNS7 && !this.bIE4plus); this.bSaf = !!ua.match(/safari/i); } gPB=new PBObj(); function getDOMBox(obj) { if (!obj) obj = this; var box = { l: obj.offsetLeft, t: obj.offsetTop, w: obj.width || obj.offsetWidth, h: obj.height || obj.offsetHeight }; var p = obj.offsetParent; while (p) { box.l += p.offsetLeft; box.t += p.offsetTop; p = p.offsetParent; } return box; } function plusEncode(str) { return escape(str.replace(/\+/g,"%2B")).replace(/%25/g,"%"); } function loadScript(doc, url) { var now = new Date(); url += (url.indexOf("?") == -1) ? "?" : "&"; url += "dt="+now.getTime(); var scr = doc.createElement('script'); scr.id = 'rs'+now.getTime(); scr.setAttribute('type','text/javascript'); scr.setAttribute('src',url); // Gotcha: set attribute and src BEFORE appending, or Safari won't work var el = doc.getElementsByTagName('head')[0]; if (!el) el = doc.getElementsByTagName('body')[0]; // if no head section, append to body var scrObj = doc.getElementById(scr.id); if (scrObj) { scrObj.parentNode.removeChild( scrObj ); } el.appendChild(scr); } function VWLoader(uid) { this.uid = uid; } VWLoader.prototype.showViewer = function(cmdStr) { var vwjs = document.location.protocol + "//" + "apps.admission.net"+"/admission/spotlight/js/viewerwrapper.js"; var qs = "?uid="+this.uid+"&pa=columbusspotlights&spQStr="+escape("link1url=http%3A%2F%2Fautos.admission.net%2Fredir.php%3Fdesturl%3Dhttp%3A%2F%2Fwww.columbusjobs.com%2Fmonster&bannerid=AdMission%2FTopJobs_022108_Columbus-TopJobs_022108_Columbus728x90&link2url=http%3A%2F%2Fautos.admission.net%2Fredir.php%3Fdesturl%3Dhttp%3A%2F%2Fmy.columbusjobs.monster.com%2Fresume%2Flistresumes.aspx&spotw=728&pa=columbusspotlights¶ms=detaillink%2Cjobtitle%2Cemployer&layout=rf%3Acolumbusspotlights%3Aldr_columbus.swf&resellerid=ColumbusDispatch&trackingredirecturl=http%3A%2F%2Foascentral.admission.net%2FRealMedia%2Fads%2Fclick_lx.ads%2Fwww.dispatch.com%2FTopJobs%2FL24%2F123%2Fx01%2FAdMission%2FTopJobs_022108_Columbus%2FTopJobs_022108_Columbus728x90.html%2F4746394c796b6b6a6979774141417855%3F_RM_ACTION_%3D&campaignid=AdMission%2FTopJobs_022108_Columbus&trackingid=www.dispatch.com%2FTopJobs%2FL24&spoth=90&classification=topjobs&brandingboximg1=http%3A%2F%2Fview.admission.net%2Fabc%2Fassets%2Fcolumbusspotlights%2Fmr-ldr_columbus_monster_logo.jpg&brandingboximg1url=http%3A%2F%2Fautos.admission.net%2Fredir.php%3Fdesturl%3Dhttp%3A%2F%2Fwww.columbusjobs.com&")+"&autoOffset=1&viewerOffsetX=728&viewerOffsetY=90&viewerframe="; try { var m = top.document.location.href.match(/[\&\?]gdebuglevel\=(\d+)/); if (m && (typeof m[1] != 'undefined')) qs += "&gdebuglevel="+m[1]; } catch (e){} loadScript(document, vwjs+qs+"&cmdStr="+escape(cmdStr)+"&ondemand=1"); } eval('var vwLoader'+uid+' = new VWLoader(uid)'); eval('var showViewer'+uid+' = new Function("vwLoader'+uid+'.showViewer(arguments[0]);")'); var spVars = 'uniqueid='+uid; if (gDebugLevel > 0) spVars += '&gdebuglevel='+gDebugLevel; try { var m = top.document.location.href.match(/[\&\?]gdebuglevel\=(\d+)/); if (m && (typeof m[1] != 'undefined')) { gDebugLevel = m[1]; spVars += '&gdebuglevel=' + gDebugLevel; } } catch (e){} if ('' != '') spVars += "&referredirurl="+escape(""); spVars += '&adserverurl=http://apps.admission.net&adservercacheurl=http://view.admission.net&ipixdomain=view.admission.net&pagedomain='+document.location.hostname+'&pageurl=' + plusEncode(document.URL)+'&moviebaseuri=http://view.admission.net/admission/spotlight/&spotlightparams='; var spotparms = ""; for (var key in spQStr) { if ((typeof extParams == 'undefined') || (typeof extParams[key] == 'undefined')) spotparms += key + "=" + spQStr[key] + "^"; } if(typeof extParams != 'undefined') { for (key in extParams) { if(extParams[key] != "") spotparms += key+"="+extParams[key]+"^"; } } spotparms += 'videoplayer=http://view.admission.net/admission/spotlight/simplevideoplayer.swf^spotlight=1'; spVars += plusEncode(escape(spotparms)); var movieURL = "http://view.admission.net/rimfire/resource?application=spotlight&partner=columbusspotlights&file=rf:columbusspotlights:ldr_columbus.swf"; var swfTag = '
'+ '
'; if (navigator.plugins && navigator.mimeTypes && navigator.mimeTypes.length) // mozilla plugin architecture { swfTag += ''; } else { swfTag += '' + '' + '' + '' + ' ' + '' + '' + '' + ''; } document.write(swfTag+'
'); delete spQStr;_Phttp://view.admission.net/admission/spotlight/js/spotlight.js?pa=columbusspotlights&classification=topjobs¶ms=detaillink%2Cjobtitle%2Cemployer&layout=rf:columbusspotlights:ldr_columbus.swf&spotw=728&spoth=90&brandingboximg1=http%3A%2F%2Fview.admission.net%2Fabc%2Fassets%2Fcolumbusspotlights%2Fmr-ldr_columbus_monster_logo.jpg&brandingboximg1url=http%3A%2F%2Fautos.admission.net%2Fredir.php%3Fdesturl%3Dhttp%3A%2F%2Fwww.columbusjobs.com&link1url=http%3A%2F%2Fautos.admission.net%2Fredir.php%3Fdesturl%3Dhttp%3A%2F%2Fwww.columbusjobs.com%2Fmonster&link2url=http%3A%2F%2Fautos.admission.net%2Fredir.php%3Fdesturl%3Dhttp%3A%2F%2Fmy.columbusjobs.monster.com%2Fresume%2Flistresumes.aspx&bannerid=AdMission/TopJobs_022108_Columbus-TopJobs_022108_Columbus728x90&trackingid=www.dispatch.com/TopJobs/L24&campaignid=AdMission/TopJobs_022108_Columbus&resellerid=ColumbusDispatch&trackingredirecturl=http://oascentral.admission.net/RealMedia/ads/click_lx.ads/www.dispatch.com/TopJobs/L24/123/x01/AdMission/TopJobs_022108_Columbus/TopJobs_022108_Columbus728x90.html/4746394c796b6b6a6979774141417855%3F_RM_ACTION_=_application/javascript FGH7Obplist00 Y$archiverX$versionT$topX$objects_NSKeyedArchiver _WebResourceResponse )/078?ISZNS.objectsWNS.keys@ABCDEFGHJKLMNOPQR VServer]Last-Modified]Accept-RangesZConnectionTDate^Content-LengthTEtag\Content-TypeSP3p_Apache/2.0.52 (Red Hat)_Thu, 04 Sep 2008 16:02:36 GMTUbytesZkeep-alive_Wed, 19 Nov 2008 03:41:25 GMTR43_"e4c006-2b-14d9df00"_GCP="NON NID PSAa PSDa OUR IND UNI COM NAV STA",policyref="/w3c/p3p.xml"12fggh6_NSMutableDictionary\NSDictionary12jkk6_NSHTTPURLResponseInternal12mnno6_NSHTTPURLResponse]NSURLResponse$)2DILbd".024 !(6DOTchuyHMQgty|pO+GIF89a!,D;_Lhttp://imagec05.247realmedia.com/RealMedia/ads/Creatives/default/empty.gif/0 JKLMObplist00 Y$archiverX$versionT$topX$objects_NSKeyedArchiver _WebResourceResponse )/078?ISZNS.objectsWNS.keys@ABCDEFGHJKLMNOPQR VServer]Last-Modified]Accept-Ranges]Cache-ControlTDate^Content-LengthZConnectionTEtag\Content-TypeVApache_Sun, 17 Jun 2007 09:45:00 GMTUbytes[max-age=300_Wed, 19 Nov 2008 03:37:49 GMTT7010Uclose_"20af2b-1b62-43316ef10df00"12fggh6_NSMutableDictionary\NSDictionary12jkk6_NSHTTPURLResponseInternal12mnno6_NSHTTPURLResponse]NSURLResponse$)2DILbd #/135   %')+-/13579@N\jo~"&<INQmrvpObJFIFddDuckyAdobed   #%'%#//33//@@@@@@@@@@@@@@@&&0##0+.'''.+550055@@?@@@@@@@@@@@@_"!1A"Qa2q#BRb3CSr4!1AQaq"2R3 ?{8y֚d (P2yY^$yb-;㷮-_$jUGY2:"@RBP㶽OrV 5D -+x ->)"v46@䶥k]B9i2jҧmisF㥪MvO *uc^`d^DPEƊ׆,jM`& [džXG^if_:9դx$%Y W]W"yb ر}@ôzSOtM|8r ^Z/!GǍqi5ԺMiMeD EѸO=KyGFKn VG>2䴗DUxUβGzV^nԱDA;s?{LXhYA h\ˉkFQR‹k#Z\5d$.NXO WCZmx)yQɻԏx$YE9:i#62(9&iᠲ#' ==4O-,٘4U*kFm&:#8OyYr,1(@,HhN7X!qTT l9 g8yxrW"9+ҁ}@ɞR\> e/?s1@Is &yH֧f?V,X&c,b@:҄pt6kW E&@ISw?Xd6囕6:I `Q-FǀdhXQɖIe-u_%wiI>uv!n=:<0IWh!]Zj3yrH,y; 'wj/"GPO gj ^:2xYeɿ:~4йQH2Hf Ekˏ["7ZL92B* X6×W㤏&VFj;U4´j)w 8s} ѮB+FaBZiD^|,LH牯-PZѩu)+)Uo P+pKFF+ D Ev6@\ o(KқuRMg+%**Fv}j&i{3"v?M}j)hδM8Šb.\jb< }6m RL,dtDBԊT@5-dA@ w:-qFTu]:읰ocXȝP%Y,ԒX75NGʅ,TMw5ZcT8Sv5m˟ǫnteC⧎SِK6 ۱Ql6h+9$V洭Ij"M {WGKj* Ik&zdCY*p?O$-d$P[kWWFNy;#$`[E>4 zl*VzoAjURFOdwTU%} :yɨjj +mC\~7(뿽[G q $ "Pmi4LMrz6ٮ־\wsS $*]דDBksq&da_"$C*ׁmJʶ, ICe,WBIVm|b9F(@YCG4+"BIԋ6m.2*ҫBME8P>JC HKoJ roX<|kUw>փZ:I"9KhWP& YTmЌ@w9G\Bc)F7T:bfG&3.LHB!oHGrW'E;avNqS#ss|j]c\6te^ġ z#פNSS?pL֚U(FVLYW xkMgU ac%e?: OTƚ9G:'@r % βT4D 2"5P*f,"eǐ$%%AV aD<уrxI/rjac#)"aV0E* ٳPHgeDJQ/O\jr\4 XֽJF3pdiH&M-A4W&F,s",QJ&Hۂ2|f|9vֈ2rllsEu.4!P@IK}UN&@+*I%d,Y jk^Oj02r1UI;uڍvS RxO M41#4MƬ H?Ӥs;;~ 's~Uf6һSM9"c4pPIj_ݥ-~%hWS0 yq-YvV^4a5)`a5BM.bHʍm]Pw fbVRׯnT.@ZK p*ǧm?mE?Mܛ7<8|@9q ̔Qr#qLdvmP8 PK/ #qyOu5 G^3 hn@fIǨ|})e !@őm̎Hfz,858q>VLpV݄櫗 w֠xL8yRFr8cE[Hfk1|nG r^y{ꑜXڦ8MbeF`培$L.r 㫢Gup 4M\r؍͂df^j{EXʠ <ΎM!e܆^s}4 @ esK<(4X*ȩuT;*U5*(Kv㿦Z|d2 nx2ԳLy?)]$v Zj/Ub74dH#Y#;T$6~vzFH lzo'ִ7cx[1+%øm7jhr$fy 4XVaԊSW-e(MNd@@6 .z ֟cDl%Xx|wtB3Y\]c ]h XbkSjDŽIcSԙ9L.t3<9VJJ.ZƕM or2nL Xyn1zXQЙ-"8Dqcd֕ynjkZm&#y#컢Ȓ]yVyZL<,' ts޹7S9hÕkw SE0X#0#G4^ ]Զ*__P &I]y׮pHK駓Xy$+j; Zl߀2N122(Z .Gi(dEԪkiz~!id#PZΩV=(,U(|l͊h^'ֵ7x D2Ŭ`P K 1 +V8#GrGL0Vݲ +!ŨToojLq6s$DZ|}SDRBVߝ9kZ=3~8ˀH!xYlfwֺ؍nhHYZYXھF Z~w*H"Yvo m*Z0 w5ߎr2FHMΆ$mP~T?im't}I&o_m]ϊH& ,[EJ_iCM~*Vח= DBQ3tI싵A VY@}qUbTl#3iŷ2$ES5fBOxmן$iZ^n b7 @WmS:E{@q5D.#?r*ukxמܫ׮J*zW{Ak Pn֫__bhttp://www.dispatch.com/wwwexportcontent/sites/dispatch/local_news/stories/2007/06/17/farm_200.jpgZimage/jpeg OPQMObplist00 Y$archiverX$versionT$topX$objects_NSKeyedArchiver _WebResourceResponse )/078#A#A*+!-.WNS.base[NS.relative_yhttp://www.dispatch.com/wwwexportcontent/sites/dispatch/images/jun/0610_FARMCASH_20_recipients_mn_06-17-07_A1_0M706KH.jpg1234X$classesZ$classname456UNSURLV%NSURLXNSObjectZimage/jpeg9:;=>?ISZNS.objectsWNS.keys@ABCDEFGHJKLMNOPQR VServer]Last-Modified]Accept-Ranges]Cache-ControlTDate^Content-LengthZConnectionTEtag\Content-TypeVApache_Sun, 17 Jun 2007 07:48:16 GMTUbytes[max-age=300_Wed, 19 Nov 2008 03:38:23 GMTU16003Uclose_"20960b-3e83-433154d985000"12fggh6_NSMutableDictionary\NSDictionary12jkk6_NSHTTPURLResponseInternal12mnno6_NSHTTPURLResponse]NSURLResponse$)2DILbd #/135 "$&(*,.02<>@BDFHJLNPWes 5:>TafipO>JFIFC    $.' ",#(7),01444'9=82<.342C  2!!22222222222222222222222222222222222222222222222222A" }!1AQa"q2#BR$3br %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz w!1AQaq"2B #3Rbr $4%&'()*56789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz ?knk\ZE[uo,nrW@9U .)o` |нiDr7p3Z"XjCo$ %R$Nh~nHΔ<)=s R/;o%AhK:`sZ|s.u rFv!/\iZyh6$o,%p1@tl m3X!öZ#dڭk̗܆2)?l<j[ $qT,a/`zdΩ;BL)A6b 0' G_𗉮Z mGeazEfxǞm֚R}qoB:=Ro~`7h;X98Jm;KicK2hQ@Q@Q@ڵͮi oi!q~jUH $8?CN6 t$#ewH8ϡ ~UV;-.K) TG׌Pr 7;zGץI>4lQpvv$I#|Ed N3nW'[39ڣ$9q.qE&>`* EA)BǁR+?{H`桚I(GN0A@ #q,rUッN$qɲxL1ܙP:8I[ŝev屁ԃHe @IcaNqİRsʏRP^j!4Xیgp*hM,q!2/Bv$VLYEH@Cm :ZT"qE9#QWh'Y5w|+ϾדHKyq,̉/U-K;H¯/R=:Pl$64=jcb2ȅyzd}")eސ`sQGsGqj]X={p KgEyxKw_Ki4o0~@FsGը`y !cqnyB\4b(W!ԩ hm'1*>y [X6UgpFsxXMkO.5aPET+ٜnP:~UYt%V[.$f^/N'<1y>Z|Nf c<#g_jM>Qp 8_Z_ȿdKַ62y~`?.v}~Z"qjM6-pP@<ߗt3i3_?V 1g$s?Nе74 t$u+J)> ڥ, #A&lKyA&( rKg-Tl *Wc#޴( gMH{~Ѕ$l( 1 :9WpzƬ >Fcպ5-583?6G]zO@ uC-ee'sV%*d= `x)&gU+(3W]`$@hY ̾c!tdqe=Ƨe$1:()+ii&gg%qY>.~;HeE2n&_Mih]ĦGݖ?0 )|Vr _wm5#fN9 r8tXzn38 @9ttkkuf{yLm#Q\]{ )Y%!t}UA*.dG) ߙ>&*|CcySw3A4&ue6@ dPi( 'xrj!,cI«,  M5%!7`G?/e[ ݞ}zPKh,m#z*@9?R Zpep-r7w{?D4’& Q!9AF/CyCX$P8a {?LnUu(u*޿Uu(u*޿T ~mO7Ttq Εa4dG#LI^A8=@ki&/.rz_M[N?7r\P><,JozS;ofȄx#f/z n!s}hCy[C%y0g{gzx~tW2?m U]?:»me7ZV,Ҧ$&eSS#Ut4Qvʼn8= KiS^^<:{JүپNRP#Z}ěLOq%`qߺm=8 g,kYf8vӑCXʒH?.? ~%t,RVJ}OcZך(ܖkCd>N89ڤ3m*3+`0KˏHB%#*>l~tx^Vd.@^J%܆$T| '$sPǪ:A3l`TNVB;܅vߒG_C@[ݬy& +k2 uҰkBq,s[X `zj: ;w ~km"00nrc!QU#YOZwwg:Kr/IW nN=F%?zw_ʏ-?4q?G^(-|u <F7RC1q cb2A^q/  C4@%c梋]Vmȑw vǷµ6.m`ZKi-0$AT c=Gy?@9?*6m3F>Qi|73h3/l\Pyr#(1ˁGi|ޟ#Ty?@c{AI߷NG_qPm~ր){`D2r:JK[.1n 7(29jZS$dRm_BH:ӭth-$F"~f.%Fy'1(#8SXש#5_60,m,i$qP?IA+=@B.]y /? ҫ[%3 G?U8s?\9ht1篷ykToO*k3sZۉ?{ŀ8cq@6 G"HQ{zUҭBH@s4*\FmM#+b8:pO gry܃<?ɦy ={{R 9fL'h圉<h"pZ)#bU )j^Ew٣v\~$($szTvjdF)?SZN!b3&T c cIqez/1w8MTƧ!@R@XG#3Hz$n ՛v2AIx̬: u+m=r"OI8Om`\e3rsV[tf':U{}fWO.FPq=hƱb~baPs!:;j`p|zV}두 Ċ`m#agh6YpK,xu95N#g?EޤēЪMqnwmq? rR4TɌǥ3zeQ<#-MvKvFi6.mNP/-J7=:*?6b6vava*Bq;RsƑj !'9ƐL%`9"UR?yCOUkK$1F>:sUMx-[w01량u4m#Cfc䜐Vb34 TV>VLdMHzgQMn-vIrXcf}Hq7!>HV,/39>i5O^F<t_K ddt(}? B`N~3EIo" ʏXdr+]J*9+Ыcrx~VM>ܿu??RdK,DѸ${~TG]*BXgӠ 89 Qڅ÷$L*W'9==Gq={ Y¸b@8ݨxRF$RP1cJIGd3dyvR\Г4:fkH}@Q׷S׭a@hТYd.Wy<W`%vA&$csޭQ@ ~uմw!4, stoqcOJѵv.v0w 9yG1OU]ހ/i"fO3L#U&Ɉ=p\0N1R81 ih)[ff%@ c '#۞? ID՚fG(J8MJaݸߎ(hm4hz~yOfPo<S⽂ih ֚@(Ĭ(0#yV0a.>~Ծ_9ߝ y1}h<:ӣY]py-Uq֢RCzag&+hۅ;q E ԡ2(V#9=GNMR8"*>01)dٷ鷑( [xp81sRu//_ӑiLGip>(gd{?G5نLaѵg%)#|xQ6ÑӿowFO$y(P+q< ]V60珧SVwH1ZvKxY$eU$f ̌p3vl1v1MT[{6ٲ(@~^qO|wF`DF>DqK1O- I%06 zHY?NQ܀H2TXh OM'HѐaKA[sN2ڻj^*(Pr9֬ݰ3ڻI@ׯ*R ק8.&ebaپa8K9ԃ ;֦k6MKDʍQIǜk\Q<\nVhw* 6d(a[WM+ƻTd V$nu&M8 1}z΀Ӧx/"%_4LdA0FE,T a&}bTޥKL-RX\K5II9h]>ݭ,%3|YGpBqE,,:B`'G-&"W@SM$(69dkR"T6ӜZq9Mg\Ch"RA l,| |g8FɝԷ9ٜ}۔㑣S0ݐAE̛2]BG~^mB?/#*; cig NzsQUN< i…F{rx0S$9䟗~9w[|~QVz}LVگ#Nļ|b|Ϯ{ <";ĿOGr+wu;…Oe\ Їd- 17ֵȪX9^֩GLbewDv)=>Dy-TB,^ *\yQ̣ NG$CZkwl֦)~F ޹P/ٝCw nGS86[4CqEIm" ȌhN`dW}*4m#+8l '3O.緻`@G22>cQwzAvr@ &lrF?J} +tc/n/գD .zcb5+Ѳ5|dF޿\ۥ+huUW?U-j VG`9f$cQW&zAB2 5hK3"(mh`K"X2Ưygb4G9DGOΞ`z a!D `:zQOP)Ѡi7#r.ӟvm[Xav8 ccec&pz ?Z^-Xjvϖ6Wn[8eS+{zT ,,U@wsAЁJ3LmV {Ð U?/L 6 L$?NOU즚l<~Z>,LgGO]$vWuh/H0u#=+[.?!$ ޙ?kKC<,̫Il/6I(O>ȱ %1ȇu'{}|R#4$dqqrj3z7K}{bo#<9Ҁtcϭ q;N>h4 y_֚Ѐ2I{9i AJh㑥/1%p }0O1eAvXg(Ā0cXffvR3DEʐFNxڀ1nbX˱04i݁v|8[KyHYڇ8sPf B4j)mr]oe䅓85/?U,l;PTAVqC@ 2ۼ;:~OӼ9'y>"U2NT"ԭr.vT pzj?<-̍#ҩ.h WQIʹz@W˧b>R)<5խK/7PJȽ쏼HަK(YRiV7(`\cҕ-*OANzw R$|Ϳ mjkIbΆiJu84n?ZkB3I VpRڣ}Ҷ,d\JMf~x?_|y{/#z%2d;h0tK;-™HwX[ޤk"7*bTkVuXayiso|\[Bcxo6 3YfeԂ;)s1OZ;c0go-SvIn8Q!%A$@-X d7\⊎Aqj _ 8E6Q$`A>?*> >x!= IV1du9ag?@!݃G䌱8^m bC":sYk61 ?OIis>O@5/_)mbi mV#aQsF@Y@\NdqU+c1eUaӮPճ\[n8v⥷+TC " xڲ~ϬQ.Wfg9e6 ni gPטQ(B?Qj}^"f0gs|icpx0ƒ0x67QXKi$r`aw>)O )6Zյ8!Xaˍ(XE$i㞙+c#g[$Lds@1il܆N1L44k^p?$.<֍Ko<d"=M|éPCmb sj(-љr0h )qTjMHG@ ;x`7bYD*pclO=*(؉m*6E8?J Z=S|f5IJJ $0*N TnLC)'׏֭=Om+29y N[kKyVG{/QHtP\#6qƀ-`[2FUE=}8'9ߨpi T0GK_L3@!@M ۛs6F۩?:K( (y1%A!cM!G>x;GPREobOC;31`<43]ۨ@ n޴o [ԳP:}bi26B;8?[G偤.MuhѾY6=~t bx7=*%ˆqs#&DwϦӑoG'O MLYΠ]"-ːıx ziF>Fe;xEZx"v⊂O]a݇999EPEPEPEPEPEPEPEPEPEPEPEPEP_yhttp://www.dispatch.com/wwwexportcontent/sites/dispatch/images/jun/0610_FARMCASH_20_recipients_mn_06-17-07_A1_0M706KH.jpg STUMObplist00 Y$archiverX$versionT$topX$objects_NSKeyedArchiver _WebResourceResponse )/078?ISZNS.objectsWNS.keys@ABCDEFGHJKLMNOPQR VServer]Last-Modified]Accept-Ranges]Cache-ControlTDate^Content-LengthZConnectionTEtag\Content-TypeVApache_Sun, 17 Jun 2007 07:48:17 GMTUbytes[max-age=300_Wed, 19 Nov 2008 03:38:23 GMTU19616Uclose_"20965f-4ca0-433154da79240"12fggh6_NSMutableDictionary\NSDictionary12jkk6_NSHTTPURLResponseInternal12mnno6_NSHTTPURLResponse]NSURLResponse$)2DILbd #/135  "$&(*,.8:<>@BDFHJLSao} 16:P]bepOLJFIFC    $.' ",#(7),01444'9=82<.342C  2!!222222222222222222222222222222222222222222222222223" }!1AQa"q2#BR$3br %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz w!1AQaq"2B #3Rbr $4%&'()*56789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz ?}oA5;vcO5dv3Z?SS:|si$sܭF9K5$6EĤ<sR—7sg[%ǘ&!9j_n4kmhU5q6;1'(թmkJƻUn)yCѯni`Tnv,'iPW2* ¯pC_yFB$"i$U*޽5k4HG1pVH|N9޺ɼyq˧IJ]吹,ʒ ek?4Mj46ȌJm\ ЃOj'RJ\ݪ!+b׮s 4]DX[3HnR@L 8k>_N>,k-y#8Li仏Kc:0%I*0Er: |k>L`Ʈ^2Y}ZK׭,3-K$w8((ہ?7k~۶'cW˖O͖Wg<ǵr=O5l5K)q,OU^ƃ!PFb  I*ë3;RMmNkx,̏ tX#=y랽8Mmu(1?>F2'C@l[9]VYU2ႀʪ'&Yo-JB#g7LzK-D{}FTSnfUAܐwG&cنmg{1f wŵS`RܕhBFݭd縏 ;8'ǹO-kP7#n1|MW:&o&#FI(HQ n0RVo-D͹0B=^·i,_ϡڪlF?v6I͜ߗ֒C(ٙPrI 9*!vPSVE7|$c:F]TH Fs '[}rsޢ7"E#ݼIMTmԧhm<$Td;Rmq_ܨV`pG˞v7Z]n=iV!,]IWw#ޥve}Q6laή_p*1!0x;s棗ќj%oz ӯ5įBE$FH܁@Нؾ"2 .@b0FWvëg0Y dąHmT=X7VVQ(cE*W9RV>}UVx"uwL;FY l>x~bۏ@bQu`1U`C}3Kg之VxYؙ}v1~j't vMEn[j?w,eOARAhPGs *EE2HAG^4kCͫ6H/ \z RX߅uc{)scL]sǽKi>ƽmw, }}h(-M=Hh71V;"!dFR1)#'8Aޮj7Z8oa v;9Vk Ii(p' {c4oQEѭVoAEv>]9JN8ȩ{xM8JvqXEtSM&#ytM2-FŢ6Bfs1a.N:1Z'X־l[H@9#JzZsE{RT`.7 <M+hV1]q$(.6ǫzRk vk1l|:& ypGG'.cᦴ[i Vڼ2oy#{կ/@{-wRFHI9G~[DӮl&-zIhIGo v%X#f`UKkM-K73"<{~$*1}ᗙW첣C&A#8KcsYŬS @| ~g@cxsxedF7p=pO㦺-si$Td# 6ssX^ahY[86csUd 6(ȣ_Ԝ ݂&0i^BX_J*G2I UEcjm\ɦyבbYg?-:Mz-okPӄcF}>T:o࿎?Վ8"b댃Cj5M>+=.+~Bܨr?՟ 2뫥hc{p`Psm;yv]6kc/RʛlFHOZԵ/k+P7ʳztp? {Wqf]4H0Yvʫ݆}dXIR!bƪV,?֧bpm#yB8|::͢aeC8'1[IiaoV!.c+>\@IX%vT(ò{%exm#jJUq|j}y4G]6## cN@,.KS {HI,m$>o:r'JqnhѫJU-qs_UbV*XN{s@mQ![ O"R0,Gq}*zo4_gGWudsji:1*HI.==Gl}c0>A@jZ<v~[ƪDl bIf<TGQzjh"8QҀ9+KL~l!KĊXP@xqnl{+ܣ9bU8|kK+dB!Sm[<_1|@0^FP@,yj\MW4 ,R=vo 2D%F@,~>G84ͨ鍥[HX1]3(e~=& ,V~J\@* I?_~z"-ykc5mAo*:zP߇p, !Wi9>q׊Z:=ن(O>X]m"<huhXUM29&"T4m~(էEzb46 JF Iv_A~Jl?*UPa@P6J‚p=4U(&H.i! q2JX,9n BE]+wđ:m,԰ Pܬ3}/p3G GbVqe#s8s)u3Wnmoŷ+qΪ<"0'0׽X|8!d;a$E9;ޝ*PiZ mc.R;l9G}LxwFdR~RG#\glkqKqv-BNs+ s4W9ķE,;6Fvq@sgmx6̪e@ާ aXqvu频X!Ll] &#b2f_OPU'sΕ78+uf\`-. #h61]^#DaMIGn'\O7P#f;F8J0gV՘Ro%cѲ(Ȯ];ưxIn~edljYB3YԾ57K!O_] 36/9|T*J;3*h;3?=ThGؘ Zo6u-)p_`'qkOB.,M{c9[DIdMcK}rIh¤)ګ0ޤV.Я\`#~qv?fZ|FnZe{_%K #>m⺆-WUoxynҠ;ש ?*6#:Pu WXq?xe[y+He\ƐHX*VPH`A#iɭ!m-Ī6'j)|'IUHj(8 =O5TF$TX8ֲ>%׷'Y ˻',rI%};Cw"a-֟ 3tW_~1iP)@ rx9'H&I:ibvvIykqXvvF,آ C8-rO~45ʱg=OsH ^ʻjnˁa }]&4]"ȪIR4ͻ~QJJ;^I$B[(;f[V?|?2֦H. aV@N2ҟf5 lz\wݪ wA5zjt_gѿ5E%B;Œ+ 1T}eTƵR1oiڂdVwU'y܌kW΅ۃ=7Z^ؽh6h 0+5!pd9[N[]7HT7c#,vφlO5z؆;[tř<9xUfĶӕ ت 1jڳM?Eg 1"Gn.]lpykhQWfbԑlp0=֍7."'gۗU]pOsn Ie!Qv =Byܓ7/!N:ʢzD3#*q\~]i&sw6 OF+bibXBǜv7{ JE+-c[jNA-3G"A '$sϧ"3Z{-!G$VlD[α¾ܜ9*F-LR&l}p)]tuoEmo!F3+)׹Vs{uV~i{qKl*>U$p+)KDngjZεe~:^n20.;{v}OU7:Ɯ-ʫ H޶`gR%ܱjSOҳG-6YC-"2%6Tc GD| HA) =2Ys o.c\֥7}^zn_z(CMY6lwۿ[W8\Jdrw6g$Ғ]чqOd;뿴'.w}}*Z577L{A֮C[C sOTmsp`̆"|=+iyK(SQ$nڬwAl ʬUV/ h׷h3W,5糵##vIT˅%{=> "b^3RQmI=SEi}M"nG鑂?QUO49=G_]z=ʹi\&|r\.x~m$C +"k>ь} AuMj@h"f=cҔyJZl1 bj¤Wv>[Y"$&cy`BztO-7Zd(mk1qs[Z(uk-+scٕ~tOȋa ,ӏ0"8+"6Zܴ m[ީ¾LJwfIvno0 B01Lj'e"qrVFe`ChQY6Mw.!uAHEF6BTUU8e*?Q\$㜠t]dGwXKw%Ť^gv|\yij%աfU[{ nVm~g-14jqiɪQ2N"rGwy9cR#T%t=-p/ L@( 4B?ՔАDSecS??*AtFYeky8ԟZ9kw[w 6Cd5vFe5rb3Ǎ ץ{-=MvvV~g>3ctS3XSĵ#{-Q Ãw^8zVoxWE-cdִlt;ˍ.E_f r?Z$[qk ıl ;q/iT"VG)Zx`B ;tS?ֻkN.q?5Z5gxM#|cp,IiddHNIc?:NqRKe-KZoxcŶ.5mUCE'dr%ٺhJ1é#ڜZ?`%#eeW /YbD퓸tԲO#\ e՘7` vzVnInPX#}q{LV6ͭFt&'p=?Zr#kܯuB> 7'sޘ7L]8e݉׎-ڇsJ] ZF9{ΛPzɍ=dVwj%X2yQ-I^oY2 >Aeh8\fUܐUfz=ƋC+A$2<9nЭm -M [:l^jૌݞs}F 8VIJ: D>Kn}«}Vΐw1K'8fIm٣+zN5(I@kռ7i{"\__O -ɱN޽b?dpLvH9^AMN-%R- Ϩz5QXv Үq"0ǧ}ҊޛV)N Ӏi22;|¼M/RJw{m,xlkЕ8BC>U>`gQԢ6*^9kp}T F{&[Ku=$c qp{V5PU Ty-Nѝ|A\׳_W*ԊWӇou+S ʯKidl&+xHx>ozgHϖ[$s:p`X*UAVrIl%6=k ~+;SNHmnՂNA6&~lg㎵ҳ!=5[E8|?w4ks|+#zTW&MFw v"<ϸ 9jՑHA:n?FrxL=ԗYf>`ILEH-n,Udt:SEw}cO9(m79ZUYSMC6㞾"p@jsd˒I򢣗z .$l |k Će>?ҹ佒3*A"/ZKmot2TcӿJ]e!|b1uV8-س6k'lƬV 3i NVu4dTA'k :˸u\lS'IZx~Z\4Vp/eF_t1Cc?~i۶"0=@<t,LKMy,KXB~RJp[!SPNYt0-7ji%nCs=F81񢥳![$~WL5@E kBRͻE@l sȐc^`3riF*W8'sכS;M^a-M!n`{T]Fx!#ưumo^- I yI 7 '5 1i%UÜ1~O9nlU䵸$0<3[87k.-L^W$`0G8ZY\]{mj fdf8<4hQoA'Z•9RrZvWLrC3NC_7|'wIǵ:%zʆ ,|'}x5 40s^} _~` r9}1SuMt,.k&V*PĎxzWzE'dT6Lx;ź͕:ڠi6vVݸ♴K\CHK(O慮xQuk{h"`z%ȤHV,d夬(v-'](_9w5ET&)XfFIvAU^8, Iz’K$kNI'kE8 UdH7(ʌ=ZM䏃fYeeXzM[Iuh w9Fb,۱r8" Y#1v٪eA#y^=QX]hm퍁EXS-!3=ZB k/0ؕYn9{fc$h6p;'qr=W!%dzyVƣ^ȋ7oڔ9S[IR8cPjQ!Mu_=5c%#% Fh-mn11MojURjAEUtttV3n0;{߽@hoG)ޘ|yܭt7'|IMjKn4 ˑΨjB~ iLnvHSti~¶^C } )ecq1; sPi/qFAz-Њztjj3rhv}",d4WDU3uU{xي+]*CvPں aYmLѐr9[Zqzu*[URԯ-Z 1 q_GODK Ź.G!e@}F~]Yz) p>f1S$8y|'D̳;o,?=Gj\xOC]eʲIj79m̷̜F@>j9ZleHnH7$ȭ*m Uk5v#z`: [w&7ֶS 0rֳonžY2];N7gj11 Z/!Oqc;YhA B@>\lѬ-kpZ4:#ѥrrum6}`xk.02sޢ_IMXN`9\l<D6e}8ؚmu.L0Hfgm%|ihFlm]%Q4spA8Y-bw{V70R_W/GkE&˰t~wS->)mJK9ݸ?,+8cn`OH$8Au}aoX4>iMsmy0We94ccIWV-CGk(Gt2wG\ ZԴ;O{`_ngLNzp#Sb5/qdD@6ӜZCó4rFQԜ`0cޕI 4ՋvVojrIHu `犂Pu&κFp9pztjk imZs+v#x5鄭[CgwNy9E=yrmWΖVI3O3 G}'h ¿> %^yooqg~-`q>TS(o/1F0I$md'=Z|:F7%v9tgRvo}&U H3ޢޝkwk=4`0p:,M?iXrMG4Qj&1\9]/YkYىё@rA?w~+$1l$W$*苔)芺 ݝ^jC3 X`r8NҶJ7#k6i%̗Vw p+aq?Zχ,s]'a 篸W:Tw77)7lNwqWzG6%ܔ\VF=W}"]wI {._V* i=j /^=DyeǓ_$t=3yGƣ D\:8 }" M=neF U°;dZS1Zܺq83KkXIaS&C 3zJ'('Jdw&;ppE]i4$E&H #HI![Ow93R./hWȉj"մ#!Y~F~ɊzvO_#?vL=gA᣹6q硬_֖iM 6.לv/F̖1`Y֍P<CohW$' AN2ogg0m ڍcK bl0r:vz{i-lg!Af^ 2Tm5 W osZRa›OQ'݈@AoaTDDJ+JṺӥ[ܶ6Jy'k #)p&IS:6OAgIs:q4ki4L0zL[tJj"tL.~Sw ^G{y$VHT(:>/w1Bl1`HR+dQijE=X.f}W x? :5ie˙:#裦Út:zvz31"yJb? ں-XܱskKbw,LNFО&RHJ]H%#rTO ROcqsVoo̖$w>/6L{%0 ˒x?UYWz׎قQ9?쎟WmV-w1;V>/*YCcn0OR{V(QErNfaSr'E(UŶV~o+M02e@tcך-o%hdL`J >V$9YD[2%K"7;v{~=3+H/0akt/\g9lȓJH6ž1sPYo'&@F$Zw]Y5mt,q87v?! (xxFV GS1F;ъԠc/v@yoc$yS5ָOO㊨/~ɒM)H֑"Kl#jQ~dUJ.& jh@g l;sOfW-Cw(_m@<߳' +ح{ Nk9 7CqҺA<Ҵ]Oc9+e좥mhx>uE Wmq9i p?<1۳=ɶwIi A$+ki\ H˚KKi-,Emks#VڙqO$r6P,ݷj:VښM(D/y?Ue=g$ ,aCI;OR*-r?=ŗ,L9#+錀Ba}hd6r95mH "`cϮyxd?:k6\gp=7~Z.'f2 @鶲\O, ) \vkA Dڣ'9u@*t!ES(((fHPa%ܧ9N$.@3֦JyůxdE|;خ7n>y M:Y 3n LRu<3$$yBx# ư'>}!ݙx#ڸg{s/kê1]Z}@b=ù4B)$KXRL@}Y:ݷ..ɼO_;g=MDgd8rph]9V pzKm'- 3kVeU0Cskuwa]kl6jF.Zw(='K\mqZVx$SbH&XW>'$nutNH/opNe9vܩc/nCiP$v˺5lrISBKmpyc1SbIfE:$/Vig?c9PxށEK©]_ӜέG~(BV䓎9>O h\}[fix ZxwNUYl<7ŽBO< i]ThqpT 9\6,/$N t=F*HS>v&NG }iQVEPEPEPE@/mKq2zdd~>,G_PUWԬpb@쓀CTuh]Tu%.*9I)QR-\,v}zJ:?3rhp V5r(.ΌB(N[p}Z"xdsȬQk #[߆QP*;& -?"縶UXq)>Q-4RݝI'. M{U}zIm( $iѕeHa{T7q$w#0ϸV!w"Gٜ3 R0px<C_"}>+( Gυa϶5VPH%{~|``q!|O"i8d݇dwN(ga{y#bbc=Ǖ=ucAR?M߭dAY/Xb2R3lV)O6Y sUq2Q[((((-6]Iݴ4d0`=Ϸ5R84V,d,>|_$'L㓐=GVm59KxD2IN9@dD_x&*'KS LQ()2w#wӭSxZ}uT88C'f a vУ4M[n1gzv_cntUYdU\r1ӧ |:a1ke`Aٜu&+BLvRsd=r5:?ISZNS.objectsWNS.keys@ABCDEFGHJKLMNOPQR VServer]Last-Modified]Accept-Ranges]Cache-ControlTDate^Content-LengthZConnectionTEtag\Content-TypeVApache_Sun, 17 Jun 2007 13:37:11 GMTUbytes[max-age=300_Wed, 19 Nov 2008 03:38:27 GMTU31155Uclose_"1fc514-79b3-4331a2d6b0fc0"12fggh6_NSMutableDictionary\NSDictionary12jkk6_NSHTTPURLResponseInternal12mnno6_NSHTTPURLResponse]NSURLResponse$)2DILbd #/135   #%')+-/1357>LZhm|!%;HMPlqupOyGIF89a?= 8-L?5+I78A% Ž. -54>+ &]>T DO#WmtWpn{:w!#Á@ SĠRJf`1'dY @G U IY`@P BPôz* K ë#-Wy_oe)w! hk ƋNTaqX8UXPk 4($βmMPjckjZjuf:ܴ޵|K`]8'\SW7M^\t|-E {_gL6 ,zh,9z]w_t1!d@ gdUfH6ŵ"T*(|% ! 0d"$F0=w$mN,Pd^3δא Jdf+X 0~¥`̖I~> zH4 2ɗ'=? c|:b'R=7Oj%B"IݩkVo(HH$LfHO(Lѝ6I;:*"і7mn pzҵUܧk6ٶtCr0kw =0ReaDlD7,W `4bEFQ0匢[Jx왴0T-R6k z$loˁ9UB B@Aэ!Gj`!Tgru(.EZ2V3IH/!o3?0z1ݲTt# @Twuɉl,XsC ByjsJ}t/*G@#փsמu"Θ8SP*Nzw@UIۍ<9G@\wMck{Ux0Ru HP*4Q$@SM'u/0{*ҁD7>=}k@> h0< v0b^8R)P,>*.ln<2gK@bJF %9`[2 Xc}ŋ*!S3^W$F(Q1GciY'jԥZ G$C7 g6:x($QZ/ PEJMkjNIͰ:q*8kx |%hUX0J`'(E0x91CTܡIs F#@@UvUi8Q&Tx/v w;wPcSdZL=ܹ+B”*-5כd6/@fR`LW9<:!Vp"nck O&TR >rjK3$+f@bȩ&ÉR>ekRD)`HXo^"!B`%sI@rK XE6 +euYp ϠrEIZ1k(HM_) X8UIA/ch@hF#+;7$8#+ ?ˆ DMR |# o;ߚ ,҅lEX2*p jQ07S^7 gZWGdLN;'L [ΰF@oPxV7- @H;假=Ή$2G^F[O6us~*;ASeǐ$Hv.{`΁A4Ylo>|$q<`CjC(e\cFs8DA2Zn^ÞaEħ6={<>{Aך6s^b ( 8&PZu #k {֡@ZXC"@0[>㌶F"2*cn #Ý{Y{M's& 7̘q#n*]f_ I잕p¦ hF!puhnʝ9dWcDq)5-LR*?[`I&HHPLsH@~ t>rNv ;F8T#VO5+8 hdpo 0ٍϼ瑯>qkȏk`Ce8sPh?`r@]Rpyc 9*GZh&{"' h7k!a p~"x'p'7t2ifnv-"֢o8}mH},7qx! 0vpM9ai!'qgY&>E=!U%GgcqW2o"6v5{c}ZX VGapv38,|olwlb"(%XwH*8%FW+؇;x!V`3WL}cVn(s%l@U*-@vHAoC ikF<t@W3w}Ȉ`e؊h~?Hjr hLv!@#!pxgTXZx/8lӇC#+~}C@Qd}h{ryΖaHLI/01HZ~oPt`Nǃ'u7Ơ~Y&a0MxX0|xm!ё҅Y`t70 6|edQ0  Ir ywov}rވf xBwdp >@':ȷ+~YfQGxv?(a؃GRG{ҕXA**ٰ wshhWwmFno[kYp:D<\/ C];FIV)uY<{rkj; nqCB Zy@WB7f{dWVWuڶɹ%x?A uKVn2ZyFjrqh^]3Vi+*PHvq|*fd@Uv9uqKq EskI |] 2˪ e}K p'[rHs w17=Byz}(w'Xw؋{|![{g~xG" ŧrG} ǠctHj*0dfG( CDly$ӽ9"`zN B|X1B~D`5%Lٜ#H9 "(kfn !aa;EH:PЮeCH1kic9h|>ڃ} q(L Jscw[Tcl (wLF` PhH|x^~舞芾>^~阞难69q"vBd0>T7u0 6Un%>S2PgM;W > $bN Tck8>( BQ2VTd"A22.4! ND~O쉠".&Į"ae SW Qf*9F.[.EHL!2DF; .2mace/1 "")93`*-&?"ݨ.L P&m0gGߎ Sh?d*z|Bnn;]`v??O )`d/Ya"2 L6FQV?Cx R & e ~? RV>/ ,6sUo9 npgqJ l@CbxD&K&uEPbMn׫) )bڊچv(  +;ZsiĐ{q* < r0Lme`qxrq<}(s4ˌc͜uc)T#8|rSBgJ=`f=WGb,868`!6a|"X𫬁@nB >QD-^ĘQF=~RH%MDRJ-]SL5mZSN=}TPEETRM:UTU^ŚUV]~6,>e͞m`d,b!Xjw!.+=凷)(Po$ƹfNk]L-iӓs` (`}[d` A!p%U/$QP 2d0P偂> 8  ^eP,͠z ";Aحgb K) fFc=R*|6$ sB8HY\xBBqE;<,2< t4  fvA =@+0/AK%TԋN4A6:P.ۼ2sج 9bg  |CEsсPM- H20QKM%d40Yc;|jрYh"]hCU ܼ G/d+@`?mU$7dr6Y.@*^Cr!*8C ?,3`M3C*Ri륥Ln+B{m =p}Tj<ʫ-(?@/\C ")d0 fvh7yk>sH3\+ @gY T ۠HQ=FͦE?ŊNjjv8!:Or +orn*X`!?LU- HTr0'Kim kPРdj4@ h2׷j~6s.q} 歕tkEE7_5S#ݗ??̂]47@?p H[#/muaN)@j<U:*ڒ>EO1-Zv 8iZ$x@Y0;ٴL%#J4 47(D̆EH+Fb46@D&)5 \*8b[T?EN v"d"uAd$IVҒd&5INvғSA@D94e*Rҕ%*_)XҖe.o9]/a4f2e*,f3uIjVӚf6Mnvӛg89NrӜÀa SD.*ěVPA1jyL$3gZ43`(!_|@#BBO\ ntÛo+Y dvy&>8V Mvp8WU@'~FoUF 2Enc0ȗeQYsQF nr2L2X轝k3 jCĪP<cR $Ґ6=lxz'D0*ܭXAέKm Jw_uy|ktfbK 'S]L[-\lc6n 9C;,zwR^QbT/yÎg΋2 i~w,G>QnX;g| vhlyLԞ K;Ge<+]QrAOUt>XTZE!B}D" u1xb O@՛2Q .l1Hַͪs*"1EDOE@4>h) eڑ6ԵTN8~|'yc=9)zҗG}Uzַ~ф&3cL^u{Ks=w/?]|7χ~?}WUi Z/aƒ TGz,֮P!vyf&h30<A$z( ;Z I0@Z K K)?XpDA$*!)p<+?,K*ڏhd*9 * ¤2346R˜?⛣0ଐA6T b5+P8am.9:*ʒZZ.hACQzeYD$L;Y?8@!?Q 1CE_iT3nQZԊE:00-:pٚ E) -z7Uؗ;DikT ЇZ7& AO 9 7*D!驜+#C-/<`;iL4)gA[Cf DCEt|BHx` H5|܁yP PD#R*4 ĉa|B0ʹU5F6GsdYc-H61A hhÿжᘗɚ$XT0牷3PP %5EUe=QG(Mh$ o| 4 k!B8CPE1?TJ* \H) y#dsqܜ .M">DŽNRэH7hA Pa@1SRIk'ҙLԘ0]ٜSC[ N*$U3 К kTՀ>_1u" /<R'o:- pU9扂̋RVҺ6iBu#?غTxe(-:5}"V1 4?RIU`|R/4: }7:N冖K2;:20M~uOR`Ȅk+ېA 2b;)$^AN8 8;33|a%%O pї v 9;D6dEFgGHIJKL>'=2eO.AQE=[=:U%ا4_-" J$i0Eo!Sx!g@ 52Յ@ӞR3Zn@#MS O(Qne {3_kB]ژNs4VAnUa.4McB˫#- yRe 1@ȸZEBɐ)bވaEb"sDf(1+~ [4a2S4uFl,|UYim]s"6$KpC qM Hq~*/Hiڮv#wP\%:\88# Ž-~"[1>XOm9RMF5L^:a'b7cϝBneWf?dggdh_igghw&dmnopq''|:U=/k؛Q0e$jk#@3#^u&c&X3 X jhE/so R:+ %`wڣ_&x*ŠVxfHStypQ4 ܌wsJyb?vqyi;IPV{?zȬ/S,w }VǀF2gj]XĦG&:U0ȶ]Tm9ޏv2Ap$+\$@hPhF{.8H+IiK`XiZ4:F)ʑUHIH+*C|iid=VUAdi:xWP kU5.Eo#j}+hY×e:n r i rg94<CtH/wCrWgT*k|WO ^p/ dӰ ~-t$mO(([] σbǤ ROa&"%EC%V,YEYL@0-s3Qܢ $#êH5@ֈŘGW#@bsL[x1>}f.  %y" 9 6 ֎; 2ȲD=8l_aCJ<\>Ʌ6` 0XaE:Ro@6DQDPF#Rv.?(5DKT ~{@@ sfAO[|J4FFUǫu\{嗂 K<¼2ZEJO\4z4Ԫ#HHbS#rEd[;@NJT.;&՘Hcl+<0/OznvY[ aGmEc}o:BtpX#~gd!j#D0#&`1 ].n$YDbJ7KL{o^IF2if b H p*ObTJJε. Bۣez]'  \/#EFkdْ@9"n9&揌Kǟ8;D9^P4zSB8a\=BJ=6eKŨfL6qs}77>8O| >83~8ݮ0gwmi7>9I9k9{9衋>:饛~:ꩫ:뭻:߽Β㾻 ^7髿>>???fEj 8ѡd@ Hu+e# 1CruJ ]0%r5ppfRCgQ!zCFbS$AL {~fҌ 2?%nSc ,vA22"OdbSH 悛"aȢcRhh y#H[q:!~.bcHZHCe@ YN刄m+q BpChT@:@JLw,E*i،S8vOc`GLTǨ=恈S"3z iS ؗ`iiϾ%pȼG0C" 4 P(8% Y:3WPDE 6 &] @6a}"8!!%Ţ t2dJ2< 6Et_ 3i+rh+C@Fmq )* Z+9c2H9Ho-בT](Ub XSH&dBJCqO6"FjV+JޱW eJ B(?)BOW0Kr\+ R8#*dgCz|`g4Fc̖/(tF֭UFMTT@BIq܈pdBU:BAOdtр$ NY̬Ϛ;8@x24Qa>U)xZPb]CA Z! M4^ˀsDTJnS2ybazFl3Ԟ\!h?BB`hV j (eV2l.!;Hvl*7=M}-9%rRr%0ʢ6-y05ZOq+$[MG;%x"U*Ξ HCE `V:_OdTˍ^**̄1-Da^bs"o9\깸ӵo5:»@7?iS !/\*b\& C1# aA̶"h+YPcye̦ ,g"?DѬ4`iPO~k)eCxmS{739qV\f=/"—eoo>|G_g>o}c>㓿??ӯ?/ӿ5M>a" TGP:Ιu\H}@ΐN?t 8QC9ŁYKlT%y$.4 ! "!|B@5@)+AQG, }H3 ?`|R-D́ p_P;wL,l !̚!_O=C]tCK)e{յJqpr$3TM)@'J@IUaH*y* !fE)'t(F$Pdq9AdeAՁD0A*dbNno$eZ6f["F YevxAr09e Ȭ,@pY?AE (Ũ$d,D9Š1@!#U׼Er+Hv"GP`chY>co4M@aqWe(G&ٲ%-Tj%TSC#*Φ eH$jHgI A1^ZI LxxK 4`[B05V̫D M"6% ε:,BM H&xä0DmO.%4 ]DTM%< m| BzJJɔ,@FFP.QM< Mei^>K~g|֧}ݧ~ '((&h]-(5(2>~_R(Zh:f$(((BKl-ۘՉT Ũ0#-j# ! @ aTԨ蕼C2& O.|bjHiHY .ddX0 HӸؠ!<eh^@! OMUAU0^JJ d/JjJQd ^.ipdLZ\K>pfJ!D`2^K3a4iD5E; C<#xS^MP!-F~Bv<= %h bD`ԢOՆ%:PAD0#*~f*ȱ`ؔKŔNqNǼ$U!R5If"bbծܾWI#Z33bxK݌j0̉8M-1,c݅\$,Ѧ–NedVm!x-v V$:[k׽Dk]m۾+"zLp}6BUfNNLyՓ,Rʘ`F|60fva02)r_H *?QЪjĭ\ j;] q+;냲bSn 8!PX뫜*%"lSI^xO+"i[frPeGMygWQ)783CaA >x4LOlV\,48DlQǎ@9nSRɾgvWUj,bZ)qumi8Y5*ż=mDlq\eͪfEg##$tFj}dfQHv-QnݭBm/dYcx@,ieQ B"%<\nhn{gWhoɞV&6Y:&BC.n[K/6qIhcfh(gDo( ~!6} Zlo_Xa@Q z Y7XE/6Гog-MK8*L{_"s3DK&uz$ B5<8  ] Gsfa]OEX~,ߝg dieX\h4@c@A2<,vP9(@>/ diAi(p4< \,N@x p3߀ᨅ Ʀ 0& _9p7u0-:U)2PvXP%ɀCan L8NLY%pH ;΄1zWi,@ 3ॏTˆ{fHc10"J'x@4Y0? @P0F=X"Іsg t;R58l|ESb5}1XӘY<  wH h *ETD)ixNAE!O'D#O S4H>:eͥ ع@N7QJQ3U󭖸tN|%cy*-ԂDiMWa *)n &iaSvjՂ>zFzv wuCe<8}A΂sIv0u^(yOUFpўzI 9V\=&V 2 2:GTDCZ@&,o5#(Լ-I8} ]l0y4hqץs؄`eS ~1 m"bu7r8lsBf}v,FFN&U/5=G& P=8'sFnB|%,nʇheX6Q'3};knw2@4m[C5Ib`{RmeD#O,?xy TN d`hCf,A #4 QB-t a؃_آ! g :C!=4""&1tE)NUE-n]x`Rxj9 R W|D{YZ_exUȢ? `EL#OI`G 8rJ>I0PSpc ;Ɲ0 M2`r c" 7ӸRjؠMEIljYqʗLœa7o5* !tcPڹV5 Oq׽)d%g䇢7~3JNO$BBQ)b1f8 ~ryͽP)ށ A.G<3h@cq @O\2b 6?RQw l+KtNir'MN[8Y@I <&!DZ(< ^3>S+oP`i8T(HѵZT3ec4R'̓MzS qE48 dd_(9- 4%gTw 6nmB(RO/ˎRMԹ5J6R=ZZ=J)WdS!Kz\/Jxr<@˱1 L!MZ,0r\-Y{68]YGtD%QpIbW^mʬ$Y#!p<,4(t C Nxd BnZ:]TD,fט)qtu1\ƘQ[Pq(>[,LlR.T&(bۚ\] G[ NQig2FBt8~nRʆkYK 6KwtɵEpf%_̒jCWdFE!Y b_s3%:=B* C ^#IS:*P<>dṘ IzLM>!U(@Ca9 $n5lp/] %dӡuOUձuo]L\v}dzǞvl?nDϝuw$Pd upQ'9J6@܎4w @-llp@[e%:zT4Ӽ)9e yIZ ort ꜃>u`4]gҼaM`S3$KIOo~2<di@0)2|&4ݘf ',8lr#+ϠL j4/^* ;J@M H%j vgk㝐-%hOl*`;#r0*CX" J5J_j>4b۾Cp AM i"BpK b =Fĩ:k*eK+ H~$*K(m(a jgFK(ôKZd& h a/OQ2FL4$XؤH,(aO(C kdBzhxμ % 1lPʐ+V`Dr`Ade(Zq]x6 Ð>z."``MLdn (ީ!f b!&e̅*\W̴$L+Lj23F,"˼S2L.̰~ !f"A$נ1 `RRq p& ?#k(D Ҟ2k8M<'!8FJ`NrTMX&, OH/8Bp' &p-2%tV wHG̈1s@+NM./5*DRI*/U l~Ġ)h#yDؐ .!~6Ӡ~40H&4f1Q&LcbN*f. `./Gn8h~ 眮B14C5tC9C=CA4DEԮLJE.REWEaEeD]FFq4GutGyG}tD~T"BZzs\h.BmJ+I'֌yU9hIw&IDLb&)" @4bMEM߄dfj, '6% @$'zGO Bd@vu8>n'g OHTBALtJo"!DYfL8|,\"@wk"V88JcLQ.%6cݥPʱTb/#=mBN0!P\p7L%cˠ"/Ƅ!(p#-R C!ף=˂Ш)q߬L `X+8' ?Wrs23vJU!p"(A*ep~)L( l"teHVEz+ j)=u$מ<%2MiS%v"rc*ckk86q-Sp(6&HPHd"[%p1C_'i ɤ~nSO4kc 64:r`h0/2` &0BP`]jvsONZ>X""j0D,*w)hAg 786!E -^"W%#OAI5ly` .8D&uZLÎ,gYWlws+aLa{ `Qx#|G)0R4)0r7l̆"7S+i*Zˤ쀋hP%mfLhLk7,7L9}GG@akoJ7_%ZZr S5k[ _uUYq5cҪ{aaIFGV?JzRu?T`d7`? CT{xN'XIZm:U67 A"t1CBCA:D.7VÐ *8r28[Sn+\?9w梟*圴B]@ayɠAiBqyy}9yyfTEi4FkYYن9yQ((a4IO|Wm!K}$Z4 l C&hOTcōxVP/7R_v/b"~/$`ɠmtˢo:+M,GZUH^9quVV,y@upHr#tUPWc l@^J4졤Z`Ezu͚#Id:`Y T1]d /bzX)ĨR Q֫>:wE G 9 %kpjOTVyya^L!DUʝ@.H؃ra0jG8>1K,g0IW$kl@~ >N&we7PƂH}J!B`!J^)3<rk B/%mO[wK>ޘtw Uo5HR?Ro=W釣BG2Q ![t|~U5ciWfWtxpA% Nj{^FC⟘ՅUJV5T"M,3:E]^]9)F:V _1ł`Ƚef#kw/(,c<@Vd8C0ei g]KiX{/WhO7٨{aWiWi!-umRDW ¶{MOf49$޼v$N&9J$g ;ZA=1)̦ 2GuG$cXzI[#Ft`0ĠPP0° p0аpRWUPBTcWײ0F&PUpǖ8hI[k{ڵ&vӦܴp`*g+!b=(B@8 uwy ۇP.p]o;k&眼 64H+dשF=Z`|%w=pr 0mvx|yK+Uϐ. TZyJ)0KIPk͎lgP# y Ư,9& 8Jn$!V寀b/rZԋٟ! چAW9)0ץf.ϝ? nQJCkYPM&d.0`,+b\0/' zT P] $3003@_O=GFYJzQS _zxa.c2Dnшc:cFcBIdA PJ.dN> eRNIeV^eZne^~ fbI5`gfj 'ofr'{i)hj(h" 顒.hRz飓jR~ jJjjj]ְ^MNK00q- 8^IByk\!["j( @{>tP+IZP AҢtDMPAM@RX]=/'M- ܥڑ9ߒZ/LV)Hp`%( ݋ݱ#pGvGX' xˀ`/(`ZPeiCEֈ<`x?M;F^ k20 b#D55UT,i3@H6ep!Dd ҅@n@sP"[_͔t>@BpPAyI˰ ւC֪Գ(ܜr`_ ?}qM[^? 1N@X_џEZ㕤,CPE(Q"T3,gZQ ,p#ezEPԐd!IG:@N9ą )KQD+K4"DGwJa|,kf;n{_'\ B0"gwC pb0H@ @ǰIkq`td/MFJ2L@A[@'&SI\p`!| G@dJie FҎtATƊ1%ڵ$.)D H0DC*,0H¤,`Rrр8`Je΂2-2 -%Q $^7ž@$WDyvщ_BbXBd@v O.JzQkc0R F:' b݁BC XՀ S<3 q@4Fex*Zȥ<ŒZ\xz'FMTt@pk(Cðz5H5  IvSe/Y2)얐Њv-iOԪvmk_ [TeR-j;v-~k[ַ-p[s Jwԭu]T. Ö%>%KFH!Å5R؀5ʚdm6oZF,}[44*xx5`HBz'kxWz@r/4ѩƅ7>m0 H;!c"`fQ%2&ad1,W]}WCfY{k_^xAMnm'H DL^CސG4kjUژKe(s TjYn;;g @va0(IYiȾ$28)^M49^N".yjsi(JP:4ԓ% 8U:4L)dȯ狀(^aQS.D@k 2hc7Vڒ`F6@}َ 褁- V)2/^T@/|0D3N`EC'rxN],L ^LEj` -_<5Ap 8ęD}&PvOJC73j)n&spl^s.bt$WP.Oc!pt%%2XNcot 3ָsKR뺼k)(cM~2B)`fJ5#tX]$APؔD7$;@{'@:@
saL!SXS!͠l +(V<UVws&BPKX_ 3=pQre -pgfUH!Sh%?T\48R͠ktI'k0h@q|]EJObF>NK&kڰBBEYY臂H}?6x%6ϤLHkKd*&%’ca3#Sҡ@P'6 `G P!'P;7@\~!ekrO@c^a F30vq&R ѨEWP swQY3hnPg QQwf@%P TRW!H g s*VSIFtf6"5 3: k I7yXG1jY!!؃B%Rv$Gx98M`EYf`8MbЧ*R*P2b@Y#*"WZ9;˳=? A+yhE}xJxش|L+QKt2WY[˵]]vPe1^TZXC!h4"!f5[ }Q.7UeVBa@ wEU/ҷΕ-^ul|)u)Et;bu̸F4̓ S&"Y@I3qP(jQ4Fj?d*!5 /$|C;a`XJ&FK0BG7<`i`ikS0\zzY#XRǧ>^U9hQNdCy@,;ci$h=t3eCCe:,Upɾ1\fNQ=iYQZ9@?j'@+NU7usNO:@I$ rL`3 FFDR Q96H3D@"t*B3plRB6dq$Ġ ߵ @e`9رkSgB8f,:V@ b|1QkXAT h# zN 4uilw[$Jְ,>PswaKFM&7m:Pe_*@{3NZ9|u'MmPY@lę$r=iq;ѯ{eES牣 PJQ,w9Y|&-?  KM1Iۭu`0]PU8ύ$ mF4$@- &\M}z ʶ ~6P{ ^^6``ncc⑬mc6#2p,>^(# *N :-*cbw33TD^-3?.p?2<5~ UDަ9BKQҐn걥s|^ WNA& 2l1Qɠ sqQmPsN!^$^^ ̸Q!NG} .HItNqCX`Cx7  u9$Q皃4P;`Fzn܊kS.1`Y0B?7 qߕ^C-E /кPf $JR-@ew "@&N݌/(=8A'藐?3U q~o-S{Lʶ[}9Ӥ`?-ߜAp`>ڷ]--qƒ;X_mo> *n0 oD_8aFmqe_XqPl_AH#c?`BJa ?8t,6?7M -+iO=C_?OHOE?NtO䌏9"[+FRJUo$.(N܊X?~!nޔLcq6MB*yvfk"'p~`h$A" S [ԒJ]!^7 : kbN8E-r<RxHXBr~[d4cWd&dأ$+OX!x2(Ojx"-]Zl Ϛ >bx >j)jŠT@i@S9Z43Dc!kLA(H=plÜPAZԤFu8>in#VXSArU8(m#V! 2ΊVUsk]zWU{k_/4kZ55(( Cb5X~**ki%( *J‡&0hklAeQm#mr @\+Dm`TH,+܊ZKUy@S$5(kq&faWR4XY~$NCzQ wF6[Dd#36˒ "0Ѕ01$5T6AhX|Yjfx$p -& 1LŦ+NI ahGwbes ogLuJC l;L3 `@"YA " z$2erRY}v"t( ц",QΓl-m z .0~ `f0̆!)(y:=Y)}UKn>)(&ԥNW( ߮IEbY3g?:ؤ Tq=lZ~ j z o:|L!Mn@Xf*ji+sސdkR~(7sbB̴Ĺ)^G㵋Y~ 0^7XFE( OPBL,KO0} rƲ3D=t`9qSkC]sv*^,?]zΝFFgg{v]s{~w]{{w^ Z/ҷi:r5jP?|@(@nY -m<hZNlE\D5EVo|xEK^B^1w/^"S D1V},/|-QJhF!6`ZE~V <)Oy:@?ISZNS.objectsWNS.keys@ABCDEFGHJKLMNOPQR VServer]Last-Modified]Accept-Ranges]Cache-ControlTDate^Content-LengthZConnectionTEtag\Content-TypeVApache_Sun, 17 Jun 2007 13:37:11 GMTUbytes[max-age=300_Wed, 19 Nov 2008 03:37:49 GMTU60262Uclose_"1fd626-eb66-4331a2d6b0fc0"12fggh6_NSMutableDictionary\NSDictionary12jkk6_NSHTTPURLResponseInternal12mnno6_NSHTTPURLResponse]NSURLResponse$)2DILbd #/135  $&(*,.02468?M[in}"&<INQmrvpOfGIF89aBBA陛ۯeƶlqi޺!,I8ͻ`(dihlp,tmx|pH,Ȥrl:ШtJZluP&8uYnP2߻3 ^ DcqAi_\ (rr C  u) [Ъ< $pz|Ȇʬq~w~] "vI Hr(ܝ}e 4 \硻WIk%ĈٹIm[Ȏ| Di3k@PGs@,'4WBlȫQDn,_ iAQ.qAQY~QJa[T|okhWQ\d"ݡȍ7jg2|HQXUyriEU[)J-\|%$̄npY2ƆE~= T2;+uAW:L-US&[SAiq6+XYcXr| hL!U%S\"yR\/x p\Hc赞c OO!ot2t:֋%|$ȁH4!`!c4,H n pY`‚\u!Y%4r!2p֓PMy Ǒ-l&@Ojn:kv$uatށꕨ mP.sNġf(Vp>HLWnUNNcЋ|%eU^NᓝEygmЯhUՁvAɖ*k驞G @aMtÚ!.t fp2=``ݐac6VY,xP%̄C"3`IH%1[,!NdL򱔈%dVDX)*EΟ0$)["FHQhdU4 1@p4?Xi8> QB]<"F:򑐌$'IJZ̤&F 3"J]@ uE Pu+8##%(4n"i 5Lh ҆X G x MY!Hyo &`mb1p:T k9u1@gr1DǢ\!>pi`8viDF:Ԁʉ~a3l ڸQtFB"T/7qa `Keib|hE3Pn3e@'˜hb:aV9S1X;Pz-Q򋻐m4tLœ`lj")TO/fִVQ r'DU.E*ɫ: 5"ΑdXR%0Nn6cʑ|ؐm1xCx"k ȕ"qDz V5rI #7͑>+aP<UYZTm^1NGi3,F &͑cd K$te 4ұ)EX29e%:NTe"Be'Mm6丰CxY6.d܊%Ҥk,ðT|0qDzڰaclq)tȶEŇʌ|(a1kR?X`؃e 3=F!q΢T̄DGgC'^0!9E˄`½̪\4|6yF8ؐcX¼fX bFU:|잍DpYd@F]ghVi] kz]HVg6uqk1|QXs#3B[r, Fdض% d w'16:Y`j{:͊hh##[8ᦑV%1-M _Nλ>-icӆκKa8hVsë],;O}f|ZfRu9iOMqU4r$w[i:XJ©OO-xA[p.q_7UCivZ(rZ|Գk?O#FiU;- ) _X|ϸy P0 _oޅʻn68%{{Vc3OfXK98S5`uBO[SiA++?}G;#uztձms"C\׾q[9cX-&ttv3>]e%"ez|OW^Fb$6xT7bYF {_GVFV2vy%R%Xd|0V2bhFc'Jd @`'OWb$j7vXʇ őW 3UBE afveA6cO%cnhJO/>"n <z {uh29r^816V8ro#^B.Uv\#]as G-s0bS:X{]V%gpPi؉6u&8CTCfb{_Xsr`59 FB,r5CfYuP0}YwsWT 1YXKSTQEWoeXhpUTeE8D&%QQQ.eEBahV.1PE8K0tPw uTB:6u9u2SEL 9J0=BL9p:Y|DTbA I&Ht*I0%T5KuT4ВXh@@?!NxPJ7 `רS4 <4TS7 TuKP)$GTVAI@-Gф;cS/v;oUuSD 5Nm"Mt&|JpYemK/Gh~F?9 u4QF9H\ɏ|@|V[fT?!gŐxr UW:pS'EWNXMi FDP3蛃E%X0j3pEFۘNTbU3%urFCfmhqcfqzd#Z6VF 5cqHyO+tZ~e5\@A`T"2qh5G.B[$N6`|[FOu/ 2)#7MCZ %WrAs LX, `r @b @٦ss4q94*l4Oj jY'WehB4.a֥i򢲺[Vs7}t gYG~jpO1irUs7vY5o' tpkQA`%j5e[Fz[y"qP⌃ jWc9[$GS;h-n+x\Q,nqi[b~eG)'xzA%@kJs=czsBsjMfM5w?'WYO_vO(rsQ!ӃF2p@NwPSWZeʢoqÁf+& MU&af6y1famfW49}t{q.$^;vuX&/WiH7gH9o@Y{ YyjFe@jx`@MEASB%5Gjga]33kEMbRF=g Puo@B E6[PŔ%x)WϕkvCTB_{but[sHuo K~Ov':rpymjO rBPp$Nh33x8{&r>7\9f)R3pH[Ҋpo%$dYK_M1c ^ ʦǾ%XR;9OUwud9f؀4fzPHŶXVi$H&?LWZتk'vE yŀµ,(,o+zu[bHû W#71CP~HRs"de 6%8$nxbl%Ej;1qj8{2|֟!6&dK*a`ca{IZ˟g|Zv˦1KZuZg肏Zw \!6ḜUмY昒 h+Y͘}AaWZ卮)V%KHPp铂0|i(5@ɗ); <ݑ7}:g]`zE-PTVFYֳ^mW-"1Ez fT tdnƄKV0r];] ؍1脕1iK K|9Ki=ϙ LA11^8saDBJt #za}JaSB)x[^ YB}rWɇ g)ԓZ|dm5.0B/7T$$q*%4f8C;{KfblY7$КQԧt]QTFh̛lkT}߆$KT}0$}P-]il|!yfB vg+m{靘j)wXg͎vŹK@gfs@>5N䵉YtTzĹ[Vi V BF%' n\y0{8 610@%ueEJQSe[<>y#CnIj5[M g8[IUʢ>B7 F.ZE=nZnk4hgŘJws55dp3[WYdKdjV^~A3Ķէ}4k wjc~n֮ejםe"]RBh%h26Vϫ%G>^wf(~@"\hMg1)+αugkam$fyuCm0tezwx{;fVb,snjfO 7iM ݁ouKWШI3z}GOB͵xj)"EK$,jOc.;j;SFQv/|hs-rQc&R&4jjCxOg:K>#L^ϫk %jL{Sx|6߆mhӦˊs y$ ha4G.Tr+|T t>S"F0pnKC2HBm?C*Bx@ `[1X+B808`Sl:ػXXxhYtSq )j)]lÉDzr; ՝Kyrj#*!cr@=q+)pna›_Q8iDseK2 A!}Lw;7fb`mJGO2Y,Ce >y|@a/`!ȩ{fI(_":N7ԉ1mX@ٌRVGnvc&m<2%Æ T0d:"jTQCOt\` mD@{t 2+&#7E8j+9E3.^ s}.&f3bH+㒔q{'WsX x9:Յ`!#Ӻ/u7zBhs5:9Lm*6n<=I稅g . 9['ȏC1A\J%dфo\sjN $`}Z)gyiM(ڈ2Ӆ+>|wQV>0",ʢ) L얷/$VQS +'"Cꊂ89b7f^Z `0O h b)f<I Ө#y*QN.BCWo D(fz-1GV-oKTG_H!ٜ0oc3/i"uX@,n ~4;`!@cm&aԳ hsxHeLI $R> X O-0Lfmi7D^3:lyH-G3~CAP:x,RO)ݜHbG6<)TB:f$q+PmsʆT`6|7΀XU^a _N[!f?܁": eH6`M.8E.o&-xMs' 0K<֏xaS@H.44`e5YOJtUc#E!A fUoeX kf8T|"1T:'{f`s k(bDZ@p|dBl8"3hMhD"ڧu:1 hm \PĶ1!nmt$~J6;5|G2R`*;! !7(;#\@-yTNptJTv0IOc޴PJX(sqC'C^hy?%:$d.T1<"`'g6Xcj^-]:k$xkX.֋]-]yvJ:Ɖuÿ]Xbx%a]"Hm^g5r5TU{)_dp{Y Y>*ZiC|!+{qɫ< E`0=b?Sz53μ$pqqV71 [P:mP+ *&Jxy#.+@Da1 !q=60?Q/%9Cq8 k\BT) ;'8Җ{c#AӪ7Ю T -&- .<}ڦ{(d)h >J(t( .*Gf.y I8H j@ ۹<'JH8GO2c Ã8BR/ CG4 @CH*z\a7?8z*#:".(>DDB[ ˄ͲzK lت`Kj!2)R5P cKE)xKsLqM1ɂNC$! =;(PʆQ`P*&x'`HL"vLr F^lo1cj9L;^4ҳbB /<}X5iD-ӳcMcM j5Zh(n쫴N,NjctᡖN+Ͼ$$JEl P NRWd@#.͆%jXL,g;l|^oMk\ҁV*!..h _!XW8L"0;CSλ􇍼^RԔ?F@%Pm Lف ,aİt+TH D: ż9+艶S%GD5:rWw3ڤS\XT, DR+t 46& Sj2)ӏ\b'Q iVzUTs ,՛l} Y!|$SrJVqUd:0xPZ $K!-x8I呆9ːxF; aYp> pB$Čk )*8FZSшGElĸUۄʡ;񃬳,ܸ!;1(|hA#e8`ٸ=);8)8m}i]}\1]k)?[<xZ)n2^g^奺أ<ƫ^߃ <+"03_j9_3K]^ϫ;߱}ݻW OUUu"?01G)4`jI u=N$C`ĽQ KU*1HmK?é(R@]Elٓ=C`\!֘Z%Ҋ* c <`iC8C0~ #nP\WHD\"lRZ!,ȪOM4uqW0$9.9I$A Ȕ͙8ލ}k?Pf|ӟ5Le( ÍcHP+'W| LqEؐ7h<]A8&cVs[ -zFp!OHuy==r-Bdu6pj4@I% *{M0(2\(SjHEr@@/`PV$x`j*spF)pצϰ(? %o-= ϞZs,/_'M.=Ϝ& *q`U яO?΋Ê%C01HɜiDFr*/'X/LK $"ua%Vg|0!bsT,:׿gr xė42nr!I.S&8jF,kW+=AK;xOo37 |v,?CuIĶy/Y$@X_ߡWb!B$ed'hACA@àjCʑkiP+i1@/ 3ni)2m),wz1,hPD>VJՀ,y.0A5nEe~P SuA:p2=ms咔R c uI| CrGbj.d1̴ `L{.Ta%PRav=0ѥJsE~1 +u!0f'M ̚7њL|…YưT^x ͦSU0]*g'kV/ l:ˀntZ|cm?n,Q!%p yM1sN%d+Te *Chyg`r?dS<0t҂LDhѥr`V^q95t5;b !M^5Ee#-qց5T_ҋFEB}Q&C\7DC_te7yae(J*N*A.k qA_Q/\ 4 6\RQ;/2ČQLVNh"&rR/b8!&.ӭ7x84۹È"cnn kb|I E;뵇^g( .D_+LTp |֡:% ̩c;R8|jhCC.m /1BXΨ~72Bw%:9@Lc )ؕ@aol R,F@jy2hp" 5e s]e v 2AGͱ`VG%!2Bх ǐʪJcm@[\&D+tȐyX }6t&~r!K-I mUMH*z.|qiLtDOBHa##F^X7}%k>+ DOBvha~x;05Q"lA8I2 EPBBJx&OfZQ₤P+x: D\ZUuYzpԙ2Dˆ 0S8zӻbd//YC|mFm }jTZPRA}3JE3,(o% ᒨr߸9~$B_n,]t I| +"/X@/JiM6/juOmzj3vDf^eLbzko ( ǘo3!].{ G]2 K s IZ2Ѣ/+C+~?`)U95Ra=GKv^ ]`I.HZE4" x6h`pN6{ѥ_QP,;hY5=i?Ș5)[::15=3P3bbg7^ΣOv6Qjs7i} 0[g=s2ƾ%s{p=r[;4hy#mgp FSoY>;r!.YG4|9!5y(?ATWoT 6} e0=@$n v`x`1)A2 6]] *L`Cč%LIE>]Ġ Va 5 !B`^ b OPi Xp ehaDUP8ѥ" Z#:]ExՖДq)܂aT=E]TԊ_㘀մ!(]ۿIBE+b]#C?[^u[Wm²h2 嵠"4#V'QG5iY]bv YQa]%Rw!U&=E& **2+"\"ىbD)zc%ZL\dcBjxJP<D9xD[& <3V - Pc5^!!FoKI8 ԬKzԙ-}DhMb9nĻ]8l/UET=,.Җ0 +84Gۡe# e:UPDO֙#p9#W[NaXIdJ'mRR-M喻c(CT&+(E{BPm!CTjO7l%,vClɊĖZ| cB4Z!DT _e+Qeq@d` C5c=KF+HfJH HIi9 zT$Ryf{b&lf}& hDL边2.xT^mԃq)tcWrYVN Iv}a5^#'Uu#< QgUPW6doe'FU1jKiXZ >#XH#Ia$q0'a#i WYE! X ĨjaTxJ:'A'dB\Q`)+(G&݂.^xm/]DX2/h ~r51C2)qpb#BV'++OjrIr*2+2EG-_21&;o2@p[(b0r o` $2gs'OCU f%jr5U5c63xmIF8!M:2;H3rk8r 5s>ZD<+s5R@g'OD4 $B[ՍC1sD7EI{}Yta]2N>@`G qnw7=0L?,U("1A[OcʧT@k`s[Owf> }5YT{ Iw]CYS9/ maǫ6-wF|Cc)9gq;8u@xB( D#1#aY]g>\p?Q4" *QZ^JbT/ 9[az(f pb(@x$&3$𲢄JL0357=6:0!FfHGDH.3>1xb nyi&&*zfзTޅT< :R + njqRC@@#4pR%8SZt PKRf͚'cԩYF v:hQ*BNte9إtG N8 +'u"d8VC^QA ae85Ŀ^L[B,j @HAF<9 :+dkb:nq51Y_!kkućh}HT Bʮ[ybz*YU NFzuȼMh/_@e]k #u62+2V_*VG_{ZiWf#2LjJ8/qƉ5a)}H"1>ڣ:!lA0 O{'9NQL/ M-WRB$*bI#!(mJ03GFhϼÇN||ixt|cա:eܶY%E3/}hGlcs7lt`G¤bRZX2a.G:]?L.gw;4@ i^BxPUon`a*= D(R1n(=B?d)ܐ9L-2`F3\8B"Rhk_`(0禋܊!ڗ3̟V'jNOE*X6NQ Sp2ֲq@뮛Y 15ءv +j@`Tvq+4" #*Yr˃ӑ\볡FG!8S}+ZȍJ\}(nFX**0/0܍B*lһEhD.(" nKSoK`ɂ`",yFrA SY.P{$)OKј?t IctNL̢-8a" >f'G2kiѐ_<#(2!b؅|Lt&X1(YI]RTb脂\7\ȈNqY,ubƄ$ޢ+OTLR:$(c0pPV|09sNZ_*QRJ+y,A hrr}ZРM.a4@9m:a:$>/NU@ 6QANRuK DR P #5f'8Gz@Iva/! DCRMC"f4BȚT s)WK:bV5Tl1.JsG+D@ FvZ>H PQjڡhEA5}5%WAI3tV[FqJΤ&<)yы^% xL+i>1~CPڝ~S 2=4 '#81O1mltD |".x{~ H jVc{ҘA5UqeO5). |/5&^yT?yTшlbJjmцeaZmW%iF aH&#H| 6% 75fk@ a'륿M-Ck"yлFXXc-X~?\ת1fjpVq8 d43XTϥƭh ^!závObuř0)0Vڥֶ{B>*g'\A4 F!ԗxvQhdUeңI83kg>#sFeP` MHr?q,dL<<=y2Y̛ڗhKu 4Y `QAS3d68f`<(@3kT,O9U DkWЅrHX4*-G0_ _J/T@Oh A)Y@( =KN~j138NMv}R@.tO|_,7\AKiK”kXwXe[}> do^l c-jo|iۨ:DA[ -. PIƅG  K[dow0l_cTiYϳ`cDPƃՖ(! N@X#*@_jml~#`ʄDaBP0p ZTH$. "4W":Up@kՎpN -@Pp )<>*PdlN2@>efM MMO70"8sb*b{I:B`EiN&*4ӫŴ!H1Q!L1$EႲk IaA"" K!`Q\{( {Ee7O0 ȬxQ,aKw)4RJ6H0 }၈I6#:#ȃ֓9ę{}@smJ޲JajWtg7^c*4./s!*/(D=Hl6A_!J' d] LxdT"$*RJyܒ16NP*bx@$ gldrd/LxI0U4Lf% !`&tL5U wTU[BTS δ~T\Hp\d*IfN@O @gO 3o88$V€ h{L?B\N#r=mbIx^/0,pA(U_qi5`Vj` ` _աFG/bL=3Wu&Dfc`NcbF1Ecaͨ:@*h^A\ФJJBAKϲLAG_LLh]D@bS&1#SCrK E-"}Znk&%T`rK*G rlkڈ`)na9Ebbm#^۴NU(cDhb…7bc} 6tփdQFEqGJ*B!T)_ Cd) :`JDxdL<ݞvg@NANX3I%?}qtMؠw&22wGRK@@ySn+nUwAKwjGTp=6n4fAdNbG]AOX2F7¯#(Qrd..̓-46xBt24MojG!EJ%T)ȋzwkkbHcK;E%rj2-VV}"ҴrW""{fw{p{GR`0~L=S6vB~)?d44B3 xdj\ҢwQdÎe.4C5Ԅ_|L``\z>Lʧ3"pfF[.{,q?ƗNaTwf+AąqtEMܧj`uD$J6r Da bkr}ILX\ .z"6Q(@[|AWL|OE'Fu@\gFd?P&KC{3Q.ԠWJ+fACF;ڬLYL r׀p>BiQ(64Ut 1" Ar\J2b`AMQSebRf1:VY`8J2g./OFbV%i_xcnaQ@zdcd6٧OHLY[ C ;<e\!-H sUO;X%Fk';/#pC[TR%]L@zfSlN(k# f c1ѷ#;4mmA6.-xڍ3~8 %(J{>xg6PMdRE񱆔";KƔf5{ o*z~M <…HL4csf"9g&ؾJ\ڻO4@ 픒(5#&ܑ @eD́)ݍݨkn<@UxEÔ 3za1+6 &$0;= z7Ʊ[Fc|Bo3k5 :%_&2a0NNgRr\*ZJ}Jz t'TdD 5\vm!Hҟb4#:)ڜ5 Oԝ Cҟq1$\گ}t]fқְX?B&E=g_ йjImѭ--]J Aם%Vw?=H]1նݝ*%З|ީg2!a+޵(P-%Э>?Ĭ9.y& `㉮=g1 RP̎=)nCZs;!gd[蝖xw뉾ڿ׷. >7c;3`ʐ᭞>浞!Ftm"s~ݩ˞m8c)$[' ;>|^P$kg`.@?S>]-Lq=5#}SU%JT;3 6gUHȅǛ!VuCz#XM\!peL<A`&v ߹a] PBCá L.P fHDCL*À ",+aa N, {~ 'аpӀp0$'*:JZ:ꀐR @@ e2p ,30!*UԒ0 a /;z2Ȑ $cr\&Y|Yi؃ֹ` ; 7oޟ[d` Tw\K-I͈Zd(1ڵر0nmk &۷^&TҲ"Ujf 2-$@f 8c~ *x p EVNj{k|R-eDEċ/+XvHЖxԧ-q( 0XBqz[&l"%8- mrzhQp7u*g ;.i"Hm8AC\J_̢2"X?ޑ$HR[g(YD @/CkR~PSMb63&4akV'3 *fӜ@a1N3Kl~`5>F ,4.9ǣ61mTBCCvJiJc|OD%*ux !6̴uh|hK}gI䣇1H:3D&G| Kvζzq̮Bzp;tI"H}[-g4ԤZrڑR= Mc!͉=8aMrMf|}HԶlk.ˋܐM"RM>&5|;J/d~IgKyn afMXc46Mm5Zpm:AiB^p^:q0._ܘi媨Qdڍg%/N$}EbT*O"M}з[iVS77l}~r~GFZ:oX{Mf["Vv5CO'w'[x |*aGb#=^-wR7]OKoS灦o&>v{M=Zuv$r;ȃfAe'3<06Nd2{v+Nr$v.(H OF(FY&:SP46HȀװ.-p rU/P,7P$c2parEp eGsbtՋ*↟awX]xifk Ep%]'1s 75TTmI/x.qv8chxi2Ps" 2MWǕC" )g8ib8 #,=+ʀy!ǁ{(D}_+5F ovbs j@:At7k]{BWU&y' @jr h2xq0&rYO)~Q E%C +3K \KUzikɖmi?V 0i&o7R-5c n``FD+$E2?.Xi;WXzgUΗlB2+@Xs5ezЙ.iנ)pXК7ՒhX!)-0<7I7P*ub aD E6'i='236FJ5mc%XsDWc@_ÃP$"(=bE Mfy;l;ȈLf-Q0%`e_TY e͖"2cW؆`JВ  d Tђx-Et40i APQGqZ% `CYKuWp"Pp19Ң,,!?id a<[$ZUSJEg*IT7XfW,ga8 [2&m'r|*VQc,JY%y٥% s A|vb4hA *-٩*ǦdJiew`H~fШ` xA<(BŚ=sЮ@±lpK4p^Ʊx}J59X檩`oєT HBCE7FR϶2jӊ"lAF.hmUTYAX:>[)bHXKMχA8'{:@Z!>Oz5 ug+5uz2M³VJz, !%`TVF% 0-ܒC$Qi-Zu?;&Y'[$Sv_ `qȱ D%:^/$?ium; T1. wt%c@YE[ ?|(W-NJ9%?+b I~!=9Syks Y#o,#8il+<[A tcNaxn@)8|xS9Z\;|3ѫ>KzpN pO6QLK"зH`T?}jS!'(es_p܁8R1-.>aM`\bkf)"K3(eؖp$X2H΂i)+:+d,P3\^ wCDp*S  Y( %gڀ:J0؊ĺLF~GʩcA "JUN HÉ^T Jz^ɫlhTK˓=滏}Gw̉L͓9JLJI#%qB|٘.'b{.BȌ.-[+Ǔ+o4StVm %[g_]$C1y5:+)-- Z2m(==JvQz|}|2DHD?L5o"9,Se'V[Ui#`e b6`P-zO  ͅ/T@?ITڀ 8#1ִ=i*, "s#.0 -p*S$pʬȬqU51qRbfF@8 2{5"y)s(2Y@$g+Mr"m~t2Ꮐ/-B?~VLJY9'DCڑ7@<'tǏB_> +<KۭvT6lт#RΪBA26z&,ISچ#DN4 y2zSpam} <Փޢ4O B q ۳i]UWF50АU2 %{C]D#]SQwQ$I\,eE 8| KWCl X^~|n.ݐiz]؁V6Q QH% 8 -Jr#М?1 w$ ^<QѦ pŒ*$@"iofj`A,j irkX}ݕĺ 'Ka[?ce5f:̙Kʭ , )>LHẼO@>de877 h =.i !t$yy#+D`PRI'*!P*^LzE(+ SY 1N ؃ A.L!Ev5A%oU ( @6UZuEէ0fi=0zG ,Ý1n~:aPDg lX BŧE@&0%R Ih>c"$L$i5h"| uǀh7^jSoPU(߁@&nhB(ZACl}F>H&_Mp SX2"`60 )qa֣jB! zf3B!.c=3F>آ !mh, - Ӊ*s KLLDDipsvj"2AP 6ir&&idK20-TKJSxƏ-I +y$ۓ? P=aiQA5'VԑK!4| 4(yJ%]AS?`JD <H+v>]ע]1B't~ +\Yj dImM2aPYݘi LFN&bѴO@& LbscLwOG g&2sq$ 92,rF'tdMB 'd,-7 )ʋ@7F˸"E(* d$as4g/ڝT\>!hukɁ D D _ȻiA@CvW*h lD1np^ MxBC1PBe.s[WP2^FI)HʀI碆\TT28pS%Hc(\Z1e$`c^N' |0q9 #O~=+~X-$k(6Lb_ժhE΂l @LSŔlK"$6nVǀc>9њRz?A db R1;"<1N &D`l#( J<1a,=3A(HAR$ ih)Xƒw-kqz$t2яϚ!}<3 QEjZ|YDtBx.A-ئ(3QDdȧ>U{6@07,T\( `2A4ώvdF-ӭ',ErK%95詼s^&<)Z(Y%cp~27@La>q# d]B@$ekʽƞ/[5Ak5ץ[* b hLsV굍|&81|CPj'Sk5YqyqR':w"tI@v˘'<`UjdKBi 2g1[-vfp.JC^t1uX*0,@>1$_ ъiB` 䵦In:?R,Z15Zpv`e)W}D> _/TeAqyׂHX ppAU؜Tw0>76V լ(Ǵ0X3m-U![;.7w 0sp,3|(k:Ƃmէtޑ{1KօԘhtN^0s`H%Ldʺ񔛡~ [or`uq 4G a[ z١NW V5.ĝ#8߼*=xe`D}0.d|$^ǀ_h@|Y# eĦ F?siw49cwSKaػiEy$ya| 9cM-5s (7f]0ly$}]bf"DR6iMco^=Kk0;0F#})]H#rgwLY@YwRE+ l ^GB]ĂTl-H:8pm:×KNb#^)¶3-7zQ'ZjݶȸDi0t!MPE4k#K?r -{؇d;#8Wb;9Ca$R1 h::,%?r%"B5G%" 6zW87S~s;4ǑlBÜ%x,, |JБ\ϘtK9D4[R9w!% IHˀ!Ĕb،X |+.4G2[+D RņH'*"5ڰ:_: E' Q/@9NJSČ0-$rEebQ:&S93(y)G2wx R Ўn \ LPB>g8Fl4ݛcI`Lx&Y B P#v4XCr2@` GU(&@bߠCp,K HjX\ = HyqP%R( okLSY@ɅzXa i܁@ iB{ʹ1`[82-… .7JP"Ay;9a+"ԐK4J2AhIHⸯѫ2jaڧET+8ڹ ҙPe${=jӀ:dl:ɞ92^(YPS/1go݆=oe [z H͉a,+De PL 9.Z[#ó[dTB{.( xcXC Vv8-AP9N+@T45 `xs{:1uZ5e2q7K :VXt4:YF-C9P@5v4L, -Т'y,)YჯPU0aa >1el)岘§0 ]d)SPRF@i;-C:-D9cPdcŵKa"CD({ dP194E4ȑ^4(d@Ϡ0.Х  8 ٝ]Xe șS6'UC*A´? $ gšsebVb>bdu.d x!}@ 烸&qD:(ߣPH= T[Db>0ߗHPWX %^ ,&E$WBxaPƷ+9K|P@.t&xVԥ=C1.. c%2Ss22kI0#ѫ*!` -> ;(9ʈ&:V*X [><[, m3~Ɯ**y(dCŶr$9 +sB`X/XgMzL cP6V@"p3{Ώ/o `rh^ٺ63&0 T>ʜ6G T}Ĕe¢8#M..`"o)S0/sbf2TP1^p4 78/7n6i(7ܶ l|vg  G`qLE>,"KSsb` "ȈCP+jZ38@Bs}AMU0ˏE}as !_I̡dQX~^w߄ XN qC1؄va6z8\lС5bd.! r,+h?z|DsJBg<-z&AE`la7/'S(dmXJQȉR:6NuV3)/F픁LZ(.`.L{*dx5 -!:iB D~_Z+"u$0H ,Dx, H`!F5"x%^6zw¡.*7FHvCխpeu#8H]HWq{v{w"qY5ϙ=؜/RBw::Wyb=84-©d_Y;իuށ /yvWQT3ӡ nK"7.Dk̤k$ 8T":ч3Q1&5 &َQ qx'y >-Krə]FH17bјDEҜt@'Euy@$lrA'pF4!DF$qHN `whP43׌Et$W] GFH˞^)cn(**VD Й*8˫a YF:`DBa<P`Frjy#H qh`O qJ2 DYhӿ()"*ArJҵtE_0a2f>෩ ! n#d;5(s ^6;<ʩ]=owR|=7WqIy]ks %^ zB`H4Q@h. XD '"Aэ!p2섂lB\XRmN,> L TOQD֥􀠉hwƠ0CV Y A)]^X9` @%REpF_.MP<ôxFy-(@y\LB@[Ae%Wt5䕁 f}Yăg uh"ܝD$Ѻ5@#QH?b0EE $qO N\OH9 Ap 8a} J53a e#'X4WEUIx SjY-"}ƈD|PƗuN9洙}5ܵM$RJ+v7 1A,T?'k "HD@!Hn}H||ffi#iIyز4@gRacaDu"IU bS<:6 `XD, #Պyj !t!IRLk0 % 0pBA~e=ѵAjn)l$d.( \;`c$^C K8kRQa&,V gC(FO gOg,M \Bjn; d NT*$d-ɤ.xKDXFn@OT$Rei 0[ u@,^~DpV ~S0 ,Dd̚wHog&dP|:Rc<*oDJzg{zNZ8ijRZ>1Y:.0$rh &kRˁȠ}$ ݑ CЭ=!Nvچp"qNͤ /ިm`+\2trY O 4IPT[ (0 gzFJ=mXnK',vL!GF )Cfl\\+ -|F`R[* -(qz)-m '.xpYG=OG]R>r&s&EkHK0-n" @R)i3gH'ˬ"EA::r3 kt3ψIB-,#lR2.Ҍ$%-mR dS% I̩RL/gpb rWRLLIbk1qP |A (@[|ơ0Y{( ^.'*rjjS,lj]hBDuA`_|h4]lBVVۈclN[z7.H\N0 '_$Rɷ+75v7 J"1/n "LL( _׏,8|U-@*=M˸NY7-̗Mfx[9N6 [('V8XHEZ$rva4WqB9 wꍤȪ.9d--(tKL6d5DxLq\xUW;i߸XC 8_yѴzzZ9 9x1DLr8kC)P *B́r m)Gs"R ;*:{A$ Y`(̀ADZuKAT<+ˎ() HD$=R#A= obQIN'cU {5J/ָIR|[b$9鴖ܱ=;9Bƴ52D&Ȓ 1x}Ɏ<\BX9 o_;gs{`ȶ(a  ›t=dpZ*yRmLA}~=H'-.sKTiGIdi=TuS)q|k6Ľ3=^܅\B~krrxj> l9HU*D; Dy@zG P,BVJRxbL&9lɍA6N pXLDB 1 ^ uYl]u(.JX3N}7 !`P00-l kAСa aA R34Ara oai4STi3׀uPqk:Zzylhৣ$l<!=j=`#HTg>&` ujA2@ j PD1+C.a82%Qc G> VPm$55`A&IR%XMSZVRxCÁx. e_|>J͘m \ ND@![+ KK $Mf Y̒XO&,9PD!+֬ZCs̥ӫ?H<2FL0m1wQh@fM\y􆭹ۭ{A>L({<8:j0lx"" Re*K0X -\4[eVXDdZ踤RjI-)(Zfۑ+xC-p醬T7$\0'׹;, 넓ː\Ђ("cJ@3H /[2bA> HGtrP\JB6BzQt9$xa.HGBK@7DN\>JꥋPVi23i0+2aI~QlN X6Z/<@G$-F SbMd;QBcW%@",X0`hїYhdYL0 ht7\&ݥ7CUmDWS1ek|x3`鉲*ehLB ~):a|ׁ@ko rvA=Cג8eD - fl̜[(x.N7 [-鹔y<]Q`yCnir|-Pi?Ci!}1Z(%Wc @]m,}C"$S#oɐц5% A*҃ CEXwpd2s0/ $xLޅ91siV*`p5|`aX e< BBk- a#`ikJ4BAGT>"̌}r ηh) %Z(>;8gj~&B *)b-&!(B%F0*0F l0' NjD|*M8?C UDċ9RCW:DQM#oYjih,,%0(?0g9},\@UwWB#lDyLQF\\5Qd j|2gU':DFX(evx^GΪ#JISj՚DA6UF5ll #0MIޗeM|r%VJ/XjP(`wHmxV:PтV\.FW/$Pȫ^RLg&&`U*2j I T%fmJ.?9U'5}Į2՞@N M,,B ӷ6A\Ԅ LDTa wIZ:.pT/TT6p. |ihBPB͓TۥFA+o0Cyh vAZ!/A^\rAl3g- @@z\,2 uBne4:>an(N,&ObLBoqf"CY"?Ψ'9"bɀ|;8 1ǬIVPw"]r;ԸŪ9ag?^{6e]T&+&X5yIg-'.sqURQ:٠,DY:dtய=܃Yl(r2ۄ*0FJ;={6Ǒ|Ku"5QaixRۏ@%1s %+In#AǗ$}x gx$\0&\3yl_vst'6 cN7BB´BmPM33'x38lvrN |-?{\ ѿ'8譩`jI^^Y ㌰ t!hZkΕ}“L]} R4||o 4y5aFa5DR[#BJf t7B=:ɗ\BemZ `iO,/XDr@r,p6/؇Ə+ϤO06GKiX +-BD`TJ0[ Rre昁N0\5ppAp^?n / &,%b,0c Bz=CxD:n.k,QbzbEN'- (?Z 2&/_ 6 nRzZMVq˜,1 ,T "jٰ03ڣ(>; 7a?h\j lpmL"߄0jN5K  HC$8C2N3Q8XrK=g,f9A6 Qz`Q#9b c V$AԳ#xxj#TX&uV DEt t)T~99jԤOR4|hCP;DUbDLT^-5`>Gj$5 T1~ GTzAbT)$!T HX!]UnրA*g^b&1JQJC1KdKT*EnF2M/ ςT85V `*l[DQ:Q+ξ$XB4eZ< (շ D]%SɬD9* :R I``(Cb] ϔF!1YʣAKG,h|,, X nTH%] &h* g@G=^gQus4l8Â@.al,!*HD.llMHTγ’ilG: 3F.+tB6AghyOTm*n@wDԺY lamz*z6lju 8~ltU 2"BG'~~MBTDum,8:7t.Lgb`7pb'scV唔"hk:-h2qVG`paaH>@s5AjB.,cw"P5vd4QJ؈*Ea_&~a7<4e+hV6Dah^L.wŒ`*&f#<_`E2"t!F"g\~4Ut(j? ئGcVwJA1 4уLwP*=X%zI&, Skھ*BL7yunJ3R (Etd *zn"yz n䋡xbb"EzL`'=$L +ag;hٲIr[h`:MNu%-n46d.8>y;kCVC5Z~L":vg90間O:6Co}*4@pt7DL@>XęQ ƉVnv<`Y`|ˆ}@(QMJu7Җ,:F[?C R+r"8Z5TjYAL5ymQ=yI_A|xebF?&*-݁!T| +x x RKQeb{ 0`70 R SlFGB1K#aj!1! jb}ŴU$u})0U׋g`4kn\~OyZ;;҅O8@Π4AnXQlY,Z8HoJ}Ԉ!R``"%m#ymf h&*ENڂʁA)j߬•I^[x\֬{aQ&F'LB!ҡYD~c^s  %c]    % Q\4$J f > "'0$' )7**g07.5fHAJLSP RN FWMda8klӅÊm JعH088qN lYYRpDPҠQ^& aD鑢x0 'BfX 1%P  jMݻ/~7ɒ <`,,Ař `݌7Y@* &=PT/>_ Kح[Jt9@7o"'$N>bm1E">k5 #nx`#;f]WX؁epL}u`J !ݧ <ߛFgEFgd,evޘDud#H{$B"_ҠQѨr"(&24uJCndl@v[u` .*'da3ꤩ&!imr~ Fg { }tch6 $hkz]j`nڋ˷M(E9='(E@ݗ|.m c\+lq<,9m]y mz*[4pN6cʂLD@)@&_#QZ"l Θd/oUT9ALN~f5]![Wf !<35Ł 9ͦ6VҒk#JKA^ # ,a/p$>mqSȘ#=]USw筷k$~-^hGkX D!q-7B5kyr ɵ:׀6SjIР$0nvAvڿ;&^gqERdvA&yrV'bk1s0ipv]W>>r+mG C>݀!Rg&͌~6 "Ǩ@t2X"qos٨Hy!5"|0%"sqT>f ܌"ԥWU(u2/[ @*Nrrye*@{ ƞҾ?RvК6W1F!҉0C6$2NR@?6AARtHc4@U)@zkY4O7N4b.t(# @!3C!d;/X^ZNyM'`HN`}Rucϴځw2XV>٭mu:=k!ca@Q I[ lЅ(yVK&1ЭVF<P0pFPkCdVB.tGhvcv&;餆ҙWi5>.FQC "G pY5̀ =[ k~\ρT}θNL[OdĎ$gPҮ'`uw吉}RCTDϓ8cc@rG4$zd#:k,.4DDNgp{@aPy0 i%V{BR(zc11*}68c6r,yTy 2aDE=@a.8D@dEP39-B? 0R\ICe`V*0>};w D r /V++Qn60a)(w(#R~)u}S.w;HP{+)@,klQ"EbD0lRS!LjX&VPAIip O [m'2O2vSvO EDRb^Opig" Y*l]EfD7-u#,#8H," "7\V*#gUC)37A*zщE`0 ' Z@QC) fP<٣}CgF T`L K0TI|E33o~u!*d-j% @8HuUd`YZ tZu?bou !#jBEfe.@C)XJpDbrT6LJz< j!vt()l15):tJ>8n9^f8Jڠ#&f5D~7@!PJ!!څ0y M9Zu X6c,Ƿ7pv|yE!% ^:$aTV <:>hP 08(APҜ[M)9T0Õ~`0c *0c#E$EE96ҷ7֯jk RGIz62ex {ԗ q)MpDG!Mt)-(:X EKauWDI7!C(Xi@ Kۓ`j/F8" q]򝛰kTGgھdPDv(9{WTs%*Uɤ#![;Z)j0J'i%!Pi 9Hñ(#8Hr7%%@Uu/UF0^ρ Z&>5<7ľ7PI@p0 1 vv5!.o8'HoV+$#uf]4[Ėq\ 2se2)eTLVRk=V\ CBmW'+'q{_ boxPĴ%rpGIhсS!H dsQ ,;qNz^JLp+ u|RpǑ'3111P1H6 sÓ3\1 _6Sl q2V\>Rgf0Ŏ2ERL|#Z'wG:v mY8!B!$ʂZ,˱qLK4f1EȏmhQ$quML *Ƀ,3KqIql14} ` d0KSF-ѢÄ# -";ѢX:]44* q cm}:=CeT$ͪLhB6rn#r1@wH2 ]~VlfQeY77z0^WOǻ^y B*9n1l?%w#/UۨU ~/El47ۦm%wV 4q!'1a* B +Ҁ#9 _!Y;`vFs}Mx[(}O$ZC'gP H$A߭+)c#N#PQ ]04l7Ch zKB#Njf1LdvF@au*$23|礙?:"*]=Z!sI>bV^clhVvcW ]~ +A%jbh= ře~5u;(H)<U(0~6a { ta*5!TWa >o6?4'@JWadЁ?ݓa|ױ%lD=fʙN3א RɩmΠ#9ҳ:U`0% ZK! ~~#mHN7N/RdQ *./iכM2 ޭ ڲIʂ+9YUZUFe?'jj-]S.qNpXEm? X'ϸ>$S-11^P5`@|o+|W =P/1f`5lmN[ gěū0+`byDX\C"ЁPKFCjcr|FcBF`f nsx <8@Xȓ"I8)(K<$p0h \ J:^v98!ZfQdxK PqN'?0Dp&,Jt 6萢 d׹@PLH#HؑD bӶS#9Ƀ|9CPړ4yhӁIɠ$a‡< B |h:I&iwC>\X06hn`yn ZN)QcU":bV#stE">H+H4Xp_ ߔ 9@A9oPsTF7"]عE\v`MJV ͊26_k7dLRp8 '|8I~p5iκhz: F&g1Zbe>J`B4Pdŋ8:h|@?PO/l0M599Ft2#)p4 ) xKEn*oRxoQR4:ZlYͬ4@%K-k&;$trL"x05wU hYMD0*׺DH} E!!L,cQJSz*] N%ɶ2O 3 ǀR¡_4σ^f/6,]<+!+zOQ;K#T!bFl -n78ps&؁Fh1se5V+3h (&_B]oY~1-.XDiOq/Ng1}u\)̃(LŢv_[B!j7@ M|1DDT],@IT)#Z-ECGZL/zb(">І7Y8MMA +-~|%Љ1 n5HINt(d!hNsD0"Cx$LnmdbHȥŎwc'>Sھ"䀦'60ԏ-"D@?J'_@E(]r$1Sn>Vҕ(yEaBX БS TM*qz|D,OTEChL<}'8D,"#ODŽ]_f4|aʅ12btDh;w5yt ##P䋊K MrŠ}D|t1:0BTC+ &"|O  \ -oёd X%IMV3 C-:Z! *VڡZ`4cXM4@ RBճ7_oȴW W!sHJtY:FAFT+[u,ask_YR3}+$ʣ|ѪNq|А}`YBV},de,TmxHz!*ErL֗Ԉ NF@u\5%)u) 2ܶ+*y7ܵc/ DbMgz]QZ n;r.L y_n d6!D*ͱ LsrTA\ -&vcτҥق&V&QШ^30+!%*1Z;DɏF@U)Z5|h<т%LjTP%h*» 8Y$pv`eZaga"CЕaU]#0EaeFWA(~h氆IW$hpf UxaٗyBMK_8$*uz"/rv38aY&a  Wvy[V;-e"d@0K̄l@Ltf pybJ80Ƃh o\Y(ֈ %O>(@$*{VCvp]V?=%q/{z#H bTn"4LxNQ4bo@T% }rcVY\X]V(?X+vdsU[O( sb~荍VylQzP"}okynn Qgu{;U%G N0`Xʑw #BwHA+ x8*h<)YʋI8?aY X>@6ڑ >7: yHJځ @<` ؝ˀDHJ: HV(/E2=\822$ 8 o !ᫍOXwk [(@ M) V PY0C+3Q[C;JnaqƘJ1]F B#8 ]9{7 F܀ @b <7y@xto* sq"I( xhŝG)hʩ!A d`X;3u<ؠa!2QЙBPœK߂DCHz1?i8'( HK\ Bv"%y hXUG*l5 !s3E uW~ YW*/@rАQ{7B+ "@W] ؛ 1 7\ڰC(A"caJ3ℌzONVHȋ+ A8s<BԜocr =іڈ |;5Jl` Y/F̓:y\+ $Hң=΄HS ѵ*;3+Ѯ@{ ^\<Ho]: M< *]X&^pKI yp =z^AЅ [heL򅯲=TN&/V?gKc!cKL\[=ś-,`~X>X>p{ C- LU-v0N-x#3a\DгVz}cMVIchƸ^yI>:u8 4 0Rbi9S\#.y6x:J)b#H}1:YA2f=aUBKW?#ݸa 1B+ @,GE dz,kb%V9dЁ8ᔓԥwd 㚶`|6쓭 @[ДXU!4ұ:FP UagMS +fR f€x8 l݌Qc*I gAfi#}u`'zGf}6^(<)s F!P!PE~hhܟ'Bh~D l#v,h!93Nޑ1wY͆E2[ C@=Yjƶ FLg79 8 iX.+`<&-M W&3[gv%^vzvSѫ#텾-0X#f&镒MEbhbm>$xl[lЦKX]uf%9h ƐnP~^ ,w SKR-,nvH0J h57:5,| a~,XJCGǜcF?<&Դ USz\,P>Q-Ŕk wq,!9.of>qBZUUQ֧t#p؂%5@dD) RQ(9 GEr f_~cc3' ި{ʪcd0=?Bk ";1os+?i;Y\!27o>psK@J>"8B/tY$t!Hu$NhtJZHzS?C/ 3F8Nto3of(Hg!aODouW/o@ A3: =(@bRHjP_t1"KkB sfWKkBMV7t͕pd_e_wf.Tȣu2v j-b* 7c5i<+B"qoTV-VVUȔjf^Dw" C/2,ŞxFKE]BCox7ESt9E+%t4L%=Ίf@~C>dƆM[LMႇ*8E [#B8٦nnIG̰;ۂpqlnK60)vnsR*FnSMd+ϐlǶeij})e} vmtq3L bT͓ɮ;>,k>E5(/DX3eoC;O+>ÐIp'O.ۍ^7%ɁIHf`DŽ:d( =) Wx/]㙒'~|Pև "t/O&e|Q0)s8Is^5^hI`x};!tb *R!{@3cY ,˜wfd;dAhFeMtp:^@~\fl <\ p0G u3JI IeYzʟ,8]q yX ٧CƢdK)Ͻ԰ h[ٓf|5Zꘫ<ČJXKWB/ɉU+[+Wշeg+R A,P%TUJ19 Ltahݩ6$6u3( G? ; S9}^6kD3g`jNv\|![a\KDz| } [A ;X^+?I 4eI-yn.~N0P?6iH pZsvX$9h " wCDscKIzL c ox5cj{ۗ8Ն8\2B1C G< & oPnsʀ2nB a3 V2),,bU\Le%.eje8bݮz(Ўvali S:Wy>TPu߱)9ܲh,jPtTS0(< {lW7OguVuZO5e=?5'ؾϵ:^Q%zsTt%UyN?Uy2$/~2? '7߾_<*綨a2ҏ5 a].N" ̅c޴]! ħ_i5 񹓠ŐPwB$J԰lW 'u[(I ufՆt(JtMFM 4*(@ ap B} >L`°Lt h-Dqq@t<ݷJٗ, rAG(Qq kȗy 2MȌ7|L %DRy5A4^TOkdؗAx |!Ö|n *#wTꠍpe6- y$48`(>@TԢ8Ġ1 ;ϻŎL !pX\E"]BEN`#. >PC!}YuG};OP ! |C;cIHiLb1Ip@ѫIF <+Dj!QTXI+T8vJ2ِdqPYŽAA3ЩD&K2.b F8J+ 7UMQ b-r'`r,aDUJؠ O[#\ܥ1љ14|U: 4XRc-M,fPpY܎> [t(F# `'BZDᑷYt Y!v^ )pЅ̗l$>(|˻NH.ہ&&0̅ͰR]bHd.Nǀ$xHsY%"*é*0nzҁQLEcGXf9x8H"ۈA*Mf٨LK.Ji KuM$M! 馤 f&%9Hb Sѕ=U .T^b\q\]])|YX-7P_eBU(Tip`aPNHV*Ssr65N+^&ƪ~R+v~+++++ƫ+֫+櫾++,C;_bhttp://www.dispatch.com/wwwexportcontent/sites/dispatch/local_news/stories/2007/06/17/subsidy2.gif _`a Obplist00 Y$archiverX$versionT$topX$objects_NSKeyedArchiver _WebResourceResponse (./67;UVWXYZ[\]^_\`abcde6fgknU$null  !"#$%&%'R$6S$10R$2S$13R$7R$3S$11R$8R$4S$14R$9R$0V$classR$5S$12R$1#Aj\[#AJϖ)*!,-WNS.base[NS.relative_Xhttp://oasc08024.247realmedia.com/RealMedia/ads/adstream_jx.ads/www.dispatch.com/@Middle0123X$classesZ$classname345UNSURLV%NSURLXNSObject_application/x-javascript89:<=>ITZNS.objectsWNS.keys?@ABCDEFGHJKLMNOPQRS VServerZConnectionTDateZSet-Cookie^Content-LengthWExpiresVPragmaZKeep-Alive\Content-TypeSP3p_Apache/2.0.52 (Red Hat)_Wed, 19 Nov 2008 03:42:43 GMT_OAX=GF9LykkjizMAAPjH; expires=Thu, 31-Dec-2020 23:59:59 GMT; path=/; domain=.247realmedia.com, RMFD=011L2dxjO101n10r; expires=Thu, 31-Dec-2020 23:59:59 GMT; path=/; domain=.247realmedia.com, NSC_f4dfo8efm_qppm_iuuq=44163ea23660;path=/S603_Tue, 25 Apr 1995 09:30:27 -0700Xno-cacheZtimeout=15_GCP="NON NID PSAa PSDa OUR IND UNI COM NAV STA",policyref="/w3c/p3p.xml"01hiij5_NSMutableDictionary\NSDictionary01lmm5_NSHTTPURLResponseInternal01oppq5_NSHTTPURLResponse]NSURLResponse$)2DILbd   (*,.   (*,.02468:<>EPU`ow~EJNdqvyrO[document.write ('\n'); document.write ('\n'); document.write (''); _Xhttp://oasc08024.247realmedia.com/RealMedia/ads/adstream_jx.ads/www.dispatch.com/@Middle cdefO [bplist00 Y$archiverX$versionT$topX$objects_NSKeyedArchiver _WebResourceResponse )/078?ISZNS.objectsWNS.keys@ABCDEFGHJKLMNOPQR VServer]Cache-ControlTDateZSet-CookieWExpiresVPragma_Transfer-Encoding\Content-TypeSP3p_Apache-Coyote/1.1_no-cache,must-revalidate_Wed, 19 Nov 2008 03:40:17 GMT_Ldmc=NKV-O8HJzp.2mwROecK5j46nb.1n2SIhmORGC1th.0is4g3WQLZu5-c; Domain=.specificclick.net; Expires=Thu, 19-Nov-2009 03:40:18 GMT; Path=/, dmk=NKV-O8HJzp; Domain=.specificclick.net; Expires=Thu, 19-Nov-2009 03:40:18 GMT; Path=/, smc=NKV-O8HJzp.2mwROecK5j46nb.1n2SIhmORGC1th.0is4g3WQLZu5-c; Domain=.specificclick.net; Expires=Thu, 19-Nov-2009 03:40:18 GMT; Path=/, smk=NKV-O8HJzp; Domain=.specificclick.net; Expires=Thu, 19-Nov-2009 03:40:18 GMT; Path=/, adp=2mwR^0^1; Domain=.specificclick.net; Expires=Thu, 19-Nov-2009 03:40:18 GMT; Path=/, adk=2mwR^0^0; Domain=.specificclick.net; Expires=Thu, 19-Nov-2009 03:40:18 GMT; Path=/, adc=2mwR^0^6; Domain=.specificclick.net; Expires=Thu, 19-Nov-2009 03:40:18 GMT; Path=/, dmc=NKV-O8HJzp.2mwROecK5j46nb.1n2SIhmORGC1th.0is4g3WQLZu5-c; Domain=.specificclick.net; Expires=Thu, 19-Nov-2009 03:40:18 GMT; Path=/, dmk=NKV-O8HJzp; Domain=.specificclick.net; Expires=Thu, 19-Nov-2009 03:40:18 GMT; Path=/, smc=NKV-O8HJzp.2mwROecK5j46nb.1n2SIhmORGC1th.0is4g3WQLZu5-c; Domain=.specificclick.net; Expires=Thu, 19-Nov-2009 03:40:18 GMT; Path=/, smk=NKV-O8HJzp; Domain=.specificclick.net; Expires=Thu, 19-Nov-2009 03:40:18 GMT; Path=/, dmc=NKV-O8HJzp.2mwROecK5j46nb.1n2SIhmORGC1th.0is4g3WQLZu5-c; Domain=.specificclick.net; Expires=Thu, 19-Nov-2009 03:40:18 GMT; Path=/, dmk=NKV-O8HJzp; Domain=.specificclick.net; Expires=Thu, 19-Nov-2009 03:40:18 GMT; Path=/, smc=NKV-O8HJzp.2mwROecK5j46nb.1n2SIhmORGC1th.0is4g3WQLZu5-c; Domain=.specificclick.net; Expires=Thu, 19-Nov-2009 03:40:18 GMT; Path=/, smk=NKV-O8HJzp; Domain=.specificclick.net; Expires=Thu, 19-Nov-2009 03:40:18 GMT; Path=/_Wed, 19 Nov 2008 03:40:18 GMTXno-cacheXIdentity_9policyref="http://www.specificmedia.com/w3c/p3p.xml", CP="NON DSP COR ADM DEV PSA PSD IVA OUT BUS STA", policyref="http://www.specificmedia.com/w3c/p3p.xml", CP="NON DSP COR ADM DEV PSA PSD IVA OUT BUS STA", policyref="http://www.specificmedia.com/w3c/p3p.xml", CP="NON DSP COR ADM DEV PSA PSD IVA OUT BUS STA"12fggh6_NSMutableDictionary\NSDictionary12jkk6_NSHTTPURLResponseInternal12mnno6_NSHTTPURLResponse]NSURLResponse$)2DILbd #/135!#%,7?IKMOQSUWY[egikmoqsuwy! q   0 5 9 Mp [Ovar sm_random=Math.ceil(1000000*Math.random());document.write("");document.write(""); _http://afe.specificclick.net/?l=1173404033&sz=300x250&wr=j&t=j&u=http%3A//www.dispatch.com/live/content/local_news/stories/2007/06/17/Farmcash.ART_ART_06-17-07_A1_0V70K8Q.html&r=http%3A//www.dispatch.com/live/contentbe/shared/pdSearch/BM_SearchEngine.php%3Fkeywords%3Dfarm+bill+subsidies+ohio%26SearchSelect%3Ddispatch%26story%3D%26aff%3D6%26sec%3Dphp-search%26q%3D%26tp%3D%26sb%3D%26en%3D%26combo%3D0%26adsec%3DsearchYtext/html hij OLbplist00 Y$archiverX$versionT$topX$objects_NSKeyedArchiver _WebResourceResponse (./67;UVWXYZ[\]^_`abcdef6ghloU$null  !"#$%&%'R$6S$10R$2S$13R$7R$3S$11R$8R$4S$14R$9R$0V$classR$5S$12R$1#AS#A㽀)*!,-WNS.base[NS.relative_ehttp://ads.specificmedia.com/serve/v=5;m=2;l=398;cxt=2444:207251054666;kw=;ts=592301;smuid=NKV-O8HJzp0123X$classesZ$classname345UNSURLV%NSURLXNSObject_application/x-javascript89:<=>ITZNS.objectsWNS.keys?@ABCDEFGHJKLMNOPQRS VServer]Cache-ControlZConnectionTDateZSet-Cookie^Content-LengthWExpiresVPragma\Content-TypeSP3p_0Apache/2.0.61 (Unix) mod_perl/2.0.3 Perl/v5.10.0_no-cache,must-revalidateUclose_Wed, 19 Nov 2008 03:42:43 GMT_Qsmu=0.0; domain=.specificmedia.com; path=/; expires=Thu, 24-Oct-2013 03:42:43 GMTS229_Tue, 18 Nov 2008 03:42:43 GMTXno-cache_*CP="NOI DSP COR DEVa TAIa OUR BUS UNI NAV"01ijjk5_NSMutableDictionary\NSDictionary01mnn5_NSHTTPURLResponseInternal01pqqr5_NSHTTPURLResponse]NSURLResponse$)2DILbd  ')+- !#%')468:<>@BDFHJQ_jozqu $8sFOdocument.write('');_ehttp://ads.specificmedia.com/serve/v=5;m=2;l=398;cxt=2444:207251054666;kw=;ts=592301;smuid=NKV-O8HJzp lfmnop_WebResourceTextEncodingNameO _63421_aclick=''; _63421_pclick=''; _63421_sdc_dem='56914.f.9.fh.ls.464@@xzyov@@xlofnyfh@@-4_9@@f@@f'; _63421_sdc_nomove=false; _63421_sdc_noresize=false; _63421_sdc_acamp_id=93724; _63421_sdc_pcamp_id=2824; _63421_sdc_location_id=2935; _63421_sdc_creative_id=63421; _63421_sdc_loaded=true; var _SDC_63421_content= "\n"+ "\n"+ "\n"+ "\n"+ "\n"+ ""; document.writeln(_SDC_63421_content); Obplist00 Y$archiverX$versionT$topX$objects_NSKeyedArchiver _WebResourceResponse# (./67;?C_`abcdefghijkglmnkopqrswzU$null  !"#$%&%'R$6S$10R$2S$13R$7R$3S$11R$8R$4S$14R$9R$0V$classR$5S$12R$1#Aa#AX.ˀ")*+,-WNS.base[NS.relative_khttp://adopt.specificclick.net/adopt.sm?l=1173404033&sz=300x250&rnd=18008&r=j&cxt=2444&kw=&smuid=NKV-O8HJzp0123X$classesZ$classname345UNSURLV%NSURLXNSObjectYtext/html89:YNS.stringZiso-8859-101<==>5_NSMutableStringXNSString@AB !DEFR^ZNS.objectsWNS.keysGHIJKLMNOPQSTUVWXYZ[\]  VServer]Cache-ControlZConnectionTDateZSet-CookieWExpiresVPragma^Content-LengthZKeep-Alive\Content-TypeSP3p_Apache/2.0.52 (Red Hat)Xno-cache_Wed, 19 Nov 2008 03:42:38 GMT_smx=49238b2e24B3221C9A19BA49B; Domain=.specificclick.net; Expires=Sat, 17-Nov-2018 03:42:38 GMT; Path=/, DMEXP=4; Domain=adopt.specificclick.net; Expires=Wed, 26-Nov-2008 03:42:38 GMT; Path=/, CTCI=0018104rw100LJ10MsS10FUx100g8100hr10000100YQ00000000; Domain=adopt.specificclick.net; Expires=Sat, 03-Jan-2009 03:42:38 GMT; Path=/, HS=00G69yknT00000ESB082|||00FV5yknT0000WUj7W8; Domain=adopt.specificclick.net; Expires=Wed, 26-Nov-2008 03:42:38 GMT; Path=/, DGI=-1|; Domain=adopt.specificclick.net; Expires=Sun, 23-Nov-2008 03:42:38 GMT; Path=/, UI=24B3221C9A19BA49B|56914.f.9.fh.ls.464@@xzyov@@xlofnyfh@@-4_9@@f@@f|; Domain=adopt.specificclick.net; Expires=Sat, 17-Nov-2018 03:42:38 GMT; Path=/_Thu, 01 Jan 1970 00:00:00 GMTT1431_timeout=300, max=966_text/html;charset=ISO-8859-1_0CP="NON DSP COR ADM DEV PSA PSD IVA OUR BUS STA"01tuuv5_NSMutableDictionary\NSDictionary01xyy5_NSHTTPURLResponseInternal01{||}5_NSHTTPURLResponse]NSURLResponse$)2DILbd  ,.02$&(*1<DPRTVXZ\^`bdfrtvxz|~7-L~Ziso-8859-1_khttp://adopt.specificclick.net/adopt.sm?l=1173404033&sz=300x250&rnd=18008&r=j&cxt=2444&kw=&smuid=NKV-O8HJzp lfrsotA Obplist00 Y$archiverX$versionT$topX$objects_NSKeyedArchiver _WebResourceResponse (./67;?COPQRSTUY\U$null  !"#$%&'R$6S$10R$2S$13R$7R$3S$11R$8R$4S$14R$9R$0V$classR$5S$12R$1#A _)#A#@)*+,-WNS.base[NS.relative_5_NSMutableStringXNSString@AB DEFJNZNS.objectsWNS.keysGHI KLM ]Cache-ControlZConnection\Content-Type]max-age=86400Uclose_text/html; charset=iso-8859-101VWWX5_NSMutableDictionary\NSDictionary01Z[[5_NSHTTPURLResponseInternal01]^^_5_NSHTTPURLResponse]NSURLResponse$)2DILbdz"$&(glu !/:GU[{`_?ISZNS.objectsWNS.keys@ABCDEFGHJKLMNOPQR VServer]Last-Modified]Accept-RangesZConnectionTDate^Content-LengthTEtag\Content-TypeSP3p_Apache/2.0.52 (Red Hat)_Fri, 25 Jul 2008 21:54:28 GMTUbytesZkeep-alive_Wed, 19 Nov 2008 03:42:47 GMTT2774_"ba8449-ad6-37bb0d00"_GCP="NON NID PSAa PSDa OUR IND UNI COM NAV STA",policyref="/w3c/p3p.xml"12fggh6_NSMutableDictionary\NSDictionary12jkk6_NSHTTPURLResponseInternal12mnno6_NSHTTPURLResponse]NSURLResponse$)2DILbd #/135 '2:DFHJLNPRTV`bdfhjlnprt{ 7<T pO if (TFSMFlash_VERSION){ var MM_contentVersion = TFSMFlash_VERSION; var plugin = (navigator.mimeTypes && navigator.mimeTypes["application/x-shockwave-flash"]) ? navigator.mimeTypes["application/x-shockwave-flash"].enabledPlugin : 0; if ( plugin ) { var words = navigator.plugins["Shockwave Flash"].description.split(" "); for (var i = 0; i < words.length; ++i) { if (isNaN(parseInt(words[i]))) continue; var MM_PluginVersion = words[i]; } var MM_FlashCanPlay = MM_PluginVersion >= MM_contentVersion; } else if (navigator.userAgent && navigator.userAgent.indexOf("MSIE")>=0 && (navigator.appVersion.indexOf("Win") != -1)) { try{ var flashActiveX = new ActiveXObject("ShockwaveFlash.ShockwaveFlash." + MM_contentVersion); }catch(e){ //axo.AllowScriptAccess = "always"; // throws if player version < 6.0.47 } var MM_FlashCanPlay = (flashActiveX != null)? true : false; if(TFSMFlash_FSCOMMAND) { document.write(' \n'); document.write("function "+TFSMFlash_OASADID+"_DoFSCommand(){ window.open('"+TFSMFlash_OASCLICK+"'); }\n"); document.write(' \n'); document.write(' \n'); document.write('on error resume next \n'); document.write('Sub '+TFSMFlash_OASADID+'_FSCommand(ByVal command, ByVal args)\n'); document.write(' call '+TFSMFlash_OASADID+'_DoFSCommand(command, args)\n'); document.write('end sub\n'); document.write(' \n'); } } } if (typeof(TFSMFlash_PRETAG)=="undefined") TFSMFlash_PRETAG=""; if (typeof(TFSMFlash_POSTTAG)=="undefined") TFSMFlash_POSTTAG=""; if ( MM_FlashCanPlay ){ document.write(TFSMFlash_PRETAG+''); document.write(''); document.write(''); document.write(''+TFSMFlash_POSTTAG); } else if ( TFSMFlash_IMAGEALTERNATE ) { document.write(TFSMFlash_PRETAG+''+TFSMFlash_OASALTTEXT+''+ TFSMFlash_POSTTAG); } _http://imagec05.247realmedia.com/RealMedia/ads/Creatives/CDispatch/DP_House_AffiliatePromos_600_ROS/TFSMFlashWrapper20441012779.js/1217562437 z{|7Obplist00 Y$archiverX$versionT$topX$objects_NSKeyedArchiver _WebResourceResponse )/078?ISZNS.objectsWNS.keys@ABCDEFGHJKLMNOPQR VServer]Last-Modified]Accept-Ranges]Cache-ControlTDate^Content-LengthZConnectionTEtag\Content-TypeVApache_Fri, 16 Dec 2005 21:01:21 GMTUbytes[max-age=300_Wed, 19 Nov 2008 03:37:15 GMTT1153Uclose_"8b6ef-481-4081080d84a40"12fggh6_NSMutableDictionary\NSDictionary12jkk6_NSHTTPURLResponseInternal12mnno6_NSHTTPURLResponse]NSURLResponse$)2DILbd #/135   !#%')+-/18FTbgv2?DGchlpOGIF89a(C t!,((0I8»`div*o`[ 'Q0l i9ũymBSfJnE'k;gϩ!aqmTHj@ d?_o$o}~SIjB@x GbDi{F4-B{!rRbSC- Oip@aKAKͥӸXjAVi܏CÔr,w-SO{& Ymw 7NBR)K-2%ᦢw=طe;.!e=VnAXNd2%t8D4MbA(D+FN<ƚ:u<lbA.]=#K=(ey,)KPꢟ En ҰL.m`梪(#L2u4Ppϙv嚓RJJwiѠ^j)!$jFIi(uv ~CR hq*¹*BVkBN>T )ei9-ҵv]ZH{)IUkܵMx+RJn[g^TdZqByѸ3Ni$귲;DvJ4Zqq%Y.;+)\$LyYʫrM+Zr?|.ǜz-:5 `^|b#/EoDYA#\>Eխx\UǂhMU)F6kIAVBq"Jfl$xu7151;7!#Kwc'o'7A;_[http://www.dispatch.com/wwwstatic/sites/dispatch/images/2005/shopping-columbus-logox150.gif ~7Obplist00 Y$archiverX$versionT$topX$objects_NSKeyedArchiver _WebResourceResponse )/078?ISZNS.objectsWNS.keys@ABCDEFGHJKLMNOPQR VServer]Last-Modified]Accept-Ranges]Cache-ControlTDate^Content-LengthZConnectionTEtag\Content-TypeVApache_Thu, 25 Oct 2007 14:54:08 GMTUbytes[max-age=300_Wed, 19 Nov 2008 03:38:33 GMTT4133Uclose_"2bb78f-1025-43d5267fba400"12fggh6_NSMutableDictionary\NSDictionary12jkk6_NSHTTPURLResponseInternal12mnno6_NSHTTPURLResponse]NSURLResponse$)2DILbd #/135   %')+-/13579@N\jo~"&<INQmrvpO%GIF89a)ZURSRk1!7+'("B?;=cyyvv8T /F4 zsfff'&"#9Hށ~C333,h"ᄑ+J\sOKLEaY􈅆*1nZXY;;:: ~q{ TG'EÜ#[^NYP-: iiȱiЀ7&v: 3yC7 8H̗;ygTY/TywD&AyDW ag|MdWf/ܤS JyDW^?$2Lj#qX}E7%\ 7KyH tJDD@-J ݃)DFd-yJ PD NZV%8@tUF  ztBІ)A@)ED#{Hh0 pY*#h6gD%Xv0PLıѨP!aP% `.4AcKyoDT& g&Д]h1Fh )M}71< H`@&VpB $\A`Fgz06(cjJۀ,xoGVAxr"q TOFJO1eQD&NC6_ЧeԈЄʡ" gr^Jl.[aޥ1Čg ^fp}ZImJQ ̲a`07 ]?ߜEѰL*{V$T9 a0! ?d 1d,=:encc&f`A[3ì1/[t G @@л[`e @Հox-RQ.l8=@Cl|ED!&>@O,x#fgcfX72l.Be` tTBRGŬ8J"E0\^`]en/ bQ42#F  ݂T=&0wEo1E,AЄZC!""'[a(C-wph*% 8AaZA**&djsBgP1 VYPUѕ4|[(3t2g*j9i;TPPħq}+ Fif#ڳfUlc'  _@ADNTLY?6@1`wXf0ԥeiqScV."0HD ʰՈg~7OsЈٞ1꫍rYXQsj&4Ŭ@(QJl'bA!X3ta,\uLʉ9DಗO&`Ĭ߼x#K5B^\E)T8Q_b0*i#L+yI *@w!yYN;X@AD6I @SI5cuƅf,D}@Vl  Ĕ A\Y%,42RǏ 54/0 5BAH!0ΩWͨUZQr!l 8@.#Fk^j׽>GhpLda @P;aXJ[h`U)U{8yMr:Hv)UN` \ qBEJ!Ta -+b7M` @p` x㤁`4 plBD0 (2-Ȱ=AS ` '<'da(8Ƞ1 NЀ ~qQh {DAr/0&!8 m𽔛B3 lB 4#BCBpXBE@!B O61`c 6F1 IЃf0E $l,"(ZELDX 4"Ā A pEM-,B'XD.ڀETa k8Dp |! xrb}{p|id0 j@ ' !b0 ` m0 !0S`rGև bhmP !b@88  r& f w+w}!0 @)cr! 'p 9cG 4! j 40p|tH8q4pW|W|%jK{?HQZNS.objectsWNS.keys@ABCDEFGIJKLMNOP VServer]Last-Modified]Accept-RangesZConnectionTDate^Content-LengthTEtag\Content-TypeVApache_Sun, 16 Mar 2008 00:08:20 GMTUbytesZkeep-alive_Wed, 19 Nov 2008 03:41:27 GMTT9885_-"2ff26f1b045dbcd1386cbf0d0ad221e2:1205626100"12bccd6_NSMutableDictionary\NSDictionary12fgg6_NSHTTPURLResponseInternal12ijjk6_NSHTTPURLResponse]NSURLResponse$)2DILbd!-/13Z_hsw} &16EJW^~49=Ql_O&/** * SWFObject v1.5: Flash Player detection and embed - http://blog.deconcept.com/swfobject/ * * SWFObject is (c) 2007 Geoff Stearns and is released under the MIT License: * http://www.opensource.org/licenses/mit-license.php * */ if(typeof deconcept=="undefined"){var deconcept=new Object();}if(typeof deconcept.util=="undefined"){deconcept.util=new Object();}if(typeof deconcept.SWFObjectUtil=="undefined"){deconcept.SWFObjectUtil=new Object();}deconcept.SWFObject=function(_1,id,w,h,_5,c,_7,_8,_9,_a){if(!document.getElementById){return;}this.DETECT_KEY=_a?_a:"detectflash";this.skipDetect=deconcept.util.getRequestParameter(this.DETECT_KEY);this.params=new Object();this.variables=new Object();this.attributes=new Array();if(_1){this.setAttribute("swf",_1);}if(id){this.setAttribute("id",id);}if(w){this.setAttribute("width",w);}if(h){this.setAttribute("height",h);}if(_5){this.setAttribute("version",new deconcept.PlayerVersion(_5.toString().split(".")));}this.installedVer=deconcept.SWFObjectUtil.getPlayerVersion();if(!window.opera&&document.all&&this.installedVer.major>7){deconcept.SWFObject.doPrepUnload=true;}if(c){this.addParam("bgcolor",c);}var q=_7?_7:"high";this.addParam("quality",q);this.setAttribute("useExpressInstall",false);this.setAttribute("doExpressInstall",false);var _c=(_8)?_8:window.location;this.setAttribute("xiRedirectUrl",_c);this.setAttribute("redirectUrl","");if(_9){this.setAttribute("redirectUrl",_9);}};deconcept.SWFObject.prototype={useExpressInstall:function(_d){this.xiSWFPath=!_d?"expressinstall.swf":_d;this.setAttribute("useExpressInstall",true);},setAttribute:function(_e,_f){this.attributes[_e]=_f;},getAttribute:function(_10){return this.attributes[_10];},addParam:function(_11,_12){this.params[_11]=_12;},getParams:function(){return this.params;},addVariable:function(_13,_14){this.variables[_13]=_14;},getVariable:function(_15){return this.variables[_15];},getVariables:function(){return this.variables;},getVariablePairs:function(){var _16=new Array();var key;var _18=this.getVariables();for(key in _18){_16[_16.length]=key+"="+_18[key];}return _16;},getSWFHTML:function(){var _19="";if(navigator.plugins&&navigator.mimeTypes&&navigator.mimeTypes.length){if(this.getAttribute("doExpressInstall")){this.addVariable("MMplayerType","PlugIn");this.setAttribute("swf",this.xiSWFPath);}_19="0){_19+="flashvars=\""+_1c+"\"";}_19+="/>";}else{if(this.getAttribute("doExpressInstall")){this.addVariable("MMplayerType","ActiveX");this.setAttribute("swf",this.xiSWFPath);}_19="";_19+="";var _1d=this.getParams();for(var key in _1d){_19+="";}var _1f=this.getVariablePairs().join("&");if(_1f.length>0){_19+="";}_19+="";}return _19;},write:function(_20){if(this.getAttribute("useExpressInstall")){var _21=new deconcept.PlayerVersion([6,0,65]);if(this.installedVer.versionIsValid(_21)&&!this.installedVer.versionIsValid(this.getAttribute("version"))){this.setAttribute("doExpressInstall",true);this.addVariable("MMredirectURL",escape(this.getAttribute("xiRedirectUrl")));document.title=document.title.slice(0,47)+" - Flash Player Installation";this.addVariable("MMdoctitle",document.title);}}if(this.skipDetect||this.getAttribute("doExpressInstall")||this.installedVer.versionIsValid(this.getAttribute("version"))){var n=(typeof _20=="string")?document.getElementById(_20):_20;n.innerHTML=this.getSWFHTML();return true;}else{if(this.getAttribute("redirectUrl")!=""){document.location.replace(this.getAttribute("redirectUrl"));}}return false;}};deconcept.SWFObjectUtil.getPlayerVersion=function(){var _23=new deconcept.PlayerVersion([0,0,0]);if(navigator.plugins&&navigator.mimeTypes.length){var x=navigator.plugins["Shockwave Flash"];if(x&&x.description){_23=new deconcept.PlayerVersion(x.description.replace(/([a-zA-Z]|\s)+/,"").replace(/(\s+r|\s+b[0-9]+)/,".").split("."));}}else{if(navigator.userAgent&&navigator.userAgent.indexOf("Windows CE")>=0){var axo=1;var _26=3;while(axo){try{_26++;axo=new ActiveXObject("ShockwaveFlash.ShockwaveFlash."+_26);_23=new deconcept.PlayerVersion([_26,0,0]);}catch(e){axo=null;}}}else{try{var axo=new ActiveXObject("ShockwaveFlash.ShockwaveFlash.7");}catch(e){try{var axo=new ActiveXObject("ShockwaveFlash.ShockwaveFlash.6");_23=new deconcept.PlayerVersion([6,0,21]);axo.AllowScriptAccess="always";}catch(e){if(_23.major==6){return _23;}}try{axo=new ActiveXObject("ShockwaveFlash.ShockwaveFlash");}catch(e){}}if(axo!=null){_23=new deconcept.PlayerVersion(axo.GetVariable("$version").split(" ")[1].split(","));}}}return _23;};deconcept.PlayerVersion=function(_29){this.major=_29[0]!=null?parseInt(_29[0]):0;this.minor=_29[1]!=null?parseInt(_29[1]):0;this.rev=_29[2]!=null?parseInt(_29[2]):0;};deconcept.PlayerVersion.prototype.versionIsValid=function(fv){if(this.majorfv.major){return true;}if(this.minorfv.minor){return true;}if(this.rev=0;i--){_2f[i].style.display="none";for(var x in _2f[i]){if(typeof _2f[i][x]=="function"){_2f[i][x]=function(){};}}}};if(deconcept.SWFObject.doPrepUnload){if(!deconcept.unloadSet){deconcept.SWFObjectUtil.prepUnload=function(){__flash_unloadHandler=function(){};__flash_savedUnloadHandler=function(){};window.attachEvent("onunload",deconcept.SWFObjectUtil.cleanupSWFs);};window.attachEvent("onbeforeunload",deconcept.SWFObjectUtil.prepUnload);deconcept.unloadSet=true;}}if(!document.getElementById&&document.all){document.getElementById=function(id){return document.all[id];};}var getQueryParamValue=deconcept.util.getRequestParameter;var FlashObject=deconcept.SWFObject;var SWFObject=deconcept.SWFObject; /* Broswer Detection */ var APDetect = { init: function () { this.contextLinking = this.searchString(this.dataBrowser) || "An unknown browser"; this.browser = this.searchString(this.dataBrowser) || "An unknown browser"; this.version = this.searchVersion(navigator.userAgent) || this.searchVersion(navigator.appVersion) || "an unknown version"; this.OS = this.searchString(this.dataOS) || "an unknown OS"; }, searchString: function (data) { for (var i=0;i c#Ai";#A";*+!-.WNS.base[NS.relative_vhttp://www.dispatch.com/live/export-content/sites/dispatch/images/2008/2008-redesign-images/search-for-jobs-button.gif1234X$classesZ$classname456UNSURLV%NSURLXNSObjectYimage/gif9:;=>?ISZNS.objectsWNS.keys@ABCDEFGHJKLMNOPQR VServer]Last-Modified]Accept-Ranges]Cache-ControlTDate^Content-LengthZConnectionTEtag\Content-TypeVApache_Tue, 15 Apr 2008 18:24:10 GMTUbytes[max-age=300_Wed, 19 Nov 2008 03:41:56 GMTT2915Uclose_"1b1f2e-b63-44aed81aac680"12fggh6_NSMutableDictionary\NSDictionary12jkk6_NSHTTPURLResponseInternal12mnno6_NSHTTPURLResponse]NSURLResponse$)2DILbd #/135  "$&(*,.8:<>@BDFHJLSao} /48N[`cpO cGIF89a&@eڼBathX)oQjbHX}͆B!_s9vץ utm[`Q0RR~5߅ߕ3r`!jJޑYmt}m;|O9aĴE\kʼnv1wd﫬beQz)sPˆ!kZlb(I# ^{JdY@HTBpul/s*rjЭ[︸Wd}ǵ潽Jn$|k{L"Վ( f2yS͇!cZ´ޚߡQRR8~DsLĵ便5xfhWs8z){)yƇBywc6!km!,& H*\ȰÇ#JHŋEhȱǏ CIɐ7RY˗0cʜI͛8s\qF-yJѣH*]ʴӢ.yTjݺ \A4Y;ltZ˶۷pʝKݻ6("԰ L +^̸ǐ#KL K:G'RVװc˞M۲(@< BP@[6[x"سk|ߡҎD@HpWZ5nYdu&%vX*& ɰ0sFux0C)`%1$#(h] \s.0$!+Xm4bIHH!u4b!1dI )BNm {D T\!<H \fdJ䕍\ pA!Pu@DI)ZrhB GB\!JkDCR+mR, A PrR *{HAA""Lq%3H0+fd&닷 ZfH "Sh;F%W* ,T뭭 +d`J{3ză "B3 g10 fb0*Q%"P@^4B rABZ`A iJ%n,k JRA C !HHЁS@kEp  AHE 8tp1G`8`p @ )D8A 4A|r L ^y @#z7"q@ q 301A^ ZԠt2n4V#4l|JK+M3l"rDA$| ű Ff2( `%`gH'>O hu0HBL pIBl ` 4 } *D7  b&aFP9V"&:Pl"10@E #"HꣃItg"b'aJ FgP cx#< 2\$Ox ЇA @p OD1J zXQA|!"3F"A˘a#B:(% JPԀ"QgP!2E!T!k0D `E2B Ђ!Y*E0BFI*E !AB@r<-{ ,V7D@of^Y" j4 ؋.zL  # ֆEA\DB% u!,2[UX `"L3DgD0#8)@E 01X EXJ^JC ci5-0 &% PF)UWF!AWp  qek QcXSuhpj*.9Bb)]jR]W6R&(Z (4}xwk#,Fd!ao_²6~VS H@¾P '7{x BX4,^HN&;Prq-ЁpQA(@HBz!JnH6pLg:C{.T |2 ^+NED0P BZ{.4QN{ӠGMRԨN`}@*TP^MbN6U`GK C؅n{Mr[ۚЄЋH5: >ЋjgUηofp2TѻH;'N'pސڂ5-FN(@OW!y9oX*Rщw@yFNBH;PԧN;_vhttp://www.dispatch.com/live/export-content/sites/dispatch/images/2008/2008-redesign-images/search-for-jobs-button.gif O{bplist00 Y$archiverX$versionT$topX$objects_NSKeyedArchiver _WebResourceResponse (./67;UVWXYZ[\]^_\`abcde6fgknU$null  !"#$%&%'R$6S$10R$2S$13R$7R$3S$11R$8R$4S$14R$9R$0V$classR$5S$12R$1#A G#A  )*!,-WNS.base[NS.relative_ehttp://oascentral.admission.net/RealMedia/ads/adstream_jx.ads/www.dispatch.com/TopJobs/1677156632@x910123X$classesZ$classname345UNSURLV%NSURLXNSObject_application/x-javascript89:<=>ITZNS.objectsWNS.keys?@ABCDEFGHJKLMNOPQRS VServerZConnectionTDateZSet-Cookie^Content-LengthWExpiresVPragmaZKeep-Alive\Content-TypeSP3p_Apache/2.0.52 (Red Hat)_Wed, 19 Nov 2008 03:42:47 GMT_OAX=GF9LykkjizcADmxf; expires=Thu, 31-Dec-2020 23:59:59 GMT; path=/; domain=.admission.net, NSC_f3dfo6efm_Qppm_iuuq=441147343660;path=/T1254_Tue, 25 Apr 1995 09:30:27 -0700Xno-cache_timeout=15, max=9660_GCP="NON NID PSAa PSDa OUR IND UNI COM NAV STA",policyref="/w3c/p3p.xml"01hiij5_NSMutableDictionary\NSDictionary01lmm5_NSHTTPURLResponseInternal01oppq5_NSHTTPURLResponse]NSURLResponse$)2DILbd   (*,.  "$&(*579;=?ACEGIKR]bm|kp(-0LQUirwOdocument.write ('\n'); document.write ('\n'); document.write (''); _ehttp://oascentral.admission.net/RealMedia/ads/adstream_jx.ads/www.dispatch.com/TopJobs/1677156632@x91 DObplist00 Y$archiverX$versionT$topX$objects_NSKeyedArchiver _WebResourceResponse% )/078<\]^_`abcdefghijklmnopqr7stuy|U$null  !"#$%&'(R$6S$10R$2S$13R$7R$3S$11R$8R$4S$14R$9R$0V$classR$5S$12R$1#A #A I>$#AeI>*+!-.WNS.base[NS.relative_http://view.admission.net/admission/spotlight/js/spotlight.js?pa=columbusspotlights&classification=topjobs¶ms=detaillink%2Cjobtitle%2Cemployer&layout=rf:columbusspotlights:140x280_columbus.swf&spotw=140&spoth=280&bannerid=AdMission/TopJobs_022108_Columbus-TopJobs_022108_Columbus-140x280&trackingid=www.dispatch.com/TopJobs/L24&campaignid=AdMission/TopJobs_022108_Columbus&resellerid=ColumbusDispatch&trackingredirecturl=http://oascentral.admission.net/RealMedia/ads/click_lx.ads/www.dispatch.com/TopJobs/L24/123/x91/AdMission/TopJobs_022108_Columbus/TopJobs_022108_Columbus-140x280.html/4746394c796b6b6a697a6341446d7866%3F_RM_ACTION_=1234X$classesZ$classname456UNSURLV%NSURLXNSObject_application/javascript9:;#=>?M[ZNS.objectsWNS.keys@ABCDEFGHIJKL !NOPQRSTUVWXYZ "VServerTVary]Last-Modified]Cache-Control_Content-EncodingTDate^Content-LengthWExpiresZConnectionWX-Cache\Content-TypeSVia^X-Cache-LookupVApache_Accept-Encoding,User-Agent_Wed, 15 Oct 2008 21:42:52 GMTVpublicTgzip_Wed, 19 Nov 2008 03:42:48 GMTT2611_Wed, 19 Nov 2008 03:47:48 GMTZkeep-alive_MISS from cache06.gc_&1.0 cache06.gc:80 (squid/2.6.STABLE13)_MISS from cache06.gc:8012vwwx6_NSMutableDictionary\NSDictionary12z{{6_NSHTTPURLResponseInternal12}~~6_NSHTTPURLResponse]NSURLResponse$)2DILbd#+79;=  +3ACEGIKMOQSUWY[ikmoqsuwy{}3SZ_ (5:=Y^bvO var spQStr = {"bannerid": "AdMission/TopJobs_022108_Columbus-TopJobs_022108_Columbus-140x280","spotw": 140,"pa": "columbusspotlights","params": "detaillink,jobtitle,employer","layout": "rf:columbusspotlights:140x280_columbus.swf","resellerid": "ColumbusDispatch","trackingredirecturl": "http://oascentral.admission.net/RealMedia/ads/click_lx.ads/www.dispatch.com/TopJobs/L24/123/x91/AdMission/TopJobs_022108_Columbus/TopJobs_022108_Columbus-140x280.html/4746394c796b6b6a697a6341446d7866?_RM_ACTION_=","campaignid": "AdMission/TopJobs_022108_Columbus","spoth": 280,"trackingid": "www.dispatch.com/TopJobs/L24","classification": "topjobs"}; var now = new Date(); var uid = now.getTime(); var spotlightID = "spotlight" + uid; var extParams; var gDebugLevel = 0; eval('function onError'+uid+'(msg) { if ("" == "1") alert("Error: "+msg); }'); function PBObj(){ ua = navigator.userAgent; this.bWin = !!ua.match(/win/i); this.bMac = !!ua.match(/mac/i); this.bIE4 = !!ua.match(/msie\s+4\./i); this.bIE5 = !!ua.match(/msie\s+5\./i); this.bIE6 = !!ua.match(/msie\s+6\./i); this.bIE7 = !!ua.match(/msie\s+7\./i); this.bIE4plus = (this.bIE4 || this.bIE5 || this.bIE6 || this.bIE7); this.bNS4 = !!document.layers; this.bNS7 = !!ua.match(/netscape\/7/i); this.bMOZ = (!!ua.match(/gecko/i) && !this.bNS7 && !this.bIE4plus); this.bSaf = !!ua.match(/safari/i); } gPB=new PBObj(); function getDOMBox(obj) { if (!obj) obj = this; var box = { l: obj.offsetLeft, t: obj.offsetTop, w: obj.width || obj.offsetWidth, h: obj.height || obj.offsetHeight }; var p = obj.offsetParent; while (p) { box.l += p.offsetLeft; box.t += p.offsetTop; p = p.offsetParent; } return box; } function plusEncode(str) { return escape(str.replace(/\+/g,"%2B")).replace(/%25/g,"%"); } function loadScript(doc, url) { var now = new Date(); url += (url.indexOf("?") == -1) ? "?" : "&"; url += "dt="+now.getTime(); var scr = doc.createElement('script'); scr.id = 'rs'+now.getTime(); scr.setAttribute('type','text/javascript'); scr.setAttribute('src',url); // Gotcha: set attribute and src BEFORE appending, or Safari won't work var el = doc.getElementsByTagName('head')[0]; if (!el) el = doc.getElementsByTagName('body')[0]; // if no head section, append to body var scrObj = doc.getElementById(scr.id); if (scrObj) { scrObj.parentNode.removeChild( scrObj ); } el.appendChild(scr); } function VWLoader(uid) { this.uid = uid; } VWLoader.prototype.showViewer = function(cmdStr) { var vwjs = document.location.protocol + "//" + "apps.admission.net"+"/admission/spotlight/js/viewerwrapper.js"; var qs = "?uid="+this.uid+"&pa=columbusspotlights&spQStr="+escape("bannerid=AdMission%2FTopJobs_022108_Columbus-TopJobs_022108_Columbus-140x280&spotw=140&pa=columbusspotlights¶ms=detaillink%2Cjobtitle%2Cemployer&layout=rf%3Acolumbusspotlights%3A140x280_columbus.swf&resellerid=ColumbusDispatch&trackingredirecturl=http%3A%2F%2Foascentral.admission.net%2FRealMedia%2Fads%2Fclick_lx.ads%2Fwww.dispatch.com%2FTopJobs%2FL24%2F123%2Fx91%2FAdMission%2FTopJobs_022108_Columbus%2FTopJobs_022108_Columbus-140x280.html%2F4746394c796b6b6a697a6341446d7866%3F_RM_ACTION_%3D&campaignid=AdMission%2FTopJobs_022108_Columbus&spoth=280&trackingid=www.dispatch.com%2FTopJobs%2FL24&classification=topjobs&")+"&autoOffset=1&viewerOffsetX=140&viewerOffsetY=280&viewerframe="; try { var m = top.document.location.href.match(/[\&\?]gdebuglevel\=(\d+)/); if (m && (typeof m[1] != 'undefined')) qs += "&gdebuglevel="+m[1]; } catch (e){} loadScript(document, vwjs+qs+"&cmdStr="+escape(cmdStr)+"&ondemand=1"); } eval('var vwLoader'+uid+' = new VWLoader(uid)'); eval('var showViewer'+uid+' = new Function("vwLoader'+uid+'.showViewer(arguments[0]);")'); var spVars = 'uniqueid='+uid; if (gDebugLevel > 0) spVars += '&gdebuglevel='+gDebugLevel; try { var m = top.document.location.href.match(/[\&\?]gdebuglevel\=(\d+)/); if (m && (typeof m[1] != 'undefined')) { gDebugLevel = m[1]; spVars += '&gdebuglevel=' + gDebugLevel; } } catch (e){} if ('' != '') spVars += "&referredirurl="+escape(""); spVars += '&adserverurl=http://apps.admission.net&adservercacheurl=http://view.admission.net&ipixdomain=view.admission.net&pagedomain='+document.location.hostname+'&pageurl=' + plusEncode(document.URL)+'&moviebaseuri=http://view.admission.net/admission/spotlight/&spotlightparams='; var spotparms = ""; for (var key in spQStr) { if ((typeof extParams == 'undefined') || (typeof extParams[key] == 'undefined')) spotparms += key + "=" + spQStr[key] + "^"; } if(typeof extParams != 'undefined') { for (key in extParams) { if(extParams[key] != "") spotparms += key+"="+extParams[key]+"^"; } } spotparms += 'videoplayer=http://view.admission.net/admission/spotlight/simplevideoplayer.swf^spotlight=1'; spVars += plusEncode(escape(spotparms)); var movieURL = "http://view.admission.net/rimfire/resource?application=spotlight&partner=columbusspotlights&file=rf:columbusspotlights:140x280_columbus.swf"; var swfTag = '
'+ '
'; if (navigator.plugins && navigator.mimeTypes && navigator.mimeTypes.length) // mozilla plugin architecture { swfTag += ''; } else { swfTag += '' + '' + '' + '' + ' ' + '' + '' + '' + ''; } document.write(swfTag+'
'); delete spQStr;_http://view.admission.net/admission/spotlight/js/spotlight.js?pa=columbusspotlights&classification=topjobs¶ms=detaillink%2Cjobtitle%2Cemployer&layout=rf:columbusspotlights:140x280_columbus.swf&spotw=140&spoth=280&bannerid=AdMission/TopJobs_022108_Columbus-TopJobs_022108_Columbus-140x280&trackingid=www.dispatch.com/TopJobs/L24&campaignid=AdMission/TopJobs_022108_Columbus&resellerid=ColumbusDispatch&trackingredirecturl=http://oascentral.admission.net/RealMedia/ads/click_lx.ads/www.dispatch.com/TopJobs/L24/123/x91/AdMission/TopJobs_022108_Columbus/TopJobs_022108_Columbus-140x280.html/4746394c796b6b6a697a6341446d7866%3F_RM_ACTION_= MObplist00 Y$archiverX$versionT$topX$objects_NSKeyedArchiver _WebResourceResponse )/078?ISZNS.objectsWNS.keys@ABCDEFGHJKLMNOPQR VServer]Last-Modified]Accept-Ranges]Cache-ControlTDate^Content-LengthZConnectionTEtag\Content-TypeVApache_Fri, 07 Nov 2008 17:42:21 GMTUbytes[max-age=300_Wed, 19 Nov 2008 03:41:59 GMTT9262Uclose_"3b8685-242e-45b1cef6db940"12fggh6_NSMutableDictionary\NSDictionary12jkk6_NSHTTPURLResponseInternal12mnno6_NSHTTPURLResponse]NSURLResponse$)2DILbd #/135   !#%')+-/13:HVdix 6CHKglppO$.JFIFddDuckyFAdobed    bd!1AQ"2aqB#3R45bC$&D%  !1QAaq"2BRb3r#$4DCS% ?NyיP,Jr$bCQTYJMkZi>ăuI^Pl#h4->Ϩ@2aثw6,V+PtRdBJQ8ڞqyPI6TPe͕yatU@2wLmW"oQeeT8QZU9pchE;)iݨ s=_zmLmQm[1469aiIR|C3LagSWL4}-]g[qVriTS*D̄BYʙ'ik lD:ی|A\<>BS"#}VTL6-gWwYvY J i8 U>8LMNLT%(wZy6L}`ǻmAFuiiCVQ!Kp;Q t LxDNtuT䲣X ҳlcqY<OB(jJi4݂8bYB^UXa jnOyZy~G+U9y{1 D}c, {rV̤:rpMS,/ ޑzk .G*xmJK[ZYl4BzT֔QH8p1Na&5ZT X+>ot <:կçÂݰ?ڗ]m;VnÐhtyHJBt'4(XV4Ǩ9uѪ5"PLL7~mr߷.o S" ym,\R t1thʠͿjwLѦ3ͶY Aj5J9O¸%NKL(! 5,~%G:6eK|ŕxYvResouڥrXaKh(BiIbMOzXLbb|}?3eAGe Bmդ` >5˴M ;MI)Pܹ[n]=6UpY2}:9[$)C-Ѫ4+:*Ve}MkehJg 9fgtPnPd)RdGO-oJSTT:xlPD s^al\yd sJ$`+ϟfE(-CGIKNlrH| ;k\ Ŵ!MiZ'1x֨XCj Zm!gV׶I'%( xB#Wz`|!NE ?MUɼܭ݆lzOGn2倪m*Xϰbu YQv"YJw<~0Źnov[+i2*)_KJ`% u4lj=o_ʟο4W|W#]|*+\,J퓅OM_>|o.+x]@J $D T#Lfjw} 0Wb{\zqTnVd6 Jm~-739 JRH 5)54Ț:/Osy.S iݍ?P; fef -*tpbZm#ugvGO e :Cn%+ mIBJTP=D}mB$K]qyuiuȗV0m|T05< k4<XHFUae"+'Эm3J?Z#ܘ`mV(J-vibMUIW)8B_9y&0qP֯r.n=uj2>읰~{}O'+uS{3uI 6[!A)HQϷ ڥc@:4_҅C`qR-/!O!n:5QP~jl7 >j̷PjJT;EP%"ɆԤ!t:疟sL0Ъl9 FwI*(fFDҦR~3s 2&bKtyPi WFd (ZmJA:^[LBf" ;hHZd.*);5Ww/u;se﷕Zx.${ leLa*qHS,j)TIga F.AZ[Ce]3v *)ء~0N ٿg!LuGM/i QThqEgޣc}q:v%ٷ?đ~1ųSM/Q$jNGڪDC6 :MZx~4=7+FEʳTx%dqG=zt]c8.RKͷSF_H@I=rzRyN$@a}ڷ[DD596岿 !j 48ϡH) eNjAXAL]8?R56{ξlgIBK(K(OD;y.r&xּs5$6&R> }o/qMm{ŗ\|rX Tj% SZ bT4fyizkrR,Iͷ3mo+!*AƵU ^GLF!*օ {*Py)F\r>i]GOkBS J%Y)HBUQ5CěD)`&͗ ы#$zFgumnPvKkt2BJU|( U>Z2[`outG5MNtO`a9|YPc0R [iO1o8ҀpQ ξaCR3xp@DrB0.0Hkw\]-iSMj@.8$WM:@+ _ ΔC};Җ $ZZB<ɗ!c5}0ÏL'THHt!o8BRbq`)JvB& '.RH&V8MJ_㈘3B6zZ8va_sG23ϾWnh}'Ґےm`'J F>0mM-Rj'zͿ|u%]o*CsnWc6(i ,>RhK $ iؽQQcҹw+Ӕ RK4RNL2W` 5J#5nēn>ٝB%o&?tS.Դ:M!YQXE8Q #MOKoe7ZmAxĉ?gc}sUwG94q5Ú<PHIj;03Qat nضۓtnW6܎ٶ$'̢RY(l-vlꚤ))BVu|#gv^+ŁV5Ž!I(m$H %dZlQ87M̬nDZ} ݗW""1#Zt "{pm-,-ICl4&?5lm})ە;sjuh?LV2ffqF*OdO_(45}EйRBrWuQ 6w0nУKX`V!esJx^X`:coVK$E(hתtJ@y+~ϗDhޒ]ϱ؛qtږ]J'ޢT ж8u=4f]@Tt4*?s" 6Ew\m5d,O$Nad,*%5~+)RqPKHI/)HaÌ ā1dE ļ-4 RBT bʰg#1:ii4*J`q˺yiMϼCe p4>PғWhXq;֩;.`m5y!#r)U628,ݛS;~%P" d82ZӤ?y\2ኅS!YyLLS -Ulby1_Y6Cݿ-&@[eF (֥GLji)"yyvN Zs($6gT"߷ ,sW ֣[[~((֧VuH' Ƕ]KtA+PIT1;hŻ1%M) Coh$1^`8U"-J]B~RSzSAC%,х6M3)f":2 pp. va}(^2\~-QU mrmd%((JB{ 2Fτ8L}K֨H&s @VzM :#V[q5%բԶJU(3먝vAʑ+Ϸ*4qdɀ6l[ݖ,;j2Q.!7uiU4fv< KkN&UB}+K{R-?n-ڋ@7QOUP~.O?V)ժqo.K+e9toF $`8T M8P$ $~ |e~0ڝtl&s"@NM333-ġ%J2*uaNe(_[suV4fMj2*U ?tԼbTڊJ@go cvlMݽ|e3iHQ%-hKnX4_*DǷQUHms,M?Ks<$- ̆I [ N@ 7FL[Ѳ7u:5zN8q3{'{WkFp+6܇)\UTkxu@GO Ase+̽j)JfmrV( &>eTAE{&g+l= gv4HWҗPHVP5j4k6SՊPUҕ4*I9Bm+6V͢ͳnZDuiӒOB֤$X9n; <|x7kU>_pW/돤3?%izcڽo'WO3.n kӕQDJ:9Z8v/Hl8_YUZE*HwLmo8@ 7Tw ۮ鍯ӵX\il)ujH \bԢkV96̀x 13KjjM$v,đ-+M1kyׅ>NSU%8t«zn:~k7WӺG囓IIx)RIN{;1D`ǼIe?\7dF.+&2$C}XjJC{0}I 0a R"--oosf4-i2-KkP[PX$/ :l('LURjT6Ham.1-/sG3ιPPuY *@SOֶ>9f2nŸuͲ¤$5 n-"}H &mvХ)Mptsb3-ջMs7L࠷Uj)UP~W:څ6}4-;x 4֚>忝Fp+}0ʷ6ֱIёCiW,;#ݦN*'&tUyH!kR:SYpŔsu6oMݝћZRj̮A eղҤ(q5Xc$&cl-(?<_U]={ӳՆ#U;3hFݖ-ar6̨R*R:BUOG0] H B#ErIBm 9+$㉊"DՊa;ҿA=r]n7 ,$^a!Ɣ2#e3PbL΄Ammɐwvٞkb8vʵ+ljɧ!,#!PIyU)%d6XTʆeP)UM\ hhqW = Y@v5+T$?^qLOD`..!L S$8+VRR k&IH~ׯb6q' 66ڽYl˲oY1Ŵa1W#FVD`*㤚Si)`W7 9د.~̽..KNp*Bp)N 2uQR;|]K%$fUt-0kӎlޖY?ٲO}aA)]H":& M9M zƠee:ћ""V jۛw7x<[[7F[iNT4Wጔ-әli}4ƛSaè~'n8vw\>/0Kg0$ /@1U-Qq:fTKW+OξRhyZpƿ=3\O7s|{b8:KzM+|gӻOʟ/e&wũц.\W<vq?ށyum(=_bۣq^ zsD_|_Qmq`?wF7ʯ"o۲˓7/o:W_p͏b/!_q_g"ݝ_8wq>Oۈgu|)ʼ?V*U7,`7K?O~ӳ>=_\http://www.dispatch.com/live/export-content/sites/dispatch/images/2008/11/holiday-herald.jpg Obplist00 Y$archiverX$versionT$topX$objects_NSKeyedArchiver _WebResourceResponse (./67;UVWXYZ[\]^_\`abcde6fgknU$null  !"#$%&%'R$6S$10R$2S$13R$7R$3S$11R$8R$4S$14R$9R$0V$classR$5S$12R$1#ATX#Aq)*!,-WNS.base[NS.relative_Uhttp://oasc08024.247realmedia.com/RealMedia/ads/adstream_jx.ads/www.dispatch.com/@Top0123X$classesZ$classname345UNSURLV%NSURLXNSObject_application/x-javascript89:<=>ITZNS.objectsWNS.keys?@ABCDEFGHJKLMNOPQRS VServerZConnectionTDateZSet-Cookie^Content-LengthWExpiresVPragmaZKeep-Alive\Content-TypeSP3p_Apache/2.0.52 (Red Hat)_Wed, 19 Nov 2008 03:42:50 GMT_OAX=GF9LykkjizoABKnZ; expires=Thu, 31-Dec-2020 23:59:59 GMT; path=/; domain=.247realmedia.com, RMFD=011L2dxqO101n10r|O101n10t; expires=Thu, 31-Dec-2020 23:59:59 GMT; path=/; domain=.247realmedia.com, NSC_f4dfo8efm_qppm_iuuq=44163ea23660;path=/S600_Tue, 25 Apr 1995 09:30:27 -0700Xno-cacheZtimeout=15_GCP="NON NID PSAa PSDa OUR IND UNI COM NAV STA",policyref="/w3c/p3p.xml"01hiij5_NSMutableDictionary\NSDictionary01lmm5_NSHTTPURLResponseInternal01oppq5_NSHTTPURLResponse]NSURLResponse$)2DILbd   (*,.  %')+-/13579;BMR]lt{KPTjw|rOXdocument.write ('\n'); document.write ('\n'); document.write (''); _Uhttp://oasc08024.247realmedia.com/RealMedia/ads/adstream_jx.ads/www.dispatch.com/@Top fO Zbplist00 Y$archiverX$versionT$topX$objects_NSKeyedArchiver _WebResourceResponse )/078?ISZNS.objectsWNS.keys@ABCDEFGHJKLMNOPQR VServer]Cache-ControlTDateZSet-CookieWExpiresVPragma_Transfer-Encoding\Content-TypeSP3p_Apache-Coyote/1.1_no-cache,must-revalidate_Wed, 19 Nov 2008 03:40:24 GMT_Ldmc=NKV-O8HJzp.2mwROecK5j46nb.1n2SIhmORGC1th.0is4g3WQLZu5-c; Domain=.specificclick.net; Expires=Thu, 19-Nov-2009 03:40:25 GMT; Path=/, dmk=NKV-O8HJzp; Domain=.specificclick.net; Expires=Thu, 19-Nov-2009 03:40:25 GMT; Path=/, smc=NKV-O8HJzp.2mwROecK5j46nb.1n2SIhmORGC1th.0is4g3WQLZu5-c; Domain=.specificclick.net; Expires=Thu, 19-Nov-2009 03:40:25 GMT; Path=/, smk=NKV-O8HJzp; Domain=.specificclick.net; Expires=Thu, 19-Nov-2009 03:40:25 GMT; Path=/, adp=2mwR^0^1; Domain=.specificclick.net; Expires=Thu, 19-Nov-2009 03:40:25 GMT; Path=/, adk=2mwR^0^0; Domain=.specificclick.net; Expires=Thu, 19-Nov-2009 03:40:25 GMT; Path=/, adc=2mwR^0^6; Domain=.specificclick.net; Expires=Thu, 19-Nov-2009 03:40:25 GMT; Path=/, dmc=NKV-O8HJzp.2mwROecK5j46nb.1n2SIhmORGC1th.0is4g3WQLZu5-c; Domain=.specificclick.net; Expires=Thu, 19-Nov-2009 03:40:25 GMT; Path=/, dmk=NKV-O8HJzp; Domain=.specificclick.net; Expires=Thu, 19-Nov-2009 03:40:25 GMT; Path=/, smc=NKV-O8HJzp.2mwROecK5j46nb.1n2SIhmORGC1th.0is4g3WQLZu5-c; Domain=.specificclick.net; Expires=Thu, 19-Nov-2009 03:40:25 GMT; Path=/, smk=NKV-O8HJzp; Domain=.specificclick.net; Expires=Thu, 19-Nov-2009 03:40:25 GMT; Path=/, dmc=NKV-O8HJzp.2mwROecK5j46nb.1n2SIhmORGC1th.0is4g3WQLZu5-c; Domain=.specificclick.net; Expires=Thu, 19-Nov-2009 03:40:25 GMT; Path=/, dmk=NKV-O8HJzp; Domain=.specificclick.net; Expires=Thu, 19-Nov-2009 03:40:25 GMT; Path=/, smc=NKV-O8HJzp.2mwROecK5j46nb.1n2SIhmORGC1th.0is4g3WQLZu5-c; Domain=.specificclick.net; Expires=Thu, 19-Nov-2009 03:40:25 GMT; Path=/, smk=NKV-O8HJzp; Domain=.specificclick.net; Expires=Thu, 19-Nov-2009 03:40:25 GMT; Path=/_Wed, 19 Nov 2008 03:40:25 GMTXno-cacheXIdentity_9policyref="http://www.specificmedia.com/w3c/p3p.xml", CP="NON DSP COR ADM DEV PSA PSD IVA OUT BUS STA", policyref="http://www.specificmedia.com/w3c/p3p.xml", CP="NON DSP COR ADM DEV PSA PSD IVA OUT BUS STA", policyref="http://www.specificmedia.com/w3c/p3p.xml", CP="NON DSP COR ADM DEV PSA PSD IVA OUT BUS STA"12fggh6_NSMutableDictionary\NSDictionary12jkk6_NSHTTPURLResponseInternal12mnno6_NSHTTPURLResponse]NSURLResponse$)2DILbd #/135  "$+6>HJLNPRTVXZdfhjlnprtvx p   / 4 8 Lp ZOvar sm_random=Math.ceil(1000000*Math.random());document.write("");document.write(""); _http://afe.specificclick.net/?l=1844480566&sz=728x90&wr=j&t=j&u=http%3A//www.dispatch.com/live/content/local_news/stories/2007/06/17/Farmcash.ART_ART_06-17-07_A1_0V70K8Q.html&r=http%3A//www.dispatch.com/live/contentbe/shared/pdSearch/BM_SearchEngine.php%3Fkeywords%3Dfarm+bill+subsidies+ohio%26SearchSelect%3Ddispatch%26story%3D%26aff%3D6%26sec%3Dphp-search%26q%3D%26tp%3D%26sb%3D%26en%3D%26combo%3D0%26adsec%3Dsearch OLbplist00 Y$archiverX$versionT$topX$objects_NSKeyedArchiver _WebResourceResponse (./67;UVWXYZ[\]^_`abcdef6ghloU$null  !"#$%&%'R$6S$10R$2S$13R$7R$3S$11R$8R$4S$14R$9R$0V$classR$5S$12R$1#Av#At<\)*!,-WNS.base[NS.relative_ehttp://ads.specificmedia.com/serve/v=5;m=2;l=399;cxt=2444:207251054666;kw=;ts=971533;smuid=NKV-O8HJzp0123X$classesZ$classname345UNSURLV%NSURLXNSObject_application/x-javascript89:<=>ITZNS.objectsWNS.keys?@ABCDEFGHJKLMNOPQRS VServer]Cache-ControlZConnectionTDateZSet-Cookie^Content-LengthWExpiresVPragma\Content-TypeSP3p_0Apache/2.0.61 (Unix) mod_perl/2.0.3 Perl/v5.10.0_no-cache,must-revalidateUclose_Wed, 19 Nov 2008 03:42:50 GMT_Qsmu=0.0; domain=.specificmedia.com; path=/; expires=Thu, 24-Oct-2013 03:42:50 GMTS228_Tue, 18 Nov 2008 03:42:50 GMTXno-cache_*CP="NOI DSP COR DEVa TAIa OUR BUS UNI NAV"01ijjk5_NSMutableDictionary\NSDictionary01mnn5_NSHTTPURLResponseInternal01pqqr5_NSHTTPURLResponse]NSURLResponse$)2DILbd  ')+- !#%')468:<>@BDFHJQ_jozqu $8sFOdocument.write('');_ehttp://ads.specificmedia.com/serve/v=5;m=2;l=399;cxt=2444:207251054666;kw=;ts=971533;smuid=NKV-O8HJzp lfoO _63423_aclick=''; _63423_pclick=''; _63423_sdc_dem='56949.f.9.fh.ls.464@@xzyov@@nlfmg evimlm@@-4_9@@9@@xln'; _63423_sdc_nomove=false; _63423_sdc_noresize=false; _63423_sdc_acamp_id=93724; _63423_sdc_pcamp_id=2825; _63423_sdc_location_id=2936; _63423_sdc_creative_id=63423; _63423_sdc_loaded=true; var _SDC_63423_content= "\n"+ "\n"+ "\n"+ "\n"+ "\n"+ ""; document.writeln(_SDC_63423_content); Obplist00 Y$archiverX$versionT$topX$objects_NSKeyedArchiver _WebResourceResponse# (./67;?C_`abcdefghijkglmnkopqrswzU$null  !"#$%&%'R$6S$10R$2S$13R$7R$3S$11R$8R$4S$14R$9R$0V$classR$5S$12R$1#A6#ACB")*+,-WNS.base[NS.relative_jhttp://adopt.specificclick.net/adopt.sm?l=1844480566&sz=728x90&rnd=40192&r=j&cxt=2444&kw=&smuid=NKV-O8HJzp0123X$classesZ$classname345UNSURLV%NSURLXNSObjectYtext/html89:YNS.stringZiso-8859-101<==>5_NSMutableStringXNSString@AB !DEFR^ZNS.objectsWNS.keysGHIJKLMNOPQSTUVWXYZ[\]  VServer]Cache-ControlZConnectionTDateZSet-CookieWExpiresVPragma^Content-LengthZKeep-Alive\Content-TypeSP3p_Apache/2.0.52 (Red Hat)Xno-cache_Wed, 19 Nov 2008 03:42:46 GMT_smx=49238b3624B3221C9A19BA49B; Domain=.specificclick.net; Expires=Sat, 17-Nov-2018 03:42:46 GMT; Path=/, DMEXP=4; Domain=adopt.specificclick.net; Expires=Wed, 26-Nov-2008 03:42:46 GMT; Path=/, CTCI=0018104rw100LJ10MsS10FUz100g9100hs10000100YQ00000000; Domain=adopt.specificclick.net; Expires=Sat, 03-Jan-2009 03:42:46 GMT; Path=/, HS=00G69yknT00000ESB082|||00FW5yknT0000WVj7W8; Domain=adopt.specificclick.net; Expires=Wed, 26-Nov-2008 03:42:46 GMT; Path=/, DGI=-1|; Domain=adopt.specificclick.net; Expires=Sun, 23-Nov-2008 03:42:46 GMT; Path=/, UI=24B3221C9A19BA49B|56949.f.9.fh.ls.464@@xzyov@@nlfmg evimlm@@-4_9@@9@@xln|; Domain=adopt.specificclick.net; Expires=Sat, 17-Nov-2018 03:42:46 GMT; Path=/_Thu, 01 Jan 1970 00:00:00 GMTT1431_timeout=300, max=782_text/html;charset=ISO-8859-1_0CP="NON DSP COR ADM DEV PSA PSD IVA OUR BUS STA"01tuuv5_NSMutableDictionary\NSDictionary01xyy5_NSHTTPURLResponseInternal01{||}5_NSHTTPURLResponse]NSURLResponse$)2DILbd  ,.02#%')0;COQSUWY[]_aceqsuwy{} 62Q~_jhttp://adopt.specificclick.net/adopt.sm?l=1844480566&sz=728x90&rnd=40192&r=j&cxt=2444&kw=&smuid=NKV-O8HJzp lfroObplist00 Y$archiverX$versionT$topX$objects_NSKeyedArchiver _WebResourceResponse (./67;?COPQRSTUY\U$null  !"#$%&'R$6S$10R$2S$13R$7R$3S$11R$8R$4S$14R$9R$0V$classR$5S$12R$1#At#AЀ#@ΎR)*+,-WNS.base[NS.relative_5_NSMutableStringXNSString@AB DEFJNZNS.objectsWNS.keysGHI KLM ]Cache-ControlZConnection\Content-Type]max-age=86400Uclose_text/html; charset=iso-8859-101VWWX5_NSMutableDictionary\NSDictionary01Z[[5_NSHTTPURLResponseInternal01]^^_5_NSHTTPURLResponse]NSURLResponse$)2DILbdz"$&(glu !/:GU[{`_ The Columbus Dispatch : Cash by the acre
Cash by the acre
Thousands of Ohioans -- rich, poor and in between -- share millions in federal farm subsidies
Sunday,  June 17, 2007 3:42 AM
THE COLUMBUS DISPATCH

Ohio farmers who have made millions in business or real estate also have collected hundreds of thousands of dollars in farm-related aid from federal taxpayers.

Churches and nonprofit groups that own land in the state received payments, as did state, county and city governments.

During the past four years, a diverse group of more than 80,000 Ohioans reaped nearly $1.5 billion in crop and conservation subsidies. Nationally, more than $56 billion was handed out.

The government payments are detailed in a new database from the U.S. Department of Agriculture. The database is the first that makes it possible to track payments directly to individuals, rather than to businesses and cooperatives.

Some central Ohio recipients and their four-year totals:

• Farmers Dale, David and Fred Hendren, who received a combined $1.9 million. They were the top three subsidy recipients in Ohio. Fred Hendren, his son David and brother Tom were involved in lucrative land deals several years ago, selling acreage in New Albany for more than $5 million.

• Charles and Ronald D. Rivers, brothers whose Mid-Ohio Chemical company was sold in 1994 for $19 million in common stock and $28 million in preferred stock. The Fayette County farmers received nearly $1 million in subsidies.

• Columbus and Franklin County Metro Parks, which received more than $300,000 in conservation funding.

Subsidies, which began in the 1930s as a response to dire economic conditions, fall into more than a dozen categories and are awarded for a variety of activities, including crop production and conservation efforts. One program, for instance, gives lump-sum payments based on the history of a farm's performance, with no restrictions on which crop is grown and no requirement to grow anything at all.

The payments are legal and available to all who qualify. Subsidy payments are under the microscope again, with a battle looming this year in Congress. They're part of the politically sensitive farm bills that are revised about every five years.

One proposal would award subsidies only to farmers with less than $200,000 in annual adjusted gross income.

"The payments themselves are for services rendered," said Adam Sharp, director of national affairs for the Ohio Farm Bureau Federation. "The theory of it being stuffed into pockets for profit is not the case."

The program was established to ensure a stable, secure and affordable food supply, he said. "The farm bill works. We have those things."

Ben Lilliston, communications director for the Institute for Agriculture and Trade Policy, thinks otherwise. The nonprofit group based in Minnesota works to foster sustainable rural communities.

"It's really a broken system," he said.

Lilliston said farm subsidies were cut substantially in 1996. But then commodity prices dropped, and Congress passed several emergency measures to help farmers.

The result: a disorganized system with many loopholes.

Lilliston said his organization believes that food companies and agribusinesses should pay farmers a fair price for their products. The group advocates legislation to establish price floors and create a reserve program. That way, he said, farmers would not need to rely on taxpayer support.

Sizable payments

Some of the Ohio farmers who received sizable subsidies have significant assets or have made money through other ventures.

The Hendren family, for example, sold 270 acres of farmland to the New Albany Co. for an average of $18,700 per acre, according to a 2000 Dispatch report. The family then moved its farming operation.

The Hendrens declined to comment on the subsidy program.

Members of the Wolfe family, owners and publishers of The Dispatch, received nearly $500,000 through another company, Agricultural Lands Inc. Most of the subsidies, which went to 13 family members, involved farmland in Madison County. The company was founded in 1934 and raises crops and hogs, and the subsidies go to farm operations, said a company representative.

The Rivers brothers, who each received $480,918 in farm subsidies, have bought and sold valuable real estate in Florida.

Between 1995 and 2004, one or both of the brothers were the sellers in Sarasota real-estate deals worth more than $4 million.

Charles Rivers died in January. His widow is listed as the owner of a Sarasota property purchased for $1.7 million in 2004.

Ronald Rivers and companies started by both brothers still own at least three other Sarasota properties valued at a combined $3.4 million by the county appraiser.

Ronald Rivers declined an interview.

Farmers often are reluctant to discuss their subsidies.

"I think that it's just like anybody else. You don't like to tell someone else what your paycheck looks like," said Rick Borland, program chief for production adjustment compliance for the Farm Service Agency in Ohio.

Under the current farm bill, every person receiving subsidies must report adjusted gross income to the USDA. To qualify, income from activities other than farming can't exceed an average of $2.5 million over the previous three years, Borland said.

"We need to understand that, historically, farm programs have been about production of certain commodities. It has not been about farmers," said Carl Zulauf, an agricultural economist at Ohio State University.

The primary goal was food security, not farmer support.

"There's all kinds of economic evidence that (subsidies) have indeed stimulated production," Zulauf said. For example, the U.S. traditionally has amassed a stock of crops such as corn. That's an indication that production is being supported by the government, because the market doesn't support large reserves.

Providing steady income

Farmers had some unexpected company in collecting agricultural subsidies: charities, churches and government.

Recipients included 4-H Camp Palmer near Fayette, in Fulton County ($42,269), St. Philip Episcopal Church in Circleville ($17,763), the YMCA of Central Ohio ($15,348) and the Newport Sportsman Club in Fort Loramie ($13,980).

4-H Camp Palmer enrolled about 71 acres in the conservation reserve program, which aims to improve water quality, control erosion and benefit wildlife.

The camp's share included nearly $28,000 in conservation reserve funds, which helped in developing programs and improving facilities, said Jeff Dick, interim camp manager.

"The good thing is that it's guaranteed income," he said, calling the money a small portion of the organization's annual budget of $550,000.

The land in the conservation reserve program is used for education programs for campers. 4-H Camp Palmer has 6,000 overnight visitors each year, most between the ages of 9 and 18, with about 2,000 single-day visitors, Dick said.

Along with nonprofits, government agencies at every level received farm payments.

"I didn't even know those were all farm subsidies," said John O'Meara, Metro Parks executive director, when told of the payments.

Most of the Metro Parks money came from the Wetlands Reserve Program and was used to restore about 300 acres of wetlands at Pickerington Ponds.

The federal money "certainly helps us achieve our conservation mission," O'Meara said.

Dave Risley, executive administrator for wildlife management with the Ohio Department of Natural Resources, agreed. The department received more than $76,000 for two conservation programs.

"It's just trying to leverage your money," Risley said. The agency uses the money to restore wetlands and make other improvements, and the land usually is available for public use.

Risley said there's a subtle distinction between payments for crops and payments for conservation, which "helps us restore critical habitat that otherwise would not be restored."

Sharp, with the Ohio Farm Bureau, said that about 20 percent of the farm bill is devoted to subsidies. The total farm bill represents less than 1 percent of the federal budget, he said, "minuscule for the benefit we get out of it."

mcuret@dispatch.com

dhaddix@dispatch.com



Story tools

Yahoo! Buzz
Shopping Columbus logo

Search Ads and
Grocery + Local Coupons

Community Headlines

  • Levy request will return in 2009

    November 18, 2008

    In the wake of a fourth consecutive levy defeat, Canal Winchester school district officials said during Monday night's board of education meeting that district residents can expect a fifth levy try in 2009.

  • Dublin hires group for business consulting

    November 18, 2008

    The city of Dublin has partnered with the Center for Workforce Development at Columbus State Community College, bringing aboard a consultant to focus solely on issues experienced by Dublin-area businesses.

  • SWCS aiming to retry for levy, possibly in May

    November 18, 2008

    South-Western City School Board of Education members agreed Monday night not to pursue a second chance in February at the recently rejected levy and bond issue.

  • Elections officials: Court case will not delay results

    November 18, 2008

    Official results for the 15th congressional race between Democrat Mary Jo Kilroy and Republican Steve Stivers will not be slowed by a pending federal court case concerning provisional ballots in Franklin County, elections officials said.

  • Tomato Festival organizers call it quits

    November 18, 2008

    With too much debt to recover, Reynoldsburg Tomato Festival Inc. officials have decided they will not organize the annual event in 2009.

Or click here, to read more headlines from your community.

Brought to you by:

ThisWeek Community Newspapers

AP Videos

AP videos require Macromedia Flash Player 7 and Windows Media Player 10.

Top Jobs

View all top jobs


UUTF-8P_lhttp://www.dispatch.com/live/content/local_news/stories/2007/06/17/Farmcash.ART_ART_06-17-07_A1_0V70K8Q.html lfO3 Ads by Quigo _adsonar_serve544094_http://ads.adsonar.com/adserving/getAds.jsp?previousPlacementIds=&placementId=1266088&pid=607758&ps=-1&zw=480&zh=200&url=http%3A//www.dispatch.com/live/content/local_news/stories/2007/06/17/Farmcash.ART_ART_06-17-07_A1_0V70K8Q.html&v=5&dct=The%20Columbus%20Dispatch%20%3A%20Cash%20by%20the%20acre&ref=http%3A//www.dispatch.com/live/contentbe/shared/pdSearch/BM_SearchEngine.php%3Fkeywords%3Dfarm+bill+subsidies+ohio%26SearchSelect%3Ddispatch%26story%3D%26aff%3D6%26sec%3Dphp-search%26q%3D%26tp%3D%26sb%3D%26en%3D%26combo%3D0%26adsec%3Dsearch lfOClick here to find out more! _ -->_http://ad.doubleclick.net/adi/N3016.SpecificMedia/B3221153.4;sz=300x250;click=http://adopt.specificclick.net/click.sm?adv=1363&href=;ord=1227066158715? lfO clip
Yclip1.swf_dhttp://cdn3.specificmedia.com/img/?ag=1&pb=1173404033&pg=462073410920676518&us=NKV-O8HJzp&rnd=592301Ф Obplist00 Y$archiverX$versionT$topX$objects_NSKeyedArchiver _WebResourceResponse )/078?JUZNS.objectsWNS.keys@ABCDEFGHIKLMNOPQRST _Content-EncodingVServer]Last-Modified]Accept-RangesZConnectionTDate^Content-LengthTEtag\Content-TypeSP3pTgzip_1Apache/1.3.33 (Unix) PHP/5.2.3 mod_gzip/1.3.26.1a_Thu, 26 Jun 2008 21:24:22 GMTUbytesZkeep-alive_Wed, 19 Nov 2008 03:41:28 GMTT1301_"36c002-1527-48640906"_(CP="ALL DSP COR ADM TAI OUR DEL NOR PRE"12jkkl6_NSMutableDictionary\NSDictionary12noo6_NSHTTPURLResponseInternal12qrrs6_NSHTTPURLResponse]NSURLResponse$)2DILbd  %1357mr{  #*8FQVejw{ #NSWmztO'/*--------------------------------------------------------------------------------*/ /* $Id: caststyles.css 87937 2006-04-15 02:52:01Z nick $ */ /*----------------------------------------------------------------------------*/ /*UNIVERSAL STYLES*/ body,table,td { font-family: Verdana, Geneva, Arial, Helvetica, sans-serif; font-size: 10px; } .userAlert {color:red;} .searchHeader, .sectionHeader{ font-size: 14px; font-weight: bold; height: 20px; margin: 5px; padding-bottom: 2px; padding-left: 5px; padding-right: 5px; padding-top: 2px; border-bottom: 1px solid #000000; background: #000; color:#fff; } .searchHeader, .sectionHeader{ font-size: 14px; font-weight: bold; height: 20px; margin: 5px; padding-bottom: 2px; padding-left: 5px; padding-right: 5px; padding-top: 2px; border-bottom: 1px solid #000000; background: #000; color:#fff; } .castAdminTableHeader { background-color: #333366; color: #FFFFFF; height: 22px; } .castAdminTableHeaderText { color: white; font-size: 10px; } .ccUserAlert {color:red;} .ccFormHeader { font-family: Verdana, Geneva, Arial, Helvetica, sans-serif; font-size: 12px; font-weight: bold; text-transform: uppercase; } .castText { color: black; font-family: Verdana, Geneva, Arial, Helvetica, sans-serif; font-size: 10px; } .castBoxLines { border: 1px solid #000000; } .castMediumLine { background-color: #757575; } .castLightLine { background-color: #A2A2A2; } .castHeaderCell { background-color: #FFFFFF; background-image: url(http://slb.careercast.com/ccimages/cubeBG.gif); height: 68px; padding: 7px; } .castFooterCell { background-color: #FFFFFF; background-image: url(http://slb.careercast.com/ccimages/cubeBG.gif); height: 20px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 10px; } .castBreadcrumb { font-size: 11px; } .castBreadcrumbSelected { font-size: 11px; font-weight: bold; } .castDivTableTd { color: #779977; background-color: #779977; width: 100%; empty-cells: show; } .castTableTopSpace { height: 3px; } .castSearchBoxTable { border: 1px solid #000000; background: #EFEFEF; } .castBorderRight { border-right: 1px solid #A7A7A7; } .castUtilityBar { background-color: #CCCCCC; padding-top: 5px; padding-bottom: 3px; padding-left: 5px; padding-right: 5px; font-weight: bold; font-size: 12px; } .castPageHeadingHR { background-color: #6699CC; height: 2px; } .castResultsArea { background-color: #F9F9F9; border: 1px solid #799FC5; } .castTableTitleDark { background: #336633; color: #FFFFFF; font-size: 14px; font-weight: bold; height: 20px; margin: 5px; text-indent: 5px; border-bottom: 1px solid #000000; } .castTableTitleLight { font-size: 14px; font-family: verdana, arial, helvetica; color: #FFFFFF; text-indent: 3px; font-weight: bold; background: #99CC99; border-bottom: 1px solid #000000; height: 20px; } .castTableRowLight { background: #F5F5F5; height: 24px; margin: 5px; padding-bottom: 2px; padding-left: 5px; padding-right: 5px; padding-top: 2px; } .castTableRowDark { background: #E8E8E8; height: 24px; margin: 5px; padding-bottom: 2px; padding-left: 5px; padding-right: 5px; padding-top: 2px; } .castDisplayCell { background-color: #FFFFFF; height: 20px; margin: 5px; padding: 5px; } .castFormHeader { font-size: 12px; font-weight: bold; text-transform: uppercase; } .castFormLabel { font-weight: bold; text-align: right; } .castFormHeaderLarge { background: transparent; background-color: transparent; font-size: 18px; font-weight: bold; color: #333333; text-transform: uppercase; font-family: verdana; } .castPageHeading { color: #6699CC; font-size: 18px; } .castUserAlert{ color: #FF0000; font-size: 10px; } .castPositiveAlert { background-image: url(http://slb.adicio.com/images/siteManager/icon_greenArrowSm.gif); background-position:left; background-repeat:no-repeat; color:#008000; font-size: 12px; font-weight: bold; margin: 10px 0px 0px 5px; padding-left: 12px; } .castSmallerText { color: #000000; font-size: 150%; } .castTableText { font-size: 10px; } .castStandardHr{ border-style: solid; border-color: #999999; background: #999999; width: 100%; height: 1px; line-height: 1px; } .castDarkHr{ border-style: solid; border-color: #000000; background: #000000; width: 100%; height: 0px; line-height: 0px; } .castTableHeader{ background-color: #999999; color: #000000; } .castTableHeaderBlack{ background-color: black; color: white; font-family: Verdana, Geneva, Arial, Helvetica, sans-serif; font-weight: bold; font-size: 12px; } /*--------------------------------------------------------------------------------*/ /*UNIVERSAL FORM STYLES*/ .castRadioButton { background: transparent; } .castCheckBox { background-color: transparent; vertical-align:middle; } .castTextBox { background-color: #FFFFFF; font-size: 11px; font-family: verdana, arial, helvetica, sans-serif; } .castDropDown { font-size: 11px; font-family: verdana, arial, helvetica, sans-serif; background-color: #ffffff; } /*--------------------------------------------------------------------------------*/ /*UNIVERSAL SPACING STYLES*/ .castpx5Gutter { margin: 5px; padding-left: 5px; padding-right: 5px; padding-top: 5px; padding-bottom: 5px; } .castNoPad { padding: 0px; } /* For Spam Protection, hiding style */ .hidebody { display: none; } _3http://slb.careercast.com/ccincludes/caststyles.css MOsbplist00 Y$archiverX$versionT$topX$objects_NSKeyedArchiver _WebResourceResponse! )/078?KWZNS.objectsWNS.keys@ABCDEFGHIJLMNOPQRSTUV VServer_X-Wr-Modification]Last-ModifiedZConnectionTDate^Content-Length\X-Powered-ByTEtag\Content-TypeSP3p_X-Squisher-Notice_1Apache/1.3.33 (Unix) PHP/5.2.3 mod_gzip/1.3.26.1a_Tue, 18 Nov 2008 23:46:55 GMTZkeep-alive_Wed, 19 Nov 2008 03:42:53 GMTT3020YPHP/5.2.3_ 01aab5ce1cebc8cf12a734057a53daad_(CP="ALL DSP COR ADM TAI OUR DEL NOR PRE"_Image served from cache12mnno6_NSMutableDictionary\NSDictionary12qrr6_NSHTTPURLResponseInternal12tuuv6_NSHTTPURLResponse]NSURLResponse$)2DILbd  '3579'/;=?ACEGIKMOQ]_acegikmoqsu|(HSsx :?CWweO JFIFC    $.' ",#(7),01444'9=82<.342C  2!!22222222222222222222222222222222222222222222222222Kd"?!1AQ"a2q#$BR%CD3bd+!1Qa"A2qr ?iC9 tM,E=UG+~ܮ,>y9}*8+I>A7$ǣ[EWZZ 6qۥ Ҟb1E`V^_-6ĜX'J]z#7=D1$4 s١IQI+Gs+9 N6ǮnT7٪H U*gzozo5&%$ ru? ǎ1)|Oyd&lqOwg$H!(iW, BT_NKo{#)o.scftLk }ta|} y}rx]'[wj_ 2Txf=1^=TTV5J^4ɀQoݤiiƳ k࣬v8>A=[}yG<ҴM4TcQ_,r`nv)1Y+ mϹvL4&H( m'PV,#˞ CiޕF@򵾙eijde`74&4J#χMy|S郣u.ebZv?4b55 9*Kd`X(8F|Kg@A8+GKthۡZzy"I YT Ǧ4lz؟Qrd98  &rdU7|Щn11],nvIZzƍTؓuqCRk**:pN%}l%v`\cn4+g*p"ƥCxA-kœ%u[q8FJ ANQmI]HĹ@ŋK2@YFTMښ7%UD,~=Ǽ8j)? W=?Zq T,R،$.2 62SWUDf,юݳG(etE~XHQ5<%%UګB,? :е eF!@=N JNM>$yY>T1A磒{4)T8fJg~3 .}fh4Hs?,p&1dyhT'd$w }q1E"~j{\"̂EP{$B@4N1oi}%BeaG0s=6%LV֍bgA90Cp4`oཿhJcnB~KkBqOe_|ҧ=7tj1cm^ÖyUFJ1f={ Jv5\P?dU_x蟴g Uy@S)j\7_R4BW8Eu+}#VxI8nEEU"{o%oqI3'DTQ$,h#S@n߷=ܸ+1QE%15$:2+ EC,iʴˌrpdF^Ѝ|kO_E,jw=G5CQôEE"=|̣=0s2Ҳ$ZiylA#?=] fDRN1т`c>$y&D;} oOհWx'=6Ax&O1EZ\o\?5?*tj]c8oO\BHBW&$Uѩxf (DRO:3HZ!}zOIFe`Vn$2O3磜5 I5 M )a"HΌ: zL48 QıJA$߸瓸ź,r#V~N+~gKU]3=43y{ç*O]0*C= IOBYbv;jU$ [=>MGG]LM^<#WS'u98:[j(/Rʪ6Zi6sWG]VrۓBLlo<<Ǽ?r>}Nka͌tlv协yHF]g|5* 2Z.)`zwҤCt$J!LIF믵Euy5[ F`Gm˙i{=Fst'Mk1#twc+]1R23|~y\LP$B_$ħ1'nK=F(e iaQqԜuפGJ5(bJp}O^"y5|Nxq4( XtT}w/!2$[c.D@QЬ^>AwE9jy FAAW)I|DI=__MP_http://slb.adicio.com/squisher.php?u=http%3A%2F%2Fslb.adicio.com%2Ffiles%2Fautoimages%2Ffeeds%2FDIS0017%2FPC21597_1_37179_1227003503.jpg;w=100 MOwbplist00 Y$archiverX$versionT$topX$objects_NSKeyedArchiver _WebResourceResponse! )/078?KWZNS.objectsWNS.keys@ABCDEFGHIJLMNOPQRSTUV VServer_X-Wr-Modification]Last-ModifiedZConnectionTDate^Content-Length\X-Powered-ByTEtag\Content-TypeSP3p_X-Squisher-Notice_1Apache/1.3.33 (Unix) PHP/5.2.3 mod_gzip/1.3.26.1a_Tue, 18 Nov 2008 21:51:27 GMTZkeep-alive_Wed, 19 Nov 2008 03:42:50 GMTT2323YPHP/5.2.3_ 3df511d35862089bc363189aa1d84e1a_(CP="ALL DSP COR ADM TAI OUR DEL NOR PRE"_Image served from cache12mnno6_NSMutableDictionary\NSDictionary12qrr6_NSHTTPURLResponseInternal12tuuv6_NSHTTPURLResponse]NSURLResponse$)2DILbd  '3579  +3?ACEGIKMOQSUacegikmoqsuwy,LWw| ">CG[wiO JFIFHHLEAD Technologies Inc. V1.01C    $.' ",#(7),01444'9=82<.342C  2!!22222222222222222222222222222222222222222222222222Kd"9!1AQ"aq2BRS#3Crb"!1Q"#Aa ?aqigiP<qU7)1>$UjжHFW'b yTmˆ {tcڳ˨ݠ? b܅̇h8q ΞhUXʗrI}f )App~UmKpp|+2pny%cks5CYטd3Bc"$n,뺑n{ڈUcLjNBs=Q)zGftAꍾMUx@ygpTZi -}nO}_;WN7wvw nS<ĨW=>{+-^ RqC7Z{7ܳ$tC)?soI;|ڨu.zk!gJؘ{ ŕؑ1)-}GkOȰp 毵Ϥ۫ NX#~Ta7{,w'V륷!&c\1gʺ(XGpM \܏3[=f2:}_q?,ђ)?qfY g$8 lѰf ˂:c67C52rw8n/8Uݡ{3H1H9Um!\UkRF-Z`@/^{26J0$e'FCVOPm(|BwW{vR$VsÂ[7;}o$&LDTinoz.4MbDT{OĎ\^2叔Ԯ[u.YJ{]3% ,Ipp`0lyUdIm@Xr`XqW M^ J 亅5oye#V,p(Y!sV,^&\[,ى@El@w$*쿲V ʩ'v {۵qsUAV*( }ukٷA7"panc!yM`Μ`UsXL#ĺld`k*5~#I*6vuqM1> 6~ ktcX0ȇcU0$bex[G=L2wkse"@OW2E'3F01t>&o}k=f֫cA4W~2Hַ7Oe&MCgƳ=Vi;H`Cp{Y@8K#懺{ְ-zlHK7oQR1~\;d`*Vվ8#"2`gh"dub=i]a]fE*a(ύ88 ^Ϝd;zyTrk(\u+RU?8CBzŬ4h 4Q3nBfXJ!`TH S{;VEs ۤe1NH8#jail=N?=~N[~7NJp!Ҷ[h? =(yK=ҸX1Jqk =ʰ$"]c |nmWHY( C09!J3elv0F+:{Ie?)m@IUԃ v+GW=qDZ% 銶Kh!ĈF+(򫒶>u*R_http://slb.adicio.com/squisher.php?u=http%3A%2F%2Fslb.adicio.com%2Ffiles%2Fautoimages%2Ffeeds%2FDISPATCH5969%2F9DH254_1_28829_1224495283.jpg;w=100 MOvbplist00 Y$archiverX$versionT$topX$objects_NSKeyedArchiver _WebResourceResponse! )/078?KWZNS.objectsWNS.keys@ABCDEFGHIJLMNOPQRSTUV VServer_X-Wr-Modification]Last-ModifiedZConnectionTDate^Content-Length\X-Powered-ByTEtag\Content-TypeSP3p_X-Squisher-Notice_1Apache/1.3.33 (Unix) PHP/5.2.3 mod_gzip/1.3.26.1a_Tue, 18 Nov 2008 21:38:24 GMTZkeep-alive_Wed, 19 Nov 2008 03:42:50 GMTT2067YPHP/5.2.3_ 83d3cca93eb2dc73fbf78946c3f2092d_(CP="ALL DSP COR ADM TAI OUR DEL NOR PRE"_Image served from cache12mnno6_NSMutableDictionary\NSDictionary12qrr6_NSHTTPURLResponseInternal12tuuv6_NSHTTPURLResponse]NSURLResponse$)2DILbd  '3579 *2>@BDFHJLNPRT`bdfhjlnprtvx+KVv{ !=BFZwhOJFIFHHC    $.' ",#(7),01444'9=82<.342C  2!!22222222222222222222222222222222222222222222222222Kd"B !1AQ"aq23#CRb$BSrs'!1A"Q2a ?7v奫0 Iu=9);̖(Aׯ;XSoJZmZ$Ϋ]avH/yem+Æ+3Nwf^j-I#$|QSw6) a|N)8Ēx0k0ӱN{Ma+'2=$Swsx>뎛[FY$PڼV'ķ۪nɫ{[vm*ZBԑ+5 8Gc]f'+RY,;zWDy{x9OS?/_moYy^(&M*dfW(O$(4%!w -2[ٻ+2x3Z0._x3fn;euV8ZE!ӕZs46f_[xk1P[\ ͙BGF=]2X|-$]J3vNϭC9zڵk䅥L4V!DRkec~KZ%P&Y\ٮ4nձh@M- ORM*]y-auH\)JZ$AZ8b(%-3,N@ w N')m*q,L #j(rsL QVI*k7l\=p]w)Rd Ԋ o[mnVRz*FF1\=6NA.)N.F4`JW}$7_ ?2;qZ֤_Yj{3Տ-Oz.n۷S} ǥS/7k\L=tm@H? {OIkK8v-[ I"LdoMZG9*eY>UļCk&ݢ!2ޡ)НORtV]-rXu(k-8g jO•f5X[87$c(H4ް]Z j9"kdȃ' ϢEBt coP\^ eRO5TkhKIe&3#0uH<5HSkM\vThMg Btì?eLaANSZF܁Uu53#C&2|ܬ1CE 6@o, ӕ$ߥ0ͥHh`H,7< 6r:U$J.`h)LAI[C*C(suZ6ң15FzqD Pd&94.a*OQ1΢Tݼ=n)Ah"" (NᢽB~4˜w6DtEq:ǖ$Mp"cI4mY jt\JwI)1TJe!P|$w*5AZ(iH>sD$(jcSTcc2uU 8>)OI)UVQL-):L։ w A&` -e%@4 *$I&P*#4 G݈iIڒwTut֦c4@4 #8:LA3M.gOcM$$e: *jH$t;Z) yЃ`@ICV T_http://slb.adicio.com/squisher.php?u=http%3A%2F%2Fslb.adicio.com%2Ffiles%2Fautoimages%2Ffeeds%2FDISPATCH6505%2F6454Z_1_35855_1224062965.jpg;w=100 lfѫO

Chevrolet, HHR
2007 - $12999
Bob McDorman Chevrolet
Read more...


Hyundai, Accent
2009 - $14690
Dennis Hyundai of Dublin
Read more...


Buick, LaCrosse
2006 - $17980
Len Immke Buick
Read more...
_ -->_http://dispatch.motors.adicio.com/autos/search/featuredAutos.php?pp=3&qRand=Y&qFlow=v&header=n&showAllFeaturedLink=n&bgcolor=%23ffffff&nopageview=y&nouniquevisitor=y&bordercolor=%23ffffff O{bplist00 Y$archiverX$versionT$topX$objects_NSKeyedArchiver _WebResourceResponse# )/078?LYZNS.objectsWNS.keys@ABCDEFGHIJKMNOPQRSTUVWX  VServerTVary]Last-Modified]Accept-Ranges_Content-EncodingTDateZSet-Cookie^Content-LengthZKeep-AliveZConnectionTEtag\Content-Type_Apache/2.2.4 (Unix) PHP/5.1.6_Accept-Encoding,User-Agent_Thu, 02 Oct 2008 18:37:25 GMTUbytesTgzip_Wed, 19 Nov 2008 03:41:28 GMT_QApache=24.95.75.202.1227066088810749; path=/; expires=Thu, 20-Nov-08 03:41:28 GMTU16028_timeout=1, max=100_"525425-1a72f-4584982134340"12qrrs6_NSMutableDictionary\NSDictionary12uvv6_NSHTTPURLResponseInternal12xyyz6_NSHTTPURLResponse]NSURLResponse$)2DILbd#+79;=!#%')+8:<>@BDFHJLNPRY^lz17<\ :?CW{eO//* PAGE WIDTH */ .reContentWidth { width:645px;} /* Confirmation Page */ .confirmPageContent { background-color: #ffffff; padding: 10px 10px 10px 10px; font-family: Arial, Helvetica, sans-serif; font-size: 12px;} .confirmPageContent b { font-weight: bold;} .confirmPageContent a:link { color: #548a54; text-decoration: underline;} .confirmPageContent a:active { color: #548a54; text-decoration: underline;} .confirmPageContent a:visited { color: #548a54; text-decoration: underline;} .confirmPageContent a:hover { color: #548a54; text-decoration: underline;} /* Save Search / Email Alert Setting */ .saveSearchContent { padding: 6px 6px 6px 6px; border-left: 1px solid #548a54; border-right: 1px solid #548a54; font-size: 12px;} .saveSearchText { text-align: left; padding: 0px 0px 10px 0px;} .saveSearchLabel { text-align: right; font-weight: bold; width: 32%; padding: 0px 5px 10px 0px;} .saveSearchField { text-align: left;} .saveSearchSubmit { padding: 10px 0px 10px 0px; text-align: center;} .emailAlertContent { padding: 6px 6px 6px 6px; border-right: 1px solid #548a54; border-bottom: 1px solid #548a54; border-left: 1px solid #548a54;} /* Preview Ad */ .previewBodyContentPlain{ font-family:Arial, Helvetica, sans-serif; font-size:12px; color:#000000; padding: 10px 10px 10px 10px;} /* Check Out */ .checkoutMsg { font-size: 12px; color: #333333; text-align: center;} /* Sign In Page */ .plainBoxTopLt { background:url(/ccimages/verticals/realestate/default/re_bg_plainBoxTopLt.gif) no-repeat; height: 6px; width: 6px;} .plainBoxTopBg { background:url(/ccimages/verticals/realestate/default/re_bg_plainBoxTopBg.gif) repeat-x; height: 6px;} .plainBoxTopRt { background:url(/ccimages/verticals/realestate/default/re_bg_plainBoxTopRt.gif) no-repeat; height: 6px; width: 6px;} .plainBoxLt { background:url(/ccimages/verticals/realestate/default/re_bg_plainBoxLt.gif) repeat-y; width: 6px;} .plainBoxBg { background-color: #ffffff;} .plainBoxRt { background:url(/ccimages/verticals/realestate/default/re_bg_plainBoxRt.gif) repeat-y; width: 6px;} .plainBoxBotLt { background:url(/ccimages/verticals/realestate/default/re_bg_plainBoxBotLt.gif) no-repeat; height: 6px; width: 6px;} .plainBoxBotBg { background-image: url(/ccimages/verticals/realestate/default/re_bg_plainBoxBotBg.gif); background-repeat: repeat-x; height: 6px;} .plainBoxBotRt { background:url(/ccimages/verticals/realestate/default/re_bg_plainBoxBotRt.gif) no-repeat; height: 6px; width: 6px;} .signInColumnLt { width: 424px; float: left;} .signInColumnRt { width: 197px; float: right;} .signInContainer { font-family: Arial, Helvetica, sans-serif; font-size: 12px; color: #333333;} .signInContainer a:link { color:#548a54; text-decoration:underline;} .signInContainer a:active { color:#548a54; text-decoration:underline;} .signInContainer a:visited { color:#548a54; text-decoration:underline;} .signInContainer a:hover { color:#548a54; text-decoration:underline;} .signInLabel { font-family: Arial, Helvetica, sans-serif; font-size: 12px; color: #333333; font-weight: bold; text-align: left;} .signInTitle { font-family: Arial, Helvetica, sans-serif; font-size: 14px; font-weight: bold; text-align: left; color: #333333; padding: 0px 0px 10px 10px;} .signInText { padding: 0px 0px 10px 10px; text-align: left;} .signInJoin { padding: 0px 0px 10px 100px; text-align: left;} .signInSubmit { padding: 0px 0px 6px 0px; text-align: center;} .signInPrivacy { font-size: 11px; color: #333333; text-align: left; padding: 3px 0px 0px 6px;} .signInPrivacy b { font-weight: bold;} .iconlist { list-style: none; margin: 0; padding: 0;} li.signInList { background-image: url(/ccimages/verticals/realestate/default/re_icon_listBullet.gif); background-repeat: no-repeat; background-position: 0 .3em; padding: 0 0 1px 10px; margin: .2em 0;} /* Forgot Password */ .forgotPWD { text-align: center;} .forgotPWDSubmit { text-align: left; padding: 6px 0px 10px 0px;} .forgotPWDLabel { font-family: Arial, Helvetica, sans-serif; font-size: 12px; color: #333333; font-weight: bold; text-align: left; padding: 6px 0px 0px 0px;} /* Member Center */ .memberContainer { font-family: Arial, Helvetica, sans-serif; font-size: 12px; color: #333333; padding-bottom: 14px;} .memberContainer a:link { color:#548a54; text-decoration:underline;} .memberContainer a:active { color:#548a54; text-decoration:underline;} .memberContainer a:visited { color:#548a54; text-decoration:underline;} .memberContainer a:hover { color:#548a54; text-decoration:underline;} .memberColumnLt { width: 424px; float: left;} .memberColumnRt { width: 197px; float: right;} .memberContentLt { padding: 3px 0px 3px 6px; text-align: left;} .memberContentRt { padding: 2px 6px 2px 0px; text-align: left;} .memberHeadLt { padding: 3px 0px 3px 6px; text-align: left; font-weight: bold; color: #666666; font-size: 14px;} .memberHeadRt { padding: 2px 6px 2px 0px; text-align: left; font-weight: bold; color: #666666; font-size: 14px;} .memberQuickSearchText { font-size: 11px; text-align: center; padding: 0px 3px 0px 3px;} .memberQuickSearch { text-align: left; font-weight: normal; padding: 3px 0px 0px 15px; font-size: 11px;} .memberQuickSearchSubmit { padding: 6px 0px 3px 0px; text-align: center;} .memberFeatComp { padding: 6px 0px 3px 0px; text-align: center;} .memberFeatName { padding: 0px 0px 0px 0px; text-align: center; font-weight: bold;} .memberFeatPhoto { text-align: center;} .memberFeatContact { padding: 0px 0px 6px 0px; text-align: center;} .boxTextLt { font-size: 12px; text-align: left;} .boxTextRt { font-size: 12px; text-align: right;} .boxTextCenter { text-align: center; font-size: 11px;} .boxHeaderBorder {/* used if no subheader is used*/ border-bottom:1px solid #487048;} /* Featured Agent & Property */ .agentSummary { padding-left: 5px;} .boxFooterBorderFeat { /* use if no bottom subheader is used */ border-top:1px solid #97C997;} .boxHeaderBorderFeat {/* used if no subheader is used*/ border-bottom:1px solid #97C997;} .boxTopLtFeat{ background-image:url(/ccimages/verticals/realestate/default/re_bg_boxTopLtFeat.gif); background-repeat:no-repeat; width:6px; height:24px;} .boxTopBgFeat { background-image:url(/ccimages/verticals/realestate/default/re_bg_boxTopBgFeat.gif); background-repeat:repeat-x; height:24px; text-align:left;} .boxTopRtFeat { background-image:url(/ccimages/verticals/realestate/default/re_bg_boxTopRtFeat.gif); background-repeat:no-repeat; width:6px; height:24px;} .boxBotLtFeat { background-image:url(/ccimages/verticals/realestate/default/re_bg_boxBotLtFeat.gif); background-repeat:no-repeat; background-position:bottom; width:6px; height:24px;} .boxBotBgFeat { background-image:url(/ccimages/verticals/realestate/default/re_bg_boxBotBgFeat.gif); background-repeat:repeat-x; background-position:bottom; height:24px;} .boxBotRtFeat { background-image:url(/ccimages/verticals/realestate/default/re_bg_boxBotRtFeat.gif); background-repeat:no-repeat; background-position:bottom; width:6px; height:24px;} .boxBorderFeat { border-right:1px solid #97C997; border-left:1px solid #97C997; background-color: #ffffff;} .boxBorderFeatHeader { border-bottom: 1px solid #97C997;} .boxBorderFeatFooter { border-top: 1px solid #97C997;} .boxSubTopFeat { height:22px; border:1px solid #97C997; background-color:#E6F2E6; padding:0px 6px 0px 6px;} .boxSubBottomFeat { height: 22px; border:1px solid #97C997; background-color:#E6F2E6; padding:0px 6px 0px 6px;} .memberContainerFeat { font-family: Arial, Helvetica, sans-serif; font-size: 12px; color: #333333; padding-bottom: 14px;} .memberContainerFeat a:link { color:#548a54; text-decoration:underline;} .memberContainerFeat a:active { color:#548a54; text-decoration:underline;} .memberContainerFeat a:visited { color:#548a54; text-decoration:underline;} .memberContainerFeat a:hover { color:#548a54; text-decoration:underline;} /* Featured Property IFrame */ .featPropertyContainer { text-align: center;} .featProperty { vertical-align: top; padding: 0px 6px 0px 6px; text-align: center; font-family: Arial, Helvetica, sans-serif; font-size: 12px; color: #333333;} .featProperty a:link { color:#548a54; font-size: 11px; text-decoration:underline;} .featProperty a:active { color:#548a54; font-size: 11px; text-decoration:underline;} .featProperty a:visited { color:#548a54; font-size: 11px; text-decoration:underline;} .featProperty a:hover { color:#548a54; font-size: 11px; text-decoration:underline;} .featPropertyPrice { font-weight: bold;} /* SUBMIT AD STEPS */ .title_on_beg_1 { background-image:url(/ccimages/verticals/realestate/default/realEstateTitle_1_on.gif); background-repeat:no-repeat; font-family:Arial, Helvetica, sans-serif; font-size:30px; font-weight:bold; color:#FFFFFF; vertical-align:middle; text-align:center; width:64px; height:64px;} .title_on_beg_2 { background-image:url(/ccimages/verticals/realestate/default/realEstateTitle_2_on.gif); background-repeat:no-repeat; font-family:Arial, Helvetica, sans-serif; font-size:30px; font-weight:bold; color:#FFFFFF; vertical-align:middle; text-align:center; width:64px; height:64px;} .title_off_beg_1 { background-image:url(/ccimages/verticals/realestate/default/realEstateTitle_1_off.gif); background-repeat:no-repeat; color:#666666; font-family:Arial, Helvetica, sans-serif; font-size:28px; font-weight:bold; vertical-align:middle; text-align:center; width:64px; height:64px;} .title_on_mid { background-image:url(/ccimages/verticals/realestate/default/realEstateTitle_bkgd.gif); background-repeat:repeat-x; color:#FFFFFF; font-family:Arial, Helvetica, sans-serif; font-size:14px; font-weight:normal; vertical-align:middle;} .title_off_mid { background-image:url(/ccimages/verticals/realestate/default/realEstateTitle_gr_mid.gif); background-repeat:repeat-x; color:#666666; font-family:Arial, Helvetica, sans-serif; font-size:14px; font-weight:normal; vertical-align:middle;} .title_off_beg { background-image:url(/ccimages/verticals/realestate/default/realEstateTitle_bkgd_gr_off.gif); background-repeat:no-repeat; color:#666666; font-family:Arial, Helvetica, sans-serif; font-size:28px; font-weight:bold; vertical-align:middle; text-align:left; text-indent:11px; width:50px; height:64px;} .title_on_gr_end { background-image:url(/ccimages/verticals/realestate/default/realEstateTitle_gr_end_on.gif); background-repeat:no-repeat; width:10px;} .title_off_gr_end { background-image:url(/ccimages/verticals/realestate/default/realEstateTitle_gr_end_off.gif); background-repeat:no-repeat; width:10px;} .title_on_end { background-image:url(/ccimages/verticals/realestate/default/realEstateTitle_bkend.gif); background-repeat:no-repeat; width:10px;} .title_off_end { background-image:url(/ccimages/verticals/realestate/default/realEstateTitle_gr_end.gif); background-repeat:no-repeat; width:10px;} .pageTitleContainer { width:643px; font-family:Arial, Helvetica, sans-serif; font-weight:normal; font-size:12px; letter-spacing:.03em; padding:0px 0px 0px 5px;} .titleUnderline { border-bottom: 1px solid #487048; margin-bottom: 5px;} .pageTitleTable { width:643px; font-family:Arial, Helvetica, sans-serif; font-size:12px;} .pageTitleTableWrap { font-family:Arial, Helvetica, sans-serif;} .pageTitle { font-family:Verdana, Arial, Helvetica, Sans-serif; font-size:18px; font-weight:normal; text-align:left; line-height:25px; color:#487048; padding:0px 0px 4px 0px; border-bottom:1px solid #487048;} .pageTitleRt { font-weight:normal; font-size:12px; padding:0px 0px 4px 0px; text-align:right;} /* HEADING BLOCK STYLES */ .headerContainer { width:643px; padding:10px 8px 14px 8px;} .headTable { width:643px; font-family:Arial, Helvetica, sans-serif; font-weight:normal; background-color:#ffffff; padding:0px 8px 0px 8px; border:1px solid #a5acb2;} .bannerAd { color:#487048; font-size:12px; font-weight:bold; padding:0px 0px 0px 0px; text-align:center;} .currentResultsRt { text-align:left; padding:0px 0px 0px 6px;} .currentSearchContainer { width:643px; border:1px solid #a5acb2; padding:6px 6px 6px 6px; background-color: #ffffff;} .currentSearchText { font-family:Arial, Helvetica, sans-serif; font-size:12px;} .currentSearchText a:link { color:#548a54; text-decoration:underline;} .currentSearchText a:active { color:#548a54; text-decoration:underline;} .currentSearchText a:visited { color:#548a54; text-decoration:underline;} .currentSearchText a:hover { color:#548a54; text-decoration:underline;} /* SPOTLIGHT FRAME STYLES */ .spotlightLayer { text-align:left; width:643px; overflow:hidden;} .spotlightTitle { color:#333333; font-size:14px; font-weight:bold; font-family:Arial, Helvetica, sans-serif;} .spotlightAdColumns { padding:0px 0px 0px 8px; text-align:left;} div#spotlight { width:200px; margin:0 2%; padding:2px 0px 10px 0px; overflow:hidden;} b.ptop, b.pbottom { display:block;} b.ptop b, b.pbottom b { display:block; height:1px; overflow:hidden; background:#D9D9D9;} b.p1 { margin:0px 5px} b.p2 { margin:0px 3px} b.p3 { margin:0px 2px} b.ptop b.p4, b.pbottom b.p4 { margin:0px 1px; height:2px} .spotlightDisplayTable { font-family:Arial, Helvetica, sans-serif; font-size:14px; color:#333333; font-weight:bold; background-color:#D9D9D9; text-align:left; height:170px;} .spotlightDisplayTable a:link { color:#548a54; text-decoration:underline;} .spotlightDisplayTable a:active { color:#548a54; text-decoration:underline;} .spotlightDisplayTable a:visited { color:#548a54; text-decoration:underline;} .spotlightDisplayTable a:hover { color:#548a54; text-decoration:underline;} .spotlightMake { text-align:center; vertical-align:top; height:20px;} .spotlightPhoto { text-align:center; vertical-align:top;} .spotlightPhotoFrame { border:1px solid #333333;} .spotlightPrice { text-align:center; vertical-align:top; font-family: Arial, Helvetica, sans-serif; font-size: 14px; font-weight: bold; color: #333333;} .spotlightSeller { font-family: Arial, Helvetica, sans-serif; height:35px; font-size:12px; font-weight:bold; text-align:center; vertical-align:top; color: #333333;} /* SPOTLIGHT UPSELL ADS */ div#spotlightUpsell { width:200px; margin:0 2%; padding:2px 0px 10px 0px; overflow:hidden;} b.uptop, b.upbottom { display:block;} b.uptop b, b.upbottom b { display:block; height: 1px; overflow: hidden; background: #FDC380;} b.up1 { margin: 0 5px;} b.up2 { margin: 0 3px;} b.up3 { margin: 0 2px;} b.uptop b.up4, b.upbottom b.up4 { margin: 0 1px; height: 2px;} .spotlightUpsellTable { font-family:Arial, Helvetica, sans-serif; font-size:14px; color:#333333; font-weight:bold; background-color:#FDC380; text-align:left; height:170px;} .spotlightUpsellTable a:link { color:#548a54; text-decoration:underline;} .spotlightUpsellTable a:active { color:#548a54; text-decoration:underline;} .spotlightUpsellTable a:visited { color:#548a54; text-decoration:underline;} .spotlightUpsellTable a:hover { color:#548a54; text-decoration:underline;} /* SEARCH RESULTS STYLES */ .resultsContainer { font-family:Arial, Helvetica, sans-serif; font-weight:normal; font-size:12px; padding:0px 0px 0px 5px;} .resultsContainerTabbed { font-family:Arial, Helvetica, sans-serif; font-weight:normal; font-size:12px;} .resultsTableStats { font-family:Arial, Helvetica, sans-serif; font-weight:normal; font-size:12px;} .resultsSwitchView { font-family:Arial, Helvetica, sans-serif; font-size:12px; text-align:right;} .resultsTotalStat { text-align:left; padding:4px 2px 4px 0px;} .resultsPagesNum { padding:4px 0px 4px 0px;} .resultsPagesStat { font-family:Arial, Helvetica, sans-serif; font-size:12px; text-align:right; padding:4px 0px 4px 0px;} .resultsTextOff { color:#999999;} .resultsTextOn { color:#333333;} .resultsTextOn a:link, a:active, a:visited, a:hover { color:#548a54; text-decoration:underline;} .resultsTable { font-family:Arial, Helvetica, sans-serif; font-weight:normal; font-size:12px; border-top:1px dotted #999999; border-bottom:1px dotted #999999; background-color: #ffffff;} .resultsTable a:link { color:#548a54; text-decoration:underline;} .resultsTable a:active { color:#548a54; text-decoration:underline;} .resultsTable a:visited { color:#548a54; text-decoration:underline;} .resultsTable a:hover { color:#548a54; text-decoration:underline;} .resultsTable .resultsTitleRow { padding:4px 0px 4px 0px; border-bottom:1px dotted #999999; font-weight:bold; color:#004f80;} .resultsTable .resultsTitleIcon { width:25px; border-bottom:1px dotted #333333; text-align:left;} .resultsTable .resultsIcon { width:25px; text-align:left; padding:4px 0px 0px 0px;} .resultsTable .resultsIconBrief { width:25px; padding:4px 0px 0px 0px; border-bottom:1px dotted #999999; text-align:left;} .resultsIconBriefLast { width:25px; padding:4px 0px 0px 0px; text-align:left;} .resultsTable .resultsTitleDescription { width:285px; font-weight:bold; border-bottom:1px dotted #333333; padding:4px 0px 4px 8px;} .resultsTable .resultsTitleBR { width:40px; font-weight:bold; border-bottom:1px dotted #333333; text-align:left; padding:4px 4px 4px 8px;} .resultsTable .resultsTitleLocation { width:365px; font-weight:bold; border-bottom:1px dotted #333333; text-align:left; padding:4px 4px 4px 8px;} .resultsTable .resultsTitleLocationTabbed { width:327px; font-weight:bold; border-bottom:1px dotted #333333; text-align:left; padding:4px 4px 4px 8px;} .resultsTable .resultsTitleLocationBrief { width:335px; font-weight:bold; border-bottom:1px dotted #333333; text-align:left; padding:4px 4px 4px 8px;} .resultsTable .resultsLocation { width:365px; font-weight:normal; text-align:left; padding:4px 4px 4px 8px;} .resultsTable .resultsLocationTabbed { width:327px; font-weight:normal; text-align:left; padding:4px 4px 4px 8px;} .resultsTable .resultsLocationBrief { width:335px; font-weight:normal; border-bottom:1px dotted #999999; text-align:left; padding:4px 4px 4px 8px;} .resultsTable .resultsTitlePrice { width:75px; font-weight:bold; border-bottom:1px dotted #333333; text-align:right; padding:4px 8px 4px 0px;} .resultsTable .resultsTitleSeller { width:135px; font-weight:bold; border-bottom:1px dotted #333333; text-align:center; padding:4px 0px 4px 0px;} .resultsTable .resultsTitleSellerBrief { width:165px; font-weight:bold; border-bottom:1px dotted #333333; text-align:left; padding:4px 0px 4px 0px;} .resultsTable .resultsTitlePhoto { width:60px; font-weight:bold; border-bottom:1px dotted #333333; text-align:center; padding:4px 0px 4px 0px;} .resultsTable .resultsTitleAgent { width:270px; font-weight:bold; border-bottom:1px dotted #333333; text-align:left; padding:4px 4px 4px 2px;} .resultsTable .resultsTitleSpecialty { width:230px; font-weight:bold; border-bottom:1px dotted #333333; text-align:left; padding:4px 4px 4px 8px;} .resultsTable .resultsTitleNeighborhood { width:180px; font-weight:bold; border-bottom:1px dotted #333333; text-align:left; padding:4px 4px 4px 8px;} .resultsTable .resultsTitleCompany { width:160px; font-weight:bold; border-bottom:1px dotted #333333; text-align:left; padding:4px 4px 4px 8px;} .resultsCompanyLast { width:160px; font-weight:normal; padding: 4px 4px 4px 8px; text-align:left;} .resultsTable .resultsAgent { width:270px; font-weight:normal; text-align:left; border-bottom:1px dotted #999999; padding:4px 4px 4px 0px;} .resultsAgentLast { width:270px; font-weight:normal; padding:4px 4px 4px 0px; text-align:left;} .resultsTable .resultsSpecialty { width:230px; font-weight:normal; text-align:left; border-bottom:1px dotted #999999; padding:4px 4px 4px 8px;} .resultsSpecialtyLast { width:230px; font-weight:normal; text-align:left; padding:4px 4px 4px 8px;} .resultsTable .resultsNeighborhood { width:180px; font-weight:normal; text-align:left; border-bottom:1px dotted #999999; padding:4px 4px 4px 8px;} .resultsTable .resultsCompany { width:160px; font-weight:normal; text-align:left; border-bottom:1px dotted #999999; padding:4px 4px 4px 8px;} .resultsAgentPhoto { width:85px; text-align:left; vertical-align:top; overflow:hidden;} .resultsAgentColumn { font-weight:normal; padding:0px 0px 0px 4px; text-align:left; vertical-align:top;} .resultsTable .resultsRow { vertical-align:top;} .resultsTable .resultsRowOdd { vertical-align:top; background-color:#FFFFFF;} .resultsTable .resultsRowEven { vertical-align:top; background-color:#E9E9E9;} .resultsTable .resultsDescription { width:285px; color:#333333; padding:6px 0px 4px 0px;} .resultsTable .resultsDescriptionTabbed { color:#333333; padding:6px 0px 4px 0px;} .resultsTable .resultsBRBrief { width:40px; color:#333333; border-bottom:1px dotted #999999; text-align:left; padding:6px 4px 4px 10px;} .resultsBRBriefLast { width:40px; color:#333333; text-align:left; padding:6px 4px 4px 10px;} .resultsTable .resultsBR { width:40px; color:#333333; text-align:left; padding:6px 4px 4px 10px;} .resultsTable .resultsPrice { white-space: nowrap; color:#333333; text-align:right; padding:6px 8px 4px 0px;} .resultsTable .resultsPriceBrief { white-space: nowrap; color:#333333; text-align:right; border-bottom:1px dotted #999999; padding:6px 4px 4px 0px;} .resultsPriceBriefLast { width:75px; color:#333333; text-align:right; padding:6px 4px 4px 0px;} .resultsTable .resultsSeller { width:135px; font-size:12px; vertical-align:top; text-align:center; padding:6px 0px 2px 0px;} .resultsTable .resultsSellerBrief { width:165px; vertical-align:top; border-bottom:1px dotted #999999; text-align:left; padding:6px 0px 4px 0px;} .resultsSellerBriefLast { width:165px; vertical-align:top; text-align:left; padding:6px 0px 4px 0px;} .resultsTable .resultsPhotoBrief { text-align:center; width:45px; color:#333333; border-bottom:1px dotted #999999; padding:6px 0px 4px 0px;} .resultsTable .resultsPrivateSeller { width:135px; font-size:12px; padding:6px 0px 0px 0px; vertical-align:top; text-align:center;} .resultsTable .resultsPhoto { width:100px; padding:4px 0px 0px 0px; vertical-align:top; border-bottom:1px dotted #999999;} .resultsPhotoLast { width:100px; padding:4px 0px 0px 0px; vertical-align:top;} .resultsTable .resultsDescription { color:#333333; vertical-align:top; padding:4px 8px 2px 8px;} .resultsTable .resultsOptions { vertical-align:top; text-align:left; border-bottom:1px dotted #999999; padding:4px 0px 6px 0px;} .resultsOptionsLast { vertical-align:top; text-align:left; padding:4px 0px 6px 0px;} .resultsBold tr { font-weight:bold;} .resultsItalic { font-style:italic;} .resultsBoldBlue { font-weight:bold; color:#487048;} .resultsColored { color:#8F1815;} .resultsColoredBold { color:#8F1815; font-weight:bold;} .resultsBottomLinks { color:#000000; font-family:Arial, Helvetica, sans-serif; font-size:11px; text-align:left; vertical-align:top; padding:6px 0px 4px 0px;} .resultsButtonRow { padding:6px 0px 6px 0px;} /* MEMBER CENTER */ .membersContentAreaWidth { width:643px;} .memberFootLink { font-family:Verdana, Arial, Helvetica, sans-serif; font-weight:normal; font-size:11px;} .boxHeaderTextWh { font-family:Verdana, Arial, Helvetica, sans-serif; font-weight:bold; font-size:12px; color:#FFFFFF; text-align:left;} .boxSubTop { height:22px; border:1px solid #487048; background-color:#e6f2e6; padding:0px 6px 0px 6px;} .boxSubBottom { height: 22px; border:1px solid #485c70; background-color:#e6f2e6; padding:0px 6px 0px 6px;} .displayTableBorder { border-right:1px solid #487048; border-left:1px solid #487048; background-color: #ffffff;} .displayTableBorderBl { border-right:1px solid #000000; border-left:1px solid #000000;} .resultsTable .resultsList { border-bottom:1px dotted #999999; text-align:left; padding:4px 8px 4px 0px;} .resultsListLast { text-align:left; padding:4px 8px 4px 0px;} .resultsTable .resultsListPrice { border-bottom:1px dotted #999999; text-align:right; padding:4px 8px 4px 0px;} .resultsTable .resultsListAction { border-bottom:1px dotted #999999; text-align:right; padding:4px 8px 4px 0px;} .resultsListActionLast { text-align:right; padding:4px 8px 4px 0px;} .resultsTable .resultsMemTitlePhoto { width:50px; font-weight:bold; border-bottom:1px dotted #333333; text-align:left; padding:4px 8px 4px 4px;} .resultsTable .resultsMemTitleListName { width:265px; font-weight:bold; border-bottom:1px dotted #333333; text-align:left; padding:4px 8px 4px 0px;} .resultsTable .resultsMemTitlePrice { width:75px; font-weight:bold; border-bottom:1px dotted #333333; text-align:right; padding:4px 8px 4px 0px;} .resultsTable .resultsMemTitleListPrice { width:85px; font-weight:bold; border-bottom:1px dotted #333333; text-align:right; padding:4px 8px 4px 0px;} .resultsTable .resultsMemTitleAction { width:100px; font-weight:bold; border-bottom:1px dotted #333333; text-align:center; padding:4px 8px 4px 0px;} .resultsTable .resultsMemTitleBR { width:35px; font-weight:bold; border-bottom:1px dotted #333333; text-align:center; padding:4px 8px 4px 0px;} .resultsTable .resultsMemTitleLoc { width:190px; font-weight:bold; border-bottom:1px dotted #333333; text-align:left; padding:4px 8px 4px 0px;} .resultsTable .resultsMemTitleListLoc { width:100px; font-weight:bold; border-bottom:1px dotted #333333; text-align:left; padding:4px 8px 4px 0px;} .resultsTable .resultsMemTitleDate { width:140px; font-weight:bold; border-bottom:1px dotted #333333; text-align:left; padding:4px 8px 4px 0px;} .resultsTable .resultsMemTitleListDate { width:95px; font-weight:bold; border-bottom:1px dotted #333333; text-align:left; padding:4px 8px 4px 0px;} .resultsTable .resultsMemPhoto { width:50px; border-bottom:1px dotted #999999; text-align:left; padding:4px 8px 4px 4px;} .resultsTable .resultsMemPrice { width:75px; color:#333333; text-align:right; border-bottom:1px dotted #999999; text-align:right; padding:6px 8px 4px 0px;} .resultsTable .resultsMemBR { width:35px; color:#333333; text-align:right; border-bottom:1px dotted #999999; text-align:center; padding:6px 8px 4px 0px;} .resultsTable .resultsMemLoc { width:190px; color:#333333; text-align:right; border-bottom:1px dotted #999999; text-align:left; padding:6px 8px 4px 0px;} .resultsTable .resultsMemDate { width:140px; color:#333333; text-align:right; border-bottom:1px dotted #999999; text-align:left; padding:6px 8px 4px 0px;} /* ROUNDED CORNER BOX */ .boxTopLt { background-image:url(/ccimages/verticals/realestate/default/boxTopLt.gif); background-repeat:no-repeat; width:6px; height:24px;} .boxTopBg { background-image:url(/ccimages/verticals/realestate/default/boxTopBg.gif); background-repeat:repeat-x; height:24px; text-align:left;} .boxTopRt { background-image:url(/ccimages/verticals/realestate/default/boxTopRt.gif); background-repeat:no-repeat; width:6px; height:24px;} .boxBotLt { background-image:url(/ccimages/verticals/realestate/default/boxBotLt.gif); background-repeat:no-repeat; background-position:bottom; width:6px; height:24px;} .boxBotBg { background-image:url(/ccimages/verticals/realestate/default/boxBotBg.gif); background-repeat:repeat-x; background-position:bottom; height:24px;} .boxBotRt { background-image:url(/ccimages/verticals/realestate/default/boxBotRt.gif); background-repeat:no-repeat; background-position:bottom; width:6px; height:24px;} .boxTopLtWh { background-image:url(/ccimages/verticals/realestate/default/boxTopLtWh.gif); background-repeat:no-repeat; width:6px; height:24px;} .boxTopBgWh { background-image:url(/ccimages/verticals/realestate/default/boxTopBgWh.gif); background-repeat:repeat-x; height:24px; text-align:left;} .boxTopRtWh { background-image:url(/ccimages/verticals/realestate/default/boxTopRtWh.gif); background-repeat:no-repeat; width:6px; height:24px;} .boxTopLtBl { background-image:url(/ccimages/verticals/realestate/default/boxTopLtBl.gif); background-repeat:no-repeat; width:6px; height:24px;} .boxTopBgBl { background-image:url(/ccimages/verticals/realestate/default/boxTopBgBl.gif); background-repeat:repeat-x; height:24px; text-align:left;} .boxTopRtBl { background-image:url(/ccimages/verticals/realestate/default/boxTopRtBl.gif); background-repeat:no-repeat; width:6px; height:24px;} .boxBotLtBl { background-image:url(/ccimages/verticals/realestate/default/boxBotLtBl.gif); background-repeat:no-repeat; background-position:bottom; width:6px; height:24px;} .boxBotBgBl { background-image:url(/ccimages/verticals/realestate/default/boxBotBgBl.gif); background-repeat:repeat-x; background-position:bottom; height:24px;} .boxBotRtBl { background-image:url(/ccimages/verticals/realestate/default/boxBotRtBl.gif); background-repeat:no-repeat; background-position:bottom; width:6px; height:24px;} .boxFooterBorder { /* use if no bottom subheader is used */ border-top:1px solid #487048;} .boxFooterBorderBl { /* use if no bottom subheader is used */ border-top:1px solid #000000;} .boxLtSpace { padding:0px 0px 0px 6px; text-align:left;} .boxLtSpaceTotal { padding:0px 6px 0px 0px; text-align:right;} /* AGENT PROFILE STYLES */ .agentName { font-family:Arial, Helvetica, sans-serif; font-size:18px; font-weight:bold; color:#548a54; text-align:left;} .agentNameColumn { font-family: Arial, Helvetica, sans-serif; font-weight: bold; font-size: 12px;} /* CONTENT SPACERS */ .spacer50 { height:50px;} .spacer30 { height:30px;} .spacer20 { height:20px;} .spacer14 { height:14px;} .spacer10 { height:10px;} .spacer5 { height:5px;} .spacer3 { height:3px;} /* ALTERNATITING ROWS */ .displayTableRowOdd { background-color:#ffffff;} .displayTableRowEven { background-color:#eaeaea;} /* No Bottom Border */ .displayTableLt { padding:2px 2px 2px 2px;} .displayTable { padding:2px 2px 2px 2px;} .displayTableRt { padding:2px 2px 2px 2px;} /* SPECIAL STYLES */ .pageBack { font-family: Arial, Helvetica, sans-serif; font-size: 11px; text-align: left; padding: 0 0 10px 0;} .pageBack a:link { color:#548a54; text-decoration:underline;} .pageBack a:active { color:#548a54; text-decoration:underline;} .pageBack a:visited { color:#548a54; text-decoration:underline;} .pageBack a:hover { color:#333333; text-decoration:underline;} .profileContainer { font-family:Arial, Helvetica, sans-serif; font-weight:normal; font-size:12px; letter-spacing:.03em; width:640px;} .profileTable { width:640px;} .profileMap { text-align:right; vertical-align:top; width:350px; padding:0px 10px 0px 0px;} .profileContent { padding:0px 10px 0px 0px;} .resultsTable .resultsProfileIcon { width:25px; text-align:left; padding:4px 0px 0px 0px; border-bottom:1px dotted #999999;} .resultsTable .resultsProfileIcon { width:25px; text-align:left; padding:4px 0px 0px 0px;} .resultsTable .resultsProfileBR { width:40px; color:#333333; text-align:left; border-bottom:1px dotted #999999; padding:6px 4px 4px 10px;} .resultsTable .resultsTitlePrice { width:75px; font-weight:bold; text-align:right; border-bottom:1px dotted #333333; padding:4px 8px 4px 0px;} .resultsTable .resultsProfilePrice { width:75px; color:#333333; text-align:right; border-bottom:1px dotted #999999; padding:6px 8px 4px 0px;} .resultsTable .resultsProfilePriceLast { width:75px; color:#333333; text-align:right; padding:6px 8px 4px 0px;} .resultsTable .resultsTitleProfileLoc { width:150px; font-weight:bold; text-align:left; border-bottom:1px dotted #333333; padding:4px 4px 4px 8px;} .resultsTable .resultsTitleProfileLocLast { width:150px; font-weight:bold; text-align:left; padding:4px 4px 4px 8px;} .resultsTable .resultsTitleProfileDesc { width:350px; font-weight:bold; text-align:left; border-bottom:1px dotted #333333; padding:4px 4px 4px 8px;} .resultsTable .resultsTitleDate { width:150px; font-weight:bold; text-align:left; border-bottom:1px dotted #333333; padding:4px 4px 4px 8px;} .resultsTable .resultsTitleAdvertiser { width:200px; font-weight:bold; text-align:left; border-bottom:1px dotted #333333; padding:4px 4px 4px 8px;} .resultsTable .resultsTitleAction { width:80px; font-weight:bold; text-align:left; border-bottom:1px dotted #333333; padding:4px 4px 4px 8px;} .resultsTable .resultsTitleName { width:170px; font-weight:bold; text-align:left; border-bottom:1px dotted #333333; padding:4px 4px 4px 8px;} .resultsTable .resultsTitleCriteria { width:310px; font-weight:bold; text-align:left; border-bottom:1px dotted #333333; padding:4px 4px 4px 8px;} .resultsTable .resultsTitleAlert { width:80px; font-weight:bold; text-align:left; border-bottom:1px dotted #333333; padding:4px 4px 4px 8px;} .resultsTable .resultsProfileLoc { width:150px; font-weight:normal; text-align:left; border-bottom:1px dotted #999999; padding:4px 4px 4px 8px;} .resultsTable .resultsAction { width:80px; font-weight:normal; text-align:left; vertical-align:top; border-bottom:1px dotted #999999; padding:4px 4px 4px 8px;} .resultsTable .resultsName { width:170px; font-weight:normal; text-align:left; border-bottom:1px dotted #999999; vertical-align:top; padding:4px 4px 4px 8px;} .resultsTable .resultsCriteria { width:310px; font-weight:normal; text-align:left; border-bottom:1px dotted #999999; padding:4px 4px 4px 8px;} .resultsTable .resultsMemCriteria { width:210px; font-weight:normal; font-size:10px; text-align:left; border-bottom:1px dotted #999999; padding:4px 4px 4px 8px;} .resultsTable .resultsAlert { width:80px; font-weight:normal; text-align:left; vertical-align:top; border-bottom:1px dotted #999999; padding:4px 4px 4px 8px;} .resultsTable .resultsProfileDesc { width:350px; font-weight:normal; text-align:left; border-bottom:1px dotted #999999; padding:4px 4px 4px 8px;} .resultsTable .resultsProfileTitlePhoto { width:100px; font-weight:bold; text-align:left; border-bottom:1px dotted #333333; padding:4px 0px 4px 0px;} .resultsTable .resultsProfilePhoto { width:100px; vertical-align:top; border-bottom:1px dotted #999999; padding:4px 8px 4px 0px;} .resultsTable .resultsProfilePhotoLast { width:100px; vertical-align:top; padding:4px 8px 4px 0px;} .resultsTable .resultsDate { width:150px; font-weight:normal; text-align:left; border-bottom:1px dotted #999999; padding:4px 4px 4px 8px;} .resultsTable .resultsDateLast { width:150px; font-weight:normal; text-align:left; padding:4px 4px 4px 8px;} .resultsTable .resultsAdvertiser { width:200px; font-weight:normal; text-align:left; border-bottom:1px dotted #999999; padding:4px 4px 4px 8px;} .resultsTable .resultsAdvertiserLast { width:200px; font-weight:normal; text-align:left; padding:4px 4px 4px 8px;} /* FOR DETAIL PAGE WRAPS */ .detailContainerWrap { font-family:Arial, Helvetica, sans-serif; font-weight:normal; font-size:12px; letter-spacing:.03em; padding:0px 0px 0px 5px;} .tabSpaceWrap { border-bottom:1px solid #99CC99; text-align:left;} /* DETAIL PAGE:DETAIL FRAME */ .detailContainer { font-family: Arial, Helvetica, sans-serif; font-size: 12px; color: #333333; width:470px; vertical-align: top; padding:0px 0px 0px 5px;} .resultsDetailTable { padding:5px 0px 0px 0px; margin-right:5px;} .resultsDetailMakeModel { font-family:Arial, Helvetica, sans-serif; font-size:20px; font-weight:bold; padding:8px 0px 5px 5px;} .detailOptionsLt { vertical-align:top; text-align:left; padding:4px 0px 6px 0px;} .detailOptionsRt { text-align:right; padding:4px 0px 6px 0px;} .detailControls { padding:5px 0px 0px 0px; width:320px;} .detailPhotoCaption { font-style:italic; font-size:9px;} .detailMainPhoto { vertical-align:top; width:320px; text-align:left;} .detailPhotoText { padding:0px 0px 0px 10px;} .detailFeaturesColumn { color:#000000; font-weight:normal; text-align:left; vertical-align:top; width:150px;} .detailToolsColumn { color:#000000; font-weight:normal; text-align:left; vertical-align:top; width:150px;} .detailToolsIcon { text-align: center;} .detailToolsText { font-family:Arial, Helvetica, sans-serif; font-size:12px; color:#333333; text-align: left;} .detailToolsText a:link { color:#548a54; text-decoration:underline;} .detailToolsText a:active { color:#548a54; text-decoration:underline;} .detailToolsText a:visited { color:#548a54; text-decoration:underline;} .detailToolsText a:hover { color:#548a54; text-decoration:underline;} .detailShowTools { width:135px; padding:0px 0px 0px 6px;} .detailGalleryTable { background-color:#e6f2e6; border-top:1px solid #487048; border-right:1px solid #487048; border-bottom:1px solid #487048;} .detailGalleryBotRow { text-decoration:none; text-align:right; font-size: 11px;} .detailGalleryBotRow a:link { color: #548a54; text-decoration: underline;} .detailGalleryBotRow a:active { color: #548a54; text-decoration: underline;} .detailGalleryBotRow a:visited { color: #548a54; text-decoration: underline;} .detailGalleryBotRow a:hover { color: #333333; text-decoration: underline;} .detailDisclaimer { color:#333333; font-size:10px; font-weight:normal;} .detailDisclaimer a:link { color:#548a54; text-decoration:underline;} .detailDisclaimer a:active { color:#548a54; text-decoration:underline;} .detailDisclaimer a:visited { color:#548a54; text-decoration:underline;} .detailDisclaimer a:hover { color:#548a54; text-decoration:underline;} .detailTools { letter-spacing:normal; padding:0px 2px 0px 4px;} .detailPrice { color:#548a54; font-weight:bold; font-size:22px; font-family:Arial, Helvetica, sans-serif;} #detailTabTable { font-family: Arial, Helvetica, sans-serif; font-size: 12px; color: #333333;} #detailTabTable a:link { color:#548a54; text-decoration:underline;} #detailTabTable a:active { color:#548a54; text-decoration:underline;} #detailTabTable a:visited { color:#548a54; text-decoration:underline;} #detailTabTable a:hover { color:#548a54; text-decoration:underline;} #detailTabTable .detailTabContentPriceLt { font-family: Arial, Helvetica, sans-serif; font-size: 12px; vertical-align:bottom; text-align:left; color:#333333; font-weight:bold; letter-spacing:normal; padding:2px 0px 0px 0px;} #detailTabTable .detailTabContentPriceRt { font-family: Arial, Helvetica, sans-serif; font-size: 14px; vertical-align:bottom; text-align:left; color:#548a54; font-weight:bold; letter-spacing:normal; padding:2px 0px 0px 4px; border-bottom:1px solid #e8e8e8;} #detailTabTable .detailTabContentLt { font-family: Arial, Helvetica, sans-serif; font-size: 12px; vertical-align:top; text-align:left; color:#333333; font-weight:normal; letter-spacing:normal; padding:2px 0px 0px 0px; border-bottom:1px solid #e8e8e8;} #detailTabTable .detailTabContentRt { vertical-align:top; text-align:left; color:#000000; font-weight:bold; letter-spacing:normal; border-bottom:1px solid #e8e8e8; padding:2px 0px 0px 4px;} #detailTabTable .detailTabContentAddressLt { font-family: Arial, Helvetica, sans-serif; font-size: 12px; vertical-align:top; text-align:left; color:#333333; font-weight:normal; border-bottom:1px solid #e8e8e8; padding:6px 0px 4px 0px;} #detailTabTable .detailTabContentAddress { vertical-align:top; text-align:left; color:#000000; font-size:12px; font-weight:bold; letter-spacing:normal; border-bottom:1px solid #e8e8e8; padding:6px 0px 4px 4px;} .detailTabBorder { border-right: 1px solid #548a54; border-bottom: 1px solid #548a54; border-left: 1px solid #548a54; padding: 6px; background-color: #ffffff;} .detailDisclaimer { text-align:left; color:#333333; vertical-align:top; font-size:11px; height:20px; padding:0px 5px 0px 0px;} .detailPostedDate { text-align:right; color:#999999; width:145px; vertical-align:bottom; padding:0px 5px 0px 0px; font-family: Arial, Helvetica, sans-serif; font-size: 12px;} .detailFeatureColumns { vertical-align:top;} .detailDesc { font-family: Arial, Helvetica, sans-serif; font-size: 12px; vertical-align:top;} .detailDesc ul { list-style-position:outside; list-style-image:url(/ccimages/verticals/realestate/default/re_icon_listBullet.gif); list-style-type:square;} .detailDesc li { list-style-position:outside; list-style-image:url(/ccimages/verticals/realestate/default/re_icon_listBullet.gif); list-style-type:square;} .detailReturn { text-align:left; font-family:Arial, Helvetica, sans-serif; font-size: 12px;} .detailReturnLink a:link { color:#548a54; text-decoration:underline;} .detailReturnLink a:active { color:#548a54; text-decoration:underline;} .detailReturnLink a:visited { color:#548a54; text-decoration:underline;} .detailReturnLink a:hover { color:#548a54; text-decoration:underline;} #detailTabTable .detailTitle { border-left:1px solid #e8e8e8; border-right:1px dotted #aaaaaa; background-color:#FFFFFF; border-bottom:1px solid #e8e8e8; text-align:left; padding:2px 2px 2px 4px;} #detailTabTable .detailLocation { background-color:#FFFFFF; border-bottom:1px solid #e8e8e8; text-align:left; padding:2px 4px 2px 2px;} /* DETAIL PAGE:SELLER INFO COLUMN */ .sellerTable { width:167px; font-family:Arial, Helvetica, sans-serif; font-weight:normal; font-size:11px;} .sellerTablePadLeft{ width:167px; font-family:Arial, Helvetica, sans-serif; font-weight:normal; font-size:11px; padding-left: 5px;} .sellerColumn { width:173px; vertical-align: top;} .sellerText { font-family: Arial, Helvetica, sans-serif; font-size: 12px; color: #333333; padding: 0px 0px 5px 0px;} .sellerText a:link { color:#548a54; text-decoration:underline;} .sellerText a:active { color:#548a54; text-decoration:underline;} .sellerText a:visited { color:#548a54; text-decoration:underline;} .sellerText a:hover { color:#548a54; text-decoration:underline;} .sellerTitle { background:url(/ccimages/verticals/realestate/default/re_bg_gradTitleBar.gif) repeat-x; font-size:12px; font-weight:bold; letter-spacing:.08em; color:#ffffff; border:1px solid #548a54; background-color:#B6D8B6; padding:4px 2px 4px 4px;} .sellerContent { background-color: #ffffff; padding: 6px 3px 6px 3px; border-right:1px solid #dddddd; border-left:1px solid #dddddd; border-bottom: 1px solid #dddddd; font-family: Arial, Helvetica, sans-serif; font-size: 12px; color: #333333;} .sellerContent a:link { color:#548a54; text-decoration:underline;} .sellerContent a:active { color:#548a54; text-decoration:underline;} .sellerContent a:visited { color:#548a54; text-decoration:underline;} .sellerContent a:hover { color:#333333; text-decoration:underline;} .sellerContentColor { background-color: #e6f2e6; padding: 6px 3px 6px 3px; border-right:1px solid #dddddd; border-left:1px solid #dddddd; border-bottom: 1px solid #dddddd;} .agentPhotoBorder { border: 1px solid #333333;} .sellerCell { font-size:12px; font-weight:normal; color:#333333; padding:6px 2px 4px 6px;} .sellerLogoCell { background-color:#ffffff; font-size:12px; font-weight:normal; color:#000000; padding:6px 2px 4px 6px;} .sellerBotRow { border-bottom:1px solid #dddddd; padding:2px 2px 2px 4px;} .sellerText11 { font-size:11px; font-weight:normal;} .sellerText11 a:link { color:#548a54; text-decoration:underline;} .sellerText11 a:active { color:#548a54; text-decoration:underline;} .sellerText11 a:visited { color:#548a54; text-decoration:underline;} .sellerText11 a:hover { color:#333333; text-decoration:underline;} .sellerText11RedItalic { color:#CC0000; font-style:italic; font-size:11px; font-weight:normal;} .sellerAlert11 { color:#CC0000; font-size:11px; font-weight:bold;} /* DETAIL PAGE OPTIONAL TABS STYLES */ .tabTable { border-bottom:1px solid #99CC99; text-align:left; padding:10px 0px 0px 0px;} .tabbedSearchResultsTable { border-bottom:1px solid #a5acb2; text-align:left; padding:10px 0px 0px 0px;} .tabbedSearchResultsBot { border-bottom:1px solid #a5acb2;} .tabBody { background-color:#ffffff; padding:10px 15px 4px 12px;} .tabSearchResults { background-color:#ffffff; padding:10px 0px 4px 0px;} .tabAlignRight { background-color:#ffffff; border-right:1px solid #99CC99; border-left:1px solid #99CC99; padding:2px 0px 8px 0px;} .tabbedSearchResults { background-color:#ffffff; border-right:1px solid #a5acb2; border-left:1px solid #a5acb2; padding:2px 8px 8px 8px;} .tabStandard { width:140px; float:left;} .tabSubTitle { font-weight:bold; color:#548a54; padding:10px 0px 2px 0px; font:bold 13px Arial, Helvetica, sans-serif;} .statIndent { width:20px;} .statTitleWhite { border-left:1px solid #e8e8e8; border-right:1px dotted #aaaaaa; background-color:#FFFFFF; border-bottom:1px solid #e8e8e8; text-align:left; padding:2px 2px 2px 4px;} .statSpecWhite { background-color:#FFFFFF; border-bottom:1px solid #e8e8e8; text-align:left; padding:2px 4px 2px 2px;} .tabSelected { color:#000000; text-decoration:none;} /* SEARCH FORM STYLES */ .searchText { font-family:Arial, Helvetica, sans-serif; font-size:12px;} .searchText a:link { color:#548a54; text-decoration:underline;} .searchText a:active { color:#548a54; text-decoration:underline;} .searchText a:visited { color:#548a54; text-decoration:underline;} .searchText a:hover { color:#548a54; text-decoration:underline;} .searchContainer { font-family:Arial, Helvetica, sans-serif; font-size:12px; letter-spacing:.03em;} .searchTabTable { height:30px; background-color:#E9E9E9; vertical-align:middle; padding:6px 0px 0px 0px; border-right: 1px solid #487048; border-bottom: 1px solid #487048; border-left: 1px solid #487048;} .searchTable { padding:0px 0px 0px 5px;} .searchTabRow { padding:0px 0px 0px 3px;} .searchBy { color:#333333; padding:0px 0px 0px 15px;} .searchFormLt { color:#333333; text-align:right; width:140px; font-family:Arial, Helvetica, sans-serif; font-size:12px; padding:0px 10px 10px 0px;} .searchFormRt { text-align:left;} .searchFormRtBkgd { text-align:left; background-color:#f8f8f8; width:470px; font-family:Arial, Helvetica, sans-serif; font-size:12px; color:#333333; padding:0px 0px 0px 10px;} .searchButton { text-align:center; border-top:1px dotted #CCCCCC; border-bottom:1px dotted #496f4a; padding:15px 0px 15px 0px;} .searchFormLtTitle { text-align:left; font-size:14px; color:#487048; font-weight:bold; border-bottom:1px dotted #496f4a; padding:15px 0px 2px 0px;} .searchBrowseImage { text-align:center;} /* SEARCH FORM MENU */ #searchMenu ul { list-style-type: none; float: left; margin: 0; padding: 0;} #searchMenu li { list-style-type: none; text-align: left; display: inline; vertical-align: middle; margin: 0;} #searchMenu ul li a { background: transparent url(/ccimages/verticals/realestate/default/re_icon_page_next_off.gif) left center no-repeat; padding: 0px 15px 0px 15px; text-align: left; text-decoration: underline; color: #548a54;} #searchMenu ul li a:hover { background: transparent url(/ccimages/verticals/realestate/default/re_icon_page_next_on.gif) left center no-repeat; color: black;} #searchMenu ul li a#current { background: transparent url(/ccimages/verticals/realestate/default/re_icon_page_next_on.gif) left center no-repeat; font-weight: bold; color: #333333; text-decoration: none;} #searchMenu ul li #searchLabel { color: #333333; margin: 0 0 0 0;} .searchMenuSpace { width: 15px;} /* SAVE DIV STYLES */ .saveAdLayer { text-align:right; font-family:Arial, Helvetica, sans-serif; font-size:11px;} .saveSearchLayer { text-align:right; font-family:Arial, Helvetica, sans-serif; font-size:11px; width:643px;} /* POPUP WINDOW FOR REAL ESTATE PLATFORM */ .popupLayer { text-align:right; font-family:Arial, Helvetica, sans-serif; font-size:11px;} .popupTable { height:60px; color:#333333; background-color:#e6f2e6; text-align:left; border:1px solid #333333; padding:0px 0px 4px 0px;} .popupTitle { font-size:12px; font-weight:bold; color:#000000; background-color:#E9E9E9; border-bottom:1px solid #333333; padding:4px 0px 4px 6px;} .popupClose { font-size:11px; font-weight:normal; color:#000000; background-color:#E9E9E9; text-align:right; border-bottom:1px solid #333333; padding:4px 6px 4px 0px;} .popupBodyText { font-weight:normal; padding:4px 0px 4px 6px;} .popupBodyTextLt { text-align:left; padding:0px 2px 4px 0px;} .popupBodyTextRt { text-align:right; font-weight:bold; padding:0px 2px 4px 4px;} .popupToolTip { font-family:Arial, Helvetica, sans-serif; font-size:12px; width:165px; height:17px; color:#333333; background-color:#e0eefd; text-align:left; border:1px solid #333333; padding:4px 4px 4px 4px;} /* UPLOAD FORM */ .fieldLabel { font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px; color: #333333; text-align: right; padding-right: 10px; width: 200px;} .uploadContainer { font-family:Arial, Helvetica, sans-serif; font-weight:normal; font-size:12px; letter-spacing:.03em;} .uploadContainer a:link { color:#548a54; text-decoration:underline;} .uploadContainer a:active { color:#548a54; text-decoration:underline;} .uploadContainer a:visited { color:#548a54; text-decoration:underline;} .uploadContainer a:hover { color:#548a54; text-decoration:underline;} .uploadTitle { font-size:16px; font-weight:bold; color:#487048; padding:10px 0px 6px 0px;} .uploadSubTitleTable td.uploadSubTitle { font-family: Arial, Helvetica, sans-serif!important; font-size: 14px!important; font-weight: bold!important; background-color: #548a54; padding: 0px 0px 0px 6px; color: #ffffff; text-align: left;} .uploadSubBarText { padding: 0px 6px 0px 0px; text-align: right; background-color: #548a54;} .uploadSubBarText a:link, .uploadSubBarText a:active, .uploadSubBarText a:visited, .uploadSubBarText a:hover { font: 11px Arial, Helvetica, sans-serif!important; color:#ffffff; text-decoration:underline;} .upLoadTable { width:631px;} .uploadPhotoTable { padding:0px 0px 6px 12px;} .uploadMainPhotoRow { background-color:#dbe1e3;} .uploadFormPhotoBrowse { text-align:center; vertical-align:middle; padding:4px 4px 6px 4px;} .uploadFormPhotoBrowseMain { text-align:center; vertical-align:middle; border-bottom:1px solid #ff6500; border-top:1px solid #ff6500; padding:4px 4px 6px 4px;} .uploadFormPhotoBrowseMainEnd { text-align:center; vertical-align:middle; border-bottom:1px solid #ff6500; border-top:1px solid #ff6500; border-right:1px solid #ff6500; padding:4px 4px 6px 4px;} .uploadFormPhoto { text-align:left; vertical-align:top; padding:6px 6px 2px 6px;} .uploadFormMainPhoto { text-align:left; vertical-align:top; border-top:1px solid #ff6500; border-right:1px solid #ff6500; border-left:1px solid #ff6500; padding:6px 6px 2px 6px;} .uploadFormPhotoNum { color:#487048; text-align:right; vertical-align:middle; padding:4px 4px 6px 4px;} .uploadFormPhotoNumMain { color:#487048; text-align:right; vertical-align:middle; border-bottom:1px solid #ff6500; border-top:1px solid #ff6500; border-left:1px solid #ff6500; padding:4px 4px 6px 4px;} .uploadRemove { text-align:center; padding:0px 0px 4px 0px;} .uploadRemoveMain { text-align:center; padding:0px 0px 4px 0px; border-bottom:1px solid #ff6500; border-right:1px solid #ff6500; border-left:1px solid #ff6500;} .uploadDetailTable { padding:10px 0px 10px 5px; font-size: 12px; width: 631px; background-color: #ffffff;} .uploadSummaryTable { border:1px solid #666666; font-size: 12px; background-color: #ffffff;} .uploadSummaryTable .tableHeadLt { font-weight:bold; text-align:left; border-bottom:1px solid #666666; background-color:#d8e0eb; padding:4px 4px 4px 4px;} .uploadSummaryTable .tableHeadRt { font-weight:bold; text-align:right; border-bottom:1px solid #666666; background-color:#d8e0eb; padding:4px 4px 4px 4px;} .uploadSummaryTable .tableCellLt { padding:4px 4px 4px 4px; text-align:left; border-bottom:1px solid #cccccc;} .uploadSummaryTable .tableCellRt { text-align:right; border-bottom:1px solid #cccccc; padding:4px 4px 4px 4px;} .uploadSummaryTable .tableRowGray { background-color:#E9E9E9;} .uploadTotalTable { horizontal-align:right; width: 645px} .uploadTotalTable .tableCellTotal { padding:4px 0px 4px 4px; text-align:right; font-weight:bold; border-top:1px solid #333333; background-color: #ffffff;} .uploadTotalTable .tableCellPrice { text-align:right; border-right:1px solid #666666; padding:4px 0px 4px 4px;} .uploadTotalTable .tableTotalPrice { padding:4px 0px 4px 4px; text-align:right; border-top:1px solid #333333; font-weight:bold;} .uploadDetailRow { padding:0px 0px 0px 10px;} div#uploadTitleBox { width:645px; margin:0 2%; overflow:hidden; padding:12px 0px 10px 0px;} b.utop, b.ubottom { display:block;} b.utop b, b.ubottom b { display:block; height:1px; overflow:hidden; background:#548a54;} b.u1 { margin:0 5px} b.u2 { margin:0 3px} b.u3 { margin:0 2px} b.utop b.u4, b.ubottom b.u4 { margin:0 1px; height:2px} .upgradePrice { font-weight:bold; text-align:right; border-bottom:1px dotted #487048;} .upgradeDesc { padding:0px 0px 10px 0px;} .upgradeTitle { font-weight:bold; text-align:left; border-bottom:1px dotted #487048; color:#487048;} .uploadFormLt { text-align:right; font-weight:bold;} .uploadFormRt { text-align:left; font-size: 12px;} .uploadFormVertSpace { background-color: #ffffff; width: 5px;} .uploadFormHoriSpace { background-color: #ffffff; height: 5px;} .uploadFormLogo { background-color:#f8f8f8; text-align: center; padding: 10px;} .uploadFormRtBkgdSpace { background-color:#f8f8f8; height: 10px;} .uploadAdSelect { font-size:14px; font-weight:bold; color:#333333; text-align:left; height:25px; padding:0px 0px 4px 12px;} .uploadAdTitle { font-size:16px; font-weight:bold; color:#487048; text-align:left; padding:0px 0px 4px 12px;} .uploadAdIncludes { font-weight:bold; color:#487048; text-align:left; padding:4px 0px 4px 12px;} .uploadAdButton { text-align:left; vertical-align:bottom; padding:12px 0px 4px 45px;} .uploadFeatures { margin-right:14px; padding:4px 14px 0px 12px;} .uploadDescription { width:280px; vertical-align:middle;} .uploadDescriptionML { width:200px; vertical-align:middle;} .uploadRowEnd { vertical-align:middle; text-align:right; overflow:hidden; width:180px; padding:0px 15px 0px 0px;} .uploadRowEndML { vertical-align:middle; text-align:right; overflow:hidden; width:250px; padding:0px 15px 0px 0px;} .uploadSelectTitle { font-size:16px; font-weight:bold; color:#487048; text-align:left; width:110px; padding:0px 0px 4px 12px;} .uploadSelectionTableRE { background-image:url(../images/uploadSelectBkgdRE.gif); background-repeat:no-repeat; height:100px; width:600px;} .uploadSelectionTable { background-image:url(../images/uploadSelectTableBkgd.gif); background-repeat:no-repeat;} .uploadSelectionContainer { width:190px; overflow:hidden;} .uploadSelectContainerBot { height:9px; width:190px; background-image:url(../images/uploadSelectContainerBot.gif); background-repeat:no-repeat; vertical-align:bottom;} .uploadCountTotal { padding:8px 0px 0px 0px; text-align:left;} .disclaimerText { font-size:10px; text-align:center; padding:5px 0px 5px 0px;} /* EXTRA STYLES */ .searchResultsPhoto { border:1px solid #333333;} .resultsFound { font-size:12px; color:#999999; font-weight:normal;} .requiredRedTextBold { color:#CC0000; font-size:10px; font-weight:bold;} .requiredHeading { color:#CC0000; font-size:12px; text-align:right;} .uploadSummaryTable { border:1px solid #666666;} .uploadSummaryTable .tableHeadLt { font-weight:bold; text-align:left; border-bottom:1px solid #666666; background-color:#e6f2e6; padding:4px 4px 4px 4px;} .uploadSummaryTable .tableHeadRt { font-weight:bold; padding:4px 4px 4px 4px; text-align:right; border-bottom:1px solid #666666; background-color:#e6f2e6;} .uploadSummaryTable .tableCellLt { padding:4px 4px 4px 4px; text-align:left; border-bottom:1px solid #cccccc;} .uploadSummaryTable .tableCellLtIndent { padding-left:24px; text-align:left; border-bottom:1px solid #cccccc; padding:4px 4px 4px 0px;} .uploadSummaryTable .tableCellLtIndentLast { text-align: left; padding:4px 4px 4px 24px;} .uploadSummaryTable .tableCellRt { text-align:right; border-bottom:1px solid #cccccc; padding:4px 4px 4px 4px;} .uploadSummaryTable .tableCellRtLast { text-align:right; padding:4px 4px 4px 4px;} .uploadSummaryTable .tableRowGray { background-color:#E9E9E9;} .uploadTotalTable { width:620px;} .uploadTotalTable .tableCellSubTotal { text-align:right; border-left:1px solid #666666; padding:4px 4px 4px 4px; background-color: #ffffff;} .uploadTotalTable .tableCellTotal { text-align:right; font-weight:bold; border-top:1px solid #666666; border-left:1px solid #666666; border-bottom:1px solid #666666; padding:4px 4px 4px 4px; background-color: #ffffff;} .uploadTotalTable .tableCellPrice { text-align:right; border-right:1px solid #666666; padding:4px 4px 4px 4px; background-color: #ffffff;} .uploadTotalTable .tableTotalPrice { text-align:right; font-weight:bold; border-top:1px solid #666666; border-right:1px solid #666666; border-bottom:1px solid #666666; padding:4px 4px 4px 4px; background-color: #ffffff;} .realAgentPhoto { padding:5px 0px 5px 0px;} /* REAL ESTATE SEARCH TAB SPACING */ .searchBy { color:#333333; text-align: right; padding: 0px 0px 0px 15px;} .searchMenuSpacer { width: 15px;} .searchTabUnselected { width:120px;} .searchTabSelected { font-weight:bold; width:120px;} /* BUTTON STYLES */ .buttonClassREFlow { font-family:Arial, Helvetica, sans-serif; font-weight:bold; background-image:url(/ccimages/verticals/common/default/buttonBkgdFlow.gif); background-repeat:repeat-x; background-position:right; overflow:visible; line-height:15px; height:24px; text-align:right; border:1px solid #C2C2C2; color:#333333; vertical-align:middle; text-transform:uppercase; padding:2px 31px 2px 10px; cursor: pointer;} .buttonClassREFlowSm { font-family:Arial, Helvetica, sans-serif; font-weight:bold; font-size:11px; background: url(http:/ccimages/verticals/common/default/buttonBkgdFlow.gif) repeat-x right; overflow: visible; line-height:12px; height:20px; text-align:right; padding-left:10px; padding-right:31px; padding-top:2px; padding-bottom:2px; border: 1px solid #c2c2c2; color:#333333; vertical-align:middle; cursor: pointer; text-transform: uppercase;} .buttonClassRE { font-family:Arial, Helvetica, sans-serif; font-weight:bold; background-image:url(/ccimages/verticals/realestate/default/buttonBkgd.gif); background-repeat:repeat-x; overflow:visible; line-height:15px; height:24px; text-align:center; border:1px solid #C2C2C2; vertical-align:middle; padding:2px 15px 2px 15px; cursor: pointer;} .buttonClassRESmall { font-family:Arial, Helvetica, sans-serif; font-weight:bold; font-size:11px; background-image:url(/ccimages/verticals/realestate/default/buttonBkgd.gif); background-repeat:repeat-x; overflow:visible; line-height:12px; height:20px; text-align:center; border:1px solid #C2C2C2; color:#333333; vertical-align:middle; padding:2px 8px 2px 8px; cursor: pointer;} .buttonClassFlowMini { font-family:Arial, Helvetica, sans-serif; font-size:10px; background: url(/ccimages/verticals/realestate/default/buttonBkgdFlowMini.gif) no-repeat right; overflow: visible; line-height:12px; height:18px; text-align:left; padding-left:3px; width: 64px; padding-top:1px; padding-bottom:1px; border: 1px solid #c2c2c2; color:#333333; vertical-align:middle; cursor:pointer;} /* PRINT PAGE */ .mapPrintPageContent { background-repeat:no-repeat; background-color:#FFFFFF; border:1px solid #333333; width:620px; padding:0px 6px 6px 6px;} .headerContainerPrint { width:620px; padding:6px 0px 6px 0px;} .headTablePrint { width:600px; font-family:Arial, Helvetica, sans-serif; font-weight:normal; background-color:#ffffff; padding:0px 0px 0px 0px;} .mapPrintFont { font-family:Arial, Helvetica, sans-serif; font-weight:normal;} .mapPrintDetails { font-family:Arial, Helvetica, sans-serif; font-weight:normal; font-size:12px; padding:0px 0px 0px 6px;} /* FORM STYLES */ form { margin:0;} .textbox { border:1px solid #487048;} .selectbox { font-family:Arial, Helvetica, sans-serif; font-size:12px; border:1px solid #487048;} .textarea { font-family:Arial, Helvetica, sans-serif; font-size:12px; border:1px solid #487048;} .checkbox { background-color:#E6F2E6;} .dropdown {/* Use this dropdown for unspecified widths */ font-family:Arial, Helvetica, sans-serif; font-size:12px; color:#333333; height:18px; border:1px solid #487048;} .dropdown150 { font-family:Arial, Helvetica, sans-serif; font-size:12px; color:#333333; height:20px; border:1px solid #487048; width: 152px; font-weight: normal;} .textfield50 { font-family:Arial, Helvetica, sans-serif; font-size:12px; color:#333333; width:50px; height:20px; vertical-align:middle; padding:0px 0px 0px 1px; border:1px solid #487048; text-align:left;} .textfield70 { font-family:Arial, Helvetica, sans-serif; font-size:12px; color:#333333; width:70px; height:20px; vertical-align:middle; padding:0px 0px 0px 1px; border:1px solid #487048; text-align:left;} .textfield150 { font-family:Arial, Helvetica, sans-serif; font-size:12px; color:#333333; width:150px; height:20px; vertical-align:middle; padding:0px 0px 0px 1px; border:1px solid #487048; text-align:left;} .textfield200 { font-family:Arial, Helvetica, sans-serif; font-size:12px; color:#333333; width:200px; height:20px; vertical-align:middle; padding:0px 0px 0px 1px; border:1px solid #487048; text-align:left;} /* LOAN CALC */ .estPmtBorder { border:1px solid #e8e8e8; padding:2px 5px 2px 5px; background-color: #ffffff;} /* GENERAL TEXT STYLES */ .sm_text { font-family:Arial, Helvetica, sans-serif; font-size:11px; color:#333333;} .sm_text b { font-weight:bold;} .sm_text a:link { color:#333333; text-decoration:underline;} .sm_text a:active { color:#333333; text-decoration:underline;} .sm_text a:visited { color:#333333; text-decoration:underline;} .sm_text a:hover { color:#333333; text-decoration:underline;} .md_text { font-family:Arial, Helvetica, sans-serif; font-size:12px; color:#333333;} .md_text a:link { color:#548a54; text-decoration:underline;} .md_text a:active { color:#548a54; text-decoration:underline;} .md_text a:visited { color:#548a54; text-decoration:underline;} .md_text a:hover { color:#333333; text-decoration:underline;} .sm_text b { font-weight:bold;} .sm_text a:link { color:#333333; text-decoration:underline;} .sm_text a:active { color:#333333; text-decoration:underline;} .sm_text a:visited { color:#333333; text-decoration:underline;} .sm_text a:hover { color:#333333; text-decoration:underline;} /* COLLAPSE/EXPANDING BAR */ .collapseExpandText { font-family:Verdana, Helvetica, sans-serif; font-size:11px; color:#333333;} .collapseExpandText a:link { text-decoration:underline; color:#548a54;} .collapseExpandText a:active { text-decoration:underline; color:#548a54;} .collapseExpandText a:visited { text-decoration:underline; color:#548a54;} .collapseExpandText a:hover { text-decoration:underline; color:#548a54;} .titleBarBg { background-image:url(/ccimages/verticals/realestate/default/re_bg_gradTitleBar.gif); background-repeat:repeat-x; background-position:top; border:1px solid #cccccc; height:24px;} .titleBarTitleUnderline { padding-left:6px; font-family:Arial, Helvetica, sans-serif; color:#000000; font-weight:bold; text-decoration:underline; font-size:14px;} .titleBarTitle { padding-left:6px; font-family:Arial, Helvetica, sans-serif; color:#000000; font-weight:bold; font-size:14px;} .titleBarText { padding-right:6px; font-family:Arial, Helvetica, sans-serif; font-size:11px; color:#333333;} .titleBarText a:link { color:#333333; text-decoration:underline;} .titleBarText a:active { color:#333333; text-decoration:underline;} .titleBarText a:visited { color:#333333; text-decoration:underline;} .titleBarText a:hover { color:#af263a; text-decoration:underline;} .contentBorder { border-right:1px solid #cccccc; border-left:1px solid #cccccc; background-color: #ffffff;} .contentBorderLast { border-right:1px solid #cccccc; border-bottom:1px solid #cccccc; border-left:1px solid #cccccc; background-color: #ffffff;} .expandDesc { font-family:Arial, Helvetica, sans-serif; color:#666666; font-size:12px;} .submitButtonPad { padding-top:8px; padding-bottom:4px; text-align:center;} /* DATA DISPLAY */ .dataDisplayLt { font-family:Arial, Helvetica, sans-serif; font-size:12px; font-weight:bold; color:#548A54; text-align:right; vertical-align:top; padding:0px 3px 0px 0px;} .dataDisplayRt { font-family:Arial, Helvetica, sans-serif; font-size:12px; color:#333333; text-align:left; vertical-align:top;} .dataDisplayRt b { font-family:Arial, Helvetica, sans-serif; font-size:12px; color:#666666; text-align:left; vertical-align:top;} /* CONTENT BOXES */ .boxHeader { height:22px; border:1px solid #548a54; background-color:#7DB07D; padding:0px 6px 0px 6px;} .boxHeaderText { font-family:Verdana, Arial, Helvetica, sans-serif; font-weight:bold; font-size:12px; color:#474747; text-align:middle; vertical-align: middle;} .boxFooterText { font-family: Arial, Helvetica, sans-serif; font-size: 10px; color: #333333;} .boxFooterText a:link { color: #333333; text-decoration: underline;} .boxFooterText a:active { color: #333333; text-decoration: underline;} .boxFooterText a:visited { color: #333333; text-decoration: underline;} .boxFooterText a:hover { color: #333333; text-decoration: underline;} .contentCellLtRtBtmBorder { border-right:1px solid #dddddd; border-bottom:1px solid #dddddd; border-left:1px solid #dddddd; background-color: #ffffff;} .boxSubHeaderTitle { font-family:Verdana, Arial, Helvetica, sans-serif; font-weight:bold; font-size:12px; color:#333333;} /* IMAGE & PHOTO TREATMENTS */ .imageBorder { border:1px solid #333333;} /* Search Results MAP */ .mapResults { font-family:arial,verdana,sans-serif; font-size:11px;} .mapResults a:link { color:#333333; text-decoration:none; cursor:pointer;} .mapResults a:active { color:#333333; text-decoration:none; cursor:pointer;} .mapResults a:visited { color:#333333; text-decoration:none; cursor:pointer;} .mapResults a:hover { color:#333333; text-decoration:none; cursor:pointer;} .mapResultsRow { height:22px; border-bottom:1px dotted #cccccc;} .mapIcon { width:15px; text-align:left; max-width:15px; min-width:15px; padding:0px 2px 0px 2px;} .mapLegendPrice { width:85px; text-align:left; max-width:85px; min-width:85px;} .mapLegendBR { width:35px; padding:0px 2px 0px 2px; text-align:center; max-width:35px; min-width:35px;} .mapLegendLoc { width:100px; text-align:left; max-width:100px; min-width:100px;} .mapLegendHeadIcon { width:15px; text-align:right; max-width:15px; min-width:15px; font-weight:bold; color:#000000; font-size:11px; padding:4px 2px 0px 4px;} .mapLegendHeadPrice { width:85px; padding-left:2px; padding-right:2px; text-align:left; max-width:85px; min-width:85px; font-weight:bold; color:#487048; font-size:11px; padding-top:4px; padding:4px 2px 0 2px;} .mapLegendHeadBR { width:35px; text-align:center; max-width:35px; min-width:35px; font-weight:bold; color:#487048; font-size:11px; padding:4px 2px 0px 2px;} .mapLegendHeadLoc { width:100px; text-align:left; max-width:100px; min-width:100px; font-weight:bold; color:#487048; font-size:11px; padding:4px 2px 0px 2px;} .resultsLtColumn { width:400px; float:left;} .resultsRtColumn { width:230px; float:right;} .mapLegendTable a:link { cursor:pointer;} .mapLegendTable a:active { cursor:pointer;} .pgLt { text-align:left;} .pgCt { text-align:center;} .pgRt { text-align:right;} /* FAQ */ .faqSection { font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 10px; color: #333333;} .faqSection a:link { color: #548a54; text-decoration: none;} .faqSection a:active { color: #548a54; text-decoration: none;} .faqSection a:visited { color: #548a54; text-decoration: none;} .faqSection a:hover { color: #548a54; text-decoration: none;} .boxSubHeaderTitle { font-family: Verdana, Arial, Helvetica, sans-serif; font-weight: bold; font-size: 12px; color: #333333;} .faqSection a:link { color: #548a54; text-decoration: underline;} .faqSection a:active { color: #548a54; text-decoration: underline;} .faqSection a:visited { color: #548a54; text-decoration: underline;} .faqSection a:hover { color: #548a54; text-decoration: underline;} /* Ad Manager */ .displayTableText { font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 10px; color: #333333;} .displayTableText a:link { color: #548a54; text-decoration: underline;} .displayTableText a:active { color: #548a54; text-decoration: underline;} .displayTableText a:visited { color: #548a54; text-decoration: underline;} .displayTableText a:hover { color: #548a54; text-decoration: underline;} .displayTableCellAlignRt { font-family: Verdana, Helvetica, sans-serif; text-align:right; padding: 2px 2px 2px 0px; font-weight:bold;} .displayTableDots { padding: 2px 2px 2px 2px; border-bottom: 1px dashed #a1a1a1;} .displayTableCellLt { font-family: Verdana, Helvetica, sans-serif; border-bottom: 1px solid #cccccc; padding: 3px 3px 3px 3px; font-size:10px; color:#333333; vertical-align:top;} .displayTableCellLt a:link { color: #548a54; text-decoration: underline;} .displayTableCellLt a:active { color: #548a54; text-decoration: underline;} .displayTableCellLt a:visited { color: #548a54; text-decoration: underline;} .displayTableCellLt a:hover { color: #548a54; text-decoration: underline;} .displayTableCell { font-family: Verdana, Helvetica, sans-serif; border-bottom: 1px solid #cccccc; padding: 3px 3px 3px 3px; font-size:10px; color:#333333; vertical-align:top;} .displayTableCell a:link { color: #548a54; text-decoration: underline;} .displayTableCell a:active { color: #548a54; text-decoration: underline;} .displayTableCell a:visited { color: #548a54; text-decoration: underline;} .displayTableCell a:hover { color: #548a54; text-decoration: underline;} .displayTableCellRt { font-family: Verdana, Helvetica, sans-serif; border-bottom: 1px solid #cccccc; padding: 0px 3px 3px 3px; font-size:10px; color:#333333; vertical-align:top;} .displayTableCellRt a:link { color: #548a54; text-decoration: underline;} .displayTableCellRt a:active { color: #548a54; text-decoration: underline;} .displayTableCellRt a:visited { color: #548a54; text-decoration: underline;} .displayTableCellRt a:hover { color: #548a54; text-decoration: underline;} .displayTableCellLtTop {/* This is used for alternating rows with two rows of information - this is the top row (Eric)*/ padding: 0px 2px 3px 3px; padding-top:0px; font-size:10px; color:#333333; vertical-align:top;} .displayTableCellTop { padding: 0px 2px 3px 2px; font-size:10px; color:#333333; vertical-align:top;} .displayTableCellRtTop { padding: 0px 3px 3px 2px; font-size:10px; color:#333333; vertical-align:top; text-align: right;} .displayTableCellLtLast {/* Table Cells Last Row (Eric)*/ font-family: Verdana, Helvetica, sans-serif; padding: 3px 2px 3px 2px; font-size:10px; color:#333333; vertical-align:top;} .displayTableCellLtLast a:link { color: #548a54; text-decoration: underline;} .displayTableCellLtLast a:active { color: #548a54; text-decoration: underline;} .displayTableCellLtLast a:visited { color: #548a54; text-decoration: underline;} .displayTableCellLtLast a:hover { color: #548a54; text-decoration: underline;} .displayTableCellLast { font-family: Verdana, Helvetica, sans-serif; padding: 3px 2px 3px 2px; font-size:10px; color:#333333; vertical-align:top;} .displayTableCellLast a:link { color: #548a54; text-decoration: underline;} .displayTableCellLast a:active { color: #548a54; text-decoration: underline;} .displayTableCellLast a:visited { color: #548a54; text-decoration: underline;} .displayTableCellLast a:hover { color: #548a54; text-decoration: underline;} .displayTableCellRtLast { font-family: Verdana, Helvetica, sans-serif; padding: 3px 2px 3px 3px; font-size:10px; color:#333333; vertical-align:top;} .displayTableCellRtLast a:link { color: #548a54; text-decoration: underline;} .displayTableCellRtLast a:active { color: #548a54; text-decoration: underline;} .displayTableCellRtLast a:visited { color: #548a54; text-decoration: underline;} .displayTableCellRtLast a:hover { color: #548a54; text-decoration: underline;} .displayTableHeadLtOdd {/* For use with Alt Rows - bg color ODD (Eric)*/ font-family: Verdana, Helvetica, sans-serif; font-size: 10px; color: #333333; border-bottom: 1px solid #666666; font-weight: bold; padding: 2px 2px 3px 2px;} .displayTableHeadOdd { font-family: Verdana, Helvetica, sans-serif; font-size: 10px; color: #333333; border-bottom: 1px solid #666666; font-weight: bold; padding: 2px 2px 3px 2px;} .displayTableBottomTotal { font-family: Verdana, Helvetica, sans-serif; font-size: 10px; color: #333333; border-top: 1px solid #666666; font-weight: bold; padding: 2px 2px 3px 2px;} .displayTableHeadOdd a:link { color: #333333; text-decoration: underline;} .displayTableHeadOdd a:active { color: #333333; text-decoration: underline;} .displayTableHeadOdd a:visited { color: #333333; text-decoration: underline;} .displayTableHeadOdd a:hover { color: #333333; text-decoration: underline;} .displayTableHeadOddNoCap { font-family: Verdana, Helvetica, sans-serif; font-size: 10px; color: #333333; border-bottom: 1px solid #666666; font-weight: bold; padding: 2px 2px 3px 2px; border-top: 1px solid #395a90;} .displayTableHeadRtOdd { font-family: Verdana, Helvetica, sans-serif; font-size: 10px; color: #333333; border-bottom: 1px solid #666666; font-weight: bold; padding: 2px 2px 3px 2px;} span.leftSpacer { padding-left:4px;} span.rightSpacer { padding-right:4px;} span.bothSpacer { padding-left:4px; padding-right:4px;} td.searchParams { font-family:Verdana, Arial, Helvetica; font-size:8px;} .headTable .currentResults { color:#487048; font-size:12px; font-weight:bold; padding-top:10px; vertical-align:top;} .headTable div.currentResultsBt { color:#999999; font-size:11px; padding-top:6px; padding-bottom:4px; vertical-align:bottom;} /* Added by MP - nowrap is deprecated use css version */ .nowrap { white-space: nowrap;} /* Added by MP - Alternate result row colors */ .resultsRowOdd { background-color: #EAEAEA;} /* Added by MP - Alternate result row colors */ .resultsRowEven { background-color: #FFFFFF;} /* Added by MP - Featured, highlighted row colors */ .resultsRowSpotlight { background-color: #FFFFCC;} /* Added by MP - hasFontColor color */ .hasFontColor { color: #FF0000;} /* Added by MP - Debug styles */ div.debugInfo { border: 1px solid #000000; padding: 4px; color: #FF0000; font: verdana 12px bold; margin-bottom: 10px;} .mapResultsHeadRow { height:22px; border-top:1px dotted #cccccc; border-bottom:1px dotted #cccccc;} /* Added by MP - Control google map bubbles */ div.googleBubble { width: 240px; height: 110px;} /* Added by MP - Control images within google bubbles */ td.googleBubblePhoto { width: 100px; padding-right: 6px; vertical-align: top;} /* Added by MP - Control search summary title */ .currentSearchTitle { vertical-align: top;} /* Added by MP - Control google map div appearance in detail pages */ .detailsGoogleMap { overflow: hidden; margin-left: 25px; width:400px; height: 450px; border-width:1px; border-style:solid; border-color:#999999;} /* DETAILS PAGE TAB STYLES */ div.formSuccess, div.formFailure { margin: 10px 0 15px; padding: 6px; border: 1px solid black; font-weight: bold;} span.formSuccess { color:#008000;} span.formFailure { color:#cc0000;} /* RE Main Button Nav */ #adicioUserToolbar li { display: inline; list-style-type: none;} ul#adicioUserToolbar { margin: 0; padding: 0;} #adicioUserToolbarContainer { padding-bottom: 12px;} select.mediumWidthDropdown { width: 150px;} select.largeWidthDropdown { width: 225px;} div#detailedResultsRowHeader { padding: 8px 0; text-align: left; border-bottom: 1px dotted black;} div.detailedResultsRow { border-bottom: 1px dotted black; padding: 6px;} div.descriptionBlock { margin-bottom: 15px;} .confirmMsgRed { color: #cc0000;} /* ====== New styles for May 07 release ====== */ .reAdDetailContainer { width:643px;} .rePageTitle { font:18px Arial, Helvetica, sans-serif; color:#487048; border-bottom:1px solid #487048;} #reTitleText { font:12px Arial, Helvetica, san-serif;} .rePgLtCell { vertical-align:top; text-align:left; padding:4px 0 0 0;} .rePgRtCell { vertical-align:top; text-align:right; padding:4px 0 0 0;} .reTitleDesc { font:bold 14px Arial, Helvetica, sans-serif; color: #666666; padding: 10px 0 0 0; text-align: left;} .reTitlePrice { font:bold 20px Arial, Helvetica, sans-serif; color: #487048; padding: 10px 0 10px 0; text-align: left;} .reDefaultPhoto { text-align: center; vertical-align: middle; padding: 0 8px 0 0; width: 320px;} .reDefaultPhoto img { border: 1px solid #333333;} /* Info and Contact Section */ #reInfoContactTabs { height: 19px;} /* tabs start */ .reTopTabsBorder { background: url(/ccimages/verticals/realestate/default/re_tab_topSection_border.gif) repeat-x bottom; height: 19px; width: 315px;} #reTopTab { float:left; width:100%; line-height:normal; letter-spacing:.08em; font-family: Arial, Helvetica, sans-serif; font-size: 12px;} #reTopTab ul { margin:0; padding:0px 0px 0 0px; list-style:none;} #reTopTab li { display:inline; margin:0; padding:0;} #reTopTab a { float:left; background:url(/ccimages/verticals/realestate/default/re_tab_topSection_lt.gif) no-repeat left top; margin:0; padding:0 0 0 3px; text-decoration:none; width: 49%; outline: none;} #reTopTab a span { float:left; display:block; background:url(/ccimages/verticals/realestate/default/re_tab_topSection_rt.gif) no-repeat right top; padding: 3px 0 1px 0; color:#333333; text-align: center;} /* Commented Backslash Hack hides rule from IE5-Mac \*/ #reTopTab a span {float:none;} /* End IE5-Mac hack */ #reTopTab .current a { background-position:0% -19px;} #reTopTab .current a span { background-position:100% -19px; color:#333333; font-weight: bold;} .reTopTabContentBorder { border: 1px solid #999999; border-top: none; height: 222px; background-color: #ffffff;} /* tabs end */ .reInfoContactContentBorder { border: 1px solid #cccccc; border-top: none; height: 222px; width: 315px;} .reInfoContactContentBorder { border: 1px solid #cccccc; border-top: none; height: 222px; width: 315px; margin: 0; padding: 0;} .reInfoAlign { vertical-align: top; text-align: center; width: 163px; padding-top: 6px;} .reOpenHouseAlign { vertical-align: top; text-align: left; width: 151px; padding-top: 6px;} #reInfoContainer { font: 12px Arial, Helvetica, sans-serif; color: #333333;} #reInfoContainer .reBrokerage { color: #333333; padding: 0 0 5px 0;} #reInfoContainer img { border: 1px solid #333333;} #reInfoContainer .reAgent { font-weight: bold; padding: 0 0 1px 0;} #call4Num { color: #333333; font-weight: bold;} #call4Num a:link, #call4Num a:active, #call4Num a:visited, #call4Num a:hover { color: #548a54; font-weight: normal;} .reCallNum { color: #333333; font-weight: bold;} .reCallNum a:link, .reCallNum a:active, .reCallNum a:visited, .reCallNum a:hover { color: #548a54; font-weight: normal;} #reContactContainer { font: 11px Arial, Helvetica, sans-serif;} .reInfoLinks { text-align: center; font: 11px Arial, Helvetica, sans-serif; color: #333333;} .reInfoLinks a:link, .reInfoLinks a:active, .reInfoLinks a:visited, .reInfoLinks a:hover { color: #487048; text-align: center;} .reInfoGradientPipe { background: url(/ccimages/verticals/realestate/default/re_grad_vertical_pipe.gif) no-repeat center; width: 1px; background-color: #ffffff; height: 200px;} /* Open House */ #reOpenHouseContainer { font:12px Arial, Helvetica, sans-serif; padding: 0 12px 0 12px;} .reOpenHouseIcon { background: url(/ccimages/verticals/realestate/default/re_icon_OpenHouseTitle.gif) no-repeat -1% 48%; height: 30px; font-size: 14px; color: #ff6600; font-weight: bold; width: 90px; padding: 8px 0 0 21px; white-space: nowrap;} #reOpenHouseContainer .reOpenHouseText { text-align: left;} /* Contact Form */ #reContactForm { font: 11px Arial, Helvetica, sans-serif;} #reContactForm a:link, #reContactForm a:active, #reContactForm a:visited, #reContactForm a:hover { color: #487048;} #reContactForm input.reTextfield { display: block; width: 143px;} #reContactForm label { display: block;} #reContactForm label.first { padding-top: 5px;} #reContactForm select { display: block; width: 143px; font: 11px Arial, Helvetica, sans-serif;} #reContactForm textarea { height: 56px; overflow: scroll; overflow-y: scroll; overflow-x: hidden; overflow:-moz-scrollbars-vertical; width: 143px; font: 11px Arial, Helvetica, sans-serif;} #reContactForm label span { color: red; position:relative; top: 3px; font-size: 12px;} span.asteriskSpacer { font-size: 12px; visibility: hidden;} .requiredText { color: red; text-align: left; padding: 0 0 0 4px;} .requiredText b { position:relative; top: 3px; font-size: 12px;} .reContactFormLtCol { padding: 0 4px 0 6px;} .reContactFormButton, .reContactFormLinks { text-align: center; padding-top: 4px;} .reContactFormLinkText { font: 11px Arial, Helvetican, sans-serif;} .reSendBtn{/* Contact Form Button changed to CSS */ background: url(/ccimages/verticals/realestate/default/re_btn_send_bg.gif) no-repeat; width: 50px; height: 18px; overflow: visible; line-height:18px; text-align:center; color:#ffffff; vertical-align:middle; cursor:pointer; border: none; font: 11px Arial, Helvetica, sans-serif; font-weight: bold; margin: 0; padding: 0;} /* Real Estate Icon Tools */ .reIconToolsSpacer { padding: 5px 0 5px 0; width: 645px; text-align: left;} #reIconToolsContainer ul { margin: 0; padding: 0; list-style-type: none; font: 11px Arial, Helvetica, sans-serif;} #reIconToolsContainer ul li { display: inline; } #reIconToolsContainer a:link, a:visited, a:active, a:hover {color: #487048} .reIconTools { list-style: none; margin: 0; padding: 0; display: inline;} li.reIconSave { background: url(/ccimages/verticals/realestate/default/re_icon_save.gif) no-repeat 0 50%; padding: 3px 0 3px 20px; margin: .4em 20px 0 0;} li.reIconEmail { background: url(/ccimages/verticals/realestate/default/re_icon_email.gif) no-repeat 0 50%; padding: 3px 0 3px 20px; margin: .4em 20px 0 0} li.reIconPrint { background: url(/ccimages/verticals/realestate/default/re_icon_print.gif) no-repeat 0 50%; padding: 3px 0 3px 20px; margin: .4em 20px 0 0} li.reIconVideo { background: url(/ccimages/verticals/realestate/default/re_icon_videoTour.gif) no-repeat 0 50%; padding: 3px 0 3px 20px; margin: .4em 20px 0 0} li.reIconAudio { background: url(/ccimages/verticals/realestate/default/re_icon_audioTour.gif) no-repeat 0 50%; padding: 3px 0 3px 20px; margin: .4em 20px 0 0} /* Tab Content Area */ #propertyDetailTab, #propertyPhotoTab, #propertyFloorTab, #propertyMapTab { font: 11px Arial, Helvetica, sans-serif;} #propertyDetailTab { padding: 10px 4px 10px 4px;} #propertyPhotoTab { padding: 10px 0px 10px 20px;} #propertyFloorTab { padding: 10px 5px 10px 5px;} #propertyMapTab { padding: 10px 5px 10px 5px;} /* Detail Tabs */ .detailsTabBorder { background: url(/ccimages/verticals/realestate/default/re_tab_details_border.gif) repeat-x bottom;} #detailsTab { float:left; width:100%; line-height:normal; font-family: Arial, Helvetica, sans-serif; font-weight: bold; font-size: 12px; letter-spacing:.08em;} #detailsTab ul { margin:0; padding:10px 10px 0 0px; list-style:none;} #detailsTab li { display:inline; margin:0; padding:0;} #detailsTab a { float:left; background:url(/ccimages/verticals/realestate/default/re_tab_details_lt.gif) no-repeat left top; margin:0; padding:0 0 0 5px; text-decoration:none;} #detailsTab a span { float:left; display:block; background:url(/ccimages/verticals/realestate/default/re_tab_details_rt.gif) no-repeat right top; padding:5px 15px 4px 6px; color:#999999;} /* Commented Backslash Hack hides rule from IE5-Mac \*/ #detailsTab a span {float:none;} /* End IE5-Mac hack */ #detailsTab a:hover span { color: #333333;} #detailsTab .current a { background-position:0% -24px;} #detailsTab .current a span { background-position:100% -24px; color:#548a54;} .detailsTabContent { border: 1px solid #666666; border-top: none; padding: 10px 8px 10px 8px; background-color: #ffffff;} .reInfoSection { vertical-align: top; width: 315px;} /* photo gallery */ .galleryThumbs { display:block; float:left; margin:0 10px 10px 0; width:50px; height:50px; border:1px solid #000000;} #galleryContainer { width:258px; height: 240px; padding-left: 12px; vertical-align:top;} .mainPhotoContainer { vertical-align: top; text-align: center; width: 320px; height: 240px;} .mainFloorplanContainer { vertical-align: top; text-align: center; width: 320px; height: 240px;} #photosMainImage img { vertical-align: top;} #iframeContainer { width: 600px; height: 600px;} /* Photo Upload Page */ .reTitleBar{display:block} .reTitleBar *{ display:block; height:1px; overflow:hidden; font-size:.01em; background:#548a54} .reTitleBar1{ margin-left:3px; margin-right:3px; padding-left:1px; padding-right:1px; border-left:1px solid #b5ccb5; border-right:1px solid #b5ccb5; background:#7ea77e} .reTitleBar2{ margin-left:1px; margin-right:1px; padding-right:1px; padding-left:1px; border-left:1px solid #edf3ed; border-right:1px solid #edf3ed; background:#74a074} .reTitleBar3{ margin-left:1px; margin-right:1px; border-left:1px solid #74a074; border-right:1px solid #74a074;} .reTitleBar4{ border-left:1px solid #b5ccb5; border-right:1px solid #b5ccb5} .reTitleBar5{ border-left:1px solid #7ea77e; border-right:1px solid #7ea77e} .reTitleBarfg{ background:#548a54; color: #ffffff; font:14px Arial, Helvetica, sans-serif; font-weight: bold; text-align: left; padding: 0 0 0 10px} .reUploadDesc{ font: 12px Arial, Helvetica, sans-serif; color: #333333; text-align: left; padding: 10px 0 20px 0} .reUploadDesc em { font-style: italic;} .reUploadLabel { font: 12px Arial, Helvetica, sans-serif; color: #333333; font-weight: bold; text-align: left; padding: 0 0 10px 0} .reUploadBrowse {} .reUploadLtCol { width: 400px; vertical-align: top;} .reUploadRtCol { width: 258px; vertical-align: top} .reUploadNum { display:block; float:left; margin:0 10px 10px 0; width:50px; height:50px; border:1px solid #000000; color: #e1e4e6; background-color: #cccccc; border: 1px solid #999999; vertical-align: middle; text-align:center; font: 38px Arial, Helvetica, sans-serif; font-weight: bold; letter-spacing: -1px;} .reUploadMP{ display:block; float:left; margin:0 10px 10px 0; width:50px; height:50px; border:1px solid #000000; color: #e1e4e6; background-color: #cccccc; border: 1px solid #999999; vertical-align: middle; text-align:center; font: 16px Arial, Helvetica, sans-serif; font-weight: bold; letter-spacing: -1px; line-height: 14px} .reUploadSpacer { height: 20px} .reUploadThumbs { width:50px; height:50px; border:1px solid #000000;} .reThumbnailCell { text-align: center; height: 70px; width: 56px;} .reUploadDel{height: 16px; text-align: center} .reUploadDel a:link, .reUploadDel a:active, .reUploadDel a:visited, .reUploadDel a:hover { color: #548a54; text-decoration: underline;} .reAdDetailSchool { font-family: Arial, Helvetica, sans-serif; font-size:12px; font-weight: bold} /*Ad Detail Page Pop Up Buttons Styles */ #rePopViewFullAd { height: 20px; width: 160px; background:url(/ccimages/verticals/realestate/default/re_btn_orange_bg.gif); font: 12px Arial, Helvetica, sans-serif; font-weight: bold; text-align: center; background-position:center middle; background-color:transparent; overflow:hidden; line-height: 18px; cursor: pointer; display: block; margin: 0; padding: 0;} #rePopViewFullAd a:link, #rePopViewFullAd a:active, #rePopViewFullAd a:visited, #rePopViewFullAd a:hover { color: #ffffff; text-align: center; text-decoration: none;} #rePopSchool { height: 20px; width: 122px; background:url(/ccimages/verticals/realestate/default/re_btn_plantinum_bg.gif); font: 12px Arial, Helvetica, sans-serif; font-weight: bold; text-align: center; background-position:center middle; background-color:transparent; overflow:hidden; line-height: 18px; cursor: pointer; display: block; margin: 0; padding: 0;} #rePopSchool a:link, #rePopSchool a:active, #rePopSchool a:visited, #rePopSchool a:hover { color: #79827f; text-align: center; text-decoration: none;} #rePopViewDetails {/* Foreclosure */ height: 37px; width: 188px; background:url(/ccimages/verticals/realestate/default/re_btn_red_bg.gif); font: 14px Arial, Helvetica, sans-serif; font-weight: bold; text-align: center; background-position:center middle; background-color:transparent; overflow:hidden; line-height: 24px; cursor: pointer; display: block} #rePopViewDetails a:link, #rePopViewDetails a:active, #rePopViewDetails a:visited, #rePopViewDetails a:hover { color: #ffffff; text-align: center; text-decoration: none;} .reButtonSpacer { width: 12px; height: 20px;} div#googleMapDisclaimer { margin: 25px 25px 15px 25px; font-style: italic;} /* Common Footer */ .reFooterMsgText a:link, .reFooterMsgText a:active, .reFooterMsgText a:visited, .reFooterMsgText a:hover, { color: #548a54;} .error, .success { padding: 6px; margin: 15px 0; border: 1px solid black; background-color: #CCFF99;} .error { background-color: #CC6666;} .bold { font-weight: bold;} /* Featured iFrame */ .reFeaturedImg { height:75px; border:1px solid #333333} /* popup div */ .popup { font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 10px; color: #333333; position: absolute; visibility: hidden; background-color: #e6f2e6; width: 220px; border-left: 1px solid #487048; border-top: 1px solid #487048; border-bottom: 1px solid #487048; border-right: 1px solid #487048; padding: 3px; z-index: 10 } .popup a:link { color: #487048; text-decoration: underline; } .popup a:hover { color: #487048; text-decoration: underline; } .popup a:active { color: #487048; text-decoration: underline; } .popup a:visited { color: #487048; text-decoration: underline; } .propertyTitleLocationDisplay { font: bold 18px Arial, Helvetica, sans-serif bold; color: #333333} /* featured agent iframe */ .featuredAgentWidth { width: 100%} .featuredAgentCompany, .featuredAgentName, .featuredCallNum { font: 12px Arial, Helvetica, sans-serif; color: #333333} .featuredAgentName a:link, .featuredAgentName a:active, .featuredAgentName a:visited, .featuredAgentName a:hover { color: #548a54} .featuredCallNumber div {font: 12px Arial, Helvetica, sans-serif} .featuredCallNumber div a:link, .featuredCallNumber div a:active, .featuredCallNumber div a:visited, .featuredCallNumber div a:hover { color:#548a54} #iframeCommunityContainer{ height:600px; } .userAlert{ color: red; font-weight: bold; } /* Ad Posting - Front End */ #reSelectProd { padding-left: 34px} .reSelectProdInput { padding-top: 7px} .reSelectProdSubmit { text-align: center; padding-top: 12px} #reSelectAdPosting.gradientBoxTable { width: 476px} .gradientBoxContent div.reProdPurchased, .gradientBoxContent div.reProdNew { font: bold 14px Arial, Helvetica, sans-serif; color: #548a54; background-color:transparent} .reProdNew { padding-top: 20px} .reProdDropdown { width: 360px} .reSelectAdGradientBox { width: 100%; text-align: center; padding-top: 10px} .gradientBoxTable {/* Table background image */ background:url(/ccimages/verticals/realestate/default/gradientBoxBg.gif) repeat-x bottom; background-color:#ffffff;} .gradientBoxTopLt, #reSetListingLayout .gradientBoxTopLt, #reSelectUpgrades .gradientBoxTopLt { background:url(/ccimages/verticals/realestate/default/gradientBoxTopLt.gif) no-repeat; height:10px; width:10px; background-color:#ffffff} .gradientBoxTopBg, #reSetListingLayout .gradientBoxTopBg, #reSelectUpgrades .gradientBoxTopBg { background:url(/ccimages/verticals/realestate/default/gradientBoxTopBg.gif) repeat-x; height:10px; background-color:#ffffff} .gradientBoxTopRt, #reSetListingLayout .gradientBoxTopRt, #reSelectUpgrades .gradientBoxTopRt { background:url(/ccimages/verticals/realestate/default/gradientBoxTopRt.gif) no-repeat; height:10px; width:10px; background-color: #ffffff} .gradientBoxLt, #reSetListingLayout .gradientBoxLt, #reSelectUpgrades .gradientBoxLt { background:url(/ccimages/verticals/realestate/default/gradientBoxLt.gif) repeat-y; width: 10px; background-color: transparent} .gradientBoxContent { background-color: transparent;} .gradientBoxRt, #reSetListingLayout .gradientBoxRt, #reSelectUpgrades .gradientBoxRt { background:url(/ccimages/verticals/realestate/default/gradientBoxRt.gif) repeat-y; width: 10px; background-color: transparent} .gradientBoxBotLt, #reSetListingLayout .gradientBoxBotLt, #reSelectUpgrades .gradientBoxBotLt { background:url(/ccimages/verticals/realestate/default/gradientBoxBotLt.gif) no-repeat; height:10px; width:10px; background-color:transparent} .gradientBoxBotBg, #reSetListingLayout .gradientBoxBotBg, #reSelectUpgrades .gradientBoxBotBg { background:url(/ccimages/verticals/realestate/default/gradientBoxBotBg.gif) repeat-x; height:10px; background-color:transparent} .gradientBoxBotRt, #reSetListingLayout .gradientBoxBotRt, #reSelectUpgrades .gradientBoxBotRt { background:url(/ccimages/verticals/realestate/default/gradientBoxBotRt.gif) no-repeat; height:10px; width:10px; background-color:transparent} #reSetListingLayout .gradientBoxAlertTable, #reSelectUpgrades .gradientBoxAlertTable {/* Table background image */ background:url(/ccimages/verticals/realestate/default/gradientBoxBg.gif) repeat-x bottom; background-color:#ffffff} #reSetListingLayout .gradientBoxContent { font-size: 12px; vertical-align: middle} #reSetListingLayout td .fieldLabel, #ForSaleStuff td .fieldLabel { height: 24px} #reSetListingLayout .fieldLabel, #reSetListingForSaleStuff .fieldLabel, #reSetListingContactInfo .fieldLabel, #reSetListingPropDetails .fieldLabel, #reSetListingPropInfo .fieldLabel { font-family:Verdana, Arial, Helvetica, sans-serif; font-size: 11px; color: #333333; font-weight: bold; text-align: right; padding-right: 5px; width: 161px} #reSetListingLayout .searchFormRtBkgd, #reSetListingForSaleStuff .searchFormRtBkgd, #reSetListingContactInfo .searchFormRtBkgd, #reSetListingPropDetails .searchFormRtBkgd, #reSetListingPropInfo .searchFormRtBkgd { text-align:left; font-family:Verdana, Arial, Helvetica, sans-serif; font-size:11px; color:#333333; padding:0px 0px 0px 5px;} .searchFormRtBkgd span { color: #666666} .fieldLabelDesc { vertical-align: top; padding: 0 0 6px 0} .setListingSelectedBox { padding: 10px 0 10px 0} .titleBarSpacing { padding: 10px 0 0px 0} .reProductType, legend .reProductType { font: bold 14px Arial, Helvetica, sans-serif; color: #548a54; text-align: left; padding-bottom: 8px} .reProductDesc { padding: 0; vertical-align: top; font: 12px Arial, Helvetica, sans-serif; text-align: left; /* border-bottom: 1px dotted #cccccc*/} .reProductPrice { padding: 3px 0 3px 0; vertical-align: top; font: 12px Arial, Helvetica, sans-serif; text-align: right; /* border-bottom: 1px dotted #cccccc */; background-color: #f1f1f1} #reUpgradeOptions, #reAdSubtotal, #reSelectUpgrade { margin-bottom: 15px} .reOpenHouseInput div { font: 12px Arial, Helvetica, sans-serif; text-align: left} .reOpenHouseInput { border-bottom: 1px dotted #cccccc} .reSelectedPosting { font: 12px Arial, Helvetica, sans-serif; text-align: left} .reSelectPostingPrice { font: 12px Arial, Helvetica, sans-serif; text-align: right} #reAdSubtotal td { font: 12px Arial, Helvetica, sans-serif} .reAdSubtotalLt { width: 445px; text-align: left; height: 24px; /* border-bottom: 1px solid #666666*/} .reAdSubtotalRt { width: 200px; text-align: right; height: 24px; padding-right: 4px; /*border-bottom: 1px solid #666666*/} .reAdSubtotalLtBot { height: 24px; /*border-top: 1px solid #333333*/; width: 75%} .reAdSubtotalRtBot { height: 24px; background-color: #cccccc; text-align: right; padding-right: 4px; /*border-top: 1px solid #333333*/} #reSelectedProduct td { font: 12px Arial, Helvetica, sans-serif} #reSelectedProduct .reProductSelected { text-align: left} #reSelectedProduct .reChangeProduct { text-align: right} #reSelectedProduct .reChangeProduct a:link, #reSelectedProduct .reChangeProduct a:active, #reSelectedProduct .reChangeProduct a:visited, #reSelectedProduct .reChangeProduct a:hover { color:#548a54} /* Product Migration - Purchased Products - 01/15/08 - CD */ .prodNameCol, .prodTotalCol, .prodUsedCol, .prodAvailCol, .prodExpCol, .prodDetailCol, .prodBtnCol, .prodNameHdr, .prodTotalHdr, .prodUsedHdr, .prodAvailHdr, .prodExpHdr, .prodDetailHdr, .prodBtnHdr { font: 12px Arial, Helvetica, sans-serif; height: 24px; color: #333333} .prodDetailCol a:link, .prodDetailCol a:active, .prodDetailCol a:visited, .prodDetailCol a:hover, { color: #487048} .prodNameHdr, .prodTotalHdr, .prodUsedHdr, .prodAvailHdr, .prodExpHdr, .prodDetailHdr, .prodBtnHdr { font-weight: bold; color: #666666} .prodNameCol, .prodNameHdr { text-align: left; padding-left: 4px} .prodBtnCol, .prodBtnHdr { padding-right: 4px} .prodTotalCol, .prodUsedCol, .prodAvailCol, .prodExpCol, .prodDetailCol, .prodBtnCol, .prodTotalHdr, .prodUsedHdr, .prodAvailHdr, prodExpHdr, .prodDetailHdr, .prodBtnHdr { text-align: center; width: 64px} .prodAltRowColor { background-color: #eaeaea} #purchasedProd { padding-top: 10px} /* Product Banner */ .reProductBannerText { font: 12px Arial, Helvetica, sans-serif; color: #333333} .reProductBannerLtCol, .reProductBannerCtCol, .reProductBannerRtCol { vertical-align: top; text-align: center; font: 12px Arial, Helvetica, sans-serif; color: #666666; font-weight: bold} .reProductBannerLtCol a:link, .reProductBannerLtCol a:active, .reProductBannerLtCol a:visited, .reProductBannerLtCol a:hover, .reProductBannerCtCol a:link, .reProductBannerCtCol a:active, .reProductBannerCtCol a:visited, .reProductBannerCtCol a:hover, .reProductBannerRtCol a:link, .reProductBannerRtCol a:active, .reProductBannerRtCol a:visited, .reProductBannerRtCol a:hover { font-size: 11px; font-weight: normal; color: #487048; outline: none} .reProductBannerLtCol, .reProductBannerCtCol { padding-right: 20px} .reSampleThumbnails { padding: 14px 0 14px 0} /* .reProductName,*/ .rePackageName { font: 13px Arial, Helvetica, sans-serif; font-weight: bold; color: #333333; border-bottom: 1px dotted #666666; padding-top: 5px} .reProductDescription { font:12px Arial, Helvetica sans-serif; color: #333333; text-align: left; padding: 5px 10px 10px 0; vertical-align: top; width: 60%; margin: 0} .rePackageDescription { font: 12px Arial, Helvetica sans-serif; color: #333333; text-align: left; padding: 0 10px 5px 5px; vertical-align: top; margin: 0;} .reProductDurationPrice { text-align: right; border-left: 1px solid #cccccc; height: 24px} .rePackagePrice { text-align: right; height: 24px} .reProductButton, .rePackageButton { text-align: right; width: 70px; padding-top: 10px} .rePackageInclude { font: 12px Arial, Helvetica, sans-serif; color: #999999; font-weight: bold; padding:5px 0} .reProductSpacer { height: 20px} .rePackageBorder { border-left: 1px solid #cccccc} .rePackageProducts { font: 12px Arial, Helvetica, sans-serif; color: #333333; padding-left: 10px} .rePackageProducts li { list-style-type: square; font-size: 12px} .reProductContact { font: 12px Arial, Helvetica, sans-serif; color: #333333} .reProductContact a:link, .reProductContact a:active, .reProductContact a:visited, .reProductContact a:hover, { color:#548a54} /* Upsell */ .reUpgradeName, .reUpgradeDetail { font:bold 12px Arial, Helvetica, sans-serif; background-color: #e9e9e9; padding: 2px 4px 0 4px; color: #333333; vertical-align: middle} .reUpgradeDescription { font: 12px Arial, Helvetica, sans-serif; color: #333333; padding:5px 0 5px 0} .reUpgradeDuration, .reUpgradePrice { font: 12px Arial, Helvetica, sans-serif;} #reUpsellContainer {} .reUpsellName { width: 75%; font: 12px Arial, Helvetica, sans-serif; font-weight: bold; color: #333333} .reUpsellDescription { font: 12px Arial, Helvetica, sans-serif; color: #333333; padding-top: 5px} .reUpsellDuration { width: 50%; text-align: right} .reUpsellPrice { font: 12px Arial, Helvetica, sans-serif; width: 25%; font-weight: bold; text-align: right} .reUpsellCkBox { width: 25%} #selectedProductPrice { font-weight: bold} .reUpsellOptions { padding-top: 10px} /* Media Kit */ .reMediaKitTitleSpacer { height: 10px} .reMediaKitAdPostingProducts, .reMediaKitUpgradeProducts, .reMediaKitPackages, .reSelectUpgrades { padding:5px 3px 0 3px; margin: 0} legend.reMediaKitProductType { font: bold 14px Arial, Helvetica, sans-serif; color: #548a54} .reMediaKitProductType, { font: bold 1px Arial, Helvetica, sans-serif; padding-left: 5px; color: #548a54} .reMediaKitPackageType { font: bold 12px Arial, Helvetica, sans-serif; color: #000000; background-color: #e9e9e9; padding-left: 5px; width: 75%} .reMediaKitDuration { padding-left: 5px; text-align: left; font: bold 12px Arial, Helvetica, sans-serif; width: 75%; background-color: #e9e9e9} .reMediaKitDetail { text-align: right; background-color: #e9e9e9} .reMediaKitPrice { font: bold 12px Arial, Helvetica, sans-serif; text-align: right; width: 140px} .reMediaKitDescription { font: 12px Arial, Helvetica, sans-serif; padding: 0 0 10px 5px} #reMediaKitPackageIncludes { margin-left: 0; padding: 0 0 10px 20px; list-style: square; font: 12px Arial, Helvetica, sans-serif; color: #333333} /* Products Banner */ .reProdBannerSamples { width: 100%} .reProdBannerTn { width: 220px; text-align: center; font: bold 12px Arial, Helvetica, sans-serif; color: #666666} .reProdBannerTn a:link, .reProdBannerTn a:active, .reProdBannerTn a:visited, .reProdBannerTn a:hover { color: #548a54; font-weight: normal} li.reIconProducts { background: url(/ccimages/verticals/realestate/default/re_icon_products.gif) no-repeat 0 50%; padding: 3px 0 3px 20px; margin: .4em 20px 0 0;} li.reIconProductsExp { background: url(/ccimages/verticals/realestate/default/re_icon_productsExp.gif) no-repeat 0 50%; padding: 3px 0 3px 20px; margin: .4em 20px 0 0;} li.reIconPackages { background: url(/ccimages/verticals/realestate/default/re_icon_packages.gif) no-repeat 0 50%; padding: 3px 0 3px 20px; margin: .4em 20px 0 0;} li.reIconPackagesExp { background: url(/ccimages/verticals/realestate/default/re_icon_packagesExp.gif) no-repeat 0 50%; padding: 3px 0 3px 20px; margin: .4em 20px 0 0;} .reIconProducts, .reIconProductsExp, .reIconPackages, .reIconPackagesExp { color: #333333; font-weight: bold} /* ================================================================================================= */ #reUpgrades td { font: 11px Arial, Helvetica, sans-serif; color: #333333} .prePaidType, .prePaidDuration, .prePaidPurchased, .prePaidRemain, .prePaidPackage, .prePaidExp, .prePaidCkBox { border-bottom: 1px solid #487048; background-color: #e6f2e6; height: 24px} #reProducts, #rePackages { /* generic */ font-family: Arial, Helvetica, sans-serif; font-size: 11px; vertical-align: middle; color: #333333} #reProducts th, #rePackages th { color: #666666; font-weight: bold; background-color: #eeeeee; border-top: 1px solid #d8dce0; text-align: center; vertical-align: middle} .reHeaderName,.rePackageName, .reID, .reAvail, .prepaidUsage, .reExpDate, .rePostAd, .reProdType, .reProdName, .reDur { height: 28px} .reHeaderName { width: 225px; text-align: left!important; padding-left: 5px} .reProdType, #rePackages .rePackageName, #rePackages .reProdName { width: 125px} .rePackageName { border-left: 1px solid #d8dce0} #reProducts th.reProdType, #reProducts th.reProdName, td.reProdType, #rePackages th.rePackageName, #rePackages td.rePackageName { text-align: left; padding-left: 5px} .reProdName { text-align: left; padding-left: 5px; border-left: 1px solid #d8dce0} #reProducts td, #rePackages td { border-bottom: 1px solid #d8dce0} td.reProdType { font-weight: bold; border-right: 1px solid #d8dce0; border-left: 1px solid #d8dce0; vertical-align: middle!important} .reProdName { width: 175px} .reProdName a { color: #487048} .reDur { width: 12.5%} th.reExpDate, td.reExpDate, th.rePostAd, td.rePostAd, th.reAvail, td.reAvail, th.reUsage, td.reUsage, th.reID { text-align: center!important} .rePackageName th, .rePackageName td { width: 175px; padding-left: 5px} .rePackageName { font-weight: bold} .reID { width: 12.5%} .reAvail { width: 12.5%} .reUsage { width: 12.5%} #rePackages th.reID, #rePackages td.reID, #rePackages th.reTotal, #rePackages td.reTotal, #rePackages th.reAvail, #rePackages td.reAvail, #rePackages th.reDur, #rePackages td.reDur { width: 8%} #rePackages th.rePostAd, #rePackages td.rePostAd { width: 80px} #rePackages td.reProdType { border-left: 1px solid #d8dce0; border-right: none} #rePackages th.reTotal, #rePackages td.reTotal, #rePackages th.reID, #rePackages td.reID { text-align: center!important} #rePackages td.reProdType, #rePackages th.reHeaderName { width: 225px!important} td.reExpDate, th.reExpDate { width: 100px} #rePackages th.reExpDate, #rePackages td.reExpDate { width: 118px!important} th.reID, th.reDur, th.reExpDate, td.reExpDate, th.rePostAd, .rePostAd, td.reID, th.reDur, td.reDur { text-align:left!important} .rePostAd { border-right: 1px solid #d8dce0} #rePackages .rePostAd { width: 12.5%} #reProducts .rePostAd { width: 10%} .rePostAdBtn { font-family:Arial, Helvetica, sans-serif; font-size:10px; background: url(/ccimages/verticals/realestate/default/buttonBkgdFlowMini.gif) no-repeat right; overflow: visible; line-height:12px; height:18px; text-align:left; padding:1px 17px 1px 3px; width: 64px; border: 1px solid #c2c2c2; color:#333333; vertical-align:middle; cursor:pointer} .rePostAdBtn a:link, .rePostAdBtn a:active, .rePostAdBtn a:visited, .rePostAdBtn a:hover { text-decoration: none; color: #333333} .reDivider { background-color: #898989} #prepaidMenuContainer { margin-bottom: 15px; text-align: center; font: 11px Arial, Helvetica, sans-serif; padding: 20px 0 10px 0} #prepaidMenuContainer ul li { display: inline} .prepaidMenu { list-style: none; margin: 0; padding: 0; display: inline;} .prepaidMenu a { color: #487048; font-weight: normal} _chttp://realestate.columbusrealestate.com/ccincludes/css/verticals/realestate/default/re_default.css Obplist00 Y$archiverX$versionT$topX$objects_NSKeyedArchiver _WebResourceResponse# )/078?LYZNS.objectsWNS.keys@ABCDEFGHIJKMNOPQRSTUVWX  VServerTVary]Last-Modified]Accept-Ranges_Content-EncodingTDateZSet-Cookie^Content-LengthZKeep-AliveZConnectionTEtag\Content-Type_Apache/2.2.4 (Unix) PHP/5.1.6_Accept-Encoding,User-Agent_Thu, 02 Oct 2008 18:38:09 GMTUbytesTgzip_Wed, 19 Nov 2008 03:41:28 GMT_QApache=24.95.75.202.1227066088818536; path=/; expires=Thu, 20-Nov-08 03:41:28 GMTT2996_timeout=1, max=100_"508264-45b8-4584984b2a640"12qrrs6_NSMutableDictionary\NSDictionary12uvv6_NSHTTPURLResponseInternal12xyyz6_NSHTTPURLResponse]NSURLResponse$)2DILbd !)579;!#%')+-/135BDFHJLNPRTVXZ\chv;AFf#&BGK_{mOE/* ::::: Global Text Styles ::::: */ .reContentWidth { text-align:center} .pageTitle { color:#0202a2; border-bottom:1px solid #0202a2; font-weight: bold!important; font-size:16px!important} .pageTitleRt { border-bottom:1px solid #0202a2} .pageBack a:link, .pageBack a:active, .pageBack a:visited { color:#0202a2; text-decoartion: none} .pageBack a:hover { color: #ff0000; text-decoration: underline} .md_text a:link, .md_text a:active, .md_text a:visited { color:#0202a2; text-decoartion: none} .md_text a:hover { color: #ff0000; text-decoration: underline} .resultsTextOn a:link, .resultsTextOn a:active, .resultsTextOn a:visited { color:#0202a2; text-decoartion: none} .resultsTextOn a:hover { color: #ff0000; text-decoration: underline} .displayTableText a:link, .displayTableText a:active, .displayTableText a:visited { color:#0202a2; text-decoartion: none} .displayTableText a:hover { color: #ff0000; text-decoration: underline} .displayTableCellLt a:link, .displayTableCellLt a:active, .displayTableCellLt a:visited, { color:#0202a2; text-decoartion: none} .displayTableCellLt a:hover { color: #ff0000; text-decoration: underline} .displayTableCellLtLast a:link, .displayTableCellLtLast a:active, .displayTableCellLtLast a:visited { color:#0202a2; text-decoartion: none} .displayTableCellLtLast a:hover { color: #ff0000; text-decoration: underline} .displayTableCellRt a:link, .displayTableCellRt a:active, .displayTableCellRt a:visited { color:#0202a2; text-decoartion: none} .displayTableCellRt a:hover { color: #ff0000; text-decoration: underline} .displayTableCell a:link, .displayTableCell a:active, .displayTableCell a:visited { color:#0202a2; text-decoartion: none} .displayTableCell a:hover { color: #ff0000; text-decoration: underline} .displayTableCellLast a:link, .displayTableCellLast a:active, .displayTableCellLast a:visited { color:#0202a2; text-decoartion: none} .displayTableCellLast a:hover { color: #ff0000; text-decoration: underline} /* Gradient Top & Bottom */ .boxHeaderText { color:#ffffff; vertical-align: middle; line-height: 24px!important} .boxFooterText a:link, .boxFooterText a:active, .boxFooterText a:visited, .boxFooterText a:hover { color: #ffffff!important} .boxTopLt { background-image:url(/ccimages/verticals/realestate/overrides/dispatch/boxTopLt.gif)} .boxTopBg { background-image:url(/ccimages/verticals/realestate/overrides/dispatch/boxTopBg.gif)} .boxTopRt { background-image:url(/ccimages/verticals/realestate/overrides/dispatch/boxTopRt.gif)} .boxBotLt { background-image:url(/ccimages/verticals/realestate/overrides/dispatch/boxBotLt.gif)} .boxBotBg { background-image:url(/ccimages/verticals/realestate/overrides/dispatch/boxBotBg.gif)} .boxBotRt { background-image:url(/ccimages/verticals/realestate/overrides/dispatch/boxBotRt.gif)} .displayTableBorder { border-right:1px solid #0202a2; border-left:1px solid #0202a2} .boxSubTop { border:1px solid #0202a2; background-color:#BFDEFD} .boxSubBottom { border:1px solid #0202a2; background-color:#BFDEFD} .boxHeaderBorder { border-bottom:1px solid #0202a2} .boxFooterBorder { border-top:1px solid #0202a2} /* Plain Box */ .plainBoxTopLt { background:url(/ccimages/verticals/realestate/overrides/dispatch/re_bg_plainBoxTopLt.gif) no-repeat} .plainBoxTopBg { background:url(/ccimages/verticals/realestate/overrides/dispatch/re_bg_plainBoxTopBg.gif) repeat-x} .plainBoxTopRt { background:url(/ccimages/verticals/realestate/overrides/dispatch/re_bg_plainBoxTopRt.gif) no-repeat} .plainBoxLt { background:url(/ccimages/verticals/realestate/overrides/dispatch/re_bg_plainBoxLt.gif) repeat-y} .plainBoxRt { background:url(/ccimages/verticals/realestate/overrides/dispatch/re_bg_plainBoxRt.gif) repeat-y} .plainBoxBotLt { background:url(/ccimages/verticals/realestate/overrides/dispatch/re_bg_plainBoxBotLt.gif) no-repeat} .plainBoxBotBg { background-image: url(/ccimages/verticals/realestate/overrides/dispatch/images/re_bg_plainBoxBotBg.gif)} .plainBoxBotRt { background:url(/ccimages/verticals/realestate/overrides/dispatch/re_bg_plainBoxBotRt.gif) no-repeat} /* Buttons */ .buttonClassREFlow { background: url(/ccimages/verticals/realestate/overrides/dispatch/buttonBkgdFlow.gif) repeat-x right} .buttonClassREFlowSm { background: url(/ccimages/verticals/realestate/overrides/dispatch/buttonBkgdFlow.gif) repeat-x right} .buttonClassFlowMini { background: url(/ccimages/verticals/realestate/overrides/dispatch/buttonBkgdFlowMini.gif) repeat-x right} /* Form Styles */ div.multipleCheckBox { border: 1px solid #0202a2 !important} .textbox, .textfield50, .textfield70, .textfield150, .textfield200, .dropdown, .textarea { border:1px solid #0202a2} /* bullet lists */ li.signInList { background-image: url(/ccimages/verticals/realestate/overrides/dispatch/re_icon_listBullet.gif)} .detailDesc ul { list-style-image:url(/ccimages/verticals/realestate/overrides/dispatch/re_icon_listBullet.gif)} .detailDesc li { list-style-image:url(/ccimages/verticals/realestate/overrides/dispatch/re_icon_listBullet.gif)} /* Detail Page */ .sellerTitle { background:url(/ccimages/verticals/realestate/overrides/dispatch/re_bg_gradTitleBar.gif) repeat-x; border:1px solid #0202a2; background-color:#075faf} .retsDisclaimerText { font-size: 10px; font-style: italic} /* Detail Page Text */ .detailPrice { color:#0202a2} /* Detail Page Tabs */ .detailsTabBorder { background: url(/ccimages/verticals/realestate/overrides/dispatch/re_tab_details_border.gif) repeat-x bottom} #detailsTab a { background:url(/ccimages/verticals/realestate/overrides/dispatch/re_tab_details_lt.gif) no-repeat left top} #detailsTab a span { background:url(/ccimages/verticals/realestate/overrides/dispatch/re_tab_details_rt.gif) no-repeat right top; color:#ffffff} #detailsTab a:hover span { color: #BFDEFD} #detailsTab .current a span { color:#0202a2 !important} #detailsTabContent { border-right: 1px solid #0202a20; border-bottom: 1px solid #0202a2; border-left: 1px solid #0202a2} .detailTabBorder { border-right: 1px solid #0202a2; border-bottom: 1px solid #0202a2; border-left: 1px solid #0202a2} /* Details Content */ #detailTabTable a:link, #detailTabTable a:active, #detailTabTable a:visited, #detailTabTable a:hover { color:#0202a2;} #detailTabTable .detailTabContentPriceRt { color:#0202a2} .tabSubTitle { color:#0202a2} .detailReturn a:link, .detailReturn a:active, .detailReturn a:visited { color:#0202a2; text-decoartion: none} .detailReturn a:hover { color: #ff0000; text-decoration: underline} .detailDisclaimer a:link, .detailDisclaimer a:active, .detailDisclaimer a:visited { color:#0202a2; text-decoartion: none} .detailDisclaimer a:hover { color: #ff0000; text-decoration: underline} /* Detail Tool Links */ .detailToolsText a:link, .detailToolsText a:active, .detailToolsText a:visited { color:#0202a2; text-decoartion: none} .detailToolsText a:hover { color: #ff0000; text-decoration: underline} /* Seller Column */ .sellerContent { border-right:1px solid #0202a2; border-left:1px solid #0202a2; border-bottom: 1px solid #0202a2} .sellerContent a:link, .sellerContent a:active, .sellerContent a:visited { color:#0202a2; text-decoartion: none} .sellerContent a:visited { color: #ff0000; text-decoration: underline} .sellerContentColor { background-color: #BFDEFD; border-right:1px solid #0202a2; border-left:1px solid #0202a2; border-bottom: 1px solid #0202a2} .sellerText a:link, .sellerText a:active, .sellerText a:visited { color:#0202a2; text-decoartion: none} .sellerText a:hover { color: #ff0000; text-decoration: underline} /* Search Form */ .searchFormRtBkgd a:link, .searchFormRtBkgd a:active, .searchFormRtBkgd a:link, .searchFormRtBkgd a:hover { color: #0202a2; text-decoration: underline} .titleBarBg { background-image:url(/ccimages/verticals/realestate/overrides/dispatch/re_bg_gradTitleBar.gif); border:1px solid #0202a2} .titleBarTitle { color:#ffffff; font: 14px Arial, Helvetica, sans-serif; font-weight:bold!important} .titleBarText { color:#ffffff; font: 11px; text-align: right} .searchTabTable { padding-top:5px; background-color:#FFFFFF; border-right: 1px solid #0202a2; border-bottom: 1px solid #0202a2; border-left: 1px solid #0202a2} .searchText a:link, .searchText a:active, .searchText a:visited { color:#0202a2; text-decoartion: none} .searchText a:hover { color: #ff0000; text-decoration: underline} .collapseExpandText a:link, .collapseExpandText a:active, .collapseExpandText a:visited { color:#0202a2; text-decoartion: none} .collapseExpandText a:hover { color: #ff0000; text-decoration: underline} .contentBorder { border-right:1px solid #0202a2; border-left:1px solid #0202a2} .contentBorderLast { border-right:1px solid #0202a2; border-bottom:1px solid #0202a2; border-left:1px solid #0202a2} #searchMenu ul li a { color: #0202a2} /* Results Page */ .currentSearchContainer { border:1px solid #0202a2} .currentSearchContainer td { padding: 4px 4px 4px 4px!important} .currentSearchText a:link, .currentSearchText a:active, .currentSearchText a:visited { color:#0202a2; font-size: 11px!important; text-decoartion: none} .currentSearchText a:hover { color: #ff0000; text-decoration: underline} /* Spotlight */ .spotlightDisplayTable a:link, .spotlightDisplayTable a:active, .spotlightDisplayTable a:visited { color:#0202a2; text-decoartion: none} .spotlightDisplayTable a:hover { color: #ff0000; text-decoration: underline} /* Spotlight Upsell */ .spotlightUpsellTable a:link, .spotlightUpsellTable a:active, .spotlightUpsellTable a:visited, .spotlightUpsellTable a:hover { color:#ffffff} b.ptop b, b.pbottom b { background:#cccccc} .spotlightDisplayTable { background-color:#cccccc} .spotlightUpsellTable { background-color:#075faf; color: #ffffff} /* Highlight Ad */ .resultsTable .resultsHighlightedRow { background-color:#BFDEFD} /* Standard Results Ad */ .resultsTable a:link { color:#0202a2} .resultsTable a:active, .resultsTable a:visited, .resultsTable a:hover { color:#0202a2; text-decoartion: none} b.uptop b, b.upbottom b { background: #BFDEFD} /* Map Results */ .mapLegendHeadPrice, .mapLegendHeadBR, .mapLegendHeadLoc{ color:#0202a2} /* Sign In/Create Account Page */ .signInContainer a:link, .signInContainer a:active, .signInContainer a:visited { color:#0202a2; text-decoartion: none} .signInContainer a:hover { color: #ff0000; text-decoration: underline} .checkbox { background-color:#BFDEFD} /* Ad Manager */ b.utop b, b.ubottom b { background:#0202a2} .uploadSubTitle { background-color: #0202a2; color: #ffffff} /* Agent Profile */ .agentName { color:#0202a2} /* Upload/CheckoutConfirm Pages */ .uploadSubBarText { background-color: #0202a2} .uploadSubBarText a:link, .uploadSubBarText a:active, .uploadSubBarText a:visited, .uploadSubBarText a:hover { color:#ffffff} .uploadSummaryTable .tableHeadLt, .uploadSummaryTable .tableHeadRt { background-color:#BFDEFD} .confirmPageContent a:link, .confirmPageContent a:active, .confirmPageContent a:visited { color:#0202a2; text-decoartion: none} .confirmPageContent a:hover { color: #ff0000; text-decoration: underline} /* Member Center */ .featProperty a:link, .featProperty a:active, .featProperty a:visited { color:#0202a2; text-decoartion: none} .featProperty a:hover { color: #ff0000; text-decoration: underline} .boxTopLtFeat { background-image:url(/ccimages/verticals/realestate/overrides/dispatch/boxTopLt.gif)} .boxTopBgFeat { background-image:url(/ccimages/verticals/realestate/overrides/dispatch/boxTopBg.gif)} .boxTopRtFeat { background-image:url(/ccimages/verticals/realestate/overrides/dispatch/boxTopRt.gif)} .boxBotLtFeat { background-image:url(/ccimages/verticals/realestate/overrides/dispatch/boxBotLt.gif)} .boxBotBgFeat { background-image:url(/ccimages/verticals/realestate/overrides/dispatch/boxBotBg.gif)} .boxBotRtFeat { background-image:url(/ccimages/verticals/realestate/overrides/dispatch/boxBotRt.gif)} .boxBorderFeat { border-right:1px solid #0202a2; border-left:1px solid #0202a2} .boxBorderFeatHeader { border-bottom: 1px solid #0202a2} .boxBorderFeatFooter { border-top: 1px solid #0202a2} .boxSubTopFeat { border:1px solid #0202a2; background-color:#BFDEFD} .boxSubBottomFeat { border:1px solid #0202a2; background-color:#BFDEFD} .memberContainerFeat a:link, .memberContainerFeat a:active, .memberContainerFeat a:visited { color:#0202a2; text-decoartion: none} .memberContainerFeat a:hover { color: #ff0000; text-decoration: underline} .boxFooterBorderFeat, .boxHeaderBorderFeat { border-top:1px solid #0202a2} .memberContainer a:link, .memberContainer a:active, .memberContainer a:visited { color:#0202a2; text-decoartion: none} .memberContainer a:hover { color: #ff0000; text-decoration: underline} /* Save Search Form */ .saveSearchContent { border-left: 1px solid #0202a2; border-right: 1px solid #0202a2} .boxHeader { border:1px solid #0202a2; background-color:#BFDEFD} .emailAlertContent { border-right: 1px solid #0202a2; border-bottom: 1px solid #0202a2; border-left: 1px solid #0202a2} /* NEW AD DETAIL PAGE */ .rePageTitle { color:#0202a2; border-bottom:1px solid #0202a2} .reTitlePrice { color: #0202a2} .detailsTabContent { border-right: 1px solid #0202a2; border-bottom: 1px solid #0202a2; border-left: 1px solid #0202a2} /* Info-Contact Section */ #reContactForm a:link, #reContactForm a:active, #reContactForm a:visited { color:#0202a2; text-decoartion: none} #reContactForm a:hover { color: #ff0000; text-decoration: underline} .reInfoLinks a:link, .reInfoLinks a:active, .reInfoLinks a:visited { color:#0202a2; text-decoartion: none} .reInfoLinks a:hover { color: #ff0000; text-decoration: underline} /* RE Tools*/ #reIconToolsContainer a:link, #reIconToolsContainer a:visited, #reIconToolsContainer a:active, #reIconToolsContainer a:hover { color:#0202a2; text-decoration: underline; } /* Detail Content Section */ .resultsTextOn a:link, .resultsTextOn a:active, .resultsTextOn a:visited { color:#0202a2; text-decoartion: none} .resultsTextOn a:hover { color: #ff0000; text-decoration: underline} .detailReturnLink a:link, .detailReturnLink a:active, .detailReturnLink a:visited { color:#0202a2; text-decoration:underline} .detailReturnLink a:hover { color: #ff0000; text-decoration: underline} #call4Num a:link, #call4Num a:active, #call4Num a:visited { color:#0202a2; text-decoration: underline; font-weight: normal} #call4Num a:hover { color: #ff0000; text-decoration: underline; font-weight: normal} /* Photo Upload */ .reTitleBar *{ background:#0202a2} .reTitleBar1{ margin-left:3px; margin-right:3px; padding-left:1px; padding-right:1px; border-left:1px solid #9292d7; border-right:1px solid #9292d7; background:#4141b9} .reTitleBar2{ margin-left:1px; margin-right:1px; padding-right:1px; padding-left:1px; border-left:1px solid #e5e5f5; border-right:1px solid #e5e5f5; background:#3232b3} .reTitleBar3{ margin-left:1px; margin-right:1px; border-left:1px solid #3232b3; border-right:1px solid #3232b3;} .reTitleBar4{ border-left:1px solid #9292d7; border-right:1px solid #9292d7} .reTitleBar5{ border-left:1px solid #4141b9; border-right:1px solid #4141b9} .reTitleBarfg{ background:#0202a2} .reUploadDel a:link, .reUploadDel a:active, .reUploadDel a:visited { color:#0202a2; text-decoartion: none} .reUploadDel a:hover { color: #ff0000; text-decoration: underline} /* Create Account */ #customizable a:link, #customizable a:active, #customizable a:visited{ color:#0202a2; text-decoartion: none} #customizable a:hover { color: #ff0000; text-decoration: underline} .castText a:link, .castText a:active, .castText a:visited { color:#0202a2; text-decoartion: none} .castText a:hover { color: #ff0000; text-decoration: underline} #rePopViewFullAd a:link, #rePopViewFullAd a:active, #rePopViewFullAd a:visited, #rePopViewFullAd a:hover { color: #ffffff; text-align: center; text-decoration: none;} #rePopSchool a:link, #rePopSchool a:active, #rePopSchool a:visited, #rePopSchool a:hover { color: #79827f; text-align: center; text-decoration: none;} .spotlightSeller { color: #ffffff} /* Featured Agent iFrame */ .featuredAgentName a:link, .featuredAgentName a:active, .featuredAgentName a:visited { color:#0202a2; text-decoartion: none} .featuredAgentName a:hover { color: #ff0000; text-decoration: underline} .featuredCallNumber div a:link, .featuredCallNumber div a:active, .featuredCallNumber div a:visited { color:#0202a2; text-decoartion: none} .featuredCallNumber div a:hover { color: #ff0000; text-decoration: underline} /* Product Migration */ .prepaidMenu a:link, .prepaidMenu a:active, .prepaidMenu a:visited { color:#0202a2} .prepaidMenu a:hover { color:#ff0000} .uploadSubTitleTable td.uploadSubTitle { background-color: #0202a2; color: #ffffff} legend.reMediaKitProductType { color:#0202a2} .titleUnderline { border-bottom: none} #prepaidMenuContainer li.reIconProducts { background: url(/ccimages/verticals/realestate/default/re_icon_products.gif) no-repeat 0 50%; padding: 3px 0 3px 20px; margin: .4em 20px 0 0;} #prepaidMenuContainer li.reIconProductsExp { background: url(/ccimages/verticals/realestate/default/re_icon_productsExp.gif) no-repeat 0 50%; padding: 3px 0 3px 20px; margin: .4em 20px 0 0;} #prepaidMenuContainer li.reIconPackages { background: url(/ccimages/verticals/realestate/default/re_icon_packages.gif) no-repeat 0 50%; padding: 3px 0 3px 20px; margin: .4em 20px 0 0;} #prepaidMenuContainer li.reIconPackagesExp { background: url(/ccimages/verticals/realestate/default/re_icon_packagesExp.gif) no-repeat 0 50%; padding: 3px 0 3px 20px; margin: .4em 20px 0 0;} _ohttp://realestate.columbusrealestate.com/ccincludes/css/verticals/realestate/overrides/dispatch/re_dispatch.css MOobplist00 Y$archiverX$versionT$topX$objects_NSKeyedArchiver _WebResourceResponse! )/078?KWZNS.objectsWNS.keys@ABCDEFGHIJLMNOPQRSTUV VServer_X-Wr-Modification]Last-ModifiedZConnectionTDate^Content-Length\X-Powered-ByTEtag\Content-TypeSP3p_X-Squisher-Notice_1Apache/1.3.33 (Unix) PHP/5.2.3 mod_gzip/1.3.26.1a_Wed, 19 Nov 2008 03:27:52 GMTZkeep-alive_Wed, 19 Nov 2008 03:42:50 GMTT1675YPHP/5.2.3_ 1976caa4337bbb6afc60263bef8c22a0_(CP="ALL DSP COR ADM TAI OUR DEL NOR PRE"_Image served from cache12mnno6_NSMutableDictionary\NSDictionary12qrr6_NSHTTPURLResponseInternal12tuuv6_NSHTTPURLResponse]NSURLResponse$)2DILbd  '3579  #+79;=?ACEGIKMY[]_acegikmoqx$DOot~6;?SwaOJFIFHHC   (1#%(:3=<9387@H\N@DWE78PmQW_bghg>Mqypdx\egcC//cB8BccccccccccccccccccccccccccccccccccccccccccccccccccKd"=!1A"QTadq#2D3bBRSc!"1AQ ?9XɷUZǃ=O*~+|jkծ' zZ'E=[wFt5va(2.7T9?gpwR>"YfX!r7_S}ƳRGu%u 瘲3FNiD.& 8[l~mq1E$U6 *ڑq%PlI՝NSOLRb@[*=yrvAIbf:/K8X[c윦t(;*GawS] }F K7&acHݘs<(J^,|[!_d|@-T)q*:TqRHY HMwPJö.a2}SskGaWx\3 U7j@'W K,NqX<0!qi0 )#9( 1Ljщ@l 6"UNz Iؠ*澆܋Th",Z@RMɪIh0Oy.UaQC +f ڹ:xjI݂]rK {*D~xՉK- f$/6 'c`X&( :Pxe2ɹ:s2)s%[:sn)QԝcT'gbl1(}>2EX Y)<:QSb xlFw^U>{nj M쯽ݻIMjVR@#Qomk#8T@`zҤl?KWZNS.objectsWNS.keys@ABCDEFGHIJLMNOPQRSTUV VServer_X-Wr-Modification]Last-ModifiedZConnectionTDate^Content-Length\X-Powered-ByTEtag\Content-TypeSP3p_X-Squisher-Notice_1Apache/1.3.33 (Unix) PHP/5.2.3 mod_gzip/1.3.26.1a_Wed, 19 Nov 2008 00:54:32 GMTZkeep-alive_Wed, 19 Nov 2008 03:41:28 GMTT1621YPHP/5.2.3_ 2bd55130320c1176529faa0580862cc4_(CP="ALL DSP COR ADM TAI OUR DEL NOR PRE"_Image served from cache12mnno6_NSMutableDictionary\NSDictionary12qrr6_NSHTTPURLResponseInternal12tuuv6_NSHTTPURLResponse]NSURLResponse$)2DILbd  '3579  #+79;=?ACEGIKMY[]_acegikmoqx$DOot~6;?SwaOUJFIFHHC   (1#%(:3=<9387@H\N@DWE78PmQW_bghg>Mqypdx\egcC//cB8BccccccccccccccccccccccccccccccccccccccccccccccccccKd"5!1"AQaq2#Rb34BU!1AQ ?Ĥ^fp͐ǁqg*ۺJ#d4q)${F%mA !Z)-GPGwŨUk->hV=@q+Ѣ<4tI. s< GUH2t&MFs&m=Iїs Fٴ#(BU7ɋٵG^qJ<)h2j~L/M]1тgbv<H=0!Icc|Ht7v89ClЁcpM'Q[_VUAjQn=KuǴ"IpXA54:s&1@YL@,*.} #ZCn w4V2('#(,uRU } >ȵE>C*ˢDJ,9 yԪ@t}>=$Az|LJ`wYZUaԬ:f롱] t9n5nǙ#]Sۍge#=3MxfؐhªjѪ.gG-9% /50[_:->^C0A~ |vN_w *q_@XxT σO,Q3 ^ΖV+#utr럝G )$H_3?O6GcO"'_pcz%MuҢpwCC>_m/> /quImA{Tu+ABYOt U mX(>g,kI*"Ƥjx ;V|g F# H`]˖ XRs6¢LT??KWZNS.objectsWNS.keys@ABCDEFGHIJLMNOPQRSTUV VServer_X-Wr-Modification]Last-ModifiedZConnectionTDate^Content-Length\X-Powered-ByTEtag\Content-TypeSP3p_X-Squisher-Notice_1Apache/1.3.33 (Unix) PHP/5.2.3 mod_gzip/1.3.26.1a_Wed, 19 Nov 2008 03:21:45 GMTZkeep-alive_Wed, 19 Nov 2008 03:42:50 GMTU17304YPHP/5.2.3_ 2477a8cd33fe2ab28a9324fe6e20f8b6_(CP="ALL DSP COR ADM TAI OUR DEL NOR PRE"_Image served from cache12mnno6_NSMutableDictionary\NSDictionary12qrr6_NSHTTPURLResponseInternal12tuuv6_NSHTTPURLResponse]NSURLResponse$)2DILbd  '3579 $,8:<>@BDFHJLNZ\^`bdfhjlnpry%EPpv8=AUwcOCJFIFHHExifII* (1)2iCASIO COMPUTER CO.,LTD.EX-Z600HHPaint Shop Pro Photo 12.002008:10:20 15:12:43dl"0221t   0100\/  0 2008:09:26 10:22:202008:09:26 10:22:20Z d0100R98FN(V6HHx   (!%"/#%)*,-,!140+4(+,+  ++++++++++++++++++++++++++++++++++++++++++++++++++ }!1AQa"q2#BR$3br %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz w!1AQaq"2B #3Rbr $4%&'()*56789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz ? (P0 ז04RqzI[]⯉O93cd}{+(oYRu-_q[8g}N^$m &E%I^~qGFgtOE$dY84jRPP@5TehGPխ,bi.'AbY;udsoæ;hHa(_^Tsù.I$.zv-I=iX;[5 9tf\[ q~m@~g5V*cYb<S̤-642qVcM&@/Yemk1y pA8.~UjڧMBVg ]+XȇPƱ(@+T"Lw'2!I=]AuN8y>g^t_,,ec{I$dyD^J窔VxM T%}bj#qʈ,pg |H4n!Bpۣv qJRVx|wWu#ָ^Rv{kWIy\(v/p0QQ]ӼiزgIY7Z:fgʑ>eNeӟƻa4{2iٛ5< û7˟$7)h:1249?OAU9!f9ó:KM6[ϯ#rǘŚ';$ l`1XG޴]'{no67xq#~9ȭ؞fަ|ZG&/Xp1bnYe Y4uCr_U)>_Vg!ʟԓ P7Q&ܞ#&avc85)|?#hncWC3F{nMNEOs+EocH&\jy'EضX"8+ a ,GK (ݢmV@QGQ4<[[ GT)WSp+S4i]'uYQ@$֥EWL歼G^G,ٱcLPzgvb!9XEXf)Xe{Ӕ$ħՓKՀ`qd2'#Ԥ!V kIص+dV]wr!V=~ӳt_}\/Ke_K.#Tb͒z/4LKc2+HBǠP\q(\djLwF|W|F,R܃zhCj6 VWZBO,SE>In<\Unt̠YZ|v?4">f(4*(]dv1WaQ(`A ,Kĥ2՜{#Xmg'rfc]|hŮ ɺOս51}i .q|Iԗ35qnJYf*HQ}kg4~^7kg\>6tG(RY[&HӶ?Zuw!^ [M|C*eCre8';F^&ޔA O~g8iNnprz޳Q5WSO J*e] o+ye;ITg'>֜cb|Am8*JǕG*:;]⟴t;polקNz1s7%bP6B9yk.6HȥaJ:3Ij3? o\H3?-8ty#ր<;Y/x5ά7ە[Xg7;H6:9ۓZɞz8gk<&swRm{$uZόDwKu$4nQVg:\guڿi]ؕ8o?z[vp8w"mx>~1pT oO_YUsqEԴ۸U2sZ助96G4V[MPJnc>ӺGik^5ɅÜ^%x\-OIvZdك^=I=daӧKᮘ+Mz/b--MB)c@AGN}kEmg q*xZԉ>Eχ8M*xA=/o΃ȔxIqu"?g#V_Xm. AK9#ZSNW5]vW7RjXy|g\QM-|E5F` ''êc$%$e͝{=Zm{]FRwF⇋h9CV+تJϒ]4" 55FAo#0<0Su|}OգG<㈦ř7>ih@){h>tzp4wdB9#=jT\ԙ5!t!klUjR2ІEf  zuU䕬K帶+HE;F1M7^Oqz}5]X2*2:۞,M-ΥJ ~Kd|g#<ផP+z:|1Cg֜WSiV@ y> a6frx+KebZY~9nV.$Ƚ;PUJ6?9p3{G9ⅷ`%DȬe/NQNkE&j[ G9;9cZJrcRnroX2\ۡ#1I(nc=ў{51IKq~;SjZh>T{֜9 کKW<{:R#_;/cnA.>JMኗ6g;J} Tgc'җx6zCGyHpjNCrvDڗ#Ѡ.7!bN:R:oeym%0"dVC({'&z2j16#e=*T3HxYT>9gV2fc'6=@ Osfw<(-ENz4@l?I1|5 ;u6NӢ(4)'^W^F܅)t_Onq^\l.8OOE+C,zƐy E%t 16SJu*>.|VrB˧HdmGGd+yVKb1o2fV>:,Er֡|5lOxzf𾱸4۰p?CSj[:¹L '5?VؗMˤj(ɥ#}:;e)/;fTiItw4@4rɏ\DIǪ~1i$ ,DǞ̧Vbt-xؑ k@%4[)𶺌Lè#ӥ?bc(YR-c ciOKXSIDZ`ďSobRA$!-Ádba\]fɖLxTJN!-gn?5r&lOi:kmEp!Rrj >1iwhckb(⹹cH$ ct=i;\>qM}D9E /F}|w Q`$J,2iZ.mނA4_x9Y0;aU @ wyB !QyEh$xZ@8v87s@gNیP׏L18!lwc$cvF{Xʀd|۸@ %cd?ZvbA_NJ,!D ~ nr<DBCn#*G( ,K{JVn֘ %sӓ@I#T:SmICC_PROFILE]LinomntrRGB XYZ  1acspMSFTIEC sRGB-HP cprtP3desclwtptbkptrXYZgXYZ+bXYZ?dmndSpdmddvuedKview$lumimeas $tech- rTRC9 gTRC E bTRCQ textCopyright (c) 1998 Hewlett-Packard CompanydescsRGB IEC61966-2.1sRGB IEC61966-2.1XYZ QXYZ XYZ o8XYZ bXYZ $descIEC http://www.iec.chIEC http://www.iec.chdesc.IEC 61966-2.1 Default RGB colour space - sRGB.IEC 61966-2.1 Default RGB colour space - sRGBdesc,Reference Viewing Condition in IEC61966-2.1,Reference Viewing Condition in IEC61966-2.1view_. \XYZ L VPWmeassig CRT curv #(-27;@EJOTY^chmrw| %+28>ELRY`gnu| &/8AKT]gqz !-8COZfr~ -;HUcq~ +:IXgw'7HYj{+=Oat 2FZn  % : O d y  ' = T j " 9 Q i  * C \ u & @ Z t .Id %A^z &Ca~1Om&Ed#Cc'Ij4Vx&IlAe@e Ek*Qw;c*R{Gp@j>i  A l !!H!u!!!"'"U"""# #8#f###$$M$|$$% %8%h%%%&'&W&&&''I'z''( (?(q(())8)k))**5*h**++6+i++,,9,n,,- -A-v--..L.../$/Z///050l0011J1112*2c223 3F3334+4e4455M555676r667$7`7788P8899B999:6:t::;-;k;;<' >`>>?!?a??@#@d@@A)AjAAB0BrBBC:C}CDDGDDEEUEEF"FgFFG5G{GHHKHHIIcIIJ7J}JK KSKKL*LrLMMJMMN%NnNOOIOOP'PqPQQPQQR1R|RSS_SSTBTTU(UuUVV\VVWDWWX/X}XYYiYZZVZZ[E[[\5\\]']x]^^l^__a_``W``aOaabIbbcCccd@dde=eef=ffg=ggh?hhiCiijHjjkOkklWlmm`mnnknooxop+ppq:qqrKrss]sttptu(uuv>vvwVwxxnxy*yyzFz{{c{|!||}A}~~b~#G k͂0WGrׇ;iΉ3dʋ0cʍ1fΏ6n֑?zM _ɖ4 uL$h՛BdҞ@iءG&vVǥ8nRĩ7u\ЭD-u`ֲK³8%yhYѹJº;.! zpg_XQKFAǿ=ȼ:ɹ8ʷ6˶5̵5͵6ζ7ϸ9к<Ѿ?DINU\dlvۀ܊ݖޢ)߯6DScs 2F[p(@Xr4Pm8Ww)Kmcurv #(-27;@EJOTY^chmrw| %+28>ELRY`gnu| &/8AKT]gqz !-8COZfr~ -;HUcq~ +:IXgw'7HYj{+=Oat 2FZn  % : O d y  ' = T j " 9 Q i  * C \ u & @ Z t .Id %A^z &Ca~1Om&Ed#Cc'Ij4Vx&IlAe@e Ek*Qw;c*R{Gp@j>i  A l !!H!u!!!"'"U"""# #8#f###$$M$|$$% %8%h%%%&'&W&&&''I'z''( (?(q(())8)k))**5*h**++6+i++,,9,n,,- -A-v--..L.../$/Z///050l0011J1112*2c223 3F3334+4e4455M555676r667$7`7788P8899B999:6:t::;-;k;;<' >`>>?!?a??@#@d@@A)AjAAB0BrBBC:C}CDDGDDEEUEEF"FgFFG5G{GHHKHHIIcIIJ7J}JK KSKKL*LrLMMJMMN%NnNOOIOOP'PqPQQPQQR1R|RSS_SSTBTTU(UuUVV\VVWDWWX/X}XYYiYZZVZZ[E[[\5\\]']x]^^l^__a_``W``aOaabIbbcCccd@dde=eef=ffg=ggh?hhiCiijHjjkOkklWlmm`mnnknooxop+ppq:qqrKrss]sttptu(uuv>vvwVwxxnxy*yyzFz{{c{|!||}A}~~b~#G k͂0WGrׇ;iΉ3dʋ0cʍ1fΏ6n֑?zM _ɖ4 uL$h՛BdҞ@iءG&vVǥ8nRĩ7u\ЭD-u`ֲK³8%yhYѹJº;.! zpg_XQKFAǿ=ȼ:ɹ8ʷ6˶5̵5͵6ζ7ϸ9к<Ѿ?DINU\dlvۀ܊ݖޢ)߯6DScs 2F[p(@Xr4Pm8Ww)Kmcurv #(-27;@EJOTY^chmrw| %+28>ELRY`gnu| &/8AKT]gqz !-8COZfr~ -;HUcq~ +:IXgw'7HYj{+=Oat 2FZn  % : O d y  ' = T j " 9 Q i  * C \ u & @ Z t .Id %A^z &Ca~1Om&Ed#Cc'Ij4Vx&IlAe@e Ek*Qw;c*R{Gp@j>i  A l !!H!u!!!"'"U"""# #8#f###$$M$|$$% %8%h%%%&'&W&&&''I'z''( (?(q(())8)k))**5*h**++6+i++,,9,n,,- -A-v--..L.../$/Z///050l0011J1112*2c223 3F3334+4e4455M555676r667$7`7788P8899B999:6:t::;-;k;;<' >`>>?!?a??@#@d@@A)AjAAB0BrBBC:C}CDDGDDEEUEEF"FgFFG5G{GHHKHHIIcIIJ7J}JK KSKKL*LrLMMJMMN%NnNOOIOOP'PqPQQPQQR1R|RSS_SSTBTTU(UuUVV\VVWDWWX/X}XYYiYZZVZZ[E[[\5\\]']x]^^l^__a_``W``aOaabIbbcCccd@dde=eef=ffg=ggh?hhiCiijHjjkOkklWlmm`mnnknooxop+ppq:qqrKrss]sttptu(uuv>vvwVwxxnxy*yyzFz{{c{|!||}A}~~b~#G k͂0WGrׇ;iΉ3dʋ0cʍ1fΏ6n֑?zM _ɖ4 uL$h՛BdҞ@iءG&vVǥ8nRĩ7u\ЭD-u`ֲK³8%yhYѹJº;.! zpg_XQKFAǿ=ȼ:ɹ8ʷ6˶5̵5͵6ζ7ϸ9к<Ѿ?DINU\dlvۀ܊ݖޢ)߯6DScs 2F[p(@Xr4Pm8Ww)KmC   '!%"."%()+,+ /3/*2'*+*C  ***************************************************KdB !1A"Qq2a#B3CRr$bs(!1AQ2aBR ?q-Q8 KD! >hiU*7ȵW]K[53} H(uG@ԁ>idK@q 4y8j<6I%JGu!D9d\o2\tپԔ kVGc$ᯤc5.$u^/}ri8Tn<\^Tbq 3QkQYB 2c)~<0I<e q)x1I[m ySqhUu6 eI8^Rt qeڵ[\CH23q>}+xE2d9l}Y?{jD:|N3) eKd`+eor5:BE-ȱ7&8YJ]R >85[e9^K@+BaȪ #d?TR6ĕz1qM2piXv;I aZYtũ3>%.:R;7֮8ڱdmlkm9儁D6M$V587jP}L2` ~?mTAn\qgZ$ǵ\zN;~(; (Z*_286 qG6hc?UKJ Nи8w:<_auաVP-wpun$!%JR%BwPڥ?K3qB #9;6X1TR|֟}Sp[! !j y>Gf88m8 R跦%<)ryjzbXan(%+Qr4Ml,0$2RF|EV58onۮ.puL)H[ ǝzvr>"3u=[IPdjr[Q"ܳbv(R3\o1r)K-.ۭ/+`9u/7kFn[wĥ! IDo[ԆLv cC`F`neחلg9d#(nŠ%b;![m œ9 %rcq}DIw<dk jC͘sBSʙrE#u"_-1R~q9NJ'?G:s ֆqS|XX-,-Ne-pLw5Cq$m5/?BC 6r-Sң33Il@@]R\} J AC B4E$Fޗ;?Tcul}4צGF'CJԤFz@89ߵxr?0{,☆sϡ9T#_http://slb.adicio.com/squisher.php?u=http%3A%2F%2Fslb.careercast.com%2Ffiles%2Fps-b-02%2F2008-10%2F20%2F13%2F20%2Fweb_48fce818a4c5.jpg&h=75 lfO Featured Properties
$385,000
Powell, OH
Coldwell Banker King Thompson

$127,000
Columbus, OH
Coldwell Banker King Thompson

$130,000
Galloway, OH

_ -->_http://realestate.columbusrealestate.com/properties/search/_featuredProperties.php?pp=3&qRand=Y&qFlow=v&header=n&showAllFeaturedLink=y&bgcolor=%23ffffff&bordercolor=%23ffffff&nopageview=y&nouniquevisitor=y lfOClick here to find out more! _ -->_http://ad.doubleclick.net/adi/N3016.SpecificMedia/B3221153.5;sz=728x90;click=http://adopt.specificclick.net/click.sm?adv=1363&href=;ord=1227066166387? lfO clip
_ -->_dhttp://cdn3.specificmedia.com/img/?ag=1&pb=1844480566&pg=462073410920676518&us=NKV-O8HJzp&rnd=971533!3Ir{Zjs|Y///4=D==BUVJVS[4ppepnuf&/c":::A8[9\\a,6?B#-6Ư PY [   QQQVD`i!""(&.d'(*f, ,,1o2W2228@@AA!A#DE<EEJbU<UUZg^_J_Sctt~txaAJ$Pr  6!z!&'("(--56T6_:9:x::<RsvāԘԻUXc |dE   *A!Y)p**9)9L: :::?8A 2 2 2 8r ? ? ? E Kc K K Qn ; ^ . 1 < \    &  + ’