Index: /trunk/autoquest-htmlmonitor-test/.classpath
===================================================================
--- /trunk/autoquest-htmlmonitor-test/.classpath	(revision 864)
+++ /trunk/autoquest-htmlmonitor-test/.classpath	(revision 864)
@@ -0,0 +1,31 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<classpath>
+	<classpathentry kind="src" output="target/test-classes" path="src/test/java">
+		<attributes>
+			<attribute name="optional" value="true"/>
+			<attribute name="maven.pomderived" value="true"/>
+		</attributes>
+	</classpathentry>
+	<classpathentry kind="src" output="target/classes" path="src/main/java">
+		<attributes>
+			<attribute name="optional" value="true"/>
+			<attribute name="maven.pomderived" value="true"/>
+		</attributes>
+	</classpathentry>
+	<classpathentry excluding="**" kind="src" output="target/test-classes" path="src/test/resources">
+		<attributes>
+			<attribute name="maven.pomderived" value="true"/>
+		</attributes>
+	</classpathentry>
+	<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.6">
+		<attributes>
+			<attribute name="maven.pomderived" value="true"/>
+		</attributes>
+	</classpathentry>
+	<classpathentry kind="con" path="org.eclipse.m2e.MAVEN2_CLASSPATH_CONTAINER">
+		<attributes>
+			<attribute name="maven.pomderived" value="true"/>
+		</attributes>
+	</classpathentry>
+	<classpathentry kind="output" path="target/classes"/>
+</classpath>
Index: /trunk/autoquest-htmlmonitor-test/.project
===================================================================
--- /trunk/autoquest-htmlmonitor-test/.project	(revision 864)
+++ /trunk/autoquest-htmlmonitor-test/.project	(revision 864)
@@ -0,0 +1,23 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<projectDescription>
+	<name>autoquest-htmlmonitor-test</name>
+	<comment></comment>
+	<projects>
+	</projects>
+	<buildSpec>
+		<buildCommand>
+			<name>org.eclipse.jdt.core.javabuilder</name>
+			<arguments>
+			</arguments>
+		</buildCommand>
+		<buildCommand>
+			<name>org.eclipse.m2e.core.maven2Builder</name>
+			<arguments>
+			</arguments>
+		</buildCommand>
+	</buildSpec>
+	<natures>
+		<nature>org.eclipse.m2e.core.maven2Nature</nature>
+		<nature>org.eclipse.jdt.core.javanature</nature>
+	</natures>
+</projectDescription>
Index: /trunk/autoquest-htmlmonitor-test/.settings/org.eclipse.jdt.core.prefs
===================================================================
--- /trunk/autoquest-htmlmonitor-test/.settings/org.eclipse.jdt.core.prefs	(revision 864)
+++ /trunk/autoquest-htmlmonitor-test/.settings/org.eclipse.jdt.core.prefs	(revision 864)
@@ -0,0 +1,5 @@
+eclipse.preferences.version=1
+org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.6
+org.eclipse.jdt.core.compiler.compliance=1.6
+org.eclipse.jdt.core.compiler.problem.forbiddenReference=warning
+org.eclipse.jdt.core.compiler.source=1.6
Index: /trunk/autoquest-htmlmonitor-test/.settings/org.eclipse.m2e.core.prefs
===================================================================
--- /trunk/autoquest-htmlmonitor-test/.settings/org.eclipse.m2e.core.prefs	(revision 864)
+++ /trunk/autoquest-htmlmonitor-test/.settings/org.eclipse.m2e.core.prefs	(revision 864)
@@ -0,0 +1,4 @@
+activeProfiles=
+eclipse.preferences.version=1
+resolveWorkspaceProjects=true
+version=1
Index: /trunk/autoquest-htmlmonitor-test/pom.xml
===================================================================
--- /trunk/autoquest-htmlmonitor-test/pom.xml	(revision 864)
+++ /trunk/autoquest-htmlmonitor-test/pom.xml	(revision 864)
@@ -0,0 +1,24 @@
+<project
+    xmlns="http://maven.apache.org/POM/4.0.0"
+    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+    xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
+>
+    <parent>
+        <groupId>de.ugoe.cs.quest</groupId>
+        <artifactId>quest-test</artifactId>
+        <version>0.0.1-SNAPSHOT</version>
+    </parent>
+    <modelVersion>4.0.0</modelVersion>
+    <artifactId>autoquest-htmlmonitor-test</artifactId>
+    <properties>
+        <tested-artifactId>autoquest-htmlmonitor</tested-artifactId>
+    </properties>
+    <dependencies>
+        <dependency>
+            <groupId>org.apache.httpcomponents</groupId>
+            <artifactId>httpclient</artifactId>
+            <version>4.2.1</version>
+            <scope>test</scope>
+        </dependency>
+    </dependencies>
+</project>
Index: /trunk/autoquest-htmlmonitor-test/src/test/java/de/ugoe/cs/autoquest/htmlmonitor/HtmlMonitorServerTest.java
===================================================================
--- /trunk/autoquest-htmlmonitor-test/src/test/java/de/ugoe/cs/autoquest/htmlmonitor/HtmlMonitorServerTest.java	(revision 864)
+++ /trunk/autoquest-htmlmonitor-test/src/test/java/de/ugoe/cs/autoquest/htmlmonitor/HtmlMonitorServerTest.java	(revision 864)
@@ -0,0 +1,422 @@
+package de.ugoe.cs.autoquest.htmlmonitor;
+
+import static org.junit.Assert.*;
+
+import org.apache.http.HttpEntity;
+import org.apache.http.HttpResponse;
+import org.apache.http.client.methods.HttpPost;
+import org.apache.http.entity.ContentType;
+import org.apache.http.entity.StringEntity;
+import org.apache.http.impl.client.DefaultHttpClient;
+import org.junit.After;
+import org.junit.Before;
+import org.junit.Test;
+
+import de.ugoe.cs.util.console.TextConsole;
+
+/**
+ * <p>
+ * TODO comment
+ * </p>
+ * 
+ * @author Patrick Harms
+ */
+public class HtmlMonitorServerTest implements HtmlMonitorMessageListener {
+    
+    /**
+     * 
+     */
+    public static final TextConsole CONSOLE = new TextConsole();
+    
+    /**
+     * 
+     */
+    private static final int PORT = 19098;
+
+    /**
+     * 
+     */
+    private HtmlEvent[] events;
+
+    /**
+     * 
+     */
+    private String eventHandlingError;
+
+    /**
+     * 
+     */
+    private HtmlMonitorServer server;
+
+    /**
+     * 
+     */
+    @Before
+    public void setUp() throws Exception {
+        server = new HtmlMonitorServer(PORT, this);
+        server.init();
+        server.start();
+    }
+    
+    /**
+     * 
+     */
+    @After
+    public void tearDown() throws Exception {
+        events = null;
+        eventHandlingError = null;
+
+        if (server != null) {
+            try {
+                server.stop();
+            }
+            finally {
+                server = null;
+            }
+        }
+    }
+    
+
+    /**
+     * 
+     */
+    @Test
+    public void testSimpleMessage() throws Exception {
+        String message =
+            "{" +
+            "  \"message\": {" +
+            "    \"clientInfos\": {" +
+            "      \"clientId\":\"123\"," +
+            "      \"userAgent\":\"Agent\"," +
+            "      \"title\":\"Title\"," +
+            "      \"url\":\"http://host/path\"" +
+            "    }," +
+            "    \"events\":" +
+            "    [ {" +
+            "        \"time\":\"12345\"," +
+            "        \"path\":\"/html[0]/body(id=gsr)\"," +
+            "        \"eventType\":\"onunload\"" +
+            "      }" +
+            "    ]" +
+            "  }" +
+            "}";
+        
+        sendMessageAndAssertResponse(message);
+        
+        if (eventHandlingError != null) {
+            fail(eventHandlingError);
+        }
+        
+        assertNotNull(events);
+        assertEquals(1, events.length);
+        
+        assertEquals(new Long(12345), events[0].getTime());
+        assertEquals("/html[0]/body(id=gsr)", events[0].getPath());
+        assertEquals("onunload", events[0].getEventType());
+        
+        assertNull(events[0].getKey());
+        assertNull(events[0].getScrollPosition());
+        assertNull(events[0].getCoordinates());
+        
+        assertEquals("Title", events[0].getClientInfos().getTitle());
+        assertEquals("Agent", events[0].getClientInfos().getUserAgent());
+        assertEquals("http://host/path", events[0].getClientInfos().getUrl().toString());
+        assertEquals("123", events[0].getClientInfos().getClientId());
+    }
+
+    /**
+     * 
+     */
+    @Test
+    public void testComplexMessage() throws Exception {
+        String message =
+            "{" +
+            "  \"message\": {" +
+            "    \"clientInfos\": {" +
+            "      \"clientId\":\"123\"," +
+            "      \"userAgent\":\"Agent\"," +
+            "      \"title\":\"Title\"," +
+            "      \"url\":\"http://host/path\"" +
+            "    }," +
+            "    \"events\":" +
+            "    [" +
+            "      {" +
+            "        \"time\":\"1\"," +
+            "        \"path\":\"/html[0]/body(id=gsr)/input(id=input1)\"," +
+            "        \"eventType\":\"onclick\"," +
+            "        \"coordinates\": [\"194\", \"7\"]" +
+            "      }," +
+            "      {" +
+            "        \"time\":\"2\"," +
+            "        \"path\":\"/html[0]/body(id=gsr)/input(id=input2)\"," +
+            "        \"eventType\":\"ondblclick\"," +
+            "        \"coordinates\": [\"194\", \"7\"]" +
+            "      }," +
+            "      {" +
+            "        \"time\":\"3\"," +
+            "        \"path\":\"/html[0]/body(id=gsr)/input(id=input3)\"," +
+            "        \"eventType\":\"onfocus\"" +
+            "      }," +
+            "      {" +
+            "        \"time\":\"4\"," +
+            "        \"path\":\"/html[0]/body(id=gsr)/input(id=input4)\"," +
+            "        \"eventType\":\"onclick\"," +
+            "        \"coordinates\": [\"125\", \"14\"]" +
+            "      }," +
+            "      {" +
+            "        \"time\":\"5\"," +
+            "        \"path\":\"/html[0]/body(id=gsr)/input(id=input5)\"," +
+            "        \"eventType\":\"onfocus\"" +
+            "      }," +
+            "      {" +
+            "        \"time\":\"6\"," +
+            "        \"path\":\"/html[0]/body(id=gsr)/input(id=input6)\"," +
+            "        \"eventType\":\"onfocus\"" +
+            "      }," +
+            "      {" +
+            "        \"time\":\"7\"," +
+            "        \"path\":\"/html[0]/body(id=gsr)/input(id=input7)\"," +
+            "        \"eventType\":\"onfocus\"" +
+            "      }," +
+            "      {" +
+            "        \"time\":\"8\"," +
+            "        \"path\":\"/html[0]/body(id=gsr)/input(id=input8)\"," +
+            "        \"eventType\":\"onclick\"," +
+            "        \"coordinates\": [\"255\", \"4\"]" +
+            "      }," +
+            "      {" +
+            "        \"time\":\"9\"," +
+            "        \"path\":\"/html[0]/body(id=gsr)\"," +
+            "        \"eventType\":\"onscroll\"," +
+            "        \"scrollPosition\":\"165\"" +
+            "      }," +
+            "      {" +
+            "        \"time\":\"10\"," +
+            "        \"path\":\"/html[0]/body(id=gsr)/input(id=input10)\"," +
+            "        \"eventType\":\"onclick\"," +
+            "        \"coordinates\": [\"516\", \"154\"]" +
+            "      }" +
+            "    ]" +
+            "  }" +
+            "}";
+        
+        sendMessageAndAssertResponse(message);
+        
+        if (eventHandlingError != null) {
+            fail(eventHandlingError);
+        }
+        
+        assertNotNull(events);
+        assertEquals(10, events.length);
+
+        for (int i = 0; i < events.length; i++) {
+            assertEquals("event " + i, new Long(i + 1), events[i].getTime());
+            
+            if (i == 8) {
+                assertEquals("event " + i, "/html[0]/body(id=gsr)", events[i].getPath());
+            }
+            else {
+                assertEquals("event " + i, "/html[0]/body(id=gsr)/input(id=input" + (i + 1) + ")",
+                             events[i].getPath());
+            }
+            
+            if ((i == 1)) {
+                assertEquals("event " + i, "ondblclick", events[i].getEventType());
+            }
+            else if ((i == 2) || ((4 <= i) && (i <= 6))) {
+                assertEquals("event " + i, "onfocus", events[i].getEventType());
+            }
+            else if ((i == 8)) {
+                assertEquals("event " + i, "onscroll", events[i].getEventType());
+            }
+            else {
+                assertEquals("event " + i, "onclick", events[i].getEventType());
+            }
+            
+            assertNull("event " + i, events[i].getKey());
+            
+            if ((i == 8)) {
+                assertNotNull("event " + i, events[i].getScrollPosition());
+                assertEquals("event " + i, new Integer(165), events[i].getScrollPosition());
+            }
+            else {
+                assertNull("event " + i, events[i].getScrollPosition());
+            }
+            
+            if ((i == 2) || ((4 <= i) && (i <= 6)) || (i == 8)) {
+                assertNull("event " + i, events[i].getCoordinates());
+            }
+            else {
+                assertNotNull("event " + i, events[i].getCoordinates());
+                assertEquals("event " + i, 2, events[i].getCoordinates().length);
+            }
+            
+            assertEquals("event " + i, "Title", events[i].getClientInfos().getTitle());
+            assertEquals("event " + i, "Agent", events[i].getClientInfos().getUserAgent());
+            assertEquals("event " + i, "http://host/path",
+                         events[i].getClientInfos().getUrl().toString());
+            assertEquals("event " + i, "123", events[i].getClientInfos().getClientId());
+        }
+    }
+    
+    /**
+     * 
+     */
+    @Test
+    public void testInvalidMessages() throws Exception {
+        String message = "}";
+        
+        sendMessageAndAssertResponse(message);
+            
+        if (eventHandlingError != null) {
+            fail(eventHandlingError);
+        }
+
+        assertNull(events);
+
+        message = "blaublbidalslkdjflqkerowercalksdjfdlkkjdjfk";
+        
+        sendMessageAndAssertResponse(message);
+            
+        if (eventHandlingError != null) {
+            fail(eventHandlingError);
+        }
+
+        assertNull(events);
+        
+        // the following message doesn't work because of the missing scroll position in the event
+        message =
+            "{" +
+            "  \"message\": {" +
+            "    \"clientInfos\": {" +
+            "      \"clientId\":\"123\"," +
+            "      \"userAgent\":\"Agent\"," +
+            "      \"title\":\"Title\"," +
+            "      \"url\":\"http://host/path\"" +
+            "    }," +
+            "    \"events\":" +
+            "    [ {" +
+            "        \"time\":\"12345\"," +
+            "        \"path\":\"/html[0]/body(id=gsr)\"," +
+            "        \"eventType\":\"onscroll\"" +
+            "      }" +
+            "    ]" +
+            "  }" +
+            "}";
+        
+        sendMessageAndAssertResponse(message);
+        
+        if (eventHandlingError != null) {
+            fail(eventHandlingError);
+        }
+
+        assertNull(events);
+        
+        // the following message doesn't work because of the missing client id
+        message =
+            "{" +
+            "  \"message\": {" +
+            "    \"clientInfos\": {" +
+            "      \"userAgent\":\"Agent\"," +
+            "      \"title\":\"Title\"," +
+            "      \"url\":\"http://host/path\"" +
+            "    }," +
+            "    \"events\":" +
+            "    [ {" +
+            "        \"time\":\"12345\"," +
+            "        \"path\":\"/html[0]/body(id=gsr)\"," +
+            "        \"eventType\":\"onunload\"" +
+            "      }" +
+            "    ]" +
+            "  }" +
+            "}";
+        
+        sendMessageAndAssertResponse(message);
+        
+        if (eventHandlingError != null) {
+            fail(eventHandlingError);
+        }
+
+        assertNull(events);
+        
+        // the following message doesn't work because of the invalid time stamp
+        message =
+            "{" +
+            "  \"message\": {" +
+            "    \"clientInfos\": {" +
+            "      \"clientId\":\"123\"," +
+            "      \"userAgent\":\"Agent\"," +
+            "      \"title\":\"Title\"," +
+            "      \"url\":\"http://host/path\"" +
+            "    }," +
+            "    \"events\":" +
+            "    [ {" +
+            "        \"time\":\"blub\"," +
+            "        \"path\":\"/html[0]/body(id=gsr)\"," +
+            "        \"eventType\":\"onunload\"" +
+            "      }" +
+            "    ]" +
+            "  }" +
+            "}";
+        
+        sendMessageAndAssertResponse(message);
+        
+        if (eventHandlingError != null) {
+            fail(eventHandlingError);
+        }
+
+        assertNull(events);
+        
+    }
+    
+    /* (non-Javadoc)
+     * @see de.ugoe.cs.autoquest.htmlmonitor.HtmlMonitoringListener#handleEvents(de.ugoe.cs.quest.htmlmonitor.HtmlClientInfos, de.ugoe.cs.quest.htmlmonitor.HtmlEvent[])
+     */
+    @Override
+    public void handleMessage(HtmlClientInfos clientInfos, HtmlEvent[] events) {
+        if (clientInfos == null) {
+            eventHandlingError = "client infos were null";
+        }
+        else if (events == null) {
+            eventHandlingError = "events were null";
+        }
+        else {
+            for (HtmlEvent event : events) {
+                if (!clientInfos.equals(event.getClientInfos())) {
+                    eventHandlingError = "one of the events did not have a correct client info";
+                }
+            }
+            
+            this.events = events;
+        }
+    }
+
+    /**
+     * <p>
+     * TODO: comment
+     * </p>
+     *
+     * @param message
+     */
+    private void sendMessageAndAssertResponse(String message) throws Exception {
+        DefaultHttpClient httpclient = new DefaultHttpClient();
+        HttpPost httpPost = new HttpPost("http://localhost:" + PORT + "/");
+        HttpEntity entity = new StringEntity(message, ContentType.APPLICATION_JSON);
+        httpPost.setEntity(entity);
+        
+        try {
+            HttpResponse response = httpclient.execute(httpPost);
+            
+            // the monitor always returns 200 without any additional information. The client must
+            // never get more or less information. This is especially important for preventing
+            // hackers from finding out more
+            assertEquals(200, response.getStatusLine().getStatusCode());
+            assertTrue
+                ((response.getEntity() == null) || (response.getEntity().getContentLength() == 0));
+        }
+        finally {
+            httpPost.releaseConnection();
+        }
+    }
+
+}
Index: /trunk/autoquest-htmlmonitor-test/src/test/java/de/ugoe/cs/autoquest/htmlmonitor/HtmlMonitorTest.java
===================================================================
--- /trunk/autoquest-htmlmonitor-test/src/test/java/de/ugoe/cs/autoquest/htmlmonitor/HtmlMonitorTest.java	(revision 864)
+++ /trunk/autoquest-htmlmonitor-test/src/test/java/de/ugoe/cs/autoquest/htmlmonitor/HtmlMonitorTest.java	(revision 864)
@@ -0,0 +1,397 @@
+package de.ugoe.cs.autoquest.htmlmonitor;
+
+import static org.junit.Assert.*;
+
+import java.io.BufferedReader;
+import java.io.File;
+import java.io.FileInputStream;
+import java.io.InputStreamReader;
+import java.util.ArrayList;
+import java.util.List;
+
+import org.apache.http.HttpEntity;
+import org.apache.http.HttpResponse;
+import org.apache.http.client.methods.HttpPost;
+import org.apache.http.entity.ContentType;
+import org.apache.http.entity.StringEntity;
+import org.apache.http.impl.client.DefaultHttpClient;
+import org.junit.After;
+import org.junit.Before;
+import org.junit.Test;
+
+import de.ugoe.cs.util.console.TextConsole;
+
+/**
+ * <p>
+ * TODO comment
+ * </p>
+ * 
+ * @author Patrick Harms
+ */
+public class HtmlMonitorTest {
+
+    /**
+     * 
+     */
+    public static final TextConsole CONSOLE = new TextConsole();
+    
+    /**
+     * 
+     */
+    private final static String LOG_FILE_DIR = "target/tmp/logfiles/";
+    
+    /**
+     * 
+     */
+    private static final int PORT = 19098;
+
+    /**
+     * 
+     */
+    private HtmlMonitor htmlMonitor;
+
+    /**
+     *
+     */
+    @Before
+    public void setUp() throws Exception {
+        htmlMonitor = new HtmlMonitor(new String[] { LOG_FILE_DIR, Integer.toString(PORT) });
+        htmlMonitor.init();
+        htmlMonitor.start();
+    }
+
+    /**
+     *
+     */
+    @After
+    public void tearDown() throws Exception {
+        if (htmlMonitor != null) {
+            try {
+                htmlMonitor.stop();
+            }
+            finally {
+                htmlMonitor = null;
+            }
+        }
+        
+        deleteFiles(new File(LOG_FILE_DIR));
+    }
+
+    /**
+     *
+     */
+    @Test
+    public void testOneSimpleMessage() throws Exception {
+        String clientId = "123";
+        
+        String message =
+            "{" +
+            "  \"message\": {" +
+            "    \"clientInfos\": {" +
+            "      \"clientId\":\"" + clientId + "\"," +
+            "      \"userAgent\":\"Agent\"," +
+            "      \"title\":\"Title\"," +
+            "      \"url\":\"http://host/path\"" +
+            "    }," +
+            "    \"events\":" +
+            "    [ {" +
+            "        \"time\":\"12345\"," +
+            "        \"path\":\"/html[0]/body(id=gsr)\"," +
+            "        \"eventType\":\"onunload\"" +
+            "      }" +
+            "    ]" +
+            "  }" +
+            "}";
+
+        sendMessageAndAssertResponse(message);
+        
+        File logFile = new File(LOG_FILE_DIR + File.separator + clientId + File.separator +
+                                "htmlmonitor_" + clientId + ".log");
+        
+        assertTrue(logFile.exists());
+        
+        String[] logEntries = readLogEntries(logFile);
+        assertEquals(1, logEntries.length);
+        
+        assertLogMessage(logEntries[0], clientId, "12345", "Title", "http://host/path", "Agent",
+                         "onunload", "/html[0]/body(id=gsr)");
+    }
+
+    /**
+     *
+     */
+    @Test
+    public void testSeveralMessagesInOneSession() throws Exception {
+        String clientId = "123";
+       
+        String message =
+            "{" +
+            "  \"message\": {" +
+            "    \"clientInfos\": {" +
+            "      \"clientId\":\"" + clientId + "\"," +
+            "      \"userAgent\":\"Agent\"," +
+            "      \"title\":\"Title\"," +
+            "      \"url\":\"http://host/path\"" +
+            "    }," +
+            "    \"events\":" +
+            "    [" +
+            "      {" +
+            "        \"time\":\"1\"," +
+            "        \"path\":\"/html[0]/body(id=gsr)/input(id=input1)\"," +
+            "        \"eventType\":\"onclick\"," +
+            "        \"coordinates\": [\"194\", \"7\"]" +
+            "      }," +
+            "      {" +
+            "        \"time\":\"2\"," +
+            "        \"path\":\"/html[0]/body(id=gsr)/input(id=input2)\"," +
+            "        \"eventType\":\"ondblclick\"," +
+            "        \"coordinates\": [\"194\", \"7\"]" +
+            "      }," +
+            "      {" +
+            "        \"time\":\"3\"," +
+            "        \"path\":\"/html[0]/body(id=gsr)/input(id=input3)\"," +
+            "        \"eventType\":\"onfocus\"" +
+            "      }," +
+            "      {" +
+            "        \"time\":\"4\"," +
+            "        \"path\":\"/html[0]/body(id=gsr)/input(id=input4)\"," +
+            "        \"eventType\":\"onclick\"," +
+            "        \"coordinates\": [\"125\", \"14\"]" +
+            "      }," +
+            "      {" +
+            "        \"time\":\"5\"," +
+            "        \"path\":\"/html[0]/body(id=gsr)/input(id=input5)\"," +
+            "        \"eventType\":\"onfocus\"" +
+            "      }," +
+            "      {" +
+            "        \"time\":\"6\"," +
+            "        \"path\":\"/html[0]/body(id=gsr)/input(id=input6)\"," +
+            "        \"eventType\":\"onfocus\"" +
+            "      }," +
+            "      {" +
+            "        \"time\":\"7\"," +
+            "        \"path\":\"/html[0]/body(id=gsr)/input(id=input7)\"," +
+            "        \"eventType\":\"onfocus\"" +
+            "      }," +
+            "      {" +
+            "        \"time\":\"8\"," +
+            "        \"path\":\"/html[0]/body(id=gsr)/input(id=input8)\"," +
+            "        \"eventType\":\"onclick\"," +
+            "        \"coordinates\": [\"255\", \"4\"]" +
+            "      }," +
+            "      {" +
+            "        \"time\":\"9\"," +
+            "        \"path\":\"/html[0]/body(id=gsr)\"," +
+            "        \"eventType\":\"onscroll\"," +
+            "        \"scrollPosition\":\"165\"" +
+            "      }," +
+            "      {" +
+            "        \"time\":\"10\"," +
+            "        \"path\":\"/html[0]/body(id=gsr)/input(id=input10)\"," +
+            "        \"eventType\":\"onclick\"," +
+            "        \"coordinates\": [\"516\", \"154\"]" +
+            "      }" +
+            "    ]" +
+            "  }" +
+            "}";
+ 
+        sendMessageAndAssertResponse(message);
+        
+        File logFile = new File(LOG_FILE_DIR + File.separator + clientId + File.separator +
+                                "htmlmonitor_" + clientId + ".log");
+        
+        assertTrue(logFile.exists());
+        
+        String[] logEntries = readLogEntries(logFile);
+        assertEquals(10, logEntries.length);
+        
+        assertLogMessage(logEntries[0], clientId, "1", "Title", "http://host/path", "Agent",
+                         "onclick", "/html[0]/body(id=gsr)/input(id=input1)", "194,7");
+        assertLogMessage(logEntries[1], clientId, "2", "Title", "http://host/path", "Agent",
+                         "ondblclick", "/html[0]/body(id=gsr)/input(id=input2)", "194,7");
+        assertLogMessage(logEntries[2], clientId, "3", "Title", "http://host/path", "Agent",
+                         "onfocus", "/html[0]/body(id=gsr)/input(id=input3)");
+        assertLogMessage(logEntries[3], clientId, "4", "Title", "http://host/path", "Agent",
+                         "onclick", "/html[0]/body(id=gsr)/input(id=input4)", "125,14");
+        assertLogMessage(logEntries[4], clientId, "5", "Title", "http://host/path", "Agent",
+                         "onfocus", "/html[0]/body(id=gsr)/input(id=input5)");
+        assertLogMessage(logEntries[5], clientId, "6", "Title", "http://host/path", "Agent",
+                         "onfocus", "/html[0]/body(id=gsr)/input(id=input6)");
+        assertLogMessage(logEntries[6], clientId, "7", "Title", "http://host/path", "Agent",
+                         "onfocus", "/html[0]/body(id=gsr)/input(id=input7)");
+        assertLogMessage(logEntries[7], clientId, "8", "Title", "http://host/path", "Agent",
+                         "onclick", "/html[0]/body(id=gsr)/input(id=input8)", "255,4");
+        assertLogMessage(logEntries[8], clientId, "9", "Title", "http://host/path", "Agent",
+                         "onscroll", "/html[0]/body(id=gsr)", "165");
+        assertLogMessage(logEntries[9], clientId, "10", "Title", "http://host/path", "Agent",
+                         "onclick", "/html[0]/body(id=gsr)/input(id=input10)", "516,154");
+    }
+
+    /**
+     *
+     */
+    @Test
+    public void testSeveralSessions() throws Exception {
+        String clientId = "123";
+       
+        String message =
+            "{" +
+            "  \"message\": {" +
+            "    \"clientInfos\": {" +
+            "      \"clientId\":\"" + clientId + "\"," +
+            "      \"userAgent\":\"Agent\"," +
+            "      \"title\":\"Title\"," +
+            "      \"url\":\"http://host/path\"" +
+            "    }," +
+            "    \"events\":" +
+            "    [ {" +
+            "        \"time\":\"12345\"," +
+            "        \"path\":\"/html[0]/body(id=gsr)\"," +
+            "        \"eventType\":\"onunload\"" +
+            "      }" +
+            "    ]" +
+            "  }" +
+            "}";
+
+        sendMessageAndAssertResponse(message);
+        
+        int numberOfSessions = 10;
+        for (int i = 0; i < numberOfSessions; i++) {
+            htmlMonitor.stop();
+            htmlMonitor = new HtmlMonitor(new String[] { LOG_FILE_DIR, Integer.toString(PORT) });
+            htmlMonitor.init();
+            htmlMonitor.start();
+            sendMessageAndAssertResponse(message);
+        }
+        
+        // assert 9 already rotated log files
+        for (int i = 0; i < (numberOfSessions - 1); i++) {
+            File logFile = new File(LOG_FILE_DIR + File.separator + clientId + File.separator +
+                                    "htmlmonitor_" + clientId + "_00" + i + ".log");
+       
+            assertTrue(logFile.exists());
+       
+            String[] logEntries = readLogEntries(logFile);
+            assertEquals(1, logEntries.length);
+       
+            assertLogMessage(logEntries[0], clientId, "12345", "Title", "http://host/path", "Agent",
+                             "onunload", "/html[0]/body(id=gsr)");
+        }
+
+        // and now the last but current one
+        File logFile = new File(LOG_FILE_DIR + File.separator + clientId + File.separator +
+                                "htmlmonitor_" + clientId + ".log");
+   
+        assertTrue(logFile.exists());
+   
+        String[] logEntries = readLogEntries(logFile);
+        assertEquals(1, logEntries.length);
+   
+        assertLogMessage(logEntries[0], clientId, "12345", "Title", "http://host/path", "Agent",
+                         "onunload", "/html[0]/body(id=gsr)");
+    }
+
+    /**
+     * <p>
+     * TODO: comment
+     * </p>
+     *
+     * @param message
+     */
+    private void sendMessageAndAssertResponse(String message) throws Exception {
+        DefaultHttpClient httpclient = new DefaultHttpClient();
+        HttpPost httpPost = new HttpPost("http://localhost:" + PORT + "/");
+        HttpEntity entity = new StringEntity(message, ContentType.APPLICATION_JSON);
+        httpPost.setEntity(entity);
+        
+        try {
+            HttpResponse response = httpclient.execute(httpPost);
+            
+            // the monitor always returns 200 without any additional information. The client must
+            // never get more or less information. This is especially important for preventing
+            // hackers from finding out more
+            assertEquals(200, response.getStatusLine().getStatusCode());
+            assertTrue
+                ((response.getEntity() == null) || (response.getEntity().getContentLength() == 0));
+        }
+        finally {
+            httpPost.releaseConnection();
+        }
+    }
+
+    /**
+     * <p>
+     * TODO: comment
+     * </p>
+     *
+     * @param logFile
+     * @return
+     */
+    private String[] readLogEntries(File logFile) throws Exception {
+        List<String> logEntries = new ArrayList<String>();
+        BufferedReader reader = null;
+        
+        try {
+            reader = new BufferedReader
+                (new InputStreamReader(new FileInputStream(logFile)));
+        
+            String line = null;
+            while ((line = reader.readLine()) != null) {
+                logEntries.add(line);
+            }
+        }
+        finally {
+            if (reader != null) {
+                reader.close();
+            }
+        }
+        
+        return logEntries.toArray(new String[logEntries.size()]);
+    }
+
+    /**
+     *
+     */
+    private void assertLogMessage(String    logMessage,
+                                  String... assertedMessageContent)
+    {
+        StringBuffer assertedMessage = new StringBuffer();
+        
+        for (int i = 0; i < assertedMessageContent.length; i++) {
+            if (i > 0) {
+                assertedMessage.append(' ');
+            }
+            
+            assertedMessage.append('"');
+            assertedMessage.append(assertedMessageContent[i]);
+            assertedMessage.append('"');
+        }
+        
+        assertEquals(assertedMessage.toString(), logMessage);
+    }
+
+    /**
+     * <p>
+     * TODO: comment
+     * </p>
+     *
+     * @param file
+     */
+    private void deleteFiles(File file) {
+        if (file.exists()) {
+            if (file.isDirectory()) {
+                for (File child : file.listFiles()) {
+                    deleteFiles(child);
+                }
+            }
+            
+            try {
+                file.delete();
+            }
+            catch (Exception e) {
+                // ignore and delete as much as possible
+            }
+        }
+    }
+
+}
Index: /trunk/autoquest-htmlmonitor-test/src/test/resources/test.html
===================================================================
--- /trunk/autoquest-htmlmonitor-test/src/test/resources/test.html	(revision 864)
+++ /trunk/autoquest-htmlmonitor-test/src/test/resources/test.html	(revision 864)
@@ -0,0 +1,4099 @@
+<!DOCTYPE html>
+<html itemscope="itemscope" itemtype="http://schema.org/WebPage">
+<head>
+<meta http-equiv="content-type" content="text/html; charset=UTF-8">
+<meta itemprop="image" content="/images/google_favicon_128.png">
+<title>Google</title>
+<script>window.google={kEI:"HW1kUJSQNcqztAax2oDwCw",getEI:function(a){var b;while(a&&!(a.getAttribute&&(b=a.getAttribute("eid"))))a=a.parentNode;return b||google.kEI},https:function(){return window.location.protocol=="https:"},kEXPI:"17259,37102,39523,39977,4000116,4000354,4000461,4000473,4000519,4000542,4000545,4000553,4000646,4000743,4000769,4000833,4000841,4000974,4001007,4001098,4001127,4001192",kCSI:{e:"17259,37102,39523,39977,4000116,4000354,4000461,4000473,4000519,4000542,4000545,4000553,4000646,4000743,4000769,4000833,4000841,4000974,4001007,4001098,4001127,4001192",ei:"HW1kUJSQNcqztAax2oDwCw"},authuser:0,
+ml:function(){},pageState:"#",kHL:"de",time:function(){return(new Date).getTime()},log:function(a,b,c,e){var d=new Image,h=google,i=h.lc,f=h.li,j="";d.onerror=(d.onload=(d.onabort=function(){delete i[f]}));i[f]=d;if(!c&&b.search("&ei=")==-1)j="&ei="+google.getEI(e);var g=c||"/gen_204?atyp=i&ct="+a+"&cad="+b+j+"&zx="+google.time();
+var k=/^http:/i;if(k.test(g)&&google.https()){google.ml(new Error("GLMM"),false,{src:g});delete i[f];return}d.src=g;h.li=f+1},lc:[],li:0,j:{en:1,l:function(){google.fl=true},e:function(){google.fl=true},
+b:!(!location.hash)&&!(!location.hash.match("[#&]((q|fp)=|tbs=simg|tbs=sbi)")),bv:21,cf:"",pm:"p",pl:[],mc:0,sc:0.5,u:"c9c918f0"},Toolbelt:{},y:{},x:function(a,b){google.y[a.id]=[a,b];return false}};
+(function(){var a=google.j;window.onpopstate=function(){a.psc=1};for(var b=0,c;c=["ad","api","bc","is","p","pa","ac","pc","pah","ph","sa","sifp","slp","spf","spn","xx","zc","zz"][b++];)(function(e){a[e]=function(){a.pl.push([e,arguments])}})(c)})();if(!window.chrome)window.chrome={};window.chrome.sv=2.00;if(!window.chrome.searchBox)window.chrome.searchBox=
+{};window.chrome.searchBox.onsubmit=function(){google.x({id:"psyapi"},function(){var a=encodeURIComponent(window.chrome.searchBox.value);google.nav.search({q:a,sourceid:"chrome-psyapi2"})})};
+window.google.sn="webhp";window.google.timers={};window.google.startTick=function(a,b){window.google.timers[a]={t:{start:(new Date).getTime()},bfr:!(!b)}};window.google.tick=function(a,b,c){if(!window.google.timers[a])google.startTick(a);window.google.timers[a].t[b]=c||(new Date).getTime()};google.startTick("load",true);try{
+window.google.pt=window.gtbExternal&&window.gtbExternal.pageT();}catch(u){}
+(function(){'use strict';var f=null,i=this;var k="undefined"!=typeof navigator&&/Macintosh/.test(navigator.userAgent);var p=/\s*;\s*/,r=function(h){var c=q;if(!c.h.hasOwnProperty(h)){var n;n=function(b){var a;a:{a=h;"click"==a&&(k&&b.metaKey||!k&&b.ctrlKey)&&(a="clickmod");for(var t=b.srcElement||b.target,d=t;d&&d!=this;d=d.parentNode){var E=d,u,e=E;u=a;var v=e.__jsaction;if(!v){var v=e.__jsaction={},l=f;"getAttribute"in e&&(l=e.getAttribute("jsaction"));if(e=l)for(var e=e.split(p),l=0,n=e?e.length:0;l<n;l++){var j=e[l];if(j){var g=j.indexOf(":"),m=-1!=g,w=m?j.substr(0,g).replace(/^\s+/,"").replace(/\s+$/,""):"click",j=m?j.substr(g+1).replace(/^\s+/,"").replace(/\s+$/,""):j;v[w]=j}}}if(u=v[u]){a={eventType:a,event:b,targetElement:t,action:u,actionElement:E};break a}}a=f}a&&(b.stopPropagation?b.stopPropagation():b.cancelBubble=!0,"A"==a.actionElement.tagName&&"click"==h&&(b.preventDefault?b.preventDefault():b.returnValue=!1),c.d?c.d(a):(t=a,b=(d=i.document)&&!d.createEvent&&d.createEventObject?d.createEventObject(b):b,t.event=b,c.c.push(a)))};var g;g=function(b){var a=h,c=n,d=!1;if(b.addEventListener){if("focus"==a||"blur"==a)d=!0;b.addEventListener(a,c,d)}else if(b.attachEvent){"focus"==a?a="focusin":"blur"==a&&(a="focusout");var g=c,c=function(a){a||(a=window.event);return g.call(b,a)};b.attachEvent("on"+a,c)}return{i:a,k:c,capture:d}};c.h[h]=n;c.g.push(g);for(var m=0;m<c.a.length;++m){var w=c.a[m];w.c.push(g.call(f,w.a))}}},x=function(){this.a=s;this.c=[]};var q=new function(){this.g=[];this.a=[];this.h={};this.d=f;this.c=[]},y=q,s=window.document.documentElement,z;a:{for(var A=0;A<y.a.length;A++){for(var B=y.a[A].a,C=s;B!=C&&C.parentNode;)C=C.parentNode;if(B==C){z=!0;break a}}z=!1}if(!z){for(var D=new x,F=0;F<y.g.length;++F)D.c.push(y.g[F].call(f,D.a));y.a.push(D)}r("click");r("clickmod");r("focus");r("focusin");r("blur");r("focusout");r("mousedown");r("mouseout");r("mouseover");r("mouseup");var G=function(h){var c=q;c.d=h;c.c&&(0<c.c.length&&h(c.c),c.c=f)},H=["google","jsad"],I=i;!(H[0]in I)&&I.execScript&&I.execScript("var "+H[0]);for(var J;H.length&&(J=H.shift());)!H.length&&void 0!==G?I[J]=G:I=I[J]?I[J]:I[J]={};}).call(window);</script>
+<style>
+#gb {
+	font: 13px/27px Arial, sans-serif;
+	height: 102px
+}
+
+#gbz,#gbg {
+	position: absolute;
+	white-space: nowrap;
+	top: 0;
+	height: 30px;
+	z-index: 1000
+}
+
+#gbz {
+	left: 0;
+	padding-left: 4px
+}
+
+#gbg {
+	right: 0;
+	padding-right: 5px
+}
+
+#gbs {
+	background: transparent;
+	position: absolute;
+	top: -999px;
+	visibility: hidden;
+	z-index: 998
+}
+
+.gbto #gbs {
+	background: #fff
+}
+
+#gbx3,#gbx4 {
+	background-color: #2d2d2d;
+	background-image: none;
+	_background-image: none;
+	background-position: 0 -138px;
+	background-repeat: repeat-x;
+	border-bottom: 1px solid #000;
+	font-size: 24px;
+	height: 29px;
+	_height: 30px;
+	opacity: 1;
+	filter: alpha(opacity = 100);
+	position: absolute;
+	top: 0;
+	width: 100%;
+	z-index: 990
+}
+
+#gbx3 {
+	left: 0
+}
+
+#gbx4 {
+	right: 0
+}
+
+#gbb {
+	position: relative
+}
+
+#gbbw {
+	left: 0;
+	position: absolute;
+	top: 102px;
+	width: 100%
+}
+
+.gbtcb {
+	position: absolute;
+	visibility: hidden
+}
+
+#gbz .gbtcb {
+	right: 0
+}
+
+#gbg .gbtcb {
+	left: 0
+}
+
+.gbxx {
+	display: none !important
+}
+
+.gbxo {
+	opacity: 0 !important;
+	filter: alpha(opacity = 0) !important
+}
+
+.gbm {
+	position: absolute;
+	z-index: 999;
+	top: -999px;
+	visibility: hidden;
+	text-align: left;
+	border: 1px solid #bebebe;
+	background: #fff;
+	-moz-box-shadow: -1px 1px 1px rgba(0, 0, 0, .2);
+	-webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, .2);
+	box-shadow: 0 2px 4px rgba(0, 0, 0, .2)
+}
+
+.gbrtl .gbm {
+	-moz-box-shadow: 1px 1px 1px rgba(0, 0, 0, .2)
+}
+
+.gbto .gbm,.gbto #gbs {
+	top: 51px;
+	visibility: visible
+}
+
+#gbz .gbm,#gbz #gbs {
+	left: 0
+}
+
+#gbg .gbm,#gbg #gbs {
+	right: 0
+}
+
+.gbxms {
+	background-color: #ccc;
+	display: block;
+	position: absolute;
+	z-index: 1;
+	top: -1px;
+	left: -2px;
+	right: -2px;
+	bottom: -2px;
+	opacity: .4;
+	-moz-border-radius: 3px;
+	filter: progid:DXImageTransform.Microsoft.Blur(pixelradius=5 );
+	*opacity: 1;
+	*top: -2px;
+	*left: -5px;
+	*right: 5px;
+	*bottom: 4px;
+	-ms-filter: "progid:DXImageTransform.Microsoft.Blur(pixelradius=5)";
+	opacity: 1\0/;
+	top: -4px\0/;
+	left: -6px\0/;
+	right: 5px\0/;
+	bottom: 4px\0/
+}
+
+.gbma {
+	position: relative;
+	top: -1px;
+	border-style: solid dashed dashed;
+	border-color: transparent;
+	border-top-color: #c0c0c0;
+	display: -moz-inline-box;
+	display: inline-block;
+	font-size: 0;
+	height: 0;
+	line-height: 0;
+	width: 0;
+	border-width: 3px 3px 0;
+	padding-top: 1px;
+	left: 4px
+}
+
+#gbztms1,#gbi4m1,#gbi4s,#gbi4t {
+	zoom: 1
+}
+
+.gbtc,.gbmc,.gbmcc {
+	display: block;
+	list-style: none;
+	margin: 0;
+	padding: 0
+}
+
+.gbmc {
+	background: #fff;
+	padding: 10px 0;
+	position: relative;
+	z-index: 2;
+	zoom: 1
+}
+
+.gbt {
+	position: relative;
+	display: -moz-inline-box;
+	display: inline-block;
+	line-height: 27px;
+	padding: 0;
+	vertical-align: top
+}
+
+.gbt {
+	*display: inline
+}
+
+.gbto {
+	box-shadow: 0 2px 4px rgba(0, 0, 0, .2);
+	-moz-box-shadow: 0 2px 4px rgba(0, 0, 0, .2);
+	-webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, .2)
+}
+
+.gbzt,.gbgt {
+	cursor: pointer;
+	display: block;
+	text-decoration: none !important
+}
+
+span#gbg6,span#gbg4 {
+	cursor: default
+}
+
+.gbts {
+	border-left: 1px solid transparent;
+	border-right: 1px solid transparent;
+	display: block;
+	*display: inline-block;
+	padding: 0 5px;
+	position: relative;
+	z-index: 1000
+}
+
+.gbts {
+	*display: inline
+}
+
+.gbto .gbts {
+	background: #fff;
+	border-color: #bebebe;
+	color: #36c;
+	padding-bottom: 1px;
+	padding-top: 2px
+}
+
+.gbz0l .gbts {
+	color: #fff;
+	font-weight: bold
+}
+
+.gbtsa {
+	padding-right: 9px
+}
+
+#gbz .gbzt,#gbz .gbgt,#gbg .gbgt {
+	color: #ccc !important
+}
+
+.gbtb2 {
+	display: block;
+	border-top: 2px solid transparent
+}
+
+.gbto .gbzt .gbtb2,.gbto .gbgt .gbtb2 {
+	border-top-width: 0
+}
+
+.gbtb .gbts {
+	background: url(//ssl.gstatic.com/gb/images/b_8d5afc09.png);
+	_background: url(//ssl.gstatic.com/gb/images/b8_3615d64d.png);
+	background-position: -27px -22px;
+	border: 0;
+	font-size: 0;
+	padding: 29px 0 0;
+	*padding: 27px 0 0;
+	width: 1px
+}
+
+.gbzt-hvr,.gbzt:focus,.gbgt-hvr,.gbgt:focus {
+	background-color: transparent;
+	background-image: none;
+	_background-image: none;
+	background-position: 0 -102px;
+	background-repeat: repeat-x;
+	outline: none;
+	text-decoration: none !important
+}
+
+.gbpdjs .gbto .gbm {
+	min-width: 99%
+}
+
+.gbz0l .gbtb2 {
+	border-top-color: transparent !important
+}
+
+#gbi4s,#gbi4s1 {
+	font-weight: bold
+}
+
+#gbg6.gbgt-hvr,#gbg6.gbgt:focus {
+	background-color: transparent;
+	background-image: none
+}
+
+.gbg4a {
+	font-size: 0;
+	line-height: 0
+}
+
+.gbg4a .gbts {
+	padding: 27px 5px 0;
+	*padding: 25px 5px 0
+}
+
+.gbto .gbg4a .gbts {
+	padding: 29px 5px 1px;
+	*padding: 27px 5px 1px
+}
+
+#gbi4i,#gbi4id {
+	left: 5px;
+	border: 0;
+	height: 24px;
+	position: absolute;
+	top: 1px;
+	width: 24px
+}
+
+.gbto #gbi4i,.gbto #gbi4id {
+	top: 3px
+}
+
+.gbi4p {
+	display: block;
+	width: 24px
+}
+
+#gbi4id {
+	background-position: -44px -101px
+}
+
+#gbmpid {
+	background-position: 0 0
+}
+
+#gbmpi,#gbmpid {
+	border: none;
+	display: inline-block;
+	height: 48px;
+	width: 48px
+}
+
+#gbmpiw {
+	display: inline-block;
+	line-height: 9px;
+	padding-left: 20px;
+	margin-top: 10px;
+	position: relative
+}
+
+#gbmpi,#gbmpid,#gbmpiw {
+	*display: inline
+}
+
+#gbg5 {
+	font-size: 0
+}
+
+#gbgs5 {
+	padding: 5px !important
+}
+
+.gbto #gbgs5 {
+	padding: 7px 5px 6px !important
+}
+
+#gbi5 {
+	background: url(//ssl.gstatic.com/gb/images/b_8d5afc09.png);
+	_background: url(//ssl.gstatic.com/gb/images/b8_3615d64d.png);
+	background-position: 0 0;
+	display: block;
+	font-size: 0;
+	height: 17px;
+	width: 16px
+}
+
+.gbto #gbi5 {
+	background-position: -6px -22px
+}
+
+.gbn .gbmt,.gbn .gbmt:visited,.gbnd .gbmt,.gbnd .gbmt:visited {
+	color: #dd8e27 !important
+}
+
+.gbf .gbmt,.gbf .gbmt:visited {
+	color: #900 !important
+}
+
+.gbmt,.gbml1,.gbmlb,.gbmt:visited,.gbml1:visited,.gbmlb:visited {
+	color: #36c !important;
+	text-decoration: none !important
+}
+
+.gbmt,.gbmt:visited {
+	display: block
+}
+
+.gbml1,.gbmlb,.gbml1:visited,.gbmlb:visited {
+	display: inline-block;
+	margin: 0 10px
+}
+
+.gbml1,.gbmlb,.gbml1:visited,.gbmlb:visited {
+	*display: inline
+}
+
+.gbml1,.gbml1:visited {
+	padding: 0 10px
+}
+
+.gbml1-hvr,.gbml1:focus {
+	outline: none;
+	text-decoration: underline !important
+}
+
+#gbpm .gbml1 {
+	display: inline;
+	margin: 0;
+	padding: 0;
+	white-space: nowrap
+}
+
+.gbmlb,.gbmlb:visited {
+	line-height: 27px
+}
+
+.gbmlb-hvr,.gbmlb:focus {
+	outline: none;
+	text-decoration: underline !important
+}
+
+.gbmlbw {
+	color: #ccc;
+	margin: 0 10px
+}
+
+.gbmt {
+	padding: 0 20px
+}
+
+.gbmt-hvr,.gbmt:focus {
+	background: #eee;
+	cursor: pointer;
+	outline: 0 solid black;
+	text-decoration: none !important
+}
+
+.gbm0l,.gbm0l:visited {
+	color: #000 !important;
+	font-weight: bold
+}
+
+.gbmh {
+	border-top: 1px solid #bebebe;
+	font-size: 0;
+	margin: 10px 0
+}
+
+#gbd4 .gbmc {
+	background: #f5f5f5;
+	padding-top: 0
+}
+
+#gbd4 .gbsbic::-webkit-scrollbar-track:vertical {
+	background-color: #f5f5f5;
+	margin-top: 2px
+}
+
+#gbmpdv {
+	background: #fff;
+	border-bottom: 1px solid #bebebe;
+	-moz-box-shadow: 0 2px 4px rgba(0, 0, 0, .12);
+	-o-box-shadow: 0 2px 4px rgba(0, 0, 0, .12);
+	-webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, .12);
+	box-shadow: 0 2px 4px rgba(0, 0, 0, .12);
+	position: relative;
+	z-index: 1
+}
+
+#gbd4 .gbmh {
+	margin: 0
+}
+
+.gbmtc {
+	padding: 0;
+	margin: 0;
+	line-height: 27px
+}
+
+.GBMCC:last-child:after,#GBMPAL:last-child:after {
+	content: '\0A\0A';
+	white-space: pre;
+	position: absolute
+}
+
+#gbmps {
+	*zoom: 1
+}
+
+#gbd4 .gbpc,#gbmpas .gbmt {
+	line-height: 17px
+}
+
+#gbd4 .gbpgs .gbmtc {
+	line-height: 27px
+}
+
+#gbd4 .gbmtc {
+	border-bottom: 1px solid #bebebe
+}
+
+#gbd4 .gbpc {
+	display: inline-block;
+	margin: 16px 0 10px;
+	padding-right: 50px;
+	vertical-align: top
+}
+
+#gbd4 .gbpc {
+	*display: inline
+}
+
+.gbpc .gbps,.gbpc .gbps2 {
+	display: block;
+	margin: 0 20px
+}
+
+#gbmplp.gbps {
+	margin: 0 10px
+}
+
+.gbpc .gbps {
+	color: #000;
+	font-weight: bold
+}
+
+.gbpc .gbpd {
+	margin-bottom: 5px
+}
+
+.gbpd .gbmt,.gbpd .gbps {
+	color: #666 !important
+}
+
+.gbpd .gbmt {
+	opacity: .4;
+	filter: alpha(opacity = 40)
+}
+
+.gbps2 {
+	color: #666;
+	display: block
+}
+
+.gbp0 {
+	display: none
+}
+
+.gbp0 .gbps2 {
+	font-weight: bold
+}
+
+#gbd4 .gbmcc {
+	margin-top: 5px
+}
+
+.gbpmc {
+	background: #fef9db
+}
+
+.gbpmc .gbmt {
+	padding: 10px 20px
+}
+
+#gbpm {
+	*border-collapse: collapse;
+	border-spacing: 0;
+	margin: 0;
+	white-space: normal
+}
+
+#gbpm .gbmt {
+	border-top: none;
+	color: #000 !important;
+	font: 11px Arial, sans-serif
+}
+
+#gbpms {
+	*white-space: nowrap
+}
+
+.gbpms2 {
+	font-weight: bold;
+	white-space: nowrap
+}
+
+#gbmpal {
+	*border-collapse: collapse;
+	border-spacing: 0;
+	margin: 0;
+	white-space: nowrap;
+	width: 100%
+}
+
+.gbmpala,.gbmpalb {
+	font: 13px Arial, sans-serif;
+	line-height: 27px;
+	padding: 10px 20px 0;
+	white-space: nowrap
+}
+
+.gbmpala {
+	padding-left: 0;
+	text-align: left
+}
+
+.gbmpalb {
+	padding-right: 0;
+	text-align: right
+}
+
+#gbmpasb .gbps {
+	color: #000
+}
+
+#gbmpal .gbqfbb {
+	margin: 0 20px
+}
+
+.gbp0 .gbps {
+	*display: inline
+}
+
+.gbiba {
+	margin: 8px 20px 10px
+}
+
+.gbmpiaw {
+	display: inline-block;
+	padding-right: 10px;
+	margin-bottom: 6px;
+	margin-top: 10px
+}
+
+.gbxv {
+	visibility: hidden
+}
+
+.gbmpiaa {
+	display: block;
+	margin-top: 10px
+}
+
+.gbmpia {
+	border: none;
+	display: block;
+	height: 48px;
+	width: 48px
+}
+
+.gbmpnw {
+	display: inline-block;
+	height: auto;
+	margin: 10px 0;
+	vertical-align: top
+}
+
+.gbqfb,.gbqfba,.gbqfbb {
+	-moz-border-radius: 2px;
+	-webkit-border-radius: 2px;
+	border-radius: 2px;
+	cursor: default !important;
+	display: inline-block;
+	font-weight: bold;
+	height: 29px;
+	line-height: 29px;
+	min-width: 54px;
+	*min-width: 70px;
+	padding: 0 8px;
+	text-align: center;
+	text-decoration: none !important;
+	-moz-user-select: none;
+	-webkit-user-select: none
+}
+
+.gbqfb:focus,.gbqfba:focus,.gbqfbb:focus {
+	border: 1px solid #4d90fe;
+	-moz-box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .5);
+	-webkit-box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .5);
+	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .5);
+	outline: none
+}
+
+#gbqfb.gbqfb-no-focus {
+	border: 1px solid #3079ed;
+	-moz-box-shadow: none;
+	-webkit-box-shadow: none;
+	box-shadow: none
+}
+
+.gbqfb-hvr:focus,.gbqfba-hvr:focus,.gbqfbb-hvr:focus {
+	-webkit-box-shadow: inset 0 0 0 1px #fff, 0 1px 1px rgba(0, 0, 0, .1);
+	-moz-box-shadow: inset 0 0 0 1px #fff, 0 1px 1px rgba(0, 0, 0, .1);
+	box-shadow: inset 0 0 0 1px #fff, 0 1px 1px rgba(0, 0, 0, .1)
+}
+
+.gbqfb-hvr,.gbqfba-hvr,.gbqfbb-hvr {
+	-webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, .1);
+	-moz-box-shadow: 0 1px 1px rgba(0, 0, 0, .1);
+	box-shadow: 0 1px 1px rgba(0, 0, 0, .1)
+}
+
+.gbqfb::-moz-focus-inner,.gbqfba::-moz-focus-inner,.gbqfbb::-moz-focus-inner
+	{
+	border: 0
+}
+
+.gbqfba,.gbqfbb {
+	border: 1px solid #dcdcdc;
+	border-color: rgba(0, 0, 0, .1);
+	color: #444 !important;
+	font-size: 11px
+}
+
+.gbqfb {
+	background-color: #4d90fe;
+	background-image: -webkit-gradient(linear, left top, left bottom, from(#4d90fe),
+		to(#4787ed) );
+	background-image: -webkit-linear-gradient(top, #4d90fe, #4787ed);
+	background-image: -moz-linear-gradient(top, #4d90fe, #4787ed);
+	background-image: -ms-linear-gradient(top, #4d90fe, #4787ed);
+	background-image: -o-linear-gradient(top, #4d90fe, #4787ed);
+	background-image: linear-gradient(top, #4d90fe, #4787ed);
+	filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#4d90fe',
+		EndColorStr='#4787ed' );
+	border: 1px solid #3079ed;
+	color: #fff !important
+}
+
+.gbqfb-hvr,.gbqfb-hvr:focus {
+	border-color: #2f5bb7;
+	background-color: #357ae8;
+	background-image: -webkit-gradient(linear, left top, left bottom, from(#4d90fe),
+		to(#357ae8) );
+	background-image: -webkit-linear-gradient(top, #4d90fe, #357ae8);
+	background-image: -moz-linear-gradient(top, #4d90fe, #357ae8);
+	background-image: -ms-linear-gradient(top, #4d90fe, #357ae8);
+	background-image: -o-linear-gradient(top, #4d90fe, #357ae8);
+	background-image: linear-gradient(top, #4d90fe, #357ae8)
+}
+
+.gbqfb:active {
+	-webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, .3);
+	-moz-box-shadow: inset 0 1px 2px rgba(0, 0, 0, .3);
+	box-shadow: inset 0 1px 2px rgba(0, 0, 0, .3)
+}
+
+.gbqfba {
+	background-color: #f5f5f5;
+	background-image: -webkit-gradient(linear, left top, left bottom, from(#f5f5f5),
+		to(#f1f1f1) );
+	background-image: -webkit-linear-gradient(top, #f5f5f5, #f1f1f1);
+	background-image: -moz-linear-gradient(top, #f5f5f5, #f1f1f1);
+	background-image: -ms-linear-gradient(top, #f5f5f5, #f1f1f1);
+	background-image: -o-linear-gradient(top, #f5f5f5, #f1f1f1);
+	background-image: linear-gradient(top, #f5f5f5, #f1f1f1);
+	filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#f5f5f5',
+		EndColorStr='#f1f1f1' )
+}
+
+.gbqfba-hvr,.gbqfba-hvr:active {
+	background-color: #f8f8f8;
+	background-image: -webkit-gradient(linear, left top, left bottom, from(#f8f8f8),
+		to(#f1f1f1) );
+	background-image: -webkit-linear-gradient(top, #f8f8f8, #f1f1f1);
+	background-image: -moz-linear-gradient(top, #f8f8f8, #f1f1f1);
+	background-image: -ms-linear-gradient(top, #f8f8f8, #f1f1f1);
+	background-image: -o-linear-gradient(top, #f8f8f8, #f1f1f1);
+	background-image: linear-gradient(top, #f8f8f8, #f1f1f1);
+	filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#f8f8f8',
+		EndColorStr='#f1f1f1' )
+}
+
+.gbqfbb {
+	background-color: #fff;
+	background-image: -webkit-gradient(linear, left top, left bottom, from(#fff),
+		to(#fbfbfb) );
+	background-image: -webkit-linear-gradient(top, #fff, #fbfbfb);
+	background-image: -moz-linear-gradient(top, #fff, #fbfbfb);
+	background-image: -ms-linear-gradient(top, #fff, #fbfbfb);
+	background-image: -o-linear-gradient(top, #fff, #fbfbfb);
+	background-image: linear-gradient(top, #fff, #fbfbfb);
+	filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#ffffff',
+		EndColorStr='#fbfbfb' )
+}
+
+.gbqfbb-hvr,.gbqfbb-hvr:active {
+	background-color: #fff;
+	background-image: -webkit-gradient(linear, left top, left bottom, from(#fff),
+		to(#f8f8f8) );
+	background-image: -webkit-linear-gradient(top, #fff, #f8f8f8);
+	background-image: -moz-linear-gradient(top, #fff, #f8f8f8);
+	background-image: -ms-linear-gradient(top, #fff, #f8f8f8);
+	background-image: -o-linear-gradient(top, #fff, #f8f8f8);
+	background-image: linear-gradient(top, #fff, #f8f8f8);
+	filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#ffffff',
+		EndColorStr='#f8f8f8' )
+}
+
+.gbqfba-hvr,.gbqfba-hvr:active,.gbqfbb-hvr,.gbqfbb-hvr:active {
+	border-color: #c6c6c6;
+	-webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, .1);
+	-moz-box-shadow: 0 1px 1px rgba(0, 0, 0, .1);
+	box-shadow: 0 1px 1px rgba(0, 0, 0, .1);
+	color: #222 !important
+}
+
+.gbqfba:active,.gbqfbb:active {
+	-webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, .1);
+	-moz-box-shadow: inset 0 1px 2px rgba(0, 0, 0, .1);
+	box-shadow: inset 0 1px 2px rgba(0, 0, 0, .1)
+}
+
+#gb {
+	height: 102px;
+	-moz-user-select: none;
+	-o-user-select: none;
+	-webkit-user-select: none;
+	user-select: none
+}
+
+#gbbw {
+	top: 102px;
+	min-width: 980px;
+}
+
+#gb.gbet #gbbw,#gb.gbeti #gbbw {
+	min-width: 836px;
+}
+
+#gb.gbeu #gbbw,#gb.gbeui #gbbw {
+	min-width: 780px;
+}
+
+.gbxx {
+	display: none !important
+}
+
+#gbq,#gbu {
+	position: absolute;
+	top: 0px;
+	white-space: nowrap
+}
+
+#gbu {
+	height: 71px
+}
+
+#gbu,#gbq1,#gbq3 {
+	z-index: 987
+}
+
+#gbq {
+	left: 0;
+	_overflow: hidden;
+	width: 100%;
+	z-index: 986
+}
+
+#gbq2 {
+	top: 0px;
+	z-index: 986
+}
+
+#gbu {
+	right: 0;
+	height: 30px;
+	margin-right: 28px;
+	padding-bottom: 0;
+	padding-top: 20px
+}
+
+#gbu {
+	top: 0px
+}
+
+#gbx1,#gbx2 {
+	background: #f1f1f1;
+	background: -webkit-gradient(radial, 100 36, 0, 100 -40, 120, from(#fafafa),
+		to(#f1f1f1) ), #f1f1f1;
+	border-bottom: 1px solid #666;
+	border-color: #e5e5e5;
+	height: 71px;
+	position: absolute;
+	top: 0px;
+	width: 100%;
+	z-index: 985;
+	min-width: 980px;
+}
+
+#gb.gbet #gbx1,#gb.gbeti #gbx1 {
+	min-width: 836px;
+}
+
+#gb.gbeu #gbx1,#gb.gbeui #gbx1 {
+	min-width: 780px;
+}
+
+#gbx1.gbxngh,#gbx2.gbxngh {
+	background: -webkit-gradient(radial, 100 36, 0, 100 -40, 120, from(#ffffff),
+		to(#f1f1f1) ), #f1f1f1
+}
+
+#gbx1 {
+	left: 0
+}
+
+#gbx2 {
+	right: 0
+}
+
+#gbq1 {
+	left: 0;
+	margin: 0;
+	padding: 0;
+	margin-left: 44px;
+	position: absolute
+}
+
+#gbq1 .gbmai {
+	right: 4px;
+	top: 33px
+}
+
+.gbes#gbq1 {
+	margin-left: 0
+}
+
+#gbq3 {
+	left: 220px;
+	padding-bottom: 0;
+	padding-top: 20px;
+	position: absolute;
+	top: 0px
+}
+
+#gbql {
+	background: url(//ssl.gstatic.com/gb/images/j_e6a6aca6.png) no-repeat;
+	background-position: -45px 0;
+	display: block;
+	height: 45px;
+	width: 116px
+}
+
+#gbqlw {
+	display: table-cell;
+	height: 71px;
+	padding-right: 16px;
+	position: relative;
+	vertical-align: middle;
+	0
+}
+
+#gbqld {
+	border: none;
+	display: block
+}
+
+.gbqldr {
+	max-height: 71px;
+	max-width: 160px
+}
+
+#gog {
+	height: 99px
+}
+
+.gbh {
+	border-top: none
+}
+
+.gbpl,.gbpr,#gbpx1,#gbpx2 {
+	border-top: none !important;
+	top: 102px !important
+}
+
+.gbpl,.gbpr {
+	margin-top: 4px
+}
+
+.gbi5t {
+	color: #666;
+	display: block;
+	margin: 1px 15px;
+	text-shadow: none
+}
+
+#gbq2 {
+	display: block;
+	margin-left: 220px;
+	padding-bottom: 0;
+	padding-top: 20px
+}
+
+#gbqf {
+	display: block;
+	margin: 0;
+	max-width: 572px;
+	min-width: 572px;
+	white-space: nowrap
+}
+
+.gbexxl#gbq2 #gbqf,.gbexxli#gb #gbqf,.gbexl#gbq2 #gbqf,.gbexli#gb #gbqf
+	{
+	max-width: 572px
+}
+
+.gbet#gbq2 #gbqf,.gbeti#gb #gbqf {
+	max-width: 434px;
+	min-width: 434px
+}
+
+.gbeu#gbqf,.gbeui#gb #gbqf {
+	max-width: 319px;
+	min-width: 319px
+}
+
+.gbqff {
+	border: none;
+	display: inline-block;
+	margin: 0;
+	padding: 0;
+	vertical-align: top;
+	width: 100%
+}
+
+.gbqff {
+	*display: inline
+}
+
+.gbqfqw,#gbqfb,.gbqfwa {
+	vertical-align: top
+}
+
+#gbqfaa,#gbqfab,#gbqfqwb {
+	position: absolute
+}
+
+#gbqfaa {
+	left: 0
+}
+
+#gbqfab {
+	right: 0
+}
+
+.gbqfqwb,.gbqfqwc {
+	right: 0;
+	left: 0
+}
+
+.gbqfqwb {
+	padding: 0 8px
+}
+
+#gbqfbw {
+	margin: 0 15px;
+	display: inline-block
+}
+
+#gbqfbw {
+	*display: inline
+}
+
+.gbqfi {
+	background: url(//ssl.gstatic.com/gb/images/j_e6a6aca6.png);
+	background-position: -357px 0;
+	display: inline-block;
+	height: 13px;
+	margin: 7px 19px;
+	width: 14px
+}
+
+.gbqfi {
+	*display: inline
+}
+
+.gbqfqw {
+	background: #fff;
+	border: 1px solid #d9d9d9;
+	border-top: 1px solid #c0c0c0;
+	-moz-border-radius: 1px;
+	-webkit-border-radius: 1px;
+	border-radius: 1px;
+	height: 27px
+}
+
+#gbqfqw {
+	position: relative
+}
+
+.gbqfqw-hvr {
+	border: 1px solid #b9b9b9;
+	border-top: 1px solid #a0a0a0;
+	-moz-box-shadow: inset 0 1px 2px rgba(0, 0, 0, .1);
+	-webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, .1);
+	box-shadow: inset 0 1px 2px rgba(0, 0, 0, .1)
+}
+
+.gbqfwa {
+	display: inline-block;
+	width: 100%
+}
+
+.gbqfwa {
+	*display: inline
+}
+
+.gbqfwb {
+	width: 40%
+}
+
+.gbqfwc {
+	width: 60%
+}
+
+.gbqfwb .gbqfqw {
+	margin-left: 10px
+}
+
+.gbqfqw:active,.gbqfqwf {
+	border: 1px solid #4d90fe;
+	-moz-box-shadow: inset 0 1px 2px rgba(0, 0, 0, .3);
+	-webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, .3);
+	box-shadow: inset 0 1px 2px rgba(0, 0, 0, .3);
+	outline: none
+}
+
+#gbqfq,#gbqfqb,#gbqfqc {
+	background: transparent;
+	border: none;
+	height: 19px;
+	margin-top: 4px;
+	padding: 0;
+	vertical-align: top;
+	width: 100%
+}
+
+#gbqfq:focus,#gbqfqb:focus,#gbqfqc:focus {
+	outline: none
+}
+
+.gbqfif,.gbqfsf {
+	font: 16px arial, sans-serif
+}
+
+#gbqfbwa {
+	display: none;
+	text-align: center;
+	height: 0
+}
+
+#gbqfbwa .gbqfba {
+	margin: 16px 8px
+}
+
+#gbqfsa,#gbqfsb {
+	font: bold 11px/27px Arial, sans-serif !important;
+	vertical-align: top
+}
+
+.gbqfh #gbql {
+	background: url(//ssl.gstatic.com/gb/images/j_e6a6aca6.png);
+	background-repeat: no-repeat;
+	display: block;
+	margin-bottom: 21px;
+	margin-top: 25px
+}
+
+.gbqfh #gbql,.gbemi#gb .gbqfh #gbql,.gbesi#gb .gbqfh #gbql,.gbqfh .gbem#gbql,.gbqfh .gbes#gbql
+	{
+	background-position: -166px 0;
+	height: 27px;
+	width: 71px
+}
+
+.gbqfh#gbpr .gbqpa {
+	width: 71px
+}
+
+.gbqfh .gbes#gbql,.gbesi#gb .gbqfh #gbql {
+	margin-bottom: 14px;
+	margin-top: 18px
+}
+
+.gbqfh#gbq2 {
+	z-index: 985
+}
+
+.gbqfh#gbq2 {
+	margin: 0;
+	margin-left: 0 !important;
+	padding-top: 0;
+	top: 281px
+}
+
+.gbqfh #gbqf {
+	margin: auto;
+	min-width: 534px;
+	padding: 0 223px !important
+}
+
+.gbqfh #gbqfbw {
+	display: none
+}
+
+.gbqfh #gbqfbwa {
+	display: block
+}
+
+.gbqfh#gbq2 {
+	padding-top: 0;
+	top: 281px
+}
+
+.gbem .gbqfh#gbq2,.gbemi#gb .gbqfh#gbq2 {
+	padding-top: 0;
+	top: 281px
+}
+
+.gbes .gbqfh#gbq2,.gbesi#gb .gbqfh#gbq2 {
+	padding-top: 0;
+	top: 281px
+}
+
+.gbqfh #gbqld {
+	display: none !important
+}
+
+#gbql {
+	display: none
+}
+
+#gbu .gbm,#gbu #gbs {
+	right: 5px
+}
+
+.gbpdjs #gbu .gbm,.gbpdjs #gbu #gbs {
+	right: 0
+}
+
+.gbpdjs #gbu #gbd4 {
+	right: 5px
+}
+
+#gbu .gbgt,#gbu .gbgt:active {
+	color: #666
+}
+
+#gbu .gbt {
+	margin-left: 15px
+}
+
+#gbu .gbto {
+	box-shadow: none;
+	-moz-box-shadow: none;
+	-webkit-box-shadow: none
+}
+
+#gbg4 {
+	padding-right: 16px
+}
+
+#gbd1 .gbmc,#gbd3 .gbmc {
+	padding: 0
+}
+
+#gbns {
+	display: none
+}
+
+.gbmwc {
+	right: 0;
+	position: absolute;
+	top: -999px;
+	width: 440px;
+	z-index: 999
+}
+
+#gbwc.gbmwca {
+	top: 0
+}
+
+.gbmsg {
+	display: none;
+	position: absolute;
+	top: 0
+}
+
+.gbmsgo .gbmsg {
+	display: block;
+	background: #fff;
+	width: 100%;
+	text-align: center;
+	z-index: 3;
+	top: 30%
+}
+
+.gbmab,.gbmac,.gbmad,.gbmae {
+	left: 5px;
+	border-style: dashed dashed solid;
+	border-color: transparent;
+	border-bottom-color: #bebebe;
+	border-width: 0 10px 10px;
+	cursor: default;
+	display: -moz-inline-box;
+	display: inline-block;
+	font-size: 0;
+	height: 0;
+	line-height: 0;
+	position: absolute;
+	top: 0;
+	width: 0;
+	z-index: 1000
+}
+
+.gbmab,.gbmac {
+	visibility: hidden
+}
+
+.gbmac {
+	border-bottom-color: #fff
+}
+
+.gbto .gbmab,.gbto .gbmac {
+	visibility: visible
+}
+
+.gbmai {
+	background: url(//ssl.gstatic.com/gb/images/j_e6a6aca6.png);
+	background-position: -30px -25px;
+	opacity: .8;
+	font-size: 0;
+	line-height: 0;
+	position: absolute;
+	height: 4px;
+	width: 7px
+}
+
+.gbgt-hvr .gbmai {
+	opacity: 1;
+	filter: alpha(opacity = 100)
+}
+
+#gbgs3 {
+	background-color: #f8f8f8;
+	background-image: -webkit-gradient(linear, left top, left bottom, from(#f8f8f8),
+		to(#ececec) );
+	background-image: -webkit-linear-gradient(top, #f8f8f8, #ececec);
+	background-image: -moz-linear-gradient(top, #f8f8f8, #ececec);
+	background-image: -ms-linear-gradient(top, #f8f8f8, #ececec);
+	background-image: -o-linear-gradient(top, #f8f8f8, #ececec);
+	background-image: linear-gradient(top, #f8f8f8, #ececec);
+	filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#f8f8f8',
+		EndColorStr='#ececec' );
+	border: 1px solid #c6c6c6;
+	-moz-border-radius: 2px;
+	-o-border-radius: 2px;
+	-webkit-border-radius: 2px;
+	border-radius: 2px;
+	padding: 0 10px;
+	position: relative
+}
+
+#gbgsi {
+	background: url(//ssl.gstatic.com/gb/images/j_e6a6aca6.png);
+	background-position: -30px -34px;
+	height: 10px;
+	opacity: .8;
+	position: absolute;
+	top: 8px;
+	_top: 10px;
+	width: 10px;
+	left: 10px
+}
+
+#gbgsa {
+	background: url(//ssl.gstatic.com/gb/images/j_e6a6aca6.png);
+	background-position: 0 0;
+	height: 11px;
+	margin-left: -2px;
+	position: absolute;
+	top: 8px;
+	width: 10px;
+	left: 100%
+}
+
+.gbgt-hvr #gbgsa {
+	background-position: -166px -32px
+}
+
+#gbg3:active #gbgsa {
+	background-position: -342px -16px
+}
+
+.gbgt-hvr #gbgsi {
+	opacity: 1;
+	filter: alpha(opacity = 100)
+}
+
+#gbgss {
+	display: inline-block;
+	width: 18px
+}
+
+.gbsbc #gbgss {
+	width: 7px
+}
+
+#gbi3 {
+	vertical-align: top;
+	zoom: 1
+}
+
+.gbsbc #gbi3 {
+	display: none
+}
+
+.gbgt-hvr #gbgs3,#gbg3:focus #gbgs3,#gbg3:active #gbgs3 {
+	background-color: #ffffff;
+	background-image: -webkit-gradient(linear, left top, left bottom, from(#ffffff),
+		to(#ececec) );
+	background-image: -webkit-linear-gradient(top, #ffffff, #ececec);
+	background-image: -moz-linear-gradient(top, #ffffff, #ececec);
+	background-image: -ms-linear-gradient(top, #ffffff, #ececec);
+	background-image: -o-linear-gradient(top, #ffffff, #ececec);
+	background-image: linear-gradient(top, #ffffff, #ececec);
+	filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#ffffff',
+		EndColorStr='#ececec' );
+	border-color: #bbb
+}
+
+#gbg3:active #gbgs3 {
+	border-color: #b6b6b6
+}
+
+#gbg3:active #gbgs3 {
+	-moz-box-shadow: inset 0 1px 2px rgba(0, 0, 0, .2);
+	-webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, .2);
+	box-shadow: inset 0 1px 2px rgba(0, 0, 0, .2)
+}
+
+#gbgs3 .gbmab {
+	margin: 40px 0 0
+}
+
+#gbgs3 .gbmac {
+	margin: 41px 0 0
+}
+
+#gbgs1 {
+	display: block;
+	overflow: hidden;
+	position: relative
+}
+
+.gbg1t {
+	top: 0
+}
+
+.gbg1ta {
+	-o-transition: top .218s ease-out;
+	-moz-transition: top .218s ease-out;
+	-webkit-transition: top .218s ease-out;
+	transition: top .218s ease-out
+}
+
+.gbg1tb {
+	-o-transition: top .13s ease-in;
+	-moz-transition: top .13s ease-in;
+	-webkit-transition: top .13s ease-in;
+	transition: top .13s ease-in
+}
+
+.gbg1tc {
+	-o-transition: top .13s ease-out;
+	-moz-transition: top .13s ease-out;
+	-webkit-transition: top .13s ease-out;
+	transition: top .13s ease-out
+}
+
+#gbi1a {
+	background-color: #d14836;
+	background-image: -webkit-gradient(linear, left top, left bottom, from(#dd4b39),
+		to(#d14836) );
+	background-image: -webkit-linear-gradient(top, #dd4b39, #d14836);
+	background-image: -moz-linear-gradient(top, #dd4b39, #d14836);
+	background-image: -ms-linear-gradient(top, #dd4b39, #d14836);
+	background-image: -o-linear-gradient(top, #dd4b39, #d14836);
+	background-image: linear-gradient(top, #dd4b39, #d14836);
+	filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#dd4b39',
+		EndColorStr='#d14836' );
+	border: 1px solid #c13828;
+	-moz-border-radius: 2px;
+	-o-border-radius: 2px;
+	-webkit-border-radius: 2px;
+	border-radius: 2px;
+	display: block;
+	height: 27px;
+	width: 27px
+}
+
+.gbgt-hvr #gbi1a {
+	background-color: #c53727;
+	background-image: -webkit-gradient(linear, left top, left bottom, from(#dd4b39),
+		to(#c53727) );
+	background-image: -webkit-linear-gradient(top, #dd4b39, #c53727);
+	background-image: -moz-linear-gradient(top, #dd4b39, #c53727);
+	background-image: -ms-linear-gradient(top, #dd4b39, #c53727);
+	background-image: -o-linear-gradient(top, #dd4b39, #c53727);
+	background-image: linear-gradient(top, #dd4b39, #c53727);
+	filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#dd4b39',
+		EndColorStr='#c53727' );
+	border-color: #b0281a;
+	border-bottom-color: #af301f;
+	-moz-box-shadow: 0 1px 1px rgba(0, 0, 0, .2);
+	-webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, .2);
+	box-shadow: 0 1px 1px rgba(0, 0, 0, .2)
+}
+
+#gbg1:focus #gbi1a,#gbg1:active #gbi1a {
+	background-color: #b0281a;
+	background-image: -webkit-gradient(linear, left top, left bottom, from(#dd4b39),
+		to(#b0281a) );
+	background-image: -webkit-linear-gradient(top, #dd4b39, #b0281a);
+	background-image: -moz-linear-gradient(top, #dd4b39, #b0281a);
+	background-image: -ms-linear-gradient(top, #dd4b39, #b0281a);
+	background-image: -o-linear-gradient(top, #dd4b39, #b0281a);
+	background-image: linear-gradient(top, #dd4b39, #b0281a);
+	filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#dd4b39',
+		EndColorStr='#b0281a' );
+	border-color: #992a1b;
+	-moz-box-shadow: inset 0 1px 2px rgba(0, 0, 0, .3);
+	-webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, .3);
+	box-shadow: inset 0 1px 2px rgba(0, 0, 0, .3)
+}
+
+.gbid#gbi1a {
+	background-color: #f8f8f8;
+	background-image: -webkit-gradient(linear, left top, left bottom, from(#f8f8f8),
+		to(#ececec) );
+	background-image: -webkit-linear-gradient(top, #f8f8f8, #ececec);
+	background-image: -moz-linear-gradient(top, #f8f8f8, #ececec);
+	background-image: -ms-linear-gradient(top, #f8f8f8, #ececec);
+	background-image: -o-linear-gradient(top, #f8f8f8, #ececec);
+	background-image: linear-gradient(top, #f8f8f8, #ececec);
+	filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#f8f8f8',
+		EndColorStr='#ececec' );
+	border-color: #c6c6c6
+}
+
+.gbgt-hvr .gbid#gbi1a,#gbg1:focus .gbid#gbi1a,#gbg1:active .gbid#gbi1a {
+	background-color: #ffffff;
+	background-image: -webkit-gradient(linear, left top, left bottom, from(#ffffff),
+		to(#ececec) );
+	background-image: -webkit-linear-gradient(top, #ffffff, #ececec);
+	background-image: -moz-linear-gradient(top, #ffffff, #ececec);
+	background-image: -ms-linear-gradient(top, #ffffff, #ececec);
+	background-image: -o-linear-gradient(top, #ffffff, #ececec);
+	background-image: linear-gradient(top, #ffffff, #ececec);
+	filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#ffffff',
+		EndColorStr='#ececec' );
+	border-color: #bbb
+}
+
+#gbg1:active .gbid#gbi1a {
+	border-color: #b6b6b6;
+	-moz-box-shadow: inset 0 1px 2px rgba(0, 0, 0, .3);
+	-webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, .3);
+	box-shadow: inset 0 1px 2px rgba(0, 0, 0, .3)
+}
+
+#gbi1,#gbi1c {
+	left: 0;
+	bottom: 1px;
+	color: #fff;
+	display: block;
+	font-size: 14px;
+	font-weight: bold;
+	position: absolute;
+	text-align: center;
+	text-shadow: 0 1px rgba(0, 0, 0, .1);
+	-moz-transition-property: bottom;
+	-moz-transition-duration: 0;
+	-o-transition-property: bottom;
+	-o-transition-duration: 0;
+	-webkit-transition-property: bottom;
+	-webkit-transition-duration: 0;
+	-moz-user-select: none;
+	-o-user-select: none;
+	-webkit-user-select: none;
+	user-select: none;
+	width: 100%
+}
+
+.gbgt-hvr #gbi1,#gbg1:focus #gbi1 {
+	text-shadow: 0 1px rgba(0, 0, 0, .3)
+}
+
+.gbids#gbi1,.gbgt-hvr .gbids#gbi1,#gbg1:focus .gbids#gbi1,#gbg1:active .gbids#gbi1
+	{
+	color: #999;
+	text-shadow: none
+}
+
+#gbg1 .gbmab {
+	margin: 41px 0 0
+}
+
+#gbg1 .gbmac {
+	margin: 42px 0 0
+}
+
+#gbi4t {
+	display: block;
+	margin: 1px 0;
+	overflow: hidden;
+	text-overflow: ellipsis
+}
+
+#gbg6 #gbi4t,#gbg4 #gbgs4d {
+	color: #666;
+	text-shadow: none
+}
+
+#gb_70,#gb_71 {
+	margin-right: 15px
+}
+
+#gb_70 .gbit,#gb_71 .gbit,#gbg7 .gbit {
+	margin: 0 15px
+}
+
+#gbgs4,.gbgs {
+	background-color: #f8f8f8;
+	background-image: -webkit-gradient(linear, left top, left bottom, from(#f8f8f8),
+		to(#ececec) );
+	background-image: -webkit-linear-gradient(top, #f8f8f8, #ececec);
+	background-image: -moz-linear-gradient(top, #f8f8f8, #ececec);
+	background-image: -ms-linear-gradient(top, #f8f8f8, #ececec);
+	background-image: -o-linear-gradient(top, #f8f8f8, #ececec);
+	background-image: linear-gradient(top, #f8f8f8, #ececec);
+	filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#f8f8f8',
+		EndColorStr='#ececec' );
+	border: 1px solid #c6c6c6;
+	display: block;
+	-moz-border-radius: 2px;
+	-o-border-radius: 2px;
+	-webkit-border-radius: 2px;
+	border-radius: 2px;
+	position: relative
+}
+
+#gbgs4d {
+	display: inline-block;
+	position: relative;
+	z-index: 1000
+}
+
+#gbgs4dn {
+	display: inline-block;
+	overflow: hidden;
+	text-overflow: ellipsis
+}
+
+.gbgt-hvr #gbgs4d {
+	background-color: transparent;
+	background-image: none
+}
+
+.gbg4p {
+	margin-top: 0px
+}
+
+#gbg4 #gbgs4 {
+	height: 27px;
+	position: relative;
+	width: 27px
+}
+
+.gbgt-hvr #gbgs4,#gbg4:focus #gbgs4,#gbg4:active #gbgs4,#gbg_70:focus .gbgs,#gbg_71:focus .gbgs,#gbg_70:active .gbgs,#gbg_71:active .gbgs,#gbg7:focus .gbgs,#gbg7:active .gbgs
+	{
+	background-color: #ffffff;
+	background-image: -webkit-gradient(linear, left top, left bottom, from(#ffffff),
+		to(#ececec) );
+	background-image: -webkit-linear-gradient(top, #ffffff, #ececec);
+	background-image: -moz-linear-gradient(top, #ffffff, #ececec);
+	background-image: -ms-linear-gradient(top, #ffffff, #ececec);
+	background-image: -o-linear-gradient(top, #ffffff, #ececec);
+	background-image: linear-gradient(top, #ffffff, #ececec);
+	filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#ffffff',
+		EndColorStr='#ececec' );
+	border-color: #bbb
+}
+
+#gbg4:active #gbgs4,#gb_70:active .gbgs,#gb_71:active .gbgs,#gbg7:active .gbgs
+	{
+	border-color: #b6b6b6;
+	-moz-box-shadow: inset 0 1px 2px rgba(0, 0, 0, .3);
+	-webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, .3);
+	box-shadow: inset 0 1px 2px rgba(0, 0, 0, .3)
+}
+
+#gbi4i,#gbi4id,#gbi4ip {
+	left: 0;
+	height: 27px;
+	position: absolute;
+	top: 0;
+	width: 27px
+}
+
+#gbmpi,#gbmpid {
+	margin-right: 0;
+	height: 96px;
+	width: 96px
+}
+
+#gbi4id {
+	background-position: 0 -101px
+}
+
+.gbem #gbi4id,.gbemi #gbi4id {
+	background-position: 0 -101px
+}
+
+.gbes #gbi4id,.gbesi #gbi4id {
+	background-position: 0 -101px
+}
+
+.gbto #gbi4i,.gbto #gbi4ip,.gbto #gbi4id {
+	top: 0
+}
+
+#gbgs4 .gbmai {
+	left: 33px;
+	top: 12px
+}
+
+#gbgs4d .gbmai {
+	left: 100%;
+	margin-left: 5px;
+	top: 12px
+}
+
+#gbgs4 .gbmab,#gbgs4 .gbmac {
+	left: 5px
+}
+
+#gbgs4 .gbmab {
+	margin: 40px 0 0
+}
+
+#gbgs4 .gbmac {
+	margin: 41px 0 0;
+	border-bottom-color: #fff
+}
+
+.gbemi .gbg4p,.gbem.gbg4p {
+	margin-top: 0px
+}
+
+.gbesi .gbg4p,.gbes.gbg4p {
+	margin-top: 0px
+}
+
+.gbemi #gbg4 #gbgs4,.gbem #gbg4 #gbgs4,.gbemi #gbg4 #gbi4i,.gbem #gbg4 #gbi4i,.gbemi #gbg4 #gbi4id,.gbem #gbg4 #gbi4id,.gbemi #gbg4 #gbi4ip,.gbem #gbg4 #gbi4ip
+	{
+	height: 27px;
+	width: 27px
+}
+
+.gbesi #gbg4 #gbgs4,.gbes #gbg4 #gbgs4,.gbesi #gbi4i,.gbes #gbi4i,.gbesi #gbi4id,.gbes #gbi4id,.gbesi #gbi4ip,.gbes #gbi4ip
+	{
+	height: 27px;
+	width: 27px
+}
+
+.gbemi #gbgs4 .gbmai,.gbem #gbgs4 .gbmai {
+	left: 33px;
+	top: 12px
+}
+
+.gbesi #gbgs4 .gbmai,.gbes #gbgs4 .gbmai {
+	left: 33px;
+	top: 12px
+}
+
+.gbemi#gb #gbg4 #gbgs4 .gbmab,.gbem#gbg4 #gbgs4 .gbmab {
+	left: 5px;
+	margin: 40px 0 0
+}
+
+.gbemi#gb #gbg4 #gbgs4 .gbmac,.gbem#gbg4 #gbgs4 .gbmac {
+	left: 5px;
+	margin: 41px 0 0
+}
+
+.gbesi#gb #gbg4 #gbgs4 .gbmab,.gbes#gbg4 #gbgs4 .gbmab {
+	left: 5px;
+	margin: 40px 0 0
+}
+
+.gbesi#gb #gbg4 #gbgs4 .gbmac,.gbes#gbg4 #gbgs4 .gbmac {
+	left: 5px;
+	margin: 41px 0 0
+}
+
+#gbgs4d .gbmab {
+	margin: 41px 0 0
+}
+
+#gbgs4d .gbmac {
+	margin: 42px 0 0;
+	border-bottom-color: #fff
+}
+
+#gbgs4d .gbmab,#gbgs4d .gbmac {
+	left: 50%;
+	margin-left: -5px
+}
+
+.gbp0i {
+	background: url(//ssl.gstatic.com/gb/images/j_e6a6aca6.png);
+	background-position: -357px -18px
+}
+
+#gbmppc {
+	position: relative
+}
+
+#gbmppc .gbmt {
+	padding-left: 55px;
+	padding-bottom: 10px;
+	padding-top: 10px
+}
+
+.gbmppci {
+	left: 20px;
+	background: url(//ssl.gstatic.com/gb/images/j_e6a6aca6.png);
+	background-position: 0 -16px;
+	height: 25px;
+	position: absolute;
+	top: 11px;
+	width: 25px
+}
+
+.gbem#gb,.gbemi#gb {
+	height: 102px
+}
+
+.gbes#gb,.gbesi#gb {
+	height: 102px
+}
+
+.gbem#gbx1,.gbem#gbx2,.gbem#gbqlw,.gbemi#gb #gbx1,.gbemi#gb #gbx2,.gbemi#gb #gbqlw
+	{
+	height: 71px
+}
+
+.gbem#gb #gbbw,.gbemi#gb #gbbw {
+	top: 102px
+}
+
+.gbem#gbu,.gbem#gbq2,.gbem#gbq3,.gbemi#gb #gbu,.gbemi#gb #gbq2,.gbemi#gb #gbq3
+	{
+	padding-top: 20px
+}
+
+.gbem#gbq2,.gbemi#gb #gbq2 {
+	margin-left: 160px;
+	padding-bottom: 0
+}
+
+.gbexl#gbq2,.gbexli#gb #gbq2,.gbexxl#gbq2,.gbexxli#gb #gbq2 {
+	margin-left: 220px
+}
+
+.gbem#gbq3,.gbemi#gb #gbq3 {
+	left: 160px
+}
+
+.gbem#gbmail,.gbemi#gb #gbmail {
+	top: 33px
+}
+
+.gbes#gbx1,.gbes#gbx2,.gbes#gbqlw,.gbesi#gb #gbx1,.gbesi#gb #gbx2,.gbesi#gb #gbqlw
+	{
+	height: 57px
+}
+
+.gbes#gb #gbbw,.gbesi#gb #gbbw {
+	top: 102px
+}
+
+.gbes#gbu,.gbes#gbq2,.gbes#gbq3,.gbesi#gb #gbu,.gbesi#gb #gbq2,.gbesi#gb #gbq3
+	{
+	padding-top: 15px
+}
+
+.gbet#gbq2,.gbeti#gb #gbq2,.gbes#gbq2,.gbesi#gb #gbq2 {
+	margin-left: 140px;
+	padding-bottom: 0
+}
+
+.gbeu#gbq2,.gbeui#gb #gbq2 {
+	margin-left: 136px;
+	padding-bottom: 0
+}
+
+.gbemi#gb .gbto #gbd1,.gbemi#gb .gbto #gbd3,.gbemi#gb .gbto #gbd4,.gbemi#gb .gbto #gbs,.gbto .gbem#gbd1,.gbto .gbem#gbd3,.gbto .gbem#gbd4,.gbto .gbem#gbs
+	{
+	top: 51px
+}
+
+.gbesi#gb .gbto #gbd1,.gbesi#gb .gbto #gbd3,.gbesi#gb .gbto #gbd4,.gbesi#gb .gbto #gbs,.gbto .gbes#gbd1,.gbto .gbes#gbd3,.gbto .gbes#gbd4,.gbto .gbes#gbs
+	{
+	top: 42px
+}
+
+.gbemi #gbq1.gbto #gbz,.gbemi #gbq1.gbto #gbs,.gbem #gbq1.gbto #gbz,.gbem #gbq1.gbto #gbs
+	{
+	top: 71px !important;
+	left: -23px
+}
+
+.gbesi #gbq1.gbto #gbz,.gbesi #gbq1.gbto #gbs,.gbes #gbq1.gbto #gbz,.gbes #gbq1.gbto #gbs
+	{
+	top: 57px !important;
+	left: -11px
+}
+
+.gbemi #gbq1 .gbmab,.gbem #gbq1 .gbmab {
+	margin: 61px 0 0
+}
+
+.gbemi #gbq1 .gbmac,.gbem #gbq1 .gbmac {
+	margin: 62px 0 0
+}
+
+.gbesi #gbq1 .gbmab,.gbes #gbq1 .gbmab {
+	margin: 47px 0 0
+}
+
+.gbesi #gbq1 .gbmac,.gbes #gbq1 .gbmac {
+	margin: 48px 0 0
+}
+
+.gbemi #gbq1 #gbz,.gbem#gbq1 #gbz,.gbemi #gbq1 #gbs,.gbem#gbq1 #gbs {
+	margin-left: 8px
+}
+
+.gbesi #gbq1 #gbz,.gbes#gbq1 #gbz,.gbesi #gbq1 #gbs,.gbes#gbq1 #gbs {
+	margin-left: -4px
+}
+
+.gbes#gbq3,.gbesi#gb #gbq3 {
+	left: 140px
+}
+
+.gbem#gbq1,.gbemi#gb #gbq1 {
+	margin-left: 28px
+}
+
+.gbem#gbql,.gbemi#gb #gbql,.gbes#gbql,.gbesi#gb #gbql,.gbet#gbql,.gbeti#gb #gbql,.gbeu#gbql,.gbeui#gb #gbql
+	{
+	background-position: -242px 0;
+	height: 37px;
+	width: 95px
+}
+
+.gbet#gbq1,.gbeti#gb #gbq1,.gbes#gbq1,.gbesi#gb #gbq1 {
+	margin-left: 16px
+}
+
+.gbeu#gbq1,.gbeui#gb #gbq1 {
+	margin-left: 0px
+}
+
+.gbemi#gb .gbqldr,.gbem#gbqlw .gbqldr {
+	max-height: 71px;
+	max-width: 160px
+}
+
+.gbem#gbu,.gbemi#gb #gbu {
+	margin-right: 12px
+}
+
+.gbet#gbu,.gbeti#gb #gbu,.gbeu#gbu,.gbeui#gb #gbu,.gbes#gbu,.gbesi#gb #gbu
+	{
+	margin-right: 0px
+}
+
+.gbeu#gbu .gbt,.gbeui#gb #gbu .gbt,.gbet#gbu .gbt,.gbeti#gb #gbu .gbt,.gbes#gbu .gbt,.gbesi#gb #gbu .gbt
+	{
+	margin-left: 6px
+}
+
+.gbeti#gb .gbqldr,.gbet#gbqlw .gbqldr,.gbesi#gb .gbqldr,.gbes#gbqlw .gbqldr
+	{
+	max-height: 57px;
+	max-width: 144px
+}
+
+.gbeui#gb .gbqldr,.gbeu#gbqlw .gbqldr {
+	max-height: 57px;
+	max-width: 124px
+}
+
+.gbes#gbmail,.gbesi#gb #gbmail {
+	top: 26px
+}
+
+.gbemi#gb #gbpr,.gbem#gbpr {
+	left: 28px
+}
+
+.gbemi#gb .gbqpa,.gbem#gbpr .gbqpa,.gbesi#gb .gbqpa,.gbes#gbpr .gbqpa {
+	width: 71px
+}
+
+.gbesi#gb #gbpr,.gbes#gbpr {
+	left: 16px
+}
+
+.gbemi#gb #gbg3 .gbmab,.gbem#gbg3 .gbmab,.gbemi#gb #gbgs4 .gbmab,.gbem#gbg4 .gbmab
+	{
+	margin: 40px 0 0
+}
+
+.gbemi#gb #gbg1 .gbmab,.gbem#gbg1 .gbmab {
+	margin: 41px 0 0
+}
+
+.gbemi#gb #gbg3 .gbmac,.gbem#gbg3 .gbmac,.gbemi#gb #gbgs4 .gbmac,.gbem#gbg4 .gbmac
+	{
+	margin: 41px 0 0
+}
+
+.gbemi#gb #gbg1 .gbmac,.gbem#gbg1 .gbmac {
+	margin: 42px 0 0
+}
+
+.gbesi#gb #gbg3 .gbmab,.gbes#gbg3 .gbmab,.gbesi#gb #gbgs4 .gbmab,.gbes#gbg4 .gbmab
+	{
+	margin: 32px 0 0
+}
+
+.gbesi#gb #gbg1 .gbmab,.gbes#gbg1 .gbmab {
+	margin: 33px 0 0
+}
+
+.gbesi#gb #gbg3 .gbmac,.gbes#gbg3 .gbmac,.gbesi#gb #gbgs4 .gbmac,.gbes#gbg4 .gbmac
+	{
+	margin: 33px 0 0
+}
+
+.gbesi#gb #gbg1 .gbmac,.gbes#gbg1 .gbmac {
+	margin: 34px 0 0
+}
+
+.gbemi#gb #gbgs4d .gbmab,.gbem#gbg4 #gbgs4d .gbmab {
+	margin: 41px 0 0
+}
+
+.gbesi#gb #gbgs4d .gbmab,.gbes#gbg4 #gbgs4d .gbmab {
+	margin: 33px 0 0
+}
+
+.gbemi#gb #gbgs4d .gbmac,.gbem#gbg4 #gbgs4d .gbmac {
+	margin: 42px 0 0
+}
+
+.gbesi#gb #gbgs4d .gbmac,.gbes#gbg4 #gbgs4d .gbmac {
+	margin: 34px 0 0
+}
+
+.gbemi#gb #gbgs4d .gbmac,.gbem#gbg4 #gbgs4d .gbmac,.gbesi#gb #gbgs4d .gbmac,.gbes#gbg4 #gbgs4d .gbmac,.gbemi#gb #gbgs4d .gbmab,.gbem#gbg4 #gbgs4d .gbmab,.gbesi#gb #gbgs4d .gbmab,.gbes#gbg4 #gbgs4d .gbmab
+	{
+	margin-left: -5px
+}
+
+#gb #gbx1,#gb #gbx3 {
+	left: 0
+}
+
+#gbx1,#gb #gbx1,#gbq,#gbu,#gb #gbq,#gb #gbu {
+	top: 30px
+}
+
+#gb #gbu {
+	top: 30px
+}
+
+#gbzw #gbz {
+	padding-left: 0;
+	z-index: 991
+}
+
+#gbz .gbto #gbd,#gbz .gbto #gbs {
+	top: 29px
+}
+
+#gbx3 {
+	min-width: 980px;
+	border-color: #000;
+	background-color: #2d2d2d;
+	opacity: 1;
+	filter: alpha(opacity = 100)
+}
+
+#gbz .gbzt,#gbz .gbgt {
+	color: #bbb !important;
+	font-weight: bold
+}
+
+#gbq .gbgt-hvr,#gbq .gbgt:focus,#gbz .gbz0l .gbts,#gbz .gbzt-hvr,#gbz .gbzt:focus,#gbz .gbgt-hvr,#gbz .gbgt:focus,#gbu .gbz0l .gbts,#gbu .gbzt-hvr,#gbu .gbzt:focus,#gbu .gbgt-hvr,#gbu .gbgt:focus
+	{
+	background-color: transparent;
+	background-image: none
+}
+
+#gbz .gbz0l .gbts,#gbz .gbzt-hvr,#gbz .gbzt:focus,#gbz .gbgt-hvr,#gbz .gbgt:focus
+	{
+	color: #fff !important
+}
+
+#gbz .gbma {
+	border-top-color: #aaa
+}
+
+#gbz .gbzt-hvr .gbma,#gbz .gbzt:focus .gbma,#gbz .gbgt-hvr .gbma,#gbz .gbgt:focus .gbma
+	{
+	border-top-color: #fff
+}
+
+#gbq1.gbto {
+	-moz-box-shadow: none;
+	-o-box-shadow: none;
+	-webkit-box-shadow: none;
+	box-shadow: none
+}
+
+#gbz .gbto .gbma,#gbz .gbto .gbzt-hvr .gbma,#gbz .gbto .gbzt:focus .gbma,#gbz .gbto .gbgt-hvr .gbma,#gbz .gbto .gbgt:focus .gbma
+	{
+	border-top-color: #000
+}
+
+#gbz .gbto .gbts,#gbd .gbmt {
+	color: #000 !important;
+	font-weight: bold
+}
+
+#gbd .gbmt-hvr,#gbd .gbmt:focus {
+	background-color: #f5f5f5
+}
+
+#gbz .gbts {
+	padding: 0 9px;
+	z-index: 991
+}
+
+#gbz .gbto .gbts {
+	padding-bottom: 1px;
+	padding-top: 2px;
+	z-index: 1000
+}
+
+#gbqlw {
+	cursor: pointer
+}
+
+#gbzw {
+	left: 0;
+	height: 30px;
+	margin-left: 34px;
+	position: absolute;
+	top: 0;
+	z-index: 991
+}
+
+#gbz {
+	height: 30px
+}
+
+.gbemi#gb #gbzw,.gbem#gbzw {
+	height: 30px;
+	margin-left: 18px
+}
+
+.gbeui#gb #gbzw,.gbeu#gbzw,.gbeti#gb #gbzw,.gbet#gbzw,.gbesi#gb #gbzw,.gbes#gbzw
+	{
+	height: 30px;
+	margin-left: 6px
+}
+
+.gbeui#gb #gbzw,.gbeu#gbzw {
+	margin-left: 2px
+}
+
+.gbemi#gb #gbzw #gbz,.gbem#gbzw #gbz {
+	height: 30px
+}
+
+.gbemi#gb #gbx3,.gbem#gbx3 {
+	height: 29px
+}
+
+.gbesi#gb #gbzw #gbz,.gbes#gbzw #gbz {
+	height: 30px
+}
+
+.gbesi#gb #gbx3,.gbes#gbx3 {
+	height: 29px
+}
+
+#gb.gbet #gbx3,#gb.gbeti #gbx3 {
+	min-width: 836px;
+}
+
+#gb.gbeu #gbx3,#gb.gbeui #gbx3 {
+	min-width: 780px;
+}
+
+#gbzw .gbt {
+	line-height: 27px
+}
+
+.gbemi#gb #gbzw .gbt .gbem#gbzw .gbt {
+	line-height: 27px
+}
+
+.gbesi#gb #gbzw .gbt,.gbes#gbzw .gbt {
+	line-height: 27px
+}
+
+.gbqfh#gbq1 {
+	display: none
+}
+
+.gbqfh#gbx1,.gbqfh#gbx2,.gbem#gb .gbqfh#gbx1,.gbem#gb .gbqfh#gbx2,.gbemi#gb .gbqfh#gbx1,.gbemi#gb .gbqfh#gbx2,.gbes#gb .gbqfh#gbx1,.gbes#gb .gbqfh#gbx2,.gbesi#gb .gbqfh#gbx1,.gbesi#gb .gbqfh#gbx2,.gbet#gb .gbqfh#gbx1,.gbet#gb .gbqfh#gbx2,.gbeti#gb .gbqfh#gbx1,.gbeti#gb .gbqfh#gbx2,.gbeu#gb .gbqfh#gbx1,.gbeu#gb .gbqfh#gbx2,.gbeui#gb .gbqfh#gbx1,.gbeui#gb .gbqfh#gbx2
+	{
+	border-bottom-width: 0;
+	height: 0
+}
+
+.gbes#gb,.gbesi#gb {
+	height: 102px
+}
+
+.gbes#gbx1,.gbes#gbx2,.gbes#gbqlw,.gbesi#gb #gbx1,.gbesi#gb #gbx2,.gbesi#gb #gbqlw
+	{
+	height: 71px
+}
+
+#gb .gbes#gbx1,#gb .gbes#gbx2,.gbesi#gb #gbx1,.gbesi#gb #gbx2,#gb .gbes#gbq,#gb .gbes#gbu,.gbesi#gb #gbq,.gbesi#gb #gbu
+	{
+	top: 30px
+}
+
+.gbes#gb #gbbw,.gbesi#gb #gbbw {
+	top: 102px !important
+}
+
+.gbpro.gbes#gb #gbbw,.gbpro.gbesi#gb #gbbw {
+	top: 132px !important
+}
+
+.gbes#gbu,.gbes#gbq2,.gbes#gbq3,.gbesi#gb #gbu,.gbesi#gb #gbq2,.gbesi#gb #gbq3
+	{
+	padding-top: 20px
+}
+
+.gbes#gbq2,.gbesi#gb #gbq2 {
+	padding-bottom: 0
+}
+
+.gbesi#gb .gbto #gbd1,.gbesi#gb .gbto #gbd3,.gbesi#gb .gbto #gbd4,.gbesi#gb .gbto #gbs,.gbto .gbes#gbd1,.gbto .gbes#gbd3,.gbto .gbes#gbd4,.gbes#gbu .gbto #gbs
+	{
+	top: 51px
+}
+
+.gbemi#gb #gbd,.gbem#gbzw #gbd,.gbemi#gb #gbzw .gbto #gbs,.gbem#gbzw .gbto #gbs
+	{
+	top: 29px
+}
+
+.gbesi#gb #gbd,.gbes#gbzw #gbd,.gbesi#gb #gbzw .gbto #gbs,.gbes#gbzw .gbto #gbs
+	{
+	top: 29px
+}
+
+.gbesi#gb #gbzw .gbto .gbts,.gbes#gbzw .gbto .gbts {
+	padding-bottom: 3px
+}
+
+.gbesi#gb #gbg3 .gbmab,.gbes#gbg3 .gbmab,.gbesi#gb #gbgs4 .gbmab,.gbes#gbg4 .gbmab
+	{
+	margin: 40px 0 0
+}
+
+.gbesi#gb #gbg1 .gbmab,.gbes#gbg1 .gbmab {
+	margin: 41px 0 0
+}
+
+.gbesi#gb #gbg1 .gbmac,.gbes#gbg1 .gbmac {
+	margin: 42px 0 0
+}
+
+.gbesi#gb #gbg3 .gbmac,.gbes#gbg3 .gbmac,.gbesi#gb #gbgs4 .gbmac,.gbes#gbg4 .gbmac
+	{
+	margin: 41px 0 0
+}
+
+.gbesi#gb #gbgs4d .gbmab,.gbes#gbg4 #gbgs4d .gbmab {
+	margin: 41px 0 0
+}
+
+.gbesi#gb #gbgs4d .gbmac,.gbes#gbg4 #gbgs4d .gbmac {
+	margin: 42px 0 0
+}
+
+#gbmpas {
+	max-height: 220px
+}
+
+#gbmm {
+	max-height: 530px
+}
+
+.gbsb {
+	-webkit-box-sizing: border-box;
+	display: block;
+	position: relative;
+	*zoom: 1
+}
+
+.gbsbic {
+	overflow: auto
+}
+
+.gbsbis .gbsbt,.gbsbis .gbsbb {
+	-webkit-mask-box-image: -webkit-gradient(linear, left top, right top, color-stop(0, rgba(0, 0, 0
+		, .1) ), color-stop(.5, rgba(0, 0, 0, .8) ),
+		color-stop(1, rgba(0, 0, 0, .1) ) );
+	left: 0;
+	margin-right: 0;
+	opacity: 0;
+	position: absolute;
+	width: 100%
+}
+
+.gbsb .gbsbt:after,.gbsb .gbsbb:after {
+	content: "";
+	display: block;
+	height: 0;
+	left: 0;
+	position: absolute;
+	width: 100%
+}
+
+.gbsbis .gbsbt {
+	background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, .2)
+		), to(rgba(0, 0, 0, 0) ) );
+	background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, .2),
+		rgba(0, 0, 0, 0) );
+	background-image: -moz-linear-gradient(top, rgba(0, 0, 0, .2),
+		rgba(0, 0, 0, 0) );
+	background-image: -ms-linear-gradient(top, rgba(0, 0, 0, .2),
+		rgba(0, 0, 0, 0) );
+	background-image: -o-linear-gradient(top, rgba(0, 0, 0, .2),
+		rgba(0, 0, 0, 0) );
+	background-image: linear-gradient(top, rgba(0, 0, 0, .2),
+		rgba(0, 0, 0, 0) );
+	height: 6px;
+	top: 0
+}
+
+.gbsb .gbsbt:after {
+	border-top: 1px solid #ebebeb;
+	border-color: rgba(0, 0, 0, .3);
+	top: 0
+}
+
+.gbsb .gbsbb {
+	-webkit-mask-box-image: -webkit-gradient(linear, left top, right top, color-stop(0, rgba(0, 0, 0
+		, .1) ), color-stop(.5, rgba(0, 0, 0, .8) ),
+		color-stop(1, rgba(0, 0, 0, .1) ) );
+	background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, .2)
+		), to(rgba(0, 0, 0, 0) ) );
+	background-image: -webkit-linear-gradient(bottom, rgba(0, 0, 0, .2),
+		rgba(0, 0, 0, 0) );
+	background-image: -moz-linear-gradient(bottom, rgba(0, 0, 0, .2),
+		rgba(0, 0, 0, 0) );
+	background-image: -ms-linear-gradient(bottom, rgba(0, 0, 0, .2),
+		rgba(0, 0, 0, 0) );
+	background-image: -o-linear-gradient(bottom, rgba(0, 0, 0, .2),
+		rgba(0, 0, 0, 0) );
+	background-image: linear-gradient(bottom, rgba(0, 0, 0, .2),
+		rgba(0, 0, 0, 0) );
+	bottom: 0;
+	height: 4px
+}
+
+.gbsb .gbsbb:after {
+	border-bottom: 1px solid #ebebeb;
+	border-color: rgba(0, 0, 0, .3);
+	bottom: 0
+}
+
+#sfcnt {
+	display: none
+}
+
+#subform_ctrl {
+	display: none
+}
+</style>
+<style id="gstyle">
+body {
+	margin: 0;
+	overflow-y: scroll
+}
+
+#gog {
+	padding: 3px 8px 0
+}
+
+.gac_m td {
+	line-height: 17px
+}
+
+body,td,a,p,.h {
+	font-family: arial, sans-serif
+}
+
+.h {
+	color: #12c
+}
+
+.q {
+	color: #00c
+}
+
+.ts td {
+	padding: 0
+}
+
+.ts {
+	border-collapse: collapse
+}
+
+em {
+	font-weight: bold;
+	font-style: normal
+}
+
+.lst {
+	height: 20px;
+	width: 496px
+}
+
+.ds {
+	display: -moz-inline-box;
+	display: inline-block
+}
+
+span.ds {
+	margin: 3px 0 4px;
+	margin-left: 4px
+}
+
+.ctr-p {
+	margin: 0 auto;
+	min-width: 980px
+}
+
+.jhp input[type="submit"] {
+	background-image: -moz-linear-gradient(top, #f5f5f5, #f1f1f1);
+	-moz-border-radius: 2px;
+	-moz-user-select: none;
+	background-color: #f5f5f5;
+	background-image: linear-gradient(top, #f5f5f5, #f1f1f1);
+	background-image: -o-linear-gradient(top, #f5f5f5, #f1f1f1);
+	border: 1px solid #dcdcdc;
+	border: 1px solid rgba(0, 0, 0, 0.1);
+	border-radius: 2px;
+	color: #666;
+	cursor: default;
+	font-family: arial, sans-serif;
+	font-size: 11px;
+	font-weight: bold;
+	height: 29px;
+	line-height: 27px;
+	margin: 11px 6px;
+	min-width: 54px;
+	padding: 0 8px;
+	text-align: center
+}
+
+.jhp input[type="submit"]:hover {
+	background-image: -moz-linear-gradient(top, #f8f8f8, #f1f1f1);
+	-moz-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
+	background-color: #f8f8f8;
+	background-image: linear-gradient(top, #f8f8f8, #f1f1f1);
+	background-image: -o-linear-gradient(top, #f8f8f8, #f1f1f1);
+	border: 1px solid #c6c6c6;
+	box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
+	color: #333
+}
+
+.jhp input[type="submit"]:focus {
+	border: 1px solid #4d90fe;
+	outline: none
+}
+
+input {
+	font-family: inherit
+}
+
+a.gb1,a.gb2,a.gb3,a.gb4 {
+	color: #11c !important
+}
+
+body {
+	background: #fff;
+	color: #222
+}
+
+input {
+	-moz-box-sizing: content-box
+}
+
+a {
+	color: #12c;
+	text-decoration: none
+}
+
+a:hover,a:active {
+	text-decoration: underline
+}
+
+.fl a {
+	color: #12c
+}
+
+a:visited {
+	color: #609
+}
+
+a.gb1,a.gb4 {
+	text-decoration: underline
+}
+
+a.gb3:hover {
+	text-decoration: none
+}
+
+#ghead a.gb2:hover {
+	color: #fff !important
+}
+
+.sblc {
+	padding-top: 5px
+}
+
+.sblc a {
+	display: block;
+	margin: 2px 0;
+	margin-left: 13px;
+	font-size: 11px;
+}
+
+.lsbb {
+	height: 30px;
+	display: block
+}
+
+.ftl,#footer a {
+	color: #666;
+	margin: 2px 10px 0
+}
+
+#footer a:active {
+	color: #dd4b39
+}
+
+.lsb {
+	border: none;
+	color: #000;
+	cursor: pointer;
+	height: 30px;
+	margin: 0;
+	outline: 0;
+	font: 15px arial, sans-serif;
+	vertical-align: top
+}
+
+.lst:focus {
+	outline: none
+}
+
+#addlang a {
+	padding: 0 3px
+}
+
+.gac_v div {
+	display: none
+}
+
+.gac_v .gac_v2,.gac_bt {
+	display: block !important
+}
+
+body,html {
+	font-size: small
+}
+
+h1,ol,ul,li {
+	margin: 0;
+	padding: 0
+}
+
+.nojsb {
+	display: none
+}
+
+.nojsv {
+	visibility: hidden
+}
+
+#body,#footer {
+	display: block
+}
+
+#footer {
+	font-size: 10pt;
+	min-height: 49px;
+	position: relative
+}
+
+#footer>div {
+	border-top: 1px solid #ebebeb;
+	bottom: 0;
+	padding-top: 3px;
+	position: absolute;
+	width: 100%
+}
+
+#flci {
+	float: left;
+	margin-left: -260px;
+	text-align: left;
+	width: 260px
+}
+
+#fll {
+	float: right;
+	text-align: right;
+	width: 100%
+}
+
+#ftby {
+	padding-left: 260px
+}
+
+#ftby>div,#fll>div,#footer a {
+	display: inline-block
+}
+
+@media only screen and (min-width:1222px) {
+	#ftby {
+		margin: 0 44px
+	}
+}
+
+.nojsb {
+	display: none
+}
+
+.nojsv {
+	visibility: hidden
+}
+
+.nbcl {
+	background: url(/images/nav_logo114.png) no-repeat -140px -230px;
+	height: 11px;
+	width: 11px
+}
+</style>
+<style>
+.lst-t {
+	width: 100%;
+}
+
+.kpbb,.kprb,.kpgb,.kpgrb {
+	-moz-border-radius: 2px;
+	border-radius: 2px;
+	color: #fff
+}
+
+.kpbb:hover,.kprb:hover,.kpgb:hover,.kpgrb:hover {
+	-moz-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
+	box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
+	color: #fff
+}
+
+.kpbb:active,.kprb:active,.kpgb:active,.kpgrb:active {
+	-moz-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.3);
+	box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.3)
+}
+
+.kpbb {
+	background-image: -moz-linear-gradient(top, #4d90fe, #4787ed);
+	background-color: #4d90fe;
+	background-image: linear-gradient(top, #4d90fe, #4787ed);
+	border: 1px solid #3079ed
+}
+
+.kpbb:hover {
+	background-image: -moz-linear-gradient(top, #4d90fe, #357ae8);
+	background-color: #357ae8;
+	background-image: linear-gradient(top, #4d90fe, #357ae8);
+	border: 1px solid #2f5bb7
+}
+
+a.kpbb:link,a.kpbb:visited {
+	color: #fff
+}
+
+.kprb {
+	background-image: -moz-linear-gradient(top, #dd4b39, #d14836);
+	background-color: #dd4b39;
+	background-image: linear-gradient(top, #dd4b39, #d14836);
+	border: 1px solid #dd4b39
+}
+
+.kprb:hover {
+	background-image: -moz-linear-gradient(top, #dd4b39, #c53727);
+	background-color: #c53727;
+	background-image: linear-gradient(top, #dd4b39, #c53727);
+	border: 1px solid #b0281a;
+	border-color-bottom: #af301f
+}
+
+.kprb:active {
+	background-image: -moz-linear-gradient(top, #dd4b39, #b0281a);
+	background-color: #b0281a;
+	background-image: linear-gradient(top, #dd4b39, #b0281a);
+}
+
+.kpgb {
+	background-image: -moz-linear-gradient(top, #3d9400, #398a00);
+	background-color: #3d9400;
+	background-image: linear-gradient(top, #3d9400, #398a00);
+	border: 1px solid #29691d;
+}
+
+.kpgb:hover {
+	background-image: -moz-linear-gradient(top, #3d9400, #368200);
+	background-color: #368200;
+	background-image: linear-gradient(top, #3d9400, #368200);
+	border: 1px solid #2d6200
+}
+
+.kpgrb {
+	background-image: -moz-linear-gradient(top, #f5f5f5, #f1f1f1);
+	background-color: #f5f5f5;
+	background-image: linear-gradient(top, #f5f5f5, #f1f1f1);
+	border: 1px solid #dcdcdc;
+	color: #555
+}
+
+.kpgrb:hover {
+	background-image: -moz-linear-gradient(top, #f8f8f8, #f1f1f1);
+	background-color: #f8f8f8;
+	background-image: linear-gradient(top, #f8f8f8, #f1f1f1);
+	border: 1px solid #dcdc;
+	color: #333
+}
+
+a.kpgrb:link,a.kpgrb:visited {
+	color: #555
+}
+
+#gbqfq {
+	padding: 1px 0 0 9px
+}
+
+#pocs {
+	background: #fff1a8;
+	color: #000;
+	font-size: 10pt;
+	margin: 0;
+	padding: 5px 7px 0px
+}
+
+#pocs.sft {
+	background: transparent;
+	color: #777
+}
+
+#pocs a {
+	color: #11c
+}
+
+#pocs.sft a {
+	color: #36c
+}
+
+#pocs>div {
+	margin: 0;
+	padding: 0
+}
+
+.gl {
+	white-space: nowrap
+}
+
+.big .tsf-p {
+	padding-left: 220px;
+	padding-right: 260px
+}
+
+.tsf-p {
+	padding-left: 140px;
+	padding-right: 32px
+}
+
+.fade #center_col,.fade #rhs,.fade #leftnav {
+	filter: alpha(opacity = 33.3);
+	opacity: 0.333
+}
+
+.fade-hidden #center_col,.fade-hidden #rhs,.fade-hidden #leftnav {
+	visibility: hidden
+}
+
+.flyr-o,.flyr-w {
+	position: absolute;
+	background-color: #fff;
+	z-index: 3;
+	display: block
+}
+
+.flyr-o {
+	filter: alpha(opacity = 66.6);
+	opacity: 0.666;
+}
+
+.flyr-w {
+	filter: alpha(opacity = 20.0);
+	opacity: 0.2;
+}
+
+.flyr-h {
+	filter: alpha(opacity = 0);
+	opacity: 0
+}
+
+.flyr-c {
+	display: none
+}
+
+.flt,.flt u,a.fl {
+	text-decoration: none
+}
+
+.flt:hover,.flt:hover u,a.fl:hover {
+	text-decoration: underline
+}
+
+#knavm {
+	color: #4273db;
+	display: inline;
+	font: 11px arial, sans-serif !important;
+	left: -13px;
+	position: absolute;
+	top: 2px;
+	z-index: 2
+}
+
+#pnprev #knavm {
+	bottom: 1px;
+	top: auto
+}
+
+#pnnext #knavm {
+	bottom: 1px;
+	left: 40px;
+	top: auto
+}
+
+a.noline {
+	outline: 0
+}
+</style>
+<script>var _gjwl=location;function _gjuc(){var b=_gjwl.href.indexOf("#");if(b>=0){var a=_gjwl.href.substring(b+1);if(/(^|&)q=/.test(a)&&a.indexOf("#")==-1&&!/(^|&)cad=h($|&)/.test(a)){_gjwl.replace("/search?"+a.replace(/(^|&)fp=[^&]*/g,"")+"&cad=h");return 1}}return 0}function _gjp(){!(window._gjwl.hash&&window._gjuc())&&setTimeout(_gjp,500)};
+window.rwt=function(a,f,g,l,m,h,c,n,i){return true};
+(function(){try{var e=!0,h=null,i=!1;var aa=function(a,b,c,d){d=d||{};d._sn=["cfg",b,c].join(".");window.gbar.logger.ml(a,d)};var ba={I:1,K:2,ca:3,C:4,W:5,P:6,v:7,w:8,ga:9,V:10,O:11,A:12,U:13,z:14,S:15,R:16,ea:17,F:18,Q:19,fa:20,da:21,D:22,J:23,ia:24,ja:25,ha:26,G:27,g:28,B:29,u:30,ba:31,Y:32,Z:33,M:34,N:35,aa:36,$:37,X:38,H:39,T:40,L:500};var l=window.gbar=window.gbar||{},n=window.gbar.i=window.gbar.i||{},ca;function _tvn(a,b){var c=parseInt(a,10);return isNaN(c)?b:c}function _tvf(a,b){var c=parseFloat(a);return isNaN(c)?b:c}function _tvv(a){return!!a}function p(a,b,c){(c||l)[a]=b}l.bv={n:_tvn("2",0),r:"r_gc.r_pw.r_qf.",f:".36.40.",m:_tvn("2",1)};
+function da(a,b,c){var d="on"+b;if(a.addEventListener)a.addEventListener(b,c,i);else if(a.attachEvent)a.attachEvent(d,c);else{var g=a[d];a[d]=function(){var a=g.apply(this,arguments),b=c.apply(this,arguments);return void 0==a?b:void 0==b?a:b&&a}}}var ea=function(a){return function(){return l.bv.m==a}},fa=ea(1),ga=ea(2);p("sb",fa);p("kn",ga);n.a=_tvv;n.b=_tvf;n.c=_tvn;n.i=aa;var r=window.gbar.i.i;var s=function(){},t=function(){},u=function(a){var b=new Image,c=ha;b.onerror=b.onload=b.onabort=function(){try{delete ia[c]}catch(a){}};ia[c]=b;b.src=a;ha=c+1},ia=[],ha=0;p("logger",{il:t,ml:s,log:u});var v=window.gbar.logger;var ja=n.a("1"),w={},ka={},x=[],la=function(a,b){x.push([a,b])},ma=function(a,b){w[a]=b},na=function(a){return a in w},z={},A=function(a,b){z[a]||(z[a]=[]);z[a].push(b)},B=function(a){A("m",a)},oa=function(a,b){var c=document.createElement("script");c.src=a;ja&&(c.async=e);-1==navigator.userAgent.search(/MSIE/)&&(c.onerror=function(){c.onerror=h;s(Error("Bundle load failed: name="+(b||"UNK")+" url="+a))});(document.getElementById("xjsc")||document.body).appendChild(c)},
+E=function(a){for(var b=0,c;(c=x[b])&&!(c[0]==a);++b);c&&!c[1].l&&!c[1].s&&(c[1].s=e,C(2,a),c[1].url&&oa(c[1].url,a),c[1].libs&&D&&D(c[1].libs))},pa=function(a){A("gc",a)},F=h,qa=function(a){F=a},C=function(a,b,c){if(F){a={t:a,b:b};if(c)for(var d in c)a[d]=c[d];try{F(a)}catch(g){}}};p("mdc",w);p("mdi",ka);p("bnc",x);p("qGC",pa);p("qm",B);p("qd",z);p("lb",E);p("mcf",ma);p("bcf",la);p("aq",A);p("mdd","");p("has",na);p("trh",qa);p("tev",C);if(n.a("1")){var G=n.a("1"),ra=n.a(""),sa=window.gapi={},ta=function(a,b){var c=function(){l.dgl(a,b)};G?B(c):(A("gl",c),E("gl"))},ua={},va=function(a){for(var a=a.split(":"),b;(b=a.pop())&&ua[b];);return!b},D=function(a){function b(){for(var b=a.split(":"),d=0,g;g=b[d];++d)ua[g]=1;for(b=0;d=x[b];++b)d=d[1],(g=d.libs)&&!d.l&&d.i&&va(g)&&d.i()}l.dgl(a,b)},H=window.___jsl={};H.h="m;/_/abc-static/_/js/gapi/__features__/rt=j/ver=KLeoPG_X_T8.en./sv=1/am=!6NLDMLeKYpaBETGdoQ/d=1";H.ms="https://apis.google.com";H.m="";
+H.l=[];G||x.push(["gl",{url:"//ssl.gstatic.com/gb/js/abc/glm_e7bb39a7e1a24581ff4f8d199678b1b9.js"}]);var wa={"export":"1",isPlusUser:ra,socialhost:""};w.gl=wa;p("load",ta,sa);p("dgl",ta);p("agl",va);n.o=G};var xa=n.b("0.01",1.0E-4),ya=0;
+function _mlToken(a,b){try{if(1>ya){ya++;var c,d=a,g=b||{},f=encodeURIComponent,j="es_plusone_gc_20120731.0_p0",k=["//www.google.com/gen_204?atyp=i&zx=",(new Date).getTime(),"&jexpid=",f("37102"),"&srcpg=",f("prop=1"),"&jsr=",Math.round(1/xa),"&ogf=",l.bv.f,"&ogrp=",f(""),"&ogv=",f("1348023713.1348512604"),j?"&oggv="+f(j):"","&ogd=",f("de"),"&ogl=",f("de")];g._sn&&(g._sn="og."+g._sn);for(var m in g)k.push("&"),
+k.push(f(m)),k.push("="),k.push(f(g[m]));k.push("&emsg=");k.push(f(d.name+":"+d.message));var q=k.join("");za(q)&&(q=q.substr(0,2E3));c=q;var y=window.gbar.logger._aem(a,c);u(y)}}catch(W){}}var za=function(a){return 2E3<=a.length},Ba=function(a,b){return b};function Ea(a){s=a;p("_itl",za,v);p("_aem",Ba,v);p("ml",s,v);a={};w.er=a}n.a("")?Ea(function(a){throw a;}):n.a("1")&&Math.random()<xa&&Ea(_mlToken);var _E="left",J=function(a,b){var c=a.className;I(a,b)||(a.className+=(""!=c?" ":"")+b)},K=function(a,b){var c=a.className,d=RegExp("\\s?\\b"+b+"\\b");c&&c.match(d)&&(a.className=c.replace(d,""))},I=function(a,b){var c=RegExp("\\b"+b+"\\b"),d=a.className;return!(!d||!d.match(c))},Fa=function(a,b){I(a,b)?K(a,b):J(a,b)};p("ca",J);p("cr",K);p("cc",I);n.k=J;n.l=K;n.m=I;n.n=Fa;var Ga=["gb_71","gb_155"],L;function Ha(a){L=a}function Ia(a){var b=L&&!a.href.match(/.*\/accounts\/ClearSID[?]/)&&encodeURIComponent(L());b&&(a.href=a.href.replace(/([?&]continue=)[^&]*/,"$1"+b))}function Ja(a){window.gApplication&&(a.href=window.gApplication.getTabUrl(a.href))}function Ka(a){try{var b=(document.forms[0].q||"").value;b&&(a.href=a.href.replace(/([?&])q=[^&]*|$/,function(a,c){return(c||"&")+"q="+encodeURIComponent(b)}))}catch(c){r(c,"sb","pq")}}
+var La=function(){for(var a=[],b=0,c;c=Ga[b];++b)(c=document.getElementById(c))&&a.push(c);return a},Ma=function(){var a=La();return 0<a.length?a[0]:h},Na=function(){return document.getElementById("gb_70")},M={},N={},Oa={},O={},P=void 0,Ta=function(a,b){try{var c=document.getElementById("gb");J(c,"gbpdjs");Q();Pa(document.body)&&J(c,"gbrtl");if(b&&b.getAttribute){var d=b.getAttribute("aria-owns");if(d.length){var g=document.getElementById(d);if(g){var f=b.parentNode;if(P==d)P=void 0,K(f,"gbto");else{if(P){var j=
+document.getElementById(P);if(j&&j.getAttribute){var k=j.getAttribute("aria-owner");if(k.length){var m=document.getElementById(k);m&&m.parentNode&&K(m.parentNode,"gbto")}}}Qa(g)&&Ra(g);P=d;J(f,"gbto")}}}}B(function(){l.tg(a,b,e)});Sa(a)}catch(q){r(q,"sb","tg")}},Ua=function(a){B(function(){l.close(a)})},Pa=function(a){var b,c="direction",d=document.defaultView;d&&d.getComputedStyle?(a=d.getComputedStyle(a,""))&&(b=a[c]):b=a.currentStyle?a.currentStyle[c]:a.style[c];return"rtl"==b},Wa=function(a,b,
+c){if(a)try{var d=document.getElementById("gbd5");if(d){var g=d.firstChild,f=g.firstChild,j=document.createElement("li");j.className=b+" gbmtc";j.id=c;a.className="gbmt";j.appendChild(a);if(f.hasChildNodes()){for(var c=[["gbkc"],["gbf","gbe","gbn"],["gbkp"],["gbnd"]],d=0,k=f.childNodes.length,g=i,m=-1,q=0,y;y=c[q];q++){for(var W=0,Y;Y=y[W];W++){for(;d<k&&I(f.childNodes[d],Y);)d++;if(Y==b){f.insertBefore(j,f.childNodes[d]||h);g=e;break}}if(g){if(d+1<f.childNodes.length){var Aa=f.childNodes[d+1];!I(Aa.firstChild,
+"gbmh")&&!Va(Aa,y)&&(m=d+1)}else if(0<=d-1){var Ca=f.childNodes[d-1];!I(Ca.firstChild,"gbmh")&&!Va(Ca,y)&&(m=d)}break}0<d&&d+1<k&&d++}if(0<=m){var Z=document.createElement("li"),Da=document.createElement("div");Z.className="gbmtc";Da.className="gbmt gbmh";Z.appendChild(Da);f.insertBefore(Z,f.childNodes[m])}l.addHover&&l.addHover(a)}else f.appendChild(j)}}catch(pb){r(pb,"sb","al")}},Va=function(a,b){for(var c=b.length,d=0;d<c;d++)if(I(a,b[d]))return e;return i},Xa=function(a,b,c){Wa(a,b,c)},Ya=function(a,
+b){Wa(a,"gbe",b)},Za=function(){B(function(){l.pcm&&l.pcm()})},$a=function(){B(function(){l.pca&&l.pca()})},ab=function(a,b,c,d,g,f,j,k,m,q){B(function(){l.paa&&l.paa(a,b,c,d,g,f,j,k,m,q)})},bb=function(a,b){M[a]||(M[a]=[]);M[a].push(b)},cb=function(a,b){N[a]||(N[a]=[]);N[a].push(b)},db=function(a,b){Oa[a]=b},eb=function(a,b){O[a]||(O[a]=[]);O[a].push(b)},Sa=function(a){a.preventDefault&&a.preventDefault();a.returnValue=i;a.cancelBubble=e},R=h,Ra=function(a,b){Q();if(a){fb(a,"Wird geöffnet&hellip;");
+S(a,e);var c="undefined"!=typeof b?b:1E4,d=function(){gb(a)};R=window.setTimeout(d,c)}},hb=function(a){Q();a&&(S(a,i),fb(a,""))},gb=function(a){try{Q();var b=a||document.getElementById(P);b&&(fb(b,"Dieser Dienst ist zurzeit nicht verfügbar.%1$sBitte versuchen Sie es später erneut.","%1$s"),S(b,e))}catch(c){r(c,"sb","sdhe")}},fb=function(a,b,c){if(a&&b){var d=Qa(a);if(d){if(c){d.innerHTML="";for(var b=b.split(c),c=0,g;g=b[c];c++){var f=document.createElement("div");f.innerHTML=g;d.appendChild(f)}}else d.innerHTML=b;S(a,e)}}},S=function(a,b){var c=void 0!==
+b?b:e;c?J(a,"gbmsgo"):K(a,"gbmsgo")},Qa=function(a){for(var b=0,c;c=a.childNodes[b];b++)if(I(c,"gbmsg"))return c},Q=function(){R&&window.clearTimeout(R)},ib=function(a){var b="inner"+a,a="offset"+a;return window[b]?window[b]:document.documentElement&&document.documentElement[a]?document.documentElement[a]:0};p("so",Ma);p("sos",La);p("si",Na);p("tg",Ta);p("close",Ua);p("addLink",Xa);p("addExtraLink",Ya);p("pcm",Za);p("pca",$a);p("paa",ab);p("ddld",Ra);p("ddrd",hb);p("dderr",gb);p("rtl",Pa);
+p("bh",M);p("abh",bb);p("dh",N);p("adh",cb);p("ch",O);p("ach",eb);p("eh",Oa);p("aeh",db);ca=n.a("")?Ja:Ka;p("qs",ca);p("setContinueCb",Ha);p("pc",Ia);n.d=Sa;n.j=ib;var jb={};w.base=jb;x.push(["m",{url:"//ssl.gstatic.com/gb/js/sem_9d2b852f41bb993a0833b0a332253abb.js"}]);l.sg={c:"1"};p("wg",{rg:{}});var kb={tiw:n.c("15000",0),tie:n.c("30000",0)};w.wg=kb;var lb={thi:n.c("10000",0),thp:n.c("180000",0),tho:n.c("5000",0),tet:n.b("0.5",0)};w.wm=lb;if(n.a("1")){var mb=n.a("");x.push(["gc",{auto:mb,url:"//ssl.gstatic.com/gb/js/abc/gci_91f30755d6a6b787dcc2a4062e6e9824.js",libs:"googleapis.client:plusone"}]);var nb={version:"gci_91f30755d6a6b787dcc2a4062e6e9824.js",index:"",lang:"de"};w.gc=nb;var ob=function(a){window.googleapis&&window.iframes?a&&a():(a&&pa(a),E("gc"))};p("lGC",ob);n.a("1")&&p("lPWF",ob)};window.__PVT="";if(n.a("1")&&n.a("1")){var qb=function(a){ob(function(){A("pw",a);E("pw")})};p("lPW",qb);x.push(["pw",{url:"//ssl.gstatic.com/gb/js/abc/pwm_45f73e4df07a0e388b0fa1f3d30e7280.js"}]);var rb=[],sb=function(a){rb[0]=a},tb=function(a,b){var c=b||{};c._sn="pw";s(a,c)},ub={signed:rb,elog:tb,base:"https://plusone.google.com/u/0",loadTime:(new Date).getTime()};w.pw=ub;var vb=function(a,b){for(var c=b.split("."),d=function(){var b=arguments;a(function(){for(var a=l,d=0,f=c.length-1;d<f;++d)a=a[c[d]];a[c[d]].apply(a,b)})},g=l,f=0,j=c.length-
+1;f<j;++f)g=g[c[f]]=g[c[f]]||{};return g[c[f]]=d};vb(qb,"pw.clk");vb(qb,"pw.hvr");p("su",sb,l.pw)};var wb=n.b("0.001",1.0E-4),xb=n.b("0.01",1),yb=i,zb=i;if(n.a("1")){var Ab=Math.random();Ab<=wb&&(yb=e);Ab<=xb&&(zb=e)}var T=ba;
+function Bb(a,b){var c=wb,d=yb,g;g=34>=a?a<=T.z?a==T.v||a==T.w||a==T.A?i:e:a>=T.g&&a<=T.u?e:i:200<=a?e:i;g&&(c=xb,d=zb);if(d){d=encodeURIComponent;g="es_plusone_gc_20120731.0_p0";var f;l.rp?(f=l.rp(),f="-1"!=f?f:""):f="";var j=0;n.a("")&&(j|=1);n.a("")&&(j|=2);c=["//www.google.com/gen_204?atyp=i&zx=",(new Date).getTime(),"&oge=",a,"&ogex=",d("37102"),"&ogf=",l.bv.f,"&ogp=",d("1"),"&ogrp=",
+d(f),"&ogsr=",Math.round(1/c),"&ogv=",d("1348023713.1348512604"),g?"&oggv="+d(g):"","&ogd=",d("de"),"&ogl=",d("de"),"&ogus=",j];if(b){"ogw"in b&&(c.push("&ogw="+b.ogw),delete b.ogw);var k;g=b;f=[];for(k in g)0!=f.length&&f.push(","),f.push(k),f.push("."),f.push(g[k]);k=f.join("");""!=k&&(c.push("&ogad="),c.push(d(k)))}u(c.join(""))}}t=Bb;p("il",t,v);var Cb={};w.il=Cb;var Db=function(a,b,c,d,g,f,j,k,m,q){B(function(){l.paa(a,b,c,d,g,f,j,k,m,q)})},Eb=function(){B(function(){l.prm()})},Fb=function(a){B(function(){l.spn(a)})},Gb=function(a){B(function(){l.sps(a)})},Hb=function(a){B(function(){l.spp(a)})},Ib={"27":"//ssl.gstatic.com/gb/images/silhouette_27.png","27":"//ssl.gstatic.com/gb/images/silhouette_27.png","27":"//ssl.gstatic.com/gb/images/silhouette_27.png"},Jb=function(a){return(a=Ib[a])||"//ssl.gstatic.com/gb/images/silhouette_27.png"},
+Kb=function(){B(function(){l.spd()})};p("spn",Fb);p("spp",Hb);p("sps",Gb);p("spd",Kb);p("paa",Db);p("prm",Eb);bb("gbd4",Eb);
+if(n.a("")){var Lb={d:n.a(""),e:"",sanw:n.a(""),p:"//ssl.gstatic.com/gb/images/silhouette_96.png",cp:"1",xp:n.a("1"),mg:"%1$s (delegiert)",md:"%1$s (Standard)",mh:"220",s:"1",pp:Jb,ppl:n.a(""),ppa:n.a(""),
+ppm:"Google+ Seite"};w.prf=Lb};var U,Mb,V,Nb,X=0,Ob=function(a,b,c){if(a.indexOf)return a.indexOf(b,c);if(Array.indexOf)return Array.indexOf(a,b,c);for(c=c==h?0:0>c?Math.max(0,a.length+c):c;c<a.length;c++)if(c in a&&a[c]===b)return c;return-1},$=function(a,b){return-1==Ob(a,X)?(r(Error(X+"_"+b),"up","caa"),i):e},Qb=function(a,b){$([1,2],"r")&&(U[a]=U[a]||[],U[a].push(b),2==X&&window.setTimeout(function(){b(Pb(a))},0))},Rb=function(a,b,c){if($([1],"nap")&&c){for(var d=0;d<c.length;d++)Mb[c[d]]=e;l.up.spl(a,b,"nap",c)}},Sb=function(a,
+b,c){if($([1],"aop")&&c){if(V)for(var d in V)V[d]=V[d]&&-1!=Ob(c,d);else{V={};for(d=0;d<c.length;d++)V[c[d]]=e}l.up.spl(a,b,"aop",c)}},Tb=function(){try{if(X=2,!Nb){Nb=e;for(var a in U)for(var b=U[a],c=0;c<b.length;c++)try{b[c](Pb(a))}catch(d){r(d,"up","tp")}}}catch(g){r(g,"up","mtp")}},Pb=function(a){if($([2],"ssp")){var b=!Mb[a];V&&(b=b&&!!V[a]);return b}};Nb=i;U={};Mb={};V=h;
+var X=1,Ub=function(){try{return"object"==typeof window.localStorage}catch(a){return i}},Vb=function(a,b,c,d){try{d||(b="og-up-"+b),Ub()?window.localStorage.setItem(b,c):a&&(a.setAttribute(b,c),a.save(a.id))}catch(g){r(g,"up","spd")}},Wb=function(a,b,c){try{c||(b="og-up-"+b);if(Ub())return window.localStorage.getItem(b);if(a)return a.load(a.id),a.getAttribute(b)}catch(d){r(d,"up","gpd")}return""},Xb=function(a,b,c){a.addEventListener?a.addEventListener(b,c,i):a.attachEvent&&a.attachEvent("on"+b,c)};
+p("up",{r:Qb,nap:Rb,aop:Sb,tp:Tb,ssp:Pb,spd:Vb,gpd:Wb,aeh:Xb});var Yb=function(a,b){a[b]=function(c){var d=arguments;l.qm(function(){a[b].apply(this,d)})}};Yb(l.up,"sl");Yb(l.up,"si");Yb(l.up,"spl");l.mcf("up",{sp:n.b("0.01",1)});function Zb(){function a(){for(var b;(b=f[j++])&&!("m"==b[0]||b[1].auto););b&&(C(2,b[0]),b[1].url&&oa(b[1].url,b[0]),b[1].libs&&D&&D(b[1].libs));j<f.length&&setTimeout(a,0)}function b(){0<g--?setTimeout(b,0):a()}var c=n.a("1"),d=n.a(""),g=3,f=x,j=0,k=window.gbarOnReady;if(k)try{k()}catch(m){r(m,"ml","or")}d?p("ldb",a):c?da(window,"load",b):b()}p("rdl",Zb);}catch(e){window.gbar&&gbar.logger&&gbar.logger.ml(e,{"_sn":"cfg.init"});}})();
+(function(){try{var b=window.gbar;var d=function(a,c){b[a]=function(){return window.navigator&&window.navigator.userAgent?c(window.navigator.userAgent):!1}},e=function(a){return!(/AppleWebKit\/.+(?:Version\/[35]\.|Chrome\/[01]\.)/.test(a)||-1!=a.indexOf("Firefox/3.5."))};d("bs_w",e);}catch(e){window.gbar&&gbar.logger&&gbar.logger.ml(e,{"_sn":"cfg.init"});}})();
+(function(){try{var a=window.gbar;a.mcf("sf",{});}catch(e){window.gbar&&gbar.logger&&gbar.logger.ml(e,{"_sn":"cfg.init"});}})();
+(function(){try{var aa=window.gbar.i.i;var a=window.gbar;var e=a.i;var i,k,s=function(b,d){aa(b,"es",d)},t=function(b){return document.getElementById(b)},u=function(b,d){var f=Array.prototype.slice.call(arguments,1);return function(){var c=Array.prototype.slice.call(arguments);c.unshift.apply(c,f);return b.apply(this,c)}},v=void 0,w=void 0,fa=e.c("840"),ga=e.c("640");e.c("840");
+var ha=e.c("640"),ia=e.c("590"),ja=e.c("1514"),ka=e.c("1474");e.c("1474");var la=e.c("1252"),ma=e.c("1060"),na=e.c("995"),oa=e.c("851"),y={},z={},A={},B={},C={},D={},E={};y.h=e.c("102");y.m=e.c("44");y.f=e.c("220");
+z.h=e.c("102");z.m=e.c("44");z.f=e.c("220");A.h=e.c("102");A.m=e.c("44");A.f=e.c("220");B.h=e.c("102");B.m=e.c("28");B.f=e.c("160");C.h=e.c("102");C.m=e.c("16");C.f=e.c("140");D.h=e.c("102");
+D.m=e.c("16");D.f=e.c("140");E.h=e.c("102");E.m=e.c("12");E.f=e.c("136");
+var F=e.c("16"),G=e.c("572"),pa=e.c("434"),qa=e.c("319"),ra=e.c("572"),sa=e.c("572"),ta=e.c("572"),ua=e.c("434"),va=e.c("319"),wa=e.c("220"),xa=e.c("220"),ya=e.c("220"),
+za=e.c("160"),Aa=e.c("140"),Ba=e.c("140"),Ca=e.c("136"),Da=e.c("15"),Ea=e.c("15"),H=e.c("15"),Fa=e.c("15"),Ga=e.c("6"),Ha=e.c("6"),Ia=e.c("6"),
+Ja=e.c("44"),Ka=e.c("44"),La=e.c("44"),Ma=e.c("28"),Na=e.c("16"),Oa=e.c("16"),Pa=e.c("12"),Qa=e.c("15");e.a("1");
+var Ra=e.c("980"),Sa="gb,gbq,gbu,gbzw,gbpr,gbq2,gbqf,gbqff,gbq3,gbq1,gbqlw,gbql,gbmail,gbx1,gbx2,gbx3,gbx4,gbg1,gbg3,gbg4,gbd1,gbd3,gbd4,gbs,gbwc,gbprc".split(","),J=["gbzw"],M=e.a(""),Ta=e.a(""),N=[],R=!0,T=function(b){try{a.close();var d=e.c("27");"xxl"==b?(S("gbexxl"),d=e.c("27")):"xl"==b?(S("gbexl"),d=e.c("27")):"lg"==b?(S(""),
+d=e.c("27")):"md"==b?(S("gbem"),d=e.c("27")):"sm"==b?S("gbes"):"ty"==b?S("gbet"):"ut"==b&&S("gbeu");if(window.opera)for(var f=J.length,b=0;b<f;b++){var c=t(J[b]);if(c){var n=c.style.display;c.style.display="none";b+=0*c.clientHeight;c.style.display=n}}a.sps(d)}catch(p){s(p,"stem")}},Ua=u(T,"xxl"),Va=u(T,"xl"),Wa=u(T,"lg"),Xa=u(T,"md"),Ya=u(T,"sm"),Za=u(T,"ty"),$a=u(T,"ut"),X=function(b){try{T(b);var d=e.j("Height"),f=e.j("Width"),
+c=A;switch(b){case "ut":c=E;break;case "ty":c=D;break;case "sm":c=C;break;case "md":c=B;break;case "lg":c=A;break;case "xl":c=z;break;case "xxl":c=y}U(d,f,b,c);W()}catch(n){s(n,"seme")}},ab=function(b){try{N.push(b)}catch(d){s(d,"roec")}},Y=function(){if(R)try{for(var b=0,d;d=N[b];++b)d(i)}catch(f){s(f,"eoec")}},bb=function(b){try{return R=b}catch(d){s(d,"ear")}},cb=function(){var b=e.j("Height"),d=e.j("Width"),f=A,c="lg";if(d<oa&&M)c="ut",f=E;else if(d<na&&M)c="ty",f=D;else if(d<ma||b<ia)c="sm",
+f=C;else if(d<la||b<ha)c="md",f=B;Ta&&(d>ka&&b>ga&&(c="xl",f=z),d>ja&&b>fa&&(c="xxl",f=y));U(b,d,c,f);return c},W=function(){try{var b=t("gbx1");if(b){var d=a.rtl(document.body),f=b.clientWidth,b=f<=Ra,c=t("gb_70"),n=t("gbg4"),p=t("gbg6")||n;if(!v)if(c)v=c.clientWidth;else if(p)v=p.clientWidth;else return;if(!w){var q=t("gbg3");q&&(w=q.clientWidth)}var V=i.mo,r,j,l;switch(V){case "xxl":r=Ja;j=Da;l=wa;break;case "xl":r=Ka;j=Ea;l=xa;break;case "md":r=Ma;j=Fa;l=za;break;case "sm":r=Na-F;j=Ga;l=Aa;break;
+case "ty":r=Oa-F;j=Ha;l=Ba;break;case "ut":r=Pa-F;j=Ia;l=Ca;break;default:r=La,j=H,l=ya}var m=a.snw&&a.snw();m&&(l+=m+j);var m=v,x=t("gbg1");x&&(m+=x.clientWidth+j);(q=t("gbg3"))&&(m+=w+j);var O=t("gbgs4dn");n&&!O&&(m+=n.clientWidth+j);var ba=t("gbd4"),P=t("gb_71");P&&!ba&&(m+=P.clientWidth+j+H);var m=Math.min(304,m),Q=l+r,K=t("gbqfbw");K&&(K.style.display="",Q+=K.clientWidth+2*Qa);l=f-Q;var ca=t("gbqf"),da=t("gbqff"),h=a.gpcc&&a.gpcc();if(ca&&da&&!h){h=f-m-Q;switch(V){case "ut":h=Math.min(h,va);
+h=Math.max(h,qa);break;case "ty":h=Math.min(h,ua);h=Math.max(h,pa);break;case "xl":h=Math.min(h,ta);h=Math.max(h,G);break;case "xxl":h=Math.min(h,sa);h=Math.max(h,G);break;default:h=Math.min(h,ra),h=Math.max(h,G)}ca.style.maxWidth=h+"px";da.style.maxWidth=h+"px";l-=h}var g=t("gbgs3");g&&((V=236>=l)?a.ca(g,"gbsbc"):a.cr(g,"gbsbc"));g=l;x&&(x.style.display="",g-=x.clientWidth+j);q&&(q.style.display="",g-=q.clientWidth+j);n&&!O&&(g-=n.clientWidth+j);P&&!ba&&(g-=P.clientWidth+j+H);var n=O?0:35,L=O||t("gbi4t");
+if(L&&!c){g>n?(L.style.display="",L.style.maxWidth=g+"px"):L.style.display="none";p&&(p.style.width=g<v&&g>n?g+"px":"");var ea=t("gbgs4d"),p="left";v>g^d&&(p="right");L.style.textAlign=p;ea&&(ea.style.textAlign=p)}q&&0>g&&(g+=q.clientWidth,q.style.display="none");x&&0>g&&(g+=x.clientWidth,x.style.display="none");if(K&&(0>g||c&&g<c.clientWidth))K.style.display="none";var c=d?"right":"left",d=d?"left":"right",I=t("gbu"),fb=""!=I.style[c];b?(I.style[c]=f-I.clientWidth-r+"px",I.style[d]="auto"):(I.style[c]=
+"",I.style[d]="");b!=fb&&a.swsc&&a.swsc(b)}}catch(gb){s(gb,"cb")}},U=function(b,d,f,c){i={};i.mo=f;i.vh=b;i.vw=d;i.es=c;f!=k&&(Y(),e.f&&e.f())},db=function(b){y.h+=b;z.h+=b;A.h+=b;B.h+=b;C.h+=b;D.h+=b;E.h+=b},eb=function(){return i},hb=function(){try{if(!0==R){var b=k;k=cb();if(b!=k)switch(k){case "ut":$a();break;case "ty":Za();break;case "sm":Ya();break;case "md":Xa();break;case "xl":Va();break;case "xxl":Ua();break;default:Wa()}}W()}catch(d){s(d,"sem")}},S=function(b){var d=t("gb");d&&Z(d,"gbexxli,gbexli,,gbemi,gbesi,gbeti,gbeui".split(","));
+for(var d=[],f=0,c;c=Sa[f];f++)if(c=t(c)){switch(b){case "gbexxl":Z(c,"gbexl,,gbem,gbes,gbet,gbeu".split(","));a.ca(c,b);break;case "gbexl":Z(c,"gbexxl,,gbem,gbes,gbet,gbeu".split(","));a.ca(c,b);break;case "":Z(c,"gbexxl,gbexl,gbem,gbes,gbet,gbeu".split(","));a.ca(c,b);break;case "gbem":Z(c,"gbexxl,gbexl,,gbes,gbet,gbeu".split(","));a.ca(c,b);break;case "gbes":Z(c,"gbexxl,gbexl,,gbem,gbet,gbeu".split(","));a.ca(c,b);break;case "gbet":Z(c,"gbexxl,gbexl,,gbem,gbes,gbeu".split(","));a.ca(c,b);break;
+case "gbeu":Z(c,"gbexxl,gbexl,,gbem,gbes,gbet".split(",")),a.ca(c,b)}d.push(c)}return d},Z=function(b,d){for(var f=0,c=d.length;f<c;++f)d[f]&&a.cr(b,d[f])},ib=function(){try{if(!0==R)switch(cb()){case "ut":$("gbeui");break;case "ty":$("gbeti");break;case "sm":$("gbesi");break;case "md":$("gbemi");break;case "xl":$("gbexli");break;case "xxl":$("gbexxli");break;default:$("")}W()}catch(b){s(b,"semol")}},$=function(b){var d=t("gb");d&&a.ca(d,b)};a.eli=ib;a.elg=hb;a.elxxl=u(X,"xxl");a.elxl=u(X,"xl");
+a.ell=u(X,"lg");a.elm=u(X,"md");a.els=u(X,"sm");a.elr=eb;a.elc=ab;a.elx=Y;a.elh=db;a.ela=bb;a.elp=W;a.upel=u(X,"lg");a.upes=u(X,"md");a.upet=u(X,"sm");ib();hb();a.mcf("el",{});}catch(e){window.gbar&&gbar.logger&&gbar.logger.ml(e,{"_sn":"cfg.init"});}})();
+(function(){try{var a=window.gbar;var d=function(){return document.getElementById("gbqfqw")},h=function(){return document.getElementById("gbqfq")},i=function(){return document.getElementById("gbqf")},j=function(){return document.getElementById("gbqfb")},l=function(b){var c=document.getElementById("gbqfaa");c.appendChild(b);k()},m=function(b){var c=document.getElementById("gbqfab");c.appendChild(b);k()},k=function(){var b=document.getElementById("gbqfqwb");if(b){var c=document.getElementById("gbqfaa"),e=document.getElementById("gbqfab");
+if(c||e){var f="left",g="right";a.rtl(document.body)&&(f="right",g="left");c&&(b.style[f]=c.offsetWidth+"px");e&&(b.style[g]=e.offsetWidth+"px")}}},n=function(b){a.qm(function(){a.qfhi(b)})};a.qfgw=d;a.qfgq=h;a.qfgf=i;a.qfas=l;a.qfae=m;a.qfau=k;a.qfhi=n;a.qfsb=j;}catch(e){window.gbar&&gbar.logger&&gbar.logger.ml(e,{"_sn":"cfg.init"});}})();
+(function(){try{var c=window.gbar.i.i;var e=window.gbar;var f="gbq1,gbq2,gbpr,gbqfbwa,gbx1,gbx2".split(","),h=function(b){var a=document.getElementById("gbqld");if(a&&(a.style.display=b?"none":"block",a=document.getElementById("gbql")))a.style.display=b?"block":"none"},i=function(){try{for(var b=0,a;a=f[b];b++){var d=document.getElementById(a);d&&e.ca(d,"gbqfh")}e.elp&&e.elp();h(!0)}catch(g){c(g,"gas","ahcc")}},j=function(){try{for(var b=0,a;a=f[b];b++){var d=document.getElementById(a);d&&e.cr(d,"gbqfh")}e.elp&&e.elp();h(!1)}catch(g){c(g,"gas","rhcc")}},
+k=function(){try{var b=document.getElementById(f[0]);return b&&e.cc(b,"gbqfh")}catch(a){c(a,"gas","ih")}};e.gpca=i;e.gpcr=j;e.gpcc=k;}catch(e){window.gbar&&gbar.logger&&gbar.logger.ml(e,{"_sn":"cfg.init"});}})();
+(function(){try{var b=window.gbar.i.i;var c=window.gbar;var f=function(d){try{var a=document.getElementById("gbom");a&&d.appendChild(a.cloneNode(!0))}catch(e){b(e,"omas","aomc")}};c.aomc=f;}catch(e){window.gbar&&gbar.logger&&gbar.logger.ml(e,{"_sn":"cfg.init"});}})();
+(function(){try{var a=window.gbar;a.mcf("pm",{p:""});}catch(e){window.gbar&&gbar.logger&&gbar.logger.ml(e,{"_sn":"cfg.init"});}})();
+(function(){try{var a=window.gbar;a.mcf("mm",{s:"1"});}catch(e){window.gbar&&gbar.logger&&gbar.logger.ml(e,{"_sn":"cfg.init"});}})();
+(function(){try{var d=window.gbar.i.i;var e=window.gbar;var f=e.i;var g=f.c("1",0),h=/\bgbmt\b/,i=function(a){try{var b=document.getElementById("gb_"+g),c=document.getElementById("gb_"+a);b&&f.l(b,h.test(b.className)?"gbm0l":"gbz0l");c&&f.k(c,h.test(c.className)?"gbm0l":"gbz0l")}catch(j){d(j,"sj","ssp")}g=a},k=e.qs,l=function(a){var b;b=a.href;var c=window.location.href.match(/.*?:\/\/[^\/]*/)[0],c=RegExp("^"+c+"/search\\?");if((b=c.test(b))&&!/(^|\\?|&)ei=/.test(a.href))if((b=window.google)&&b.kEXPI)a.href+="&ei="+b.kEI},m=function(a){k(a);
+l(a)},n=function(){if(window.google&&window.google.sn){var a=/.*hp$/;return a.test(window.google.sn)?"":"1"}return"-1"};e.rp=n;e.slp=i;e.qs=m;e.qsi=l;}catch(e){window.gbar&&gbar.logger&&gbar.logger.ml(e,{"_sn":"cfg.init"});}})();
+(function(){try{window.gbar.rdl();}catch(e){window.gbar&&gbar.logger&&gbar.logger.ml(e,{"_sn":"cfg.init"});}})();
+</script>
+<style type="text/css">
+.gsfe_a {
+	border: 1px solid #b9b9b9;
+	border-top-color: #a0a0a0;
+	box-shadow: inset 0px 1px 2px rgba(0, 0, 0, 0.1);
+	-moz-box-shadow: inset 0px 1px 2px rgba(0, 0, 0, 0.1);
+	-webkit-box-shadow: inset 0px 1px 2px rgba(0, 0, 0, 0.1);
+}
+
+.gsfe_b {
+	border: 1px solid #4d90fe;
+	outline: none;
+	box-shadow: inset 0px 1px 2px rgba(0, 0, 0, 0.3);
+	-moz-box-shadow: inset 0px 1px 2px rgba(0, 0, 0, 0.3);
+	-webkit-box-shadow: inset 0px 1px 2px rgba(0, 0, 0, 0.3);
+}
+
+.gsib_a {
+	width: 100%;
+	padding: 4px 6px 0
+}
+
+.gsib_a,.gsib_b {
+	vertical-align: top
+}
+
+.gssb_a {
+	padding: 0 7px
+}
+
+.gssb_a,.gssb_a td {
+	white-space: nowrap;
+	overflow: hidden;
+	line-height: 22px
+}
+
+#gssb_b {
+	font-size: 11px;
+	color: #36c;
+	text-decoration: none
+}
+
+#gssb_b:hover {
+	font-size: 11px;
+	color: #36c;
+	text-decoration: underline
+}
+
+.gssb_m {
+	color: #000;
+	background: #fff
+}
+
+.gssb_g {
+	text-align: center;
+	padding: 8px 0 7px;
+	position: relative
+}
+
+.gssb_h {
+	font-size: 15px;
+	height: 28px;
+	margin: 0.2em
+}
+
+.gssb_i {
+	background: #eee
+}
+
+.gss_ifl {
+	visibility: hidden;
+	padding-left: 5px
+}
+
+.gssb_i .gss_ifl {
+	visibility: visible
+}
+
+a.gssb_j {
+	font-size: 13px;
+	color: #36c;
+	text-decoration: none;
+	line-height: 100%
+}
+
+a.gssb_j:hover {
+	text-decoration: underline
+}
+
+.gssb_l {
+	height: 1px;
+	background-color: #e5e5e5
+}
+
+.gssb_c {
+	border: 0;
+	position: absolute;
+	z-index: 989
+}
+
+.gssb_e {
+	border: 1px solid #ccc;
+	border-top-color: #d9d9d9;
+	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
+	-moz-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
+	cursor: default
+}
+
+.gssb_f {
+	visibility: hidden;
+	white-space: nowrap
+}
+
+.gssb_k {
+	border: 0;
+	display: block;
+	position: absolute;
+	top: 0;
+	z-index: 988
+}
+
+.gsdd_a {
+	border: none !important
+}
+
+.gscp_a,.gscp_c,.gscp_d,.gscp_e,.gscp_f {
+	display: inline-block;
+	vertical-align: bottom
+}
+
+.gscp_f {
+	border: none
+}
+
+.gscp_a {
+	background: #d9e7fe;
+	border: 1px solid #9cb0d8;
+	cursor: default;
+	outline: none;
+	text-decoration: none !important;
+	user-select: none;
+	-moz-user-select: none;
+}
+
+.gscp_a:hover {
+	border-color: #869ec9
+}
+
+.gscp_a.gscp_b {
+	background: #4787ec;
+	border-color: #3967bf
+}
+
+.gscp_c {
+	color: #444;
+	font-size: 13px;
+	font-weight: bold
+}
+
+.gscp_d {
+	color: #aeb8cb;
+	cursor: pointer;
+	font: 21px arial, sans-serif;
+	line-height: inherit;
+	padding: 0 7px
+}
+
+.gscp_a:hover .gscp_d {
+	color: #575b66
+}
+
+.gscp_c:hover,.gscp_a .gscp_d:hover {
+	color: #222
+}
+
+.gscp_a.gscp_b .gscp_c,.gscp_a.gscp_b .gscp_d {
+	color: #fff
+}
+
+.gscp_e {
+	height: 100%;
+	padding: 0 4px
+}
+
+.gsmq_a {
+	padding: 0
+}
+
+a.gspqs_a {
+	padding: 0 3px 0 8px
+}
+
+.gspqs_b {
+	color: #666;
+	line-height: 22px
+}
+
+.gsq_a {
+	padding: 0
+}
+
+.gsen_a {
+	color: #333
+}
+
+.gsn_a {
+	padding-top: 4px;
+	padding-bottom: 1px
+}
+
+.gsn_b {
+	display: block;
+	line-height: 16px
+}
+
+.gsn_c {
+	color: green;
+	font-size: 13px
+}
+
+.gspr_a {
+	padding-right: 1px
+}
+
+.gsq_a {
+	padding: 0
+}
+
+.gsc_b {
+	background:
+		url(data:image/gif;base64,R0lGODlhCgAEAMIEAP9BGP6pl//Wy/7//P///////////////yH5BAEKAAQALAAAAAAKAAQAAAMROCOhK0oA0MIUMmTAZhsWBCYAOw==)
+		repeat-x scroll 0 100% transparent;
+	display: inline-block;
+	padding-bottom: 1px
+}
+
+.gsso_a {
+	padding: 3px 0
+}
+
+.gsso_a td {
+	line-height: 18px
+}
+
+.gsso_b {
+	width: 36px
+}
+
+.gsso_c {
+	height: 36px;
+	vertical-align: middle;
+	width: 36px
+}
+
+.gsso_d {
+	width: 7px
+}
+
+.gsso_e {
+	width: 100%
+}
+
+.gsso_f {
+	color: #666;
+	font-size: 13px;
+	padding-bottom: 2px
+}
+
+.gsso_g {
+	color: #093;
+	font-size: 13px
+}
+
+.gsok_a {
+	background:
+		url(data:image/gif;base64,R0lGODlhEwALAKECAAAAABISEv///////yH5BAEKAAIALAAAAAATAAsAAAIdDI6pZ+suQJyy0ocV3bbm33EcCArmiUYk1qxAUAAAOw==)
+		no-repeat center;
+	display: inline-block;
+	height: 11px;
+	line-height: 0;
+	width: 19px
+}
+
+.gsok_a img {
+	border: none;
+	visibility: hidden
+}
+
+#qbi.gssi_a {
+	background:
+		url(data:image/gif;base64,R0lGODlhEgANAOMKAAAAABUVFRoaGisrKzk5OUxMTGRkZLS0tM/Pz9/f3////////////////////////yH5BAEKAA8ALAAAAAASAA0AAART8Ml5Arg3nMkluQIhXMRUYNiwSceAnYAwAkOCGISBJC4mSKMDwpJBHFC/h+xhQAEMSuSo9EFRnSCmEzrDComAgBGbsuF0PHJq9WipnYJB9/UmFyIAOw==)
+		no-repeat center;
+	cursor: pointer;
+	display: inline-block;
+	height: 13px;
+	padding: 0;
+	width: 18px
+}
+
+.gsst_a {
+	display: inline-block
+}
+
+.gsst_a {
+	cursor: pointer;
+	padding: 0 4px
+}
+
+.gsst_a:hover {
+	text-decoration: none !important
+}
+
+.gsst_b {
+	font-size: 16px;
+	padding: 0 2px;
+	user-select: none;
+	-moz-user-select: none;
+	white-space: nowrap
+}
+
+.gsst_e {
+	opacity: 0.55;
+}
+
+.gsst_a:hover .gsst_e,.gsst_a:focus .gsst_e {
+	opacity: 0.72;
+}
+
+.gsst_a:active .gsst_e {
+	opacity: 1;
+}
+
+.gsst_f {
+	background: white;
+	text-align: left
+}
+
+.gsst_g {
+	background-color: white;
+	border: 1px solid #ccc;
+	border-top-color: #d9d9d9;
+	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
+	-moz-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
+	margin: -1px -3px;
+	padding: 0 6px
+}
+
+.gsst_h {
+	background-color: white;
+	height: 1px;
+	margin-bottom: -1px;
+	position: relative;
+	top: -1px
+}
+
+.gssb_a {
+	padding: 0 10px
+}
+
+.gssb_c {
+	z-index: 986
+}
+
+.gsib_a {
+	padding: 5px 9px 0
+}
+</style>
+
+
+<script type="text/javascript" src="../js/autoquest-htmlmonitor.js"></script>
+
+</head>
+
+
+<body
+	onload="try{if(!google.j.b){document.f&amp;&amp;document.f.q.focus();document.gbqf&amp;&amp;document.gbqf.q.focus();}}catch(e){}if(document.images)new Image().src='/images/nav_logo114.png'"
+	dir="ltr" id="gsr" bgcolor="#fff" link="#12c" text="#222" vlink="#61c"
+	alink="#dd4b39">
+	
+	<!-- div id="logging" style="z-index:1000000; background-color:#afa; border:1px black solid; position:fixed; top:10px; right:10px; width:250px; height:auto">blub</div-->
+	
+	<div id="pocs" style="display: none; position: absolute">
+		<div id="pocs0">
+			<span><span>Google</span> Instant ist derzeit nicht verfügbar.
+				Drücken Sie die Entertaste, um die Suche zu starten.</span><a
+				href="http://www.google.de/support/websearch/bin/answer.py?answer=186645&amp;form=bb&amp;hl=de">Weitere
+				Informationen</a>
+		</div>
+		<div id="pocs1">
+			<span>Google</span> Instant ist aufgrund zu geringer
+			Verbindungsgeschwindigkeit deaktiviert. Drücken Sie zum Suchen die
+			Eingabetaste.
+		</div>
+		<div id="pocs2">Zum Start der Suche Eingabetaste drücken</div>
+	</div>
+	<a
+		href="http://www.google.de/setprefs?prev=http://www.google.de/&amp;sig=0_7as-iaDlvd5pGRaL4tGM3e8ZDCk%3D&amp;suggon=2"
+		style="left: -1000em; position: absolute;">Wenn Sie ein
+		Bildschirmleseprogramm verwenden, klicken Sie hier zum Deaktivieren
+		von Google Instant.</a>
+	<textarea id="csi" style="display: none;"></textarea>
+	<script>if(google.j.b)document.body.style.visibility='hidden';</script>
+	<div id="mngb">
+		<div class="" id="gb">
+			<script>window.gbar&&gbar.eli&&gbar.eli()</script>
+			<div id="gbw">
+				<div id="gbzw">
+					<div id="gbz">
+						<span class="gbtcb"></span>
+						<ol id="gbzc" class="gbtc">
+							<li class="gbt"><a onclick="gbar.logger.il(1,{t:119});"
+								class="gbzt" id="gb_119"
+								href="https://plus.google.com/?gpsrc=ogpy0&amp;tab=wX"><span
+									class="gbtb2"></span><span class="gbts">+Ich</span></a></li>
+							<li class="gbt"><a onclick="gbar.logger.il(1,{t:1});"
+								class="gbzt gbz0l gbp1" id="gb_1"
+								href="http://www.google.de/webhp?hl=de&amp;tab=ww"><span
+									class="gbtb2"></span><span class="gbts">Suche</span></a></li>
+							<li class="gbt"><a
+								onclick="gbar.qs(this);gbar.logger.il(1,{t:2});" class="gbzt"
+								id="gb_2" href="http://www.google.de/imghp?hl=de&amp;tab=wi"><span
+									class="gbtb2"></span><span class="gbts">Bilder</span></a></li>
+							<li class="gbt"><a
+								onclick="gbar.qs(this);gbar.logger.il(1,{t:8});" class="gbzt"
+								id="gb_8" href="http://maps.google.de/maps?hl=de&amp;tab=wl"><span
+									class="gbtb2"></span><span class="gbts">Maps</span></a></li>
+							<li class="gbt"><a onclick="gbar.logger.il(1,{t:78});"
+								class="gbzt" id="gb_78"
+								href="https://play.google.com/?hl=de&amp;tab=w8"><span
+									class="gbtb2"></span><span class="gbts">Play</span></a></li>
+							<li class="gbt"><a
+								onclick="gbar.qs(this);gbar.logger.il(1,{t:36});" class="gbzt"
+								id="gb_36" href="http://www.youtube.com/?tab=w1&amp;gl=DE"><span
+									class="gbtb2"></span><span class="gbts">YouTube</span></a></li>
+							<li class="gbt"><a onclick="gbar.logger.il(1,{t:5});"
+								class="gbzt" id="gb_5"
+								href="http://news.google.de/nwshp?hl=de&amp;tab=wn"><span
+									class="gbtb2"></span><span class="gbts">News</span></a></li>
+							<li class="gbt"><a onclick="gbar.logger.il(1,{t:23});"
+								class="gbzt" id="gb_23"
+								href="https://mail.google.com/mail/?tab=wm"><span
+									class="gbtb2"></span><span class="gbts">Gmail</span></a></li>
+							<li class="gbt"><a onclick="gbar.logger.il(1,{t:25});"
+								class="gbzt" id="gb_25" href="https://docs.google.com/?tab=wo"><span
+									class="gbtb2"></span><span class="gbts">Docs</span></a></li>
+							<li class="gbt"><a onclick="gbar.logger.il(1,{t:24});"
+								class="gbzt" id="gb_24"
+								href="https://www.google.com/calendar?tab=wc"><span
+									class="gbtb2"></span><span class="gbts">Kalender</span></a></li>
+							<li class="gbt"><a class="gbgt" id="gbztm"
+								href="http://www.google.de/intl/de/options/"
+								onclick="gbar.tg(event,this)" aria-haspopup="true"
+								aria-owns="gbd"><span class="gbtb2"></span><span id="gbztms"
+									class="gbts gbtsa"><span id="gbztms1">Mehr</span><span
+										class="gbma"></span></span></a>
+							<div class="gbm" id="gbd" aria-owner="gbztm">
+									<div id="gbmmb" class="gbmc gbsb gbsbis">
+										<ol id="gbmm" class="gbmcc gbsbic">
+											<li class="gbmtc"><a
+												onclick="gbar.qs(this);gbar.logger.il(1,{t:51});"
+												class="gbmt" id="gb_51"
+												href="http://translate.google.de/?hl=de&amp;tab=wT">Übersetzer</a></li>
+											<li class="gbmtc"><a
+												onclick="gbar.qs(this);gbar.logger.il(1,{t:10});"
+												class="gbmt" id="gb_10"
+												href="http://books.google.de/bkshp?hl=de&amp;tab=wp">Books</a></li>
+											<li class="gbmtc"><a
+												onclick="gbar.qs(this);gbar.logger.il(1,{t:6});"
+												class="gbmt" id="gb_6"
+												href="http://www.google.de/shopping?hl=de&amp;tab=wf">Shopping</a></li>
+											<li class="gbmtc"><a onclick="gbar.logger.il(1,{t:30});"
+												class="gbmt" id="gb_30"
+												href="http://www.blogger.com/?tab=wj">Blogger</a></li>
+											<li class="gbmtc"><a onclick="gbar.logger.il(1,{t:32});"
+												class="gbmt" id="gb_32"
+												href="http://www.google.de/reader/?hl=de&amp;tab=wy">Reader</a></li>
+											<li class="gbmtc"><a
+												onclick="gbar.qs(this);gbar.logger.il(1,{t:31});"
+												class="gbmt" id="gb_31"
+												href="http://picasaweb.google.de/home?hl=de&amp;tab=wq">Fotos</a></li>
+											<li class="gbmtc"><a
+												onclick="gbar.qs(this);gbar.logger.il(1,{t:12});"
+												class="gbmt" id="gb_12"
+												href="http://video.google.de/?hl=de&amp;tab=wv">Videos</a></li>
+											<li class="gbmtc"><div class="gbmt gbmh"></div></li>
+											<li class="gbmtc"><a onclick="gbar.logger.il(1,{t:66});"
+												href="http://www.google.de/intl/de/options/" class="gbmt">Und
+													noch mehr</a></li>
+										</ol>
+										<div style="opacity: 0;" class="gbsbt"></div>
+										<div style="opacity: 0;" class="gbsbb"></div>
+									</div>
+								</div></li>
+						</ol>
+					</div>
+				</div>
+				<div id="gbq">
+					<div id="gbq1" class="gbt gbqfh">
+						<a id="gbqlw" class="gbgt"
+							href="http://www.google.de/webhp?hl=de&amp;tab=ww"
+							title="14. Geburtstag von Google"><img id="gbqld"
+							src="test_files/Googles_14th_Birthday-2012-res.png"
+							alt="14. Geburtstag von Google" height="41/" width="95"></a>
+					</div>
+					<div id="gbq2" class="gbt gbqfh">
+						<div id="gbqfw">
+							<form id="gbqf" name="gbqf" method="get" action="/search"
+								onsubmit="gbar.logger.il(31);">
+								<fieldset class="gbxx">
+									<legend class="gbxx">Ausgeblendete Felder</legend>
+									<div id="gbqffd">
+										<input name="hl" value="de" type="hidden"><input
+											name="output" value="search" type="hidden"><input
+											name="sclient" value="psy-ab" type="hidden">
+									</div>
+								</fieldset>
+								<fieldset class="gbqff" id="gbqff">
+									<legend class="gbxx"></legend>
+									<div id="gbfwa" class="gbqfwa ">
+										<div id="gbqfqw" class="gbqfqw ">
+											<div id="gbqfqwb" class="gbqfqwc">
+												<table class="gstl_0 lst-t" id="gs_id0"
+													style="height: 27px; padding: 0px;" cellpadding="0"
+													cellspacing="0">
+													<tbody>
+														<tr>
+															<td dir="ltr" style="white-space: nowrap;" id="gs_ttc0"></td>
+															<td class="gsib_a" id="gs_tti0"><div
+																	style="position: relative;" id="gs_lc0">
+																	<input spellcheck="false" dir="ltr"
+																		style="border: medium none; padding: 0px; margin: 0px; height: auto; width: 100%; background: url(&quot;data:image/gif;base64,R0lGODlhAQABAID/AMDAwAAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw%3D%3D&quot;) repeat scroll 0% 0% transparent; position: absolute; z-index: 6; left: 0px; outline: medium none;"
+																		id="gbqfq" class="gbqfif" name="q" autocomplete="off"
+																		type="text">
+																	<div id="gs_sc0"
+																		style="background: none repeat scroll 0% 0% transparent; color: transparent; padding: 0px; position: absolute; z-index: 2; white-space: pre; visibility: hidden;"
+																		class="gbqfif"></div>
+																	<input dir="ltr" id="gs_taif0"
+																		style="border: medium none; padding: 0px; margin: 0px; height: auto; width: 100%; position: absolute; z-index: 1; background-color: transparent; color: silver; left: 0px;"
+																		autocomplete="off" disabled="disabled" class="gbqfif"><input
+																		dir="ltr" id="gs_htif0"
+																		style="border: medium none; padding: 0px; margin: 0px; height: auto; width: 100%; position: absolute; z-index: 1; background-color: transparent; color: silver; left: 0px; visibility: hidden;"
+																		autocomplete="off" disabled="disabled" class="gbqfif">
+																</div></td>
+															<td class="gsib_b"><div dir="ltr"
+																	style="line-height: 27px; display: none;" id="gs_st0"
+																	class="gsst_b"></div></td>
+														</tr>
+													</tbody>
+												</table>
+											</div>
+										</div>
+									</div>
+								</fieldset>
+								<div id="gbqfbw">
+									<button id="gbqfb" aria-label="Google-Suche" class="gbqfb"
+										name="btnG">
+										<span class="gbqfi"></span>
+									</button>
+								</div>
+								<div id="gbqfbwa" class="jsb">
+									<button id="gbqfba" aria-label="Google-Suche" name="btnK"
+										class="gbqfba">
+										<span id="gbqfsa">Google-Suche</span>
+									</button>
+									<button id="gbqfbb" aria-label="Auf gut Glück!" name="btnI"
+										class="gbqfba"
+										onclick="if(this.form.q.value)this.checked=1;else window.top.location='/doodles/'">
+										<span id="gbqfsb">Auf gut Glück!</span>
+									</button>
+								</div>
+								<input name="oq" type="hidden"><input name="gs_l"
+									type="hidden"><input value="1" name="pbx" type="hidden">
+							</form>
+						</div>
+					</div>
+				</div>
+				<div id="gbu">
+					<div id="gbvg" class="gbvg">
+						<h2 class="gbxx">Account Options</h2>
+						<span class="gbtcb"></span>
+						<ol class="gbtc">
+							<li class="gbt"></li>
+							<li class="gbt"><a target="_top"
+								href="https://accounts.google.com/ServiceLogin?hl=de&amp;continue=http://www.google.de/"
+								onclick="gbar.logger.il(9,{l:'i'})" id="gb_70" class="gbgt"><span
+									class="gbgs"><span class="gbit">Anmelden</span></span></a></li>
+							<div style="display: none">
+								<div class="gbm" id="gbd5" aria-owner="gbg5">
+									<div class="gbmc">
+										<ol id="gbom" class="gbmcc">
+											<li class="gbkc gbmtc"><a class="gbmt"
+												href="http://www.google.de/preferences?hl=de">Sucheinstellungen</a></li>
+											<li class="gbmtc"><div class="gbmt gbmh"></div></li>
+											<li class="gbe gbmtc"><a id="gmlas" class="gbmt"
+												href="http://www.google.de/advanced_search?hl=de">Erweiterte
+													Suche</a></li>
+											<li class="gbe gbmtc"><a class="gbmt"
+												href="http://www.google.de/language_tools?hl=de">Sprachoptionen</a></li>
+											<li class="gbmtc"><div class="gbmt gbmh"></div></li>
+											<li class="gbkp gbmtc"><a class="gbmt"
+												href="http://www.google.de/history/optout?hl=de">Webprotokoll</a></li>
+										</ol>
+									</div>
+								</div>
+							</div>
+						</ol>
+					</div>
+				</div>
+			</div>
+			<div id="gbx1" class="gbqfh"></div>
+			<div id="gbx3"></div>
+			<script>window.gbar&&gbar.elp&&gbar.elp()</script>
+		</div>
+		<div id="searchform" style="display: none">
+			<span id="tophf"></span><span id="ss-bar"></span>
+		</div>
+	</div>
+	<iframe src="" onload="google.j.l()" onerror="google.j.e()" name="wgjf"
+		style="display: none;"></iframe>
+	<textarea id="wgjc" style="display: none;"></textarea>
+	<textarea id="wwcache" style="display: none;"></textarea>
+	<textarea id="hcache" style="display: none;">{"HW1kUJSQNcqztAax2oDwCw":[[60,{}],[225,{}],[10,{"agen":false,"cgen":true,"client":"hp","dh":true,"ds":"","eqch":true,"fl":true,"host":"google.de","jsonp":true,"lm":true,"lyrs":29,"msgs":{"lcky":"Auf
+ gut Gl\u00fcck!","lml":"Weitere 
+Informationen","oskt":"Eingabe-Tools","psrc":"Diese Suchanfrage wurde 
+aus Ihrem &lt;a href=\"/history\"&gt;Webprotokoll&lt;/a&gt; 
+entfernt.","psrl":"Entfernen","sbit":"Suche anhand von 
+Bildern","srch":"Google-Suche"},"ovr":{"ms":1},"pq":"","psy":"p","qcpw":false,"scd":10,"sce":4,"stok":"cnch-40owJhe8UNlP62EMqcobfQ"}],[152,{}],[163,{"s":true}],[43,{"qir":true,"rctj":true,"ref":false,"uff":false}],[83,{}],[342,{}],[81,{"persisted":true}],[78,{}],[25,{"g":28,"k":true,"m":{"app":true,"bks":true,"blg":true,"dsc":true,"fin":true,"flm":true,"frm":true,"isch":true,"klg":true,"mobile":true,"nws":true,"plcs":true,"ppl":true,"prc":true,"pts":true,"rcp":true,"shop":true,"vid":true},"t":null}],[22,{"db":false,"m_errors":{"default":"&lt;font
+ color=red&gt;Fehler:&lt;/font&gt; Der Server konnte Ihre Anforderung 
+nicht ausf\u00fchren. Versuchen Sie es in 30 Sekunden noch 
+einmal."},"m_tip":"Klicken Sie hier, um weitere Informationen zu 
+erhalten.","nlpm":"-153px -84px","nlpp":"-153px 
+-70px","utp":true}],[77,{}],[144,{}],[324,{}],[167,{"MESSAGES":{"msg_img_from":"Bild
+ von %1$s","msg_ms":"Weitere Gr\u00f6\u00dfen","msg_si":"\u00c4hnliche 
+Bilder"}}],[84,{"cm_hov":true,"tt_kft":true,"uab":true}],[151,{"ab":{"on":true},"ajax":{"gl":"de","gwsHost":"","hl":"de","maxPrefetchConnections":2,"prefetchTotal":5,"q":"","reautoquestPrefix":"/ajax/rd?"},"css":{"adpbc":"#fec","adpc":"#fffbf2","def":false},"elastic":{"js":true,"rhs4Col":1088,"rhs5Col":1176,"rhsOn":true,"tiny":false,"tinyLo":847,"tinyMd":924,"tinyHi":980},"exp":{"lru":true,"larhsp":false,"rt":false,"lrt":false,"lur":false,"adt":false,"adu":false,"tnav":false},"kfe":{"adsClientId":33,"clientId":29,"kfeHost":"clients1.google.de","kfeUrlPrefix":"/webpagethumbnail?r=4&amp;f=3&amp;s=400:585&amp;query=&amp;hl=de&amp;gl=de","vsH":585,"vsW":400,"fewTbts":true},"logging":{"csiFraction":0.05},"msgs":{"details":"Ergebnisdetails","hPers":"Pers\u00f6nliche
+ Ergebnisse ausblenden","hPersD":"Pers\u00f6nliche Ergebnisse werden 
+nicht angezeigt.","loading":"Wird geladen...","mute":"Ton 
+ausschalten","noPreview":"Vorschau nicht 
+verf\u00fcgbar","sPers":"Pers\u00f6nliche Ergebnisse 
+anzeigen","sPersD":"Pers\u00f6nliche Ergebnisse werden 
+angezeigt.","unmute":"Ton 
+einschalten"},"nokjs":{"on":true},"time":{"hOff":50,"hOn":300,"hSwitch":200,"hTitle":1200,"hUnit":1500,"loading":100,"timeout":2500}}],[116,{"bd":[],"bk":[],"bu":[],"gl":"de","mb":500,"msgs":{"a":"Alle
+ Ergebnisse von %1$s blockieren","b":"&lt;b&gt;Nicht 
+hilfreich?&lt;/b&gt; Sofern Sie angemeldet sind, k\u00f6nnen Sie 
+Ergebnisse von &lt;b&gt;%1$s&lt;/b&gt; blockieren.","c":"Wir zeigen 
+Ihnen keine Ergebnisse von &lt;b&gt;%1$s&lt;/b&gt; mehr 
+an.","d":"Blockierte Websites verwalten","e":"R\u00fcckg\u00e4ngig 
+machen","f":"Blockierung von %1$s aufheben","g":"Blockierung von %1$s 
+aufgehoben"},"q":"","rb":true}],[164,{}],[38,{"acsi":true}],[14,{}],[89,{}],[52,{}],[114,{"rvu_report_msg":"Melden","rvu_reported_msg":"Gemeldet"}],[267,{}],[216,{}],[105,{}],[254,{}],[146,{}],[121,{}],[319,{"bl":"Feedback
+ geben","db":"Gemeldet","di":"Vielen Dank!","dl":"Ein weiteres Problem 
+melden","rb":"Falsch?","ri":"Bitte melden Sie das 
+Problem.","rl":"Abbrechen"}],[63,{"cnfrm":"Gemeldet","prmpt":"Melden"}],[97,{}],[209,{}],[29,{"cspd":0,"hme":true,"icmt":false,"jck":true,"mcr":5}],[92,{"ae":true,"avgTtfc":2000,"brba":false,"dlen":24,"dper":3,"fbdc":500,"fbdu":-1,"fbh":true,"fd":1000000,"focus":true,"ftwd":200,"gpsj":true,"hiue":true,"hpt":310,"iavgTtfc":2000,"kn":true,"knrt":true,"maxCbt":1500,"mds":"clir,clue,dfn,frim,klg,prc,rl,sp,sts,mbl_he,mbl_hs,mbl_re,mbl_rs,mbl_sv","msg":{"dym":"Meinten
+ Sie:","gs":"Google-Suche","kntt":"W\u00e4hlen Sie die einzelnen 
+Ergebnisse mithilfe der Nach-unten- und der Nach-oben-Taste aus. 
+Dr\u00fccken Sie die Eingabetaste, um zur Auswahl zu 
+gelangen.","sif":"Stattdessen suchen nach:","srf":"Ergebnisse 
+f\u00fcr"},"odef":true,"ophe":true,"pmt":250,"pq":true,"rpt":50,"sc":"psy-ab","sfcs":false,"sgcif":true,"tct":"
+ \\u3000?","tdur":50,"ufl":true}],[24,{}]]}</textarea>
+	<div id="gac_scont"></div>
+	<div id="main">
+		<span class="ctr-p" id="body"><center>
+				<span id="prt" style="display: block"><div
+						style="position: relative;">
+						<style>
+.pmoabs {
+	background-color: #fff;
+	border: 1px solid #E5E5E5;
+	color: #666;
+	font-size: 13px;
+	padding-bottom: 20px;
+	position: absolute;
+	right: 2px;
+	top: 3px;
+	z-index: 986
+}
+
+.kd-button-submit {
+	border: 1px solid #3079ed;
+	background-color: #4d90fe;
+	background-image: -webkit-gradient(linear, left top, left bottom, from(#4d90fe),
+		to(#4787ed) );
+	background-image: -webkit-linear-gradient(top, #4d90fe, #4787ed);
+	background-image: -moz-linear-gradient(top, #4d90fe, #4787ed);
+	background-image: -ms-linear-gradient(top, #4d90fe, #4787ed);
+	background-image: -o-linear-gradient(top, #4d90fe, #4787ed);
+	background-image: linear-gradient(top, #4d90fe, #4787ed);
+	filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#4d90fe',
+		EndColorStr='#4787ed' )
+}
+
+.kd-button-submit:hover {
+	border: 1px solid #2f5bb7;
+	background-color: #357ae8;
+	background-image: -webkit-gradient(linear, left top, left bottom, from(#4d90fe),
+		to(#357ae8) );
+	background-image: -webkit-linear-gradient(top, #4d90fe, #357ae8);
+	background-image: -moz-linear-gradient(top, #4d90fe, #357ae8);
+	background-image: -ms-linear-gradient(top, #4d90fe, #357ae8);
+	background-image: -o-linear-gradient(top, #4d90fe, #357ae8);
+	background-image: linear-gradient(top, #4d90fe, #357ae8);
+	filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#4d90fe',
+		EndColorStr='#357ae8' )
+}
+
+.kd-button-submit:active {
+	-webkit-box-shadow: inset 0px 1px 2px rgba(0, 0, 0, 0.3);
+	-moz-box-shadow: inset 0px 1px 2px rgba(0, 0, 0, 0.3);
+	box-shadow: inset 0px 1px 2px rgba(0, 0, 0, 0.3)
+}
+
+.xbtn {
+	color: #999;
+	cursor: pointer;
+	font-size: 23px;
+	line-height: 5px;
+	padding-top: 5px
+}
+
+.padi {
+	padding: 0 8px 0 10px
+}
+
+.padt {
+	padding: 5px 20px 0 0;
+	color: #444
+}
+
+.pads {
+	text-align: left
+}
+
+#pmolnk {
+	border-radius: 2px;
+	-moz-border-radius: 2px;
+	-webkit-border-radius: 2px
+}
+
+#pmolnk a {
+	color: #fff;
+	display: inline-block;
+	font-weight: bold;
+	padding: 5px 20px;
+	text-decoration: none;
+	white-space: nowrap
+}
+</style>
+						<div class="pmoabs" id="pmocntr2" style="right: 30px; top: 20px;">
+							<table border="0">
+								<tbody>
+									<tr>
+										<td colspan="2">
+											<div class="xbtn"
+												onclick="google.promos&amp;&amp;google.promos.toast&amp;&amp; google.promos.toast.cpc()"
+												style="float: right">×</div>
+										</td>
+									</tr>
+									<tr>
+										<td class="padi" rowspan="2"><img
+											src="test_files/chrome-48.png"></td>
+										<td class="pads">Schneller im Internet unterwegs</td>
+									</tr>
+									<tr>
+										<td class="padt">
+											<div class="kd-button-submit" id="pmolnk">
+												<a
+													href="http://www.google.de/chrome/index.html?hl=de&amp;brand=CHNG&amp;utm_source=de-hpp&amp;utm_medium=hpp&amp;utm_campaign=de"
+													onclick="google.promos&amp;&amp;google.promos.toast&amp;&amp; google.promos.toast.cl()">Installieren
+													Sie Google Chrome</a>
+											</div>
+										</td>
+									</tr>
+								</tbody>
+							</table>
+						</div>
+						<script type="text/javascript">(function(){var b=!0,c=!1,d={ACCEPT:"a",CANCEL:"c",DISMISS:"d",CLICK:"h",IMPRESSION:"i",NO_THANKS:"n",X_BUTTON:"x",MGMHP_ACCEPT:"ma",MGMHP_CANCEL:"mc",MGMHP_IMPRESSION:"mi",MGMHPPD_ACCEPT:"pa",MGMHPPD_CANCEL:"pc",MGMHPPD_IMPRESSION:"pi",MGMHPPD_NO_THANKS:"pn",MGMHPPD_NO_BUTTON:"px",MGMHPPD_DISMISS:"pd",PUSHDOWN_ACCEPT:"gpa",PUSHDOWN_IMPRESSION:"gpi",PUSHDOWN_NO_THANKS:"gpn",PUSHDOWN_NO_BUTTON:"gpx",PUSHDOWN_DISMISS:"gpd"};var e={TOAST_ID:"pmocntr2"},g,i,j=document.getElementById(e.TOAST_ID);google.promos=google.promos||{};google.promos.toast=google.promos.toast||{};function k(a){j&&(j.style.display=a?"":"none",j.parentNode&&(j.parentNode.style.position=a?"relative":""))}function l(a){try{if(j&&a&&a.es&&a.es.m){var f=window.gbar.rtl(document.body)?"left":"right";j.style[f]=a.es.m-16+2+"px";j.style.top="20px"}}catch(h){google.ml(h,c,{cause:g+"_PT"})}}
+google.promos.toast.cl=function(){try{window.gbar.up.sl(i,g,d.CLICK,void 0,1)}catch(a){google.ml(a,c,{cause:g+"_CL"})}};google.promos.toast.cpc=function(){try{j&&(k(c),window.gbar.up.spd(j,e.DISMISSED_PROMO,1,b),window.gbar.up.sl(i,g,d.DISMISS,void 0,1))}catch(a){google.ml(a,c,{cause:g+"_CPC"})}};google.promos.toast.hideOnSmallWindow_=function(){try{j&&(j.style.visibility=2*j.offsetWidth+276>document.body.clientWidth?"hidden":"")}catch(a){google.ml(a,c,{cause:g+"_HOSW"})}};function q(){var a=["gpd","spd","aeh","sl"];if(!window.gbar||!window.gbar.up)return c;for(var f=0,h;h=a[f];f++)if(!(h in window.gbar.up))return c;return b}
+google.promos.toast.init=function(a,f,h,m,n){try{if(q()){if(j){window.gbar.up.aeh(window,"resize",google.promos.toast.hideOnSmallWindow_);window.lol=google.promos.toast.hideOnSmallWindow_;e.COUNT="toast_count_"+f+(m?"_"+m:"");e.DISMISSED_PROMO="toast_dp_"+f+(n?"_"+n:"");g=h;i=a;var p=window.gbar.up.gpd(j,e.COUNT,b)||0;window.gbar.up.gpd(j,e.DISMISSED_PROMO,b)||25<p?k(c):(window.gbar.up.spd(j,e.COUNT,++p,b),window.gbar.elr&&l(window.gbar.elr()),window.gbar.elc&&window.gbar.elc(l),k(b),window.gbar.up.sl(i,g,d.IMPRESSION))}}else google.ml(Error("apa"),c,{cause:g+"_INIT"})}catch(r){google.ml(r,c,{cause:g+"_INIT"})}};})()
+</script>
+						<script type="text/javascript">(function(){var sourceWebappPromoID=141005;var sourceWebappGroupID=5;var payloadType=5;
+window.gbar&&gbar.up&&gbar.up.r&&gbar.up.r(payloadType,function(show){
+
+if (show){google.promos.toast.init(sourceWebappPromoID,sourceWebappGroupID,payloadType,
+'0612');}
+});})();</script>
+					</div></span>
+				<div id="lga" style="height: 231px; margin-top: -22px">
+					<a
+						href="http://www.google.de/search?q=Google&amp;oi=ddle&amp;ct=Googles_14th_Birthday-2012-2-hp"><img
+						alt="14. Geburtstag von Google"
+						src="test_files/Googles_14th_Birthday-2012-2-hp.gif"
+						title="14. Geburtstag von Google" id="hplogo"
+						onload="window.lol&amp;&amp;lol()" style="padding-top: 36px;"
+						height="171" border="0" width="266"></a>
+				</div>
+				<div style="height: 102px"></div>
+				<div style="font-size: 83%; min-height: 3.5em">
+					<br>
+					<script>window.gbar&&gbar.up&&gbar.up.tp&&gbar.up.tp();</script>
+				</div>
+			</center></span>
+		<div class="ctr-p" id="footer" style="display: block; height: 472px;">
+			<div>
+				<div id="ftby">
+					<div id="fll">
+						<div>
+							<a href="http://www.google.de/intl/de/ads/">Werben mit Google</a>‎<a
+								href="http://www.google.de/services/">Unternehmensangebote</a>‎<a
+								href="http://www.google.de/intl/de/policies/">Datenschutzerklärung
+								&amp; Nutzungsbedingungen</a>‎
+						</div>
+						<div>
+							<a href="https://plus.google.com/117570067846637741468"
+								rel="publisher">Google+</a>‎<a
+								href="http://www.google.de/intl/de/about.html">Über Google</a>‎<a
+								href="http://www.google.de/setprefdomain?prefdom=US&amp;sig=0_PYr_sCU9q-bxfMYFp-85mcUZNNg%3D"
+								id="fehl">Google.com</a>‎
+						</div>
+					</div>
+					<div id="flci"></div>
+				</div>
+			</div>
+		</div>
+	</div>
+	<script>(function(){var mstr='\x3cspan class\x3dctr-p id\x3dbody\x3e\x3c/span\x3e\x3cspan class\x3dctr-p id\x3dfooter\x3e\x3c/span\x3e\x3cspan id\x3dxjsi\x3e\x3c/span\x3e';function _gjp(){!(location.hash&&_gjuc())&&setTimeout(_gjp,500);}
+google.j[1]={cc:[],co:['body','footer','xjsi'],pc:[],css:document.getElementById('gstyle').innerHTML,main:mstr,bl:['mngb','gb_']
+};})();</script>
+	<script data-url="/extern_chrome/daa2d2b94830395f.js" id="ecs">function wgjp(){var xjs=document.createElement('script');xjs.src=document.getElementById('ecs').getAttribute('data-url');
+
+(document.getElementById('xjsd')|| document.body).appendChild(xjs);};</script>
+	<div id="xjsd">
+		<script src="test_files/rsAItRSTN5NR4AGpgLrah_hTvdvA524mCwmg"></script>
+		<script src="test_files/daa2d2b94830395f.js"></script>
+	</div>
+	<div id="xjsi">
+		<script>if(google.y)google.y.first=[];(function(){
+var c,d,e=false;function f(a){var b={_sn:a?"FAILURE":"FALLBACK",_pu:c,_fu:d},h=google.ml(new Error("pml"),false,b,true);google.log(0,"",h)}function g(){if(!google.pml)f(true)}function i(a){window.setTimeout(function(){var b=document.createElement("script");b.src=a;document.getElementById("xjsd").appendChild(b)},0)}function j(){if(!e&&!google.pml){e=
+true;f();i(d,g)}}google.dljp=function(a,b){c=a;d=b;if(!google.xjsi){google.xjsu=a;i(c,j)}};google.dlj=i;
+})();
+if(!google.xjs){google.dstr=[];google.rein=[];window._=window._||{};window._._DumpException=function(e){throw e};if(google.timers&&google.timers.load.t){google.timers.load.t.xjsls=new Date().getTime();}google.dljp('/xjs/_/js/s/s,anim,jsa,c,sb,hv,wta,cr,cdos,nos,tbpr,tbui,rsn,ob,mb,lc,du,ada,amcl,bihu,lu,m,shb,tng,hsm,j,p,pcc,csi/rt\x3dj/ver\x3d9ulJrDItMSM.en_US./d\x3d1/sv\x3d1/rs\x3dAItRSTN5NR4AGpgLrah_hTvdvA524mCwmg','/xjs/_/js/s/s,anim,jsa,c,sb,hv,wta,cr,cdos,nos,tbpr,tbui,rsn,ob,mb,lc,du,ada,amcl,bihu,lu,m,shb,tng,hsm,j,p,pcc,csi/rt\x3dj/ver\x3d9ulJrDItMSM.en_US./d\x3d1/sv\x3d1/rs\x3dAItRSTN5NR4AGpgLrah_hTvdvA524mCwmg');google.xjs=1;}(function(){
+var a=false,b;function j(){return document.documentElement.clientHeight}
+function m(d,i,k){var r=d.offsetHeight?k-d.offsetHeight:k+10,s=i-r-10,l=Math.max(s,0);d.style.height=l+"px";return l}function n(){if(google.sn=="web"){o();return}if(!b)return;m(b,j(),document.body.offsetHeight)}function p(){if(google.sn=="web"||a)return;b=document.getElementById("footer");if(!b)return;if(window.addEventListener)window.addEventListener("resize",n,false);else window.attachEvent("onresize",n);b.style.display="block";n();a=true}function o(){if(!a)return;
+if(window.removeEventListener)window.removeEventListener("resize",n,false);else window.detachEvent("onresize",n);a=false;b=document.getElementById("footer");b&&(b.style.display="none")}if(google.rein&&google.dstr){google.rein.push(function(){p()});google.dstr.push(function(){o()})}p();
+})();
+;google.pmc={14:{},60:{},225:{},89:{},10:{"agen":false,"cgen":true,"client":"hp","dh":true,"ds":"","eqch":true,"fl":true,"host":"google.de","jsonp":true,"lm":true,"lyrs":29,"msgs":{"lcky":"Auf gut Glück!","lml":"Weitere Informationen","oskt":"Eingabe-Tools","psrc":"Diese Suchanfrage wurde aus Ihrem \u003Ca href=\"/history\"\u003EWebprotokoll\u003C/a\u003E entfernt.","psrl":"Entfernen","sbit":"Suche anhand von Bildern","srch":"Google-Suche"},"ovr":{"ms":1},"pq":"","psy":"p","qcpw":false,"scd":10,"sce":4,"stok":"cnch-40owJhe8UNlP62EMqcobfQ"},152:{},163:{"s":true},43:{"qir":true,"rctj":true,"ref":false,"uff":false},83:{},52:{},342:{},114:{"rvu_report_msg":"Melden","rvu_reported_msg":"Gemeldet"},78:{},25:{"g":28,"k":true,"m":{"app":true,"bks":true,"blg":true,"dsc":true,"fin":true,"flm":true,"frm":true,"isch":true,"klg":true,"mobile":true,"nws":true,"plcs":true,"ppl":true,"prc":true,"pts":true,"rcp":true,"shop":true,"vid":true},"t":null},267:{},216:{},105:{},22:{"db":false,"m_errors":{"default":"\u003Cfont color=red\u003EFehler:\u003C/font\u003E Der Server konnte Ihre Anforderung nicht ausführen. Versuchen Sie es in 30 Sekunden noch einmal."},"m_tip":"Klicken Sie hier, um weitere Informationen zu erhalten.","nlpm":"-153px -84px","nlpp":"-153px -70px","utp":true},77:{},254:{},146:{},144:{},121:{},324:{},319:{"bl":"Feedback geben","db":"Gemeldet","di":"Vielen Dank!","dl":"Ein weiteres Problem melden","rb":"Falsch?","ri":"Bitte melden Sie das Problem.","rl":"Abbrechen"},167:{"MESSAGES":{"msg_img_from":"Bild von %1$s","msg_ms":"Weitere Größen","msg_si":"Ähnliche Bilder"}},63:{"cnfrm":"Gemeldet","prmpt":"Melden"},84:{"cm_hov":true,"tt_kft":true,"uab":true},97:{},151:{"ab":{"on":true},"ajax":{"gl":"de","gwsHost":"","hl":"de","maxPrefetchConnections":2,"prefetchTotal":5,"q":"","reautoquestPrefix":"/ajax/rd?"},"css":{"adpbc":"#fec","adpc":"#fffbf2","def":false},"elastic":{"js":true,"rhs4Col":1088,"rhs5Col":1176,"rhsOn":true,"tiny":false},"exp":{"lru":true},"kfe":{"adsClientId":33,"clientId":29,"kfeHost":"clients1.google.de","kfeUrlPrefix":"/webpagethumbnail?r=4\u0026f=3\u0026s=400:585\u0026query=\u0026hl=de\u0026gl=de","vsH":585,"vsW":400},"logging":{"csiFraction":0.050},"msgs":{"details":"Ergebnisdetails","hPers":"Persönliche Ergebnisse ausblenden","hPersD":"Persönliche Ergebnisse werden nicht angezeigt.","loading":"Wird geladen...","mute":"Ton ausschalten","noPreview":"Vorschau nicht verfügbar","sPers":"Persönliche Ergebnisse anzeigen","sPersD":"Persönliche Ergebnisse werden angezeigt.","unmute":"Ton einschalten"},"nokjs":{"on":true},"time":{"hOff":50,"hOn":300,"hSwitch":200,"hTitle":1200,"hUnit":1500,"loading":100,"timeout":2500}},209:{},116:{"bd":[],"bk":[],"bu":[],"gl":"de","mb":500,"msgs":{"a":"Alle Ergebnisse von %1$s blockieren","b":"\u003Cb\u003ENicht hilfreich?\u003C/b\u003E Sofern Sie angemeldet sind, können Sie Ergebnisse von \u003Cb\u003E%1$s\u003C/b\u003E blockieren.","c":"Wir zeigen Ihnen keine Ergebnisse von \u003Cb\u003E%1$s\u003C/b\u003E mehr an.","d":"Blockierte Websites verwalten","e":"Rückgängig machen","f":"Blockierung von %1$s aufheben","g":"Blockierung von %1$s aufgehoben"},"q":"","rb":true},164:{},29:{"cspd":0,"hme":true,"icmt":false,"jck":true,"mcr":5},92:{"ae":true,"avgTtfc":2000,"brba":false,"dlen":24,"dper":3,"fbdc":500,"fbdu":-1,"fbh":true,"fd":1000000,"focus":true,"ftwd":200,"gpsj":true,"hiue":true,"hpt":310,"iavgTtfc":2000,"kn":true,"knrt":true,"maxCbt":1500,"mds":"clir,clue,dfn,frim,klg,prc,rl,sp,sts,mbl_he,mbl_hs,mbl_re,mbl_rs,mbl_sv","msg":{"dym":"Meinten Sie:","gs":"Google-Suche","kntt":"Wählen Sie die einzelnen Ergebnisse mithilfe der Nach-unten- und der Nach-oben-Taste aus. Drücken Sie die Eingabetaste, um zur Auswahl zu gelangen.","sif":"Stattdessen suchen nach:","srf":"Ergebnisse für"},"odef":true,"ophe":true,"pmt":250,"pq":true,"rpt":50,"sc":"psy-ab","sfcs":false,"sgcif":true,"tct":" \\u3000?","tdur":50,"ufl":true},24:{},38:{"acsi":true}};(function(){var r=(function(){google.y.first.push(function(){if(google.med){google.med('init');google.initHistory();google.med('history');}google.History&&google.History.initialize('/')});});r();var l=window.location.hash?window.location.href.substr(window.location.href.indexOf('#')):'#';if(l=='#'&&google.defre){google.defre=1;google.y.first.push(function(){if(google.j&&google.j.init){google.rein&&google.rein.push(r);}});}})();if(google.j&&google.j.en&&google.j.xi){window.setTimeout(google.j.xi,0);}</script>
+	</div>
+	<script>(function(){
+var b,d,e,f;function g(a,c){if(a.removeEventListener){a.removeEventListener("load",c,false);a.removeEventListener("error",c,false)}else{a.detachEvent("onload",c);a.detachEvent("onerror",c)}}function h(a){f=(new Date).getTime();++d;a=a||window.event;var c=a.target||a.srcElement;g(c,h)}var i=document.getElementsByTagName("img");b=i.length;d=0;for(var j=0,k;j<b;++j){k=i[j];if(k.complete||typeof k.src!="string"||!k.src)++d;else if(k.addEventListener){k.addEventListener("load",h,false);k.addEventListener("error",
+h,false)}else{k.attachEvent("onload",h);k.attachEvent("onerror",h)}}e=b-d;function l(){if(!google.timers.load.t)return;google.timers.load.t.ol=(new Date).getTime();google.timers.load.t.iml=f;google.kCSI.imc=d;google.kCSI.imn=b;google.kCSI.imp=e;if(google.stt!==undefined)google.kCSI.stt=google.stt;google.csiReport&&google.csiReport()}if(window.addEventListener)window.addEventListener("load",
+l,false);else if(window.attachEvent)window.attachEvent("onload",l);google.timers.load.t.prt=(f=(new Date).getTime());
+})();
+</script>
+	<table class="gstl_0 gssb_c"
+		style="width: 570px; display: none; top: 339px; left: 506px; position: absolute;"
+		cellpadding="0" cellspacing="0">
+		<tbody>
+			<tr>
+				<td class="gssb_f"></td>
+				<td style="width: 100%;" class="gssb_e"></td>
+			</tr>
+		</tbody>
+	</table>
+	<style type="text/css">
+#nycntg {
+	margin: 6px 25px 10px 0
+}
+
+#nycntg h3 {
+	font-size: small
+}
+
+#nycntg h3 a,#nycntg a.l {
+	font-size: 16px
+}
+
+#nycp {
+	background-color: #fafafa;
+	border-left: 1px solid #ebebeb;
+	bottom: 0;
+	left: 0;
+	margin-left: 33px;
+	min-width: 240px;
+	position: absolute;
+	right: 0;
+	top: 0;
+	visibility: hidden;
+	padding: 22px 16px 10px 31px
+}
+
+.nyc_open #nycp {
+	visibility: visible
+}
+
+#nycf {
+	display: none;
+	height: 1px;
+	left: 0;
+	min-width: 940px;
+	position: absolute;
+	visibility: hidden;
+	z-index: -1
+}
+
+.nyc_open #nycf {
+	display: block
+}
+
+.nyc_opening #nycp,.nyc_opening #nycprv {
+	display: block;
+	visibility: hidden !important
+}
+
+#nyccur {
+	background: #fafafa;
+	height: 100%;
+	left: 33px;
+	opacity: 0;
+	position: absolute;
+	top: 0;
+	width: 0;
+	z-index: 120
+}
+
+#nyccur.wipeRight {
+	border-right: 1px solid #e8e8e8;
+	opacity: 1;
+	-moz-transition: width 0.08s ease-in;
+	width: 100%
+}
+
+#nyccur.fadeOut {
+	opacity: 0;
+	-moz-transition: opacity 0.08s linear;
+	width: 100%
+}
+
+#nyccur.fadeIn {
+	opacity: 1;
+	-moz-transition: opacity 0.08s linear;
+	width: 100%
+}
+
+#nyccur.wipeLeft {
+	border-right: 1px solid #eee;
+	opacity: 1;
+	-moz-transition: width 0.08s ease-out;
+	width: 0
+}
+
+.vstd {
+	line-height: 0;
+	overflow: hidden;
+	position: absolute;
+	white-space: nowrap;
+	width: 100%
+}
+
+.vstbtm {
+	bottom: 0
+}
+
+.vsttop {
+	top: 0
+}
+
+.vssrd {
+	display: block;
+	overflow: hidden;
+	position: relative
+}
+
+.vssrdi {
+	border-color: #bbb;
+	border-style: solid;
+	border-width: 0 1px 0 1px
+}
+
+.vsta #nyccur,.vsta #nycp {
+	background-color: #fffbf2;
+	border-color: #fec
+}
+
+.vsca #nyccur,.vsca #nycp {
+	background-color: #fafafa;
+	border-color: #ccc
+}
+
+.nyc_open .vspib,.nyc_opening .vspib {
+	padding-right: 0;
+	-moz-transition: padding-right .2s ease
+}
+
+.nyc_open .vspib.vspib-nh,.nyc_opening .vspib.vspib-nh {
+	padding-right: 4px
+}
+
+.vso .vspib.vspib-nh {
+	padding-right: 0;
+	-moz-transition: padding-right .2s ease
+}
+
+.nyc_open .vspib .vspii,.nyc_opening .vspib .vspii,.vso .vspib.vspib-nh .vspii-nh
+	{
+	-moz-border-top-right-radius: 0;
+	-moz-border-bottom-right-radius: 0;
+	border-right: none
+}
+
+.nyc_open #nycxh {
+	cursor: pointer;
+	opacity: 0.7;
+	padding: 15px;
+	position: absolute;
+	right: 1px;
+	top: 12px
+}
+
+.nyc_open #nycxh:hover {
+	opacity: 1
+}
+
+#nycx {
+	display: none
+}
+
+.nyc_open #nycx {
+	border: none;
+	cursor: pointer;
+	display: block;
+	padding: 0
+}
+
+#nyc #nycprv #vsia {
+	position: relative;
+	text-decoration: none
+}
+
+#nycntg h3 .esw {
+	display: none
+}
+
+#nyc .vshid {
+	display: inline
+}
+
+#nyc #nycntg .vshid a {
+	white-space: nowrap
+}
+
+#nycntg a:link {
+	border: 0;
+	text-decoration: none
+}
+
+#nycntg a:hover {
+	text-decoration: underline
+}
+
+#vsi,.vsi {
+	border: none;
+	width: 100%
+}
+
+div.vsta {
+	display: block
+}
+
+.vstbb {
+	border: 0 solid #dd4b39;
+	position: absolute
+}
+
+.vstbt {
+	background-color: #202020;
+	border: 0 solid #dd4b39;
+	color: #fff;
+	font-size: 12px;
+	line-height: 15px;
+	max-width: 400px;
+	opacity: 0.9;
+	position: absolute
+}
+
+.vstbc {
+	position: absolute;
+	top: 0
+}
+
+a .vstb em,a .vstb b {
+	text-decoration: none
+}
+
+.vslru.vso:before {
+	border: 1px solid #ebebeb;
+	border-right: none;
+	bottom: -8px;
+	top: -7px;
+	left: -7px;
+	right: -9px;
+	content: "";
+	position: absolute;
+	z-index: -1
+}
+
+.vslru div.vspib {
+	bottom: -6px;
+	top: -7px
+}
+
+.vslru div.vspib .vspii {
+	border-radius: 0
+}
+
+.vscl.vso.vslru:before,.vscl.vslru div.vspib {
+	top: -4px
+}
+</style>
+	<script async=""
+		src="test_files/sem_9d2b852f41bb993a0833b0a332253abb.js"></script>
+</body>
+</html>
Index: /trunk/autoquest-htmlmonitor-test/src/test/resources/test_files/rsAItRSTN5NR4AGpgLrah_hTvdvA524mCwmg
===================================================================
--- /trunk/autoquest-htmlmonitor-test/src/test/resources/test_files/rsAItRSTN5NR4AGpgLrah_hTvdvA524mCwmg	(revision 864)
+++ /trunk/autoquest-htmlmonitor-test/src/test/resources/test_files/rsAItRSTN5NR4AGpgLrah_hTvdvA524mCwmg	(revision 864)
@@ -0,0 +1,1209 @@
+var _=_||{};(function(_){
+try{
+_.aa=function(a){throw a;};_.k=void 0;_.l=!0;_.p=null;_.A=!1;_.ba=function(){return function(a){return a}};_.ca=function(){return function(){}};_.ea=function(a){return function(b){this[a]=b}};_.fa=function(a){return function(){return this[a]}};_.E=function(a){return function(){return a}};_.ga=function(a,b,c){a=a.split(".");c=c||_.ha;!(a[0]in c)&&c.execScript&&c.execScript("var "+a[0]);for(var d;a.length&&(d=a.shift());)!a.length&&(0,_.ja)(b)?c[d]=b:c=c[d]?c[d]:c[d]={}};_.ka=function(){};
+_.la=function(a){a.$=function(){return a.EO?a.EO:a.EO=new a}};
+_.va=function(a){var b=typeof a;if("object"==b)if(a){if(a instanceof window.Array)return"array";if(a instanceof window.Object)return b;var c=window.Object.prototype.toString.call(a);if("[object Window]"==c)return"object";if("[object Array]"==c||"number"==typeof a.length&&"undefined"!=typeof a.splice&&"undefined"!=typeof a.propertyIsEnumerable&&!a.propertyIsEnumerable("splice"))return"array";if("[object Function]"==c||"undefined"!=typeof a.call&&"undefined"!=typeof a.propertyIsEnumerable&&!a.propertyIsEnumerable("call"))return"function"}else return"null";
+else if("function"==b&&"undefined"==typeof a.call)return"object";return b};_.ja=function(a){return a!==_.k};_.xa=function(a){return"array"==(0,_.va)(a)};_.La=function(a){var b=(0,_.va)(a);return"array"==b||"object"==b&&"number"==typeof a.length};_.Na=function(a){return"string"==typeof a};_.Oa=function(a){return"number"==typeof a};_.Pa=function(a){return"function"==(0,_.va)(a)};_.Sa=function(a){var b=typeof a;return"object"==b&&a!=_.p||"function"==b};_.Wa=function(a){return a[_.$a]||(a[_.$a]=++_.aaa)};
+_.baa=function(a,b,c){return a.call.apply(a.bind,arguments)};_.caa=function(a,b,c){a||(0,_.aa)((0,window.Error)());if(2<arguments.length){var d=window.Array.prototype.slice.call(arguments,2);return function(){var c=window.Array.prototype.slice.call(arguments);window.Array.prototype.unshift.apply(c,d);return a.apply(b,c)}}return function(){return a.apply(b,arguments)}};
+_.ab=function(a,b,c){_.ab=window.Function.prototype.bind&&-1!=window.Function.prototype.bind.toString().indexOf("native code")?_.baa:_.caa;return _.ab.apply(_.p,arguments)};_.bb=function(a,b){var c=window.Array.prototype.slice.call(arguments,1);return function(){var b=window.Array.prototype.slice.call(arguments);b.unshift.apply(b,c);return a.apply(this,b)}};_.cb=function(a,b){function c(){}c.prototype=b.prototype;a.Sb=b.prototype;a.prototype=new c;a.prototype.constructor=a};
+_.db=function(a){window.Error.captureStackTrace?window.Error.captureStackTrace(this,_.db):this.stack=(0,window.Error)().stack||"";a&&(this.message=""+a)};_.eb=function(a,b){var c=a.length-b.length;return 0<=c&&a.indexOf(b,c)==c};_.fb=function(a){return a.replace(/^[\s\xa0]+|[\s\xa0]+$/g,"")};
+_.gb=function(a,b){if(b)return a.replace(_.hb,"&amp;").replace(_.ib,"&lt;").replace(_.jb,"&gt;").replace(_.kb,"&quot;");if(!_.daa.test(a))return a;-1!=a.indexOf("&")&&(a=a.replace(_.hb,"&amp;"));-1!=a.indexOf("<")&&(a=a.replace(_.ib,"&lt;"));-1!=a.indexOf(">")&&(a=a.replace(_.jb,"&gt;"));-1!=a.indexOf('"')&&(a=a.replace(_.kb,"&quot;"));return a};
+_.lb=function(a,b,c){a=(0,_.ja)(c)?a.toFixed(c):""+a;c=a.indexOf(".");-1==c&&(c=a.length);b=window.Math.max(0,b-c);return(0,window.Array)(b+1).join("0")+a};_.mb=function(a,b){return 0<=(0,_.ob)(a,b)};_.pb=function(a,b){(0,_.mb)(a,b)||a.push(b)};_.qb=function(a,b){var c=(0,_.ob)(a,b),d;(d=0<=c)&&_.tb.splice.call(a,c,1);return d};_.ub=function(a){return _.tb.concat.apply(_.tb,arguments)};_.vb=function(a){var b=a.length;if(0<b){for(var c=(0,window.Array)(b),d=0;d<b;d++)c[d]=a[d];return c}return[]};
+_.wb=function(a,b){for(var c=1;c<arguments.length;c++){var d=arguments[c],e;if((0,_.xa)(d)||(e=(0,_.La)(d))&&d.hasOwnProperty("callee"))a.push.apply(a,d);else if(e)for(var f=a.length,g=d.length,i=0;i<g;i++)a[f+i]=d[i];else a.push(d)}};_.xb=function(a,b,c){return 2>=arguments.length?_.tb.slice.call(a,b):_.tb.slice.call(a,b,c)};
+_.Bb=function(a,b){for(var c=b||a,d={},e=0,f=0;f<a.length;){var g=a[f++],i=(0,_.Sa)(g)?"o"+(0,_.Wa)(g):(typeof g).charAt(0)+g;window.Object.prototype.hasOwnProperty.call(d,i)||(d[i]=_.l,c[e++]=g)}c.length=e};_.Cb=function(){};_.Db=function(a,b,c){for(var d in a)b.call(c,a[d],d,a)};_.Eb=function(a){var b=[],c=0,d;for(d in a)b[c++]=a[d];return b};_.Fb=function(a){var b=[],c=0,d;for(d in a)b[c++]=d;return b};_.Gb=function(a){var b={},c;for(c in a)b[c]=a[c];return b};
+_.Hb=function(a,b){for(var c,d,e=1;e<arguments.length;e++){d=arguments[e];for(c in d)a[c]=d[c];for(var f=0;f<_.Ib.length;f++)c=_.Ib[f],window.Object.prototype.hasOwnProperty.call(d,c)&&(a[c]=d[c])}};_.Jb=function(a){if("function"==typeof a.Ux)return a.Ux();if((0,_.Na)(a))return a.split("");if((0,_.La)(a)){for(var b=[],c=a.length,d=0;d<c;d++)b.push(a[d]);return b}return(0,_.Eb)(a)};
+_.Kb=function(a){if("function"==typeof a.DC)return a.DC();if("function"!=typeof a.Ux){if((0,_.La)(a)||(0,_.Na)(a)){for(var b=[],a=a.length,c=0;c<a;c++)b.push(c);return b}return(0,_.Fb)(a)}};_.Lb=function(a,b,c){if("function"==typeof a.forEach)a.forEach(b,c);else if((0,_.La)(a)||(0,_.Na)(a))(0,_.Mb)(a,b,c);else for(var d=(0,_.Kb)(a),e=(0,_.Jb)(a),f=e.length,g=0;g<f;g++)b.call(c,e[g],d&&d[g],a)};
+_.Nb=function(a,b){this.M={};this.B=[];var c=arguments.length;if(1<c){c%2&&(0,_.aa)((0,window.Error)("Uneven number of arguments"));for(var d=0;d<c;d+=2)this.set(arguments[d],arguments[d+1])}else if(a){a instanceof _.Nb?(c=a.DC(),d=a.Ux()):(c=(0,_.Fb)(a),d=(0,_.Eb)(a));for(var e=0;e<c.length;e++)this.set(c[e],d[e])}};_.Ob=function(a,b){return(0,_.Pb)(a.M,b)};_.eaa=function(a,b){return a===b};
+_.Qb=function(a){if(a.Zl!=a.B.length){for(var b=0,c=0;b<a.B.length;){var d=a.B[b];(0,_.Pb)(a.M,d)&&(a.B[c++]=d);b++}a.B.length=c}if(a.Zl!=a.B.length){for(var e={},c=b=0;b<a.B.length;)d=a.B[b],(0,_.Pb)(e,d)||(a.B[c++]=d,e[d]=1),b++;a.B.length=c}};_.Pb=function(a,b){return window.Object.prototype.hasOwnProperty.call(a,b)};_.Rb=function(){return _.ha.navigator?_.ha.navigator.userAgent:_.p};_.Sb=function(){return _.ha.navigator};
+_.Wb=function(a){var b;if(!(b=_.Xb[a])){b=0;for(var c=(0,_.fb)(""+_.faa).split("."),d=(0,_.fb)(""+a).split("."),e=window.Math.max(c.length,d.length),f=0;0==b&&f<e;f++){var g=c[f]||"",i=d[f]||"",h=(0,window.RegExp)("(\\d*)(\\D*)","g"),m=(0,window.RegExp)("(\\d*)(\\D*)","g");do{var n=h.exec(g)||["","",""],j=m.exec(i)||["","",""];if(0==n[0].length&&0==j[0].length)break;b=((0==n[1].length?0:(0,window.parseInt)(n[1],10))<(0==j[1].length?0:(0,window.parseInt)(j[1],10))?-1:(0==n[1].length?0:(0,window.parseInt)(n[1],
+10))>(0==j[1].length?0:(0,window.parseInt)(j[1],10))?1:0)||((0==n[2].length)<(0==j[2].length)?-1:(0==n[2].length)>(0==j[2].length)?1:0)||(n[2]<j[2]?-1:n[2]>j[2]?1:0)}while(0==b)}b=_.Xb[a]=0<=b}return b};_.Yb=function(a){return _.Zb[a]||(_.Zb[a]=_.$b&&!!window.document.documentMode&&window.document.documentMode>=a)};_.ac=function(){};_.bc=function(a){a&&"function"==typeof a.dispose&&a.dispose()};
+_.cc=function(a){for(var b=0,c=arguments.length;b<c;++b){var d=arguments[b];(0,_.La)(d)?_.cc.apply(_.p,d):(0,_.bc)(d)}};_.dc=function(a,b){this.U=[];this.oa=a;this.ra=b||_.p};_.ec=function(a,b,c){a.GA=_.l;a.M=c;a.tF=!b;(0,_.fc)(a)};_.gc=function(a){a.GA&&(a.DL||(0,_.aa)(new _.hc(a)),a.DL=_.A)};_.ic=function(a,b,c,d){a.U.push([b,c,d]);a.GA&&(0,_.fc)(a);return a};_.jc=function(a){return(0,_.kc)(a.U,function(a){return(0,_.Pa)(a[1])})};
+_.fc=function(a){a.ha&&(a.GA&&(0,_.jc)(a))&&(_.ha.clearTimeout(a.ha),delete a.ha);a.B&&(a.B.Nx--,delete a.B);for(var b=a.M,c=_.A,d=_.A;a.U.length&&0==a.NF;){var e=a.U.shift(),f=e[0],g=e[1],e=e[2];if(f=a.tF?g:f)try{var i=f.call(e||a.ra,b);(0,_.ja)(i)&&(a.tF=a.tF&&(i==b||i instanceof window.Error),a.M=b=i);b instanceof _.dc&&(d=_.l,a.NF++)}catch(h){b=h,a.tF=_.l,(0,_.jc)(a)||(c=_.l)}}a.M=b;d&&a.NF&&((0,_.ic)(b,(0,_.ab)(a.$M,a,_.l),(0,_.ab)(a.$M,a,_.A)),b.tT=_.l);c&&(a.ha=_.ha.setTimeout(function(){(0,_.aa)(b)},
+0))};_.hc=function(){_.db.call(this)};_.lc=function(){_.db.call(this)};_.mc=function(){};_.nc=function(a,b){this.B=a;this.M=b};_.oc=function(a,b){this.hN=a;this.nm=b;this.M=[];this.B=[];this.U=[]};_.pc=function(a,b){var c=new a.wW;c.initialize(b());a.rD=c;c=(c=!!(0,_.qc)(a,a.U,b()))||!!(0,_.qc)(a,a.M,b());c||(a.B.length=0);return c};
+_.sc=function(a,b){var c=(0,_.qc)(a,a.B,b);if(c){var d="Module errback failures: "+c;window.setTimeout(function(){(0,_.aa)((0,window.Error)(d))},0)}a.U.length=0;a.M.length=0};_.qc=function(a,b,c){for(var a=[],d=0;d<b.length;d++)try{b[d].execute(c)}catch(e){a.push(e)}b.length=0;return a.length?a:_.p};_.O=function(){this.Jx={};this.M=[];this.U=[];this.B=[];this.ha=[];this.ra={};this.oa=this.xa=new _.oc([],"")};
+_.tc=function(a){var b=a.KO,c=a.isActive();c!=b&&((0,_.uc)(a,c?"active":"idle"),a.KO=c);b=0<a.ha.length;b!=a.FQ&&((0,_.uc)(a,b?"userActive":"userIdle"),a.FQ=b)};_.vc=function(a,b,c){var d=[];(0,_.Bb)(b,d);for(var b=[],e={},f=0;f<d.length;f++){var g=d[f],i=a.Jx[g],h=new _.dc;e[g]=h;i.rD?h.Et(a.aP):((0,_.gaa)(a,g,i,!!c,h),(0,_.wc)(a,g)||b.push(g))}0<b.length&&(0,_.xc)(a,b);return e};
+_.gaa=function(a,b,c,d,e){c.ZH(e.Et,e);c.B.push(new _.nc(function(a){e.BJ((0,window.Error)(a))},_.k));(0,_.wc)(a,b)?d&&((0,_.mb)(a.ha,b)||a.ha.push(b),(0,_.tc)(a)):d&&((0,_.mb)(a.ha,b)||a.ha.push(b))};_.xc=function(a,b){0==a.M.length?(0,_.yc)(a,b):(a.B.push(b),(0,_.tc)(a))};
+_.yc=function(a,b,c,d){c||(a.uG=0);for(var e=0;e<b.length;e++)a.Jx[b[e]].rD&&(0,_.aa)((0,window.Error)("Module already loaded: "+b[e]));c=[];for(e=0;e<b.length;e++)c=c.concat((0,_.zc)(a,b[e]));(0,_.Bb)(c);!a.mJ&&1<c.length&&(e=c.shift(),a.B=(0,_.Ac)(c,function(a){return[a]}).concat(a.B),c=[e]);a.M=c;a.mJ?a.U=b:a.U=(0,_.vb)(c);(0,_.tc)(a);b=(0,_.ab)(a.RK.ra,a.RK,(0,_.vb)(c),a.Jx,_.p,(0,_.ab)(a.CV,a),(0,_.ab)(a.DV,a),!!d);(a=5E3*window.Math.pow(a.uG,2))?window.setTimeout(b,a):b()};
+_.zc=function(a,b){for(var c=[b],d=(0,_.vb)(a.Jx[b].hN);d.length;){var e=d.pop();a.Jx[e].rD||(c.unshift(e),window.Array.prototype.unshift.apply(d,a.Jx[e].hN))}(0,_.Bb)(c);return c};_.Bc=function(a,b){a.Ea||((0,_.pc)(a.Jx[b],(0,_.ab)(a.GN,a))&&(0,_.Cc)(a,4),(0,_.qb)(a.ha,b),(0,_.qb)(a.M,b),0==a.M.length&&(0,_.Dc)(a),(0,_.tc)(a))};_.wc=function(a,b){if((0,_.mb)(a.M,b))return _.l;for(var c=0;c<a.B.length;c++)if((0,_.mb)(a.B[c],b))return _.l;return _.A};_.Ec=function(a,b){a.oa=a.Jx[b]};
+_.Fc=function(a){!a.oa||a.oa.getId();a.oa=_.p};_.Gc=function(a,b){1<a.U.length?a.B=(0,_.Ac)(a.U,function(a){return[a]}).concat(a.B):(0,_.Cc)(a,b)};
+_.Cc=function(a,b){var c=a.U;a.M.length=0;for(var d=[],e=0;e<a.B.length;e++){var f=(0,_.Hc)(a.B[e],function(a){var b=(0,_.zc)(this,a);return(0,_.kc)(c,function(a){return(0,_.mb)(b,a)})},a);(0,_.wb)(d,f)}for(e=0;e<c.length;e++)(0,_.pb)(d,c[e]);for(e=0;e<d.length;e++){for(f=0;f<a.B.length;f++)(0,_.qb)(a.B[f],d[e]);(0,_.qb)(a.ha,d[e])}var g=a.ra.error;if(g)for(e=0;e<g.length;e++)for(var i=g[e],f=0;f<d.length;f++)i("error",d[f],b);for(e=0;e<c.length;e++)a.Jx[c[e]]&&(0,_.sc)(a.Jx[c[e]],b);a.U.length=0;
+(0,_.tc)(a)};_.Dc=function(a){for(;a.B.length;){var b=(0,_.Hc)(a.B.shift(),function(a){return!this.Jx[a].rD},a);if(0<b.length){(0,_.yc)(a,b);return}}(0,_.tc)(a)};_.uc=function(a,b){for(var c=a.ra[b],d=0;c&&d<c.length;d++)c[d](b)};_.Ic=function(){};_.Jc=function(a,b){this.oa=a;this.ha=b};_.Kc=function(){return _.Kc.B.B()};_.Lc=function(){};
+_.Mc=function(a){if(_.Kc.M)return"";if(!a.ha&&"undefined"==typeof window.XMLHttpRequest&&"undefined"!=typeof window.ActiveXObject){for(var b=["MSXML2.XMLHTTP.6.0","MSXML2.XMLHTTP.3.0","MSXML2.XMLHTTP","Microsoft.XMLHTTP"],c=0;c<b.length;c++){var d=b[c];try{return new window.ActiveXObject(d),a.ha=d}catch(e){}}(0,_.aa)((0,window.Error)("Could not create ActiveXObject. ActiveX might be disabled, or MSXML might not be installed"))}return a.ha};
+_.Nc=function(a){for(var b in _.Oc)_.Oc[b]=_.A;for(var c in _.Pc)_.Pc[c]=_.A;b=c=_.p;if(window.opera){_.Oc.opera=_.l;_.Pc.opera=_.l;var d=window.opera.version;d?_.Qc=_.Rc=(0,_.Pa)(d)?d():d:c=b=/Opera[\/\s](\S+)/}else 0<=a.indexOf("MSIE")?(_.Oc.Gd=_.l,_.Pc.Gd=_.l,c=b=/MSIE\s+([^\);]+)(\)|;)/):0<=a.indexOf("WebKit")?(_.Oc.Bs=_.l,c=/Version\/(\S+)/,0<=a.indexOf("Silk-Accelerated")?(_.Pc.jv=_.l,_.Pc.CE=_.l,b=c):0<=a.indexOf("Android")&&0>a.indexOf("Mobile")?(_.Pc.jv=_.l,0<=a.indexOf("Chrome")&&(_.Pc.xT=
+_.l),b=c):0<=a.indexOf("Android")&&0<=a.indexOf("Mobile")?(_.Pc.Vy=_.l,0<=a.indexOf("Chrome")&&(_.Pc.sG=_.l),b=c):0<=a.indexOf("Chrome")?(_.Pc.hx=_.l,b=/Chrome\/(\S+)/):0<=a.indexOf("Safari")&&(_.Pc.Qz=_.l,b=c),0<=a.indexOf("iPad")?(_.Pc.Gx=_.l,_.Pc.Qz||(_.Pc.Qz=_.l,b=c)):0<=a.indexOf("iPhone")&&(_.Pc.Mz=_.l,_.Pc.Qz||(_.Pc.Qz=_.l,b=c)),c=/WebKit\/(\S+)/):0<=a.indexOf("Gecko")&&(_.Oc.Rx=_.l,0<=a.indexOf("Firefox")&&(_.Pc.Lv=_.l,b=/Firefox\/(\S+)/),c=/rv\:([^\);]+)(\)|;)/);c&&(_.Rc=(c=c.exec(a))?c[1]:
+"");b&&(_.Qc=(c=b.exec(a))?c[1]:"",_.Pc.Gd&&(a=window.document?window.document.documentMode:_.k)&&a>(0,window.parseFloat)(_.Qc)&&(_.Qc=a.toFixed(1).toString()));(0,_.ga)("google.browser.engine.IE",_.Oc.Gd,_.k);(0,_.ga)("google.browser.engine.GECKO",_.Oc.Rx,_.k);(0,_.ga)("google.browser.engine.WEBKIT",_.Oc.Bs,_.k);(0,_.ga)("google.browser.engine.OPERA",_.Oc.opera,_.k);(0,_.ga)("google.browser.engine.version",_.Rc,_.k);(0,_.ga)("google.browser.product.IE",_.Pc.Gd,_.k);(0,_.ga)("google.browser.product.FIREFOX",
+_.Pc.Lv,_.k);(0,_.ga)("google.browser.product.SAFARI",_.Pc.Qz,_.k);(0,_.ga)("google.browser.product.IPAD",_.Pc.Gx,_.k);(0,_.ga)("google.browser.product.IPHONE",_.Pc.Mz,_.k);(0,_.ga)("google.browser.product.CHROME",_.Pc.hx,_.k);(0,_.ga)("google.browser.product.ANDROID_TABLET",_.Pc.jv,_.k);(0,_.ga)("google.browser.product.ANDROID_MOBILE",_.Pc.Vy,_.k);(0,_.ga)("google.browser.product.KINDLE_FIRE",_.Pc.CE,_.k);(0,_.ga)("google.browser.product.OPERA",_.Pc.opera,_.k);(0,_.ga)("google.browser.product.version",
+_.Qc,_.k)};
+_.Sc=function(a,b){for(var c=0,d=a.replace(/^\s+|\s+$/g,"").split("."),e=b.replace(/^\s+|\s+$/g,"").split("."),f=window.Math.max(d.length,e.length),g=0;0==c&&g<f;g++){var i=d[g]||"",h=e[g]||"",m=(0,window.RegExp)("(\\d*)(\\D*)","g"),n=(0,window.RegExp)("(\\d*)(\\D*)","g");do{var j=m.exec(i)||["","",""],q=n.exec(h)||["","",""];if(0==j[0].length&&0==q[0].length)break;c=((0==j[1].length?0:(0,window.parseInt)(j[1],10))<(0==q[1].length?0:(0,window.parseInt)(q[1],10))?-1:(0==j[1].length?0:(0,window.parseInt)(j[1],10))>
+(0==q[1].length?0:(0,window.parseInt)(q[1],10))?1:0)||((0==j[2].length)<(0==q[2].length)?-1:(0==j[2].length)>(0==q[2].length)?1:0)||(j[2]<q[2]?-1:j[2]>q[2]?1:0)}while(0==c)}return c};_.Tc=function(a){return 0<=(0,_.Sc)(_.Rc,a)};_.Uc=function(a){return 0<=(0,_.Sc)(_.Qc,a)};
+_.Vc=function(a){var b=0==a||2==a,a=0==a||1==a?"Height":"Width";if(_.Oc.Bs&&(_.Pc.jv||_.Pc.Vy||_.Pc.CE)){if(_.Pc.CE)return b=window.screen.width,600==b?"Width"==a?600:1024:1024==b?"Width"==a?1024:600:window.screen[a.toLowerCase()];if("Width"==a)return window.document.documentElement.offsetWidth;b=window.screen.height/window.screen.width;0<b&&b<window.Number.MAX_VALUE||(b=1);return window.Math.round(window.document.documentElement.offsetWidth*b)}if(b){if(window["inner"+a])return window["inner"+a];
+if(window.document.documentElement&&window.document.documentElement["offset"+a])return window.document.documentElement["offset"+a]}else return("CSS1Compat"==window.document.compatMode?window.document.documentElement:window.document.body)["client"+a];return 0};_.Wc=function(a,b,c){return window.Math.min(window.Math.max(a,b),c)};_.Xc=function(a,b){this.x=(0,_.ja)(a)?a:0;this.y=(0,_.ja)(b)?b:0};_.Yc=function(a,b){this.width=a;this.height=b};
+_.Zc=function(a,b){return a==b?_.l:!a||!b?_.A:a.width==b.width&&a.height==b.height};_.$c=function(a){a=a.className;return(0,_.Na)(a)&&a.match(/\S+/g)||[]};_.ad=function(a,b){var c=(0,_.$c)(a),d=(0,_.xb)(arguments,1),e=c.length+d.length;(0,_.bd)(c,d);a.className=c.join(" ");return c.length==e};_.cd=function(a,b){var c=(0,_.$c)(a),d=(0,_.xb)(arguments,1),e=(0,_.dd)(c,d);a.className=e.join(" ");return e.length==c.length-d.length};_.bd=function(a,b){for(var c=0;c<b.length;c++)(0,_.mb)(a,b[c])||a.push(b[c])};
+_.dd=function(a,b){return(0,_.Hc)(a,function(a){return!(0,_.mb)(b,a)})};_.ed=function(a,b){return(0,_.mb)((0,_.$c)(a),b)};_.fd=function(a){return a?new _.gd((0,_.hd)(a)):_.id||(_.id=new _.gd)};_.jd=function(a){return(0,_.Na)(a)?window.document.getElementById(a):a};_.kd=function(a,b,c){return(0,_.ld)(window.document,a,b,c)};
+_.md=function(a,b){var c=b||window.document;return c.querySelectorAll&&c.querySelector?c.querySelectorAll("."+a):c.getElementsByClassName?c.getElementsByClassName(a):(0,_.ld)(window.document,"*",a,b)};_.nd=function(a,b){var c=b||window.document,d=_.p;return(d=c.querySelectorAll&&c.querySelector?c.querySelector("."+a):(0,_.md)(a,b)[0])||_.p};
+_.ld=function(a,b,c,d){a=d||a;b=b&&"*"!=b?b.toUpperCase():"";if(a.querySelectorAll&&a.querySelector&&(b||c))return a.querySelectorAll(b+(c?"."+c:""));if(c&&a.getElementsByClassName){a=a.getElementsByClassName(c);if(b){for(var d={},e=0,f=0,g;g=a[f];f++)b==g.nodeName&&(d[e++]=g);d.length=e;return d}return a}a=a.getElementsByTagName(b||"*");if(c){d={};for(f=e=0;g=a[f];f++)b=g.className,"function"==typeof b.split&&(0,_.mb)(b.split(/\s+/),c)&&(d[e++]=g);d.length=e;return d}return a};
+_.od=function(a){return(0,_.pd)(a||window)};_.pd=function(a){a=a.document;a=(0,_.qd)(a)?a.documentElement:a.body;return new _.Yc(a.clientWidth,a.clientHeight)};_.rd=function(a){var b=(0,_.sd)(a),a=a.parentWindow||a.defaultView;return new _.Xc(a.pageXOffset||b.scrollLeft,a.pageYOffset||b.scrollTop)};_.sd=function(a){return!_.td&&(0,_.qd)(a)?a.documentElement:a.body};_.ud=function(a,b,c){return(0,_.vd)(window.document,arguments)};
+_.vd=function(a,b){var c=b[0],d=b[1];if(!_.haa&&d&&(d.name||d.type)){c=["<",c];d.name&&c.push(' name="',(0,_.gb)(d.name),'"');if(d.type){c.push(' type="',(0,_.gb)(d.type),'"');var e={};(0,_.Hb)(e,d);delete e.type;d=e}c.push(">");c=c.join("")}var f=a.createElement(c);d&&((0,_.Na)(d)?f.className=d:(0,_.xa)(d)?_.ad.apply(_.p,[f].concat(d)):(0,_.Db)(d,function(a,b){"style"==b?f.style.cssText=a:"class"==b?f.className=a:"for"==b?f.htmlFor=a:b in _.wd?f.setAttribute(_.wd[b],a):0==b.lastIndexOf("aria-",0)||
+0==b.lastIndexOf("data-",0)?f.setAttribute(b,a):f[b]=a}));2<b.length&&(0,_.xd)(a,f,b,2);return f};_.xd=function(a,b,c,d){function e(c){c&&b.appendChild((0,_.Na)(c)?a.createTextNode(c):c)}for(;d<c.length;d++){var f=c[d];if((0,_.La)(f)&&!((0,_.Sa)(f)&&0<f.nodeType)){var g=_.Mb,i;a:{if((i=f)&&"number"==typeof i.length){if((0,_.Sa)(i)){i="function"==typeof i.item||"string"==typeof i.item;break a}if((0,_.Pa)(i)){i="function"==typeof i.item;break a}}i=_.A}g(i?(0,_.vb)(f):f,e)}else e(f)}};_.yd=function(a){return window.document.createElement(a)};
+_.qd=function(a){return"CSS1Compat"==a.compatMode};_.zd=function(a,b){(0,_.xd)((0,_.hd)(a),a,arguments,1)};_.Ad=function(a){for(var b;b=a.firstChild;)a.removeChild(b)};_.Bd=function(a,b){b.parentNode&&b.parentNode.insertBefore(a,b)};_.Cd=function(a,b){b.parentNode&&b.parentNode.insertBefore(a,b.nextSibling)};_.Dd=function(a){return a&&a.parentNode?a.parentNode.removeChild(a):_.p};_.Ed=function(a,b){var c=b.parentNode;c&&c.replaceChild(a,b)};
+_.Fd=function(a){return _.iaa&&a.children!=_.k?a.children:(0,_.Hc)(a.childNodes,function(a){return 1==a.nodeType})};_.Gd=function(a){return a.firstElementChild!=_.k?a.firstElementChild:(0,_.Hd)(a.firstChild,_.l)};_.Id=function(a){return a.nextElementSibling!=_.k?a.nextElementSibling:(0,_.Hd)(a.nextSibling,_.l)};_.Hd=function(a,b){for(;a&&1!=a.nodeType;)a=b?a.nextSibling:a.previousSibling;return a};_.Jd=function(a){return(0,_.Sa)(a)&&1==a.nodeType};
+_.Kd=function(a,b){if(a.contains&&1==b.nodeType)return a==b||a.contains(b);if("undefined"!=typeof a.compareDocumentPosition)return a==b||(0,window.Boolean)(a.compareDocumentPosition(b)&16);for(;b&&a!=b;)b=b.parentNode;return b==a};_.hd=function(a){return 9==a.nodeType?a:a.ownerDocument||a.document};_.Ld=function(a,b){if("textContent"in a)a.textContent=b;else if(a.firstChild&&3==a.firstChild.nodeType){for(;a.lastChild!=a.firstChild;)a.removeChild(a.lastChild);a.firstChild.data=b}else(0,_.Ad)(a),a.appendChild((0,_.hd)(a).createTextNode(b))};
+_.Md=function(a,b,c,d){if(a!=_.p)for(a=a.firstChild;a;){if(b(a)&&(c.push(a),d)||(0,_.Md)(a,b,c,d))return _.l;a=a.nextSibling}return _.A};_.Nd=function(a){if(_.Od&&"innerText"in a)a=a.innerText.replace(/(\r\n|\r|\n)/g,"\n");else{var b=[];(0,_.Pd)(a,b,_.l);a=b.join("")}a=a.replace(/ \xAD /g," ").replace(/\xAD/g,"");a=a.replace(/\u200B/g,"");_.Od||(a=a.replace(/ +/g," "));" "!=a&&(a=a.replace(/^\s*/,""));return a};
+_.Pd=function(a,b,c){if(!(a.nodeName in _.jaa))if(3==a.nodeType)c?b.push((""+a.nodeValue).replace(/(\r\n|\r|\n)/g,"")):b.push(a.nodeValue);else if(a.nodeName in _.Qd)b.push(_.Qd[a.nodeName]);else for(a=a.firstChild;a;)(0,_.Pd)(a,b,c),a=a.nextSibling};_.Rd=function(a,b,c){if(!b&&!c)return _.p;var d=b?b.toUpperCase():_.p;return(0,_.Sd)(a,function(a){return(!d||a.nodeName==d)&&(!c||(0,_.ed)(a,c))},_.l)};
+_.Sd=function(a,b,c,d){c||(a=a.parentNode);for(var c=d==_.p,e=0;a&&(c||e<=d);){if(b(a))return a;a=a.parentNode;e++}return _.p};_.Td=function(a){try{return a&&a.activeElement}catch(b){}return _.p};_.gd=function(a){this.B=a||_.ha.document||window.document};_.Ud=function(a){return(0,_.qd)(a.B)};_.Vd=function(a){return(0,_.rd)(a.B)};_.Wd=function(a,b,c,d){this.top=a;this.right=b;this.bottom=c;this.left=d};_.Xd=function(a,b,c,d){this.left=a;this.top=b;this.width=c;this.height=d};
+_.Yd=function(a,b,c){(0,_.Na)(b)?(0,_.Zd)(a,c,b):(0,_.Db)(b,(0,_.bb)(_.Zd,a))};_.Zd=function(a,b,c){a.style[(""+c).replace(/\-([a-z])/g,function(a,b){return b.toUpperCase()})]=b};_.$d=function(a,b){var c=(0,_.hd)(a);return c.defaultView&&c.defaultView.getComputedStyle&&(c=c.defaultView.getComputedStyle(a,_.p))?c[b]||c.getPropertyValue(b)||"":""};_.ae=function(a,b){return(0,_.$d)(a,b)||(a.currentStyle?a.currentStyle[b]:_.p)||a.style&&a.style[b]};_.be=function(a){return(0,_.ae)(a,"position")};
+_.ce=function(a,b,c){var d,e=_.de&&(_.ee||_.kaa)&&(0,_.Wb)("1.9");b instanceof _.Xc?(d=b.x,b=b.y):(d=b,b=c);a.style.left=(0,_.fe)(d,e);a.style.top=(0,_.fe)(b,e)};_.ge=function(a){a=a?(0,_.hd)(a):window.document;return _.$b&&!(0,_.Yb)(9)&&!(0,_.Ud)((0,_.fd)(a))?a.body:a.documentElement};_.he=function(a){var b=a.getBoundingClientRect();_.$b&&(a=a.ownerDocument,b.left-=a.documentElement.clientLeft+a.body.clientLeft,b.top-=a.documentElement.clientTop+a.body.clientTop);return b};
+_.ie=function(a){if(_.$b&&!(0,_.Yb)(8))return a.offsetParent;for(var b=(0,_.hd)(a),c=(0,_.ae)(a,"position"),d="fixed"==c||"absolute"==c,a=a.parentNode;a&&a!=b;a=a.parentNode)if(c=(0,_.ae)(a,"position"),d=d&&"static"==c&&a!=b.documentElement&&a!=b.body,!d&&(a.scrollWidth>a.clientWidth||a.scrollHeight>a.clientHeight||"fixed"==c||"absolute"==c||"relative"==c))return a;return _.p};
+_.ke=function(a){var b,c=(0,_.hd)(a),d=(0,_.ae)(a,"position"),e=_.de&&c.getBoxObjectFor&&!a.getBoundingClientRect&&"absolute"==d&&(b=c.getBoxObjectFor(a))&&(0>b.screenX||0>b.screenY),f=new _.Xc(0,0),g=(0,_.ge)(c);if(a==g)return f;if(a.getBoundingClientRect)b=(0,_.he)(a),a=(0,_.Vd)((0,_.fd)(c)),f.x=b.left+a.x,f.y=b.top+a.y;else if(c.getBoxObjectFor&&!e)b=c.getBoxObjectFor(a),a=c.getBoxObjectFor(g),f.x=b.screenX-a.screenX,f.y=b.screenY-a.screenY;else{b=a;do{f.x+=b.offsetLeft;f.y+=b.offsetTop;b!=a&&
+(f.x+=b.clientLeft||0,f.y+=b.clientTop||0);if(_.td&&"fixed"==(0,_.be)(b)){f.x+=c.body.scrollLeft;f.y+=c.body.scrollTop;break}b=b.offsetParent}while(b&&b!=a);if(_.le||_.td&&"absolute"==d)f.y-=c.body.offsetTop;for(b=a;(b=(0,_.ie)(b))&&b!=c.body&&b!=g;)if(f.x-=b.scrollLeft,!_.le||"TR"!=b.tagName)f.y-=b.scrollTop}return f};_.me=function(a){return(0,_.ke)(a).x};_.ne=function(a){return(0,_.ke)(a).y};_.fe=function(a,b){"number"==typeof a&&(a=(b?window.Math.round(a):a)+"px");return a};
+_.oe=function(a){if("none"!=(0,_.ae)(a,"display"))return(0,_.pe)(a);var b=a.style,c=b.display,d=b.visibility,e=b.position;b.visibility="hidden";b.position="absolute";b.display="inline";a=(0,_.pe)(a);b.display=c;b.position=e;b.visibility=d;return a};_.pe=function(a){var b=a.offsetWidth,c=a.offsetHeight,d=_.td&&!b&&!c;return(!(0,_.ja)(b)||d)&&a.getBoundingClientRect?(a=(0,_.he)(a),new _.Yc(a.right-a.left,a.bottom-a.top)):new _.Yc(b,c)};
+_.qe=function(a){var b=(0,_.ke)(a),a=(0,_.oe)(a);return new _.Xd(b.x,b.y,a.width,a.height)};_.re=function(a,b){a.style.display=b?"":"none"};_.se=function(a,b){var c=(0,_.fd)(b),d=_.p;if(_.$b)c=d=c.B.createStyleSheet(),_.$b?c.cssText=a:c.innerHTML=a;else{var e=(0,_.ld)(c.B,"head",_.k,_.k)[0];e||(d=(0,_.ld)(c.B,"body",_.k,_.k)[0],e=c.fu("head"),d.parentNode.insertBefore(e,d));var f=d=c.fu("style");_.$b?f.cssText=a:f.innerHTML=a;c.appendChild(e,d)}return d};_.te=function(a){return"rtl"==(0,_.ae)(a,"direction")};
+_.ue=function(a,b,c){c=!c?a.getElementsByTagName("*"):_.p;if(_.ve){if(b=b?"none":"",a.style[_.ve]=b,c)for(var a=0,d;d=c[a];a++)d.style[_.ve]=b}else if(_.$b||_.le)if(b=b?"on":"",a.setAttribute("unselectable",b),c)for(a=0;d=c[a];a++)d.setAttribute("unselectable",b)};_.we=function(a,b,c,d){if(/^\d+px?$/.test(b))return(0,window.parseInt)(b,10);var e=a.style[c],f=a.runtimeStyle[c];a.runtimeStyle[c]=a.currentStyle[c];a.style[c]=b;b=a.style[d];a.style[c]=e;a.runtimeStyle[c]=f;return b};
+_.xe=function(a,b){return(0,_.we)(a,a.currentStyle?a.currentStyle[b]:_.p,"left","pixelLeft")};_.ye=function(a,b){if(_.$b){var c=(0,_.xe)(a,b+"Left"),d=(0,_.xe)(a,b+"Right"),e=(0,_.xe)(a,b+"Top"),f=(0,_.xe)(a,b+"Bottom");return new _.Wd(e,d,f,c)}c=(0,_.$d)(a,b+"Left");d=(0,_.$d)(a,b+"Right");e=(0,_.$d)(a,b+"Top");f=(0,_.$d)(a,b+"Bottom");return new _.Wd((0,window.parseFloat)(e),(0,window.parseFloat)(d),(0,window.parseFloat)(f),(0,window.parseFloat)(c))};_.ze=function(a){return(0,_.ye)(a,"margin")};
+_.Ae=function(a){return(window.document.getElementById("xjsc")||window.document.body).appendChild(a)};_.Be=function(a,b){var c=a.match(_.Ce),d=window.document.createElement(c[1]);c[2]&&(d.className=c[2]);b&&(d.innerHTML=b);return d};
+_.De=function(a,b){var c;if(c=a.match(_.laa)){var d=window.document.getElementById(c[1]);return d?[d]:[]}c=a.match(_.Ce);d=c[2]&&(0,window.RegExp)("\\b"+c[2]+"\\b");c=(b||window.document).getElementsByTagName(c[1]||"*");for(var e=[],f=0,g;g=c[f++];)(!d||d.test(g.className))&&e.push(g);return e};_.Ee=function(a,b){return(0,_.De)(a,b)[0]||_.p};
+_.Fe=function(a,b){for(var c=1;c<arguments.length;c+=2){var d=arguments[c],e=arguments[c+1],f=a.style;f&&d in f?f[d]=e:d in a?a[d]=e:_.Oc.Gd&&(f&&"opacity"==d)&&(a.zoom=1,d=(f.filter||"").replace(/alpha\([^)]*\)/,""),(0,window.isNaN)((0,window.parseFloat)(e))||(d+="alpha(opacity="+100*e+")"),f.filter=d)}return a};_.Ge=function(a,b,c){c=c||-1;if(a&&b)for(;(a=a.parentNode)&&c--;)if(a==b)return _.l;return _.A};
+_.He=function(a,b){try{var c=a.getAttribute(b);return c?c:""}catch(d){return(c=a.getAttributeNode(b))?c.value:""}};_.Ie=function(a,b){var c=(0,_.ne)((0,_.jd)(a));0<=c&&(c+=b||0,window.scrollTo(0,c))};_.Je=function(a,b,c,d){a.addEventListener?a.addEventListener(b,c,_.A):a.attachEvent("on"+b,c);(a==window||a==window.document||a==window.document.documentElement||a==window.document.body)&&window.google.jsad&&window.google.jsa&&window.google.jsa.adc(b,c,!!d)};
+_.Ke=function(a,b,c){a.removeEventListener?a.removeEventListener(b,c,_.A):a.detachEvent("on"+b,c);(a==window||a==window.document||a==window.document.documentElement||a==window.document.body)&&window.google.jsad&&window.google.jsa&&window.google.jsa.rdc(b,c)};_.maa=function(a,b){return a[1]-b[1]};_.Le=function(a){var b=0,c=arguments,d=c.length;1==d%2&&(b=c[d-1]);for(var e=0;e<d-1;e+=2){var f=c[e];_.Me[f]||(_.Me[f]=[]);_.Me[f].push([c[e+1],b]);_.Me[f].sort(_.maa)}};
+_.Ne=function(a){for(var b=0;b<arguments.length-1;b+=2){var c=_.Me[arguments[b]];if(c)for(var d=arguments[b+1],e=0;e<c.length;++e)if(c[e][0]==d){c.splice(e,1);break}}};_.Oe=function(a,b,c,d){var e=c===_.k?_.l:c,f=c===_.A,g=b&&b[0]===c;if(a in _.Me){d===_.k&&(d=_.A);var i;i="function"==typeof d?d:function(a){return a===d};for(var h=0,m;m=_.Me[a][h++];)if(m=m[0].apply(_.p,b||[]),f)e=e||m;else if(g&&(b[0]=m),e=m,i(e))return e}return"function"==typeof d?c:e};
+_.Pe=function(a,b,c){if(!(0,_.Oe)(32,[a,b,c],0,_.l))try{(0,window.RegExp)("^("+_.naa+")?/(url|aclk)\\?.*&rct=j(&|$)").test(a)?b?(window.google.r=1,b.location.replace(a)):(_.Qe||(_.Qe=window.document.createElement("iframe"),_.Qe.style.display="none",(0,_.Ae)(_.Qe)),window.google.r=1,_.Qe.src=a):window.location.href=a}catch(d){window.location.href=a}};
+_.Re=function(a,b){var c=(0,_.Se)().match(/[?&][\w\.\-~]+=([^&]*)/g),d={};if(c)for(var e=0,f;f=c[e++];){f=f.match(/([\w\.\-~]+?)=(.*)/);var g=f[2];d[f[1]]=g}for(f in a)a.hasOwnProperty(f)&&(g=a[f],g==_.p?delete d[f]:d[f]=g);c=["/search?"];e=_.l;for(f in d)d.hasOwnProperty(f)&&(c.push((e?"":"&")+f+"="+d[f]),e=_.A);(0,_.Pe)(c.join(""),_.k,b)};
+_.Se=function(){var a=window.location,b=a.hash?a.href.substr(a.href.indexOf("#")+1):"",c=b&&b.match(/(^|&)q=/),d=a.search?a.href.substr(a.href.indexOf("?")+1).replace(/#.*/,""):"",b=(c?b:d).replace(/(^|&)(fp|tch)=[^&]*/g,"").replace(/^&/,"");return(c?"/search":a.pathname)+(b?"?"+b:"")};_.Te=function(){var a=window.location;return a.hash?a.href.substr(a.href.indexOf("#")):""};
+_.Ue=function(a,b){var c,d=b?0<=(c=b.indexOf("#"))&&b.substr(c):(0,_.Te)();c="[#&]"+(b?"((q|fp)=|tbs=simg|tbs=sbi)":"fp=");if(d&&d.match(c)){if(d=d.match("[#&]"+a+"=([^&]*)"))return d[1]}else if(d=(b?b.match(/(\?|$)[^#]*/)[0]:window.location.search).match("[?&]"+a+"=([^&]*)"))return d[1];return _.p};_.Ve=function(a,b){var c=(0,_.Ue)(a,b);return c&&(0,window.decodeURIComponent)(c.replace(/\+/g," "))};_.We=function(){return!!(window.orientation%180)};
+_.Xe=function(){var a=(0,_.Vc)(1),b=(0,_.Vc)(3);return a<b};_.oaa=function(){};_.Ye=function(){return!(!/^mobilesearchapp/.test((0,_.Ue)("client"))&&!/^mobilesearchapp/.test((0,_.Ue)("source")))};_.Ze=function(a){for(var b=0;b<_.$e.length;b++)if(_.$e[b]==a)return;_.$e.push(a);_.af||(_.bf=window.orientation,_.cf=window.innerWidth,"orientation"in window&&!(0,_.Ye)()&&window.addEventListener("orientationchange",_.df,_.A),window.addEventListener("resize",(0,_.Ye)()?_.paa:_.df,_.A),_.af=_.l)};
+_.ef=function(a){for(var b=0;b<_.$e.length;b++)if(_.$e[b]==a){_.$e.splice(b,1);break}};_.df=function(){if(!("orientation"in window&&!(0,_.Ye)()&&window.orientation==_.bf||window.innerWidth==_.cf)){var a=new _.oaa((0,_.We)());_.bf=window.orientation;_.cf=window.innerWidth;for(var b=0;b<_.$e.length;b++)window.setTimeout((0,_.bb)(_.$e[b],a),0)}};_.paa=function(){window.setTimeout(_.df,10)};_.ff=function(){return(0,_.te)(window.document.body||window.document.documentElement)};
+_.gf=function(a,b,c){var d=c?"":0;if(_.Oc.Gd){if(d=b.replace(/\-([a-z])/g,function(a,b){return b.toUpperCase()}),d=a.currentStyle&&a.currentStyle[d]||"",!c){if(!/^-?\d/.test(d))return 0;c=a.style.left;a.style.left=d;d=a.style.pixelLeft;a.style.left=c}}else{a=window.document.defaultView&&window.document.defaultView.getComputedStyle(a,"");if(_.Oc.Bs&&!a)return d;d=a.getPropertyValue(b);d=c?d:(0,window.parseInt)(d,10)}return d};
+_.hf=function(a){var b;if(_.Oc.Gd)b||(b=a.offsetHeight-(0,_.gf)(a,"paddingTop")-(0,_.gf)(a,"paddingBottom")-(0,_.gf)(a,"borderTop")-(0,_.gf)(a,"borderBottom"));else if(b=(0,_.gf)(a,"height"),((0,window.isNaN)(b)||0==b)&&a.offsetHeight)b=a.offsetHeight-(0,_.gf)(a,"padding-top")-(0,_.gf)(a,"padding-bottom")-(0,_.gf)(a,"border-top-width")-(0,_.gf)(a,"border-bottom-width");return(0,window.isNaN)(b)||0>b?0:b};
+_.jf=function(a){var b;if(_.Oc.Gd)(b=a.style.pixelWidth||0)||(b=a.offsetWidth-(0,_.gf)(a,"paddingLeft")-(0,_.gf)(a,"paddingRight")-(0,_.gf)(a,"borderLeft")-(0,_.gf)(a,"borderRight"));else if(b=(0,_.gf)(a,"width"),((0,window.isNaN)(b)||0==b)&&a.offsetWidth)b=a.offsetWidth-(0,_.gf)(a,"padding-left")-(0,_.gf)(a,"padding-right")-(0,_.gf)(a,"border-left-width")-(0,_.gf)(a,"border-right-width");return(0,window.isNaN)(b)||0>b?0:b};_.kf=function(a){return(0,_.me)(a)+((0,_.ff)()?(0,_.jf)(a):0)};
+_.lf=function(a,b){return a?(0,_.ed)(a,b):_.A};_.mf=function(a,b){a&&(0,_.ad)(a,b)};_.nf=function(a,b){a&&(0,_.cd)(a,b)};_.of=function(a){for(var b=0;b<_.pf.length;b+=2)a=a.replace((0,window.RegExp)(_.pf[b],"g"),_.pf[b+1]);return a};_.qf=function(a){for(var b=0;b<_.pf.length;b+=2)a=a.replace((0,window.RegExp)(_.pf[b+1],"g"),_.pf[b]);return a};_.rf=function(a){a||(a=window.event);return a.target||a.srcElement};_.sf=function(a){a=a||window.event;_.Oc.Gd?a.cancelBubble=_.l:a.stopPropagation&&a.stopPropagation()};
+_.tf=function(a){a.style.display="none";_.uf[a.id]&&(0,_.Ke)(window.document.body,"click",_.uf[a.id])};_.vf=function(a,b,c,d){var e=0,f=_.A,g=_.p;return function(){var i=window.google.time();f?g=window.Array.prototype.slice.call(arguments,0):i-e>=c?(e=i,b.apply(a,arguments)):d&&(i=c-(i-e),f=_.l,g=window.Array.prototype.slice.call(arguments,0),(0,window.setTimeout)(function(){f=_.A;e=window.google.time();b.apply(a,g)},i))}};_.wf=function(a){return!a||!a.replace(/\s+|\u3000+/g,"")};
+_.xf=function(a,b,c,d){for(var e=c||"",c=a.length,f=d?d.length:0,g=[],i,h,m=0;m<c;++m)i=(i=b&&b[m]?window.google.getEI(b[m]):"")&&i!=e?i:"",h=f>m&&!d[m]?"h":"",!i&&!h?g.push(a[m]):h?g.push(a[m]+"."+i+"."+h):g.push(a[m]+"."+i);a="&vet=1"+g.join(";");a=0<c?a:"";0==c&&(0<f&&!d[0])&&(a="&vet=1..h");return a};
+_.yf=function(a,b,c,d,e,f,g){var i=a?"&ved="+a:"",h=b?window.google.getEI(b):window.google.kEI,d=d||[],f=f||"",g=g||"",e=(0,_.xf)(c||[],d,h,e||[]);(h=b||d&&d[0])?window.google.log(f,g+i+e,"",h):window.google.ml((0,window.Error)("lbved"),_.A,{ved:a,trE:b,vet:c&&c[0],taE:d&&d[0],ct:f,data:g})};_.zf=function(a,b,c,d,e){var f=a?(0,_.Af)(a):"",g=[];if(b)for(var i=0,h;h=b[i];i++)(h=(0,_.Af)(h))&&g.push(h);(0,_.yf)(f,a,g,b,c,d,e)};
+_.Af=function(a){return a&&a.getAttribute?a.getAttribute("data-ved")||"":""};_.Bf=function(a){if(a)for(var b=0,c;c=a.childNodes[b];b++)if(c=(0,_.Af)(c))return c;return""};_.Cf=function(a,b,c){var d=(0,window.RegExp)("([?&])"+b+"=.*?(&|$)"),a=a.replace(/^([^#]*)(#|$)/,function(a,b){return b});return!a.match(d)&&""!=c?a+"&"+b+"="+c:a.replace(d,function(a,d,g){return c?d+b+"="+c+g:g?d:""})};_.Df=function(a){return/^(https?:\/\/[^/]*)?\/(search|images).*\?/.test(a.href)};
+_.Ef=function(a,b,c,d){var e=window.document.getElementsByTagName("A");window.google.base_href&&(window.google.base_href=(0,_.Cf)(window.google.base_href,a,b));for(var f=0,g;g=e[f++];)if(c(g)){var i=_.Oc.Gd?g.innerHTML:_.k;g.href=(0,_.Cf)(g.href,a,b);i!=_.k&&(g.innerHTML=i)}for(f=0;c=window.document.forms[f++];)if(d(c)){for(g=e=0;i=c.elements[g++];)i.name==a&&(e=1,""!=b?i.value=b:i.parentNode.removeChild(i));!e&&""!=b&&(e=window.document.createElement("input"),e.type="hidden",e.value=b,e.name=a,c.appendChild(e))}};
+_.Ff=function(a){if(a=(0,_.rf)(a)){for(;!(0,_.lf)(a,"qs");)if(a=a.parentNode,!a||a==window.document.body)return;var b=window.document.getElementsByName("q"),c=b&&b[0],b=window.document.getElementById("tsf-oq");c&&(b&&window.M)&&(c=c.value,b=(0,_.Nd)(b),c&&c!=b&&(b=(0,_.Cf)(a.href,"q",(0,window.encodeURIComponent)(c)),a.href=(0,_.Cf)(b,"prmd","")))}};
+_.qaa=function(a,b,c){var d=c||_.ha,e=a.serverUri||"//www.google.com/tools/feedback",f=d.GOOGLE_FEEDBACK_START;/iphone|ipad|ipod|android|blackberry|mini|windows\sce|windows\sphone|palm/i.test(window.navigator.userAgent)&&(a.mobileWindow=window.open(""));d.GOOGLE_FEEDBACK_START_ARGUMENTS=arguments;f?f.apply(d,arguments):(d=d.document,f=d.createElement("script"),f.src=e+"/load.js",d.body.appendChild(f))};
+_.Gf=function(a){a=""+a;if(/^\s*$/.test(a)?0:/^[\],:{}\s\u2028\u2029]*$/.test(a.replace(/\\["\\\/bfnrtu]/g,"@").replace(/"[^"\\\n\r\u2028\u2029\x00-\x08\x10-\x1f\x80-\x9f]*"|true|false|null|-?\d+(?:\.\d*)?(?:[eE][+\-]?\d+)?/g,"]").replace(/(?:^|:|,)(?:[\s\u2028\u2029]*\[)+/g,"")))try{return eval("("+a+")")}catch(b){}(0,_.aa)((0,window.Error)("Invalid JSON string: "+a))};_.Hf=function(a){return eval("("+a+")")};_.If=function(a,b){var c=[];(0,_.Jf)(new _.raa(b),a,c);return c.join("")};
+_.raa=function(a){this.B=a};
+_.Jf=function(a,b,c){switch(typeof b){case "string":(0,_.Kf)(a,b,c);break;case "number":c.push((0,window.isFinite)(b)&&!(0,window.isNaN)(b)?b:"null");break;case "boolean":c.push(b);break;case "undefined":c.push("null");break;case "object":if(b==_.p){c.push("null");break}if((0,_.xa)(b)){var d=b.length;c.push("[");for(var e="",f=0;f<d;f++)c.push(e),e=b[f],(0,_.Jf)(a,a.B?a.B.call(b,""+f,e):e,c),e=",";c.push("]");break}c.push("{");d="";for(f in b)window.Object.prototype.hasOwnProperty.call(b,f)&&(e=b[f],
+"function"!=typeof e&&(c.push(d),(0,_.Kf)(a,f,c),c.push(":"),(0,_.Jf)(a,a.B?a.B.call(b,f,e):e,c),d=","));c.push("}");break;case "function":break;default:(0,_.aa)((0,window.Error)("Unknown type: "+typeof b))}};_.Kf=function(a,b,c){c.push('"',b.replace(_.saa,function(a){if(a in _.Lf)return _.Lf[a];var b=a.charCodeAt(0),c="\\u";16>b?c+="000":256>b?c+="00":4096>b&&(c+="0");return _.Lf[a]=c+b.toString(16)}),'"')};
+_.Mf=function(a,b){_.Nf.push(a);_.Of[a]=b;if(_.Pf&&window.google.xjsu)for(var c=0,d=window.google.mc.length;c<d;c++)window.google.mc[c][0]==a&&(0,_.Qf)("init",window.google.mc,c)};
+_.Rf=function(a){if(window.google.mc||window.google.pmc){if(window.google.pmc&&(!window.google.mc||!_.Sf)){var b;if(window.google.pmc==_.Tf)b=[];else{b=[];for(var c={},d=0;d<_.Nf.length;++d){var e=_.Nf[d];if(window.google.pmc[e]||_.Of[e]&&_.Of[e]._e)b.push([e,window.google.pmc[e]||{}]),c[e]=_.l,delete window.google.pmc[e]}for(e in window.google.pmc)d=(0,window.parseInt)(e,10),d in c||(b.push([d,window.google.pmc[d]]),c[d]=_.l);window.google.pmc=_.Tf}b.length&&(window.google.mc=b)}b=window.google.mc;
+c=0;for(e=b.length;c<e;c++)(0,_.Qf)(a,b,"dispose"==a?e-c-1:c);"dispose"==a&&(window.google.mc=_.p,window.google.pmc=_.p);"init"==a?_.Pf=_.l:"dispose"==a&&(_.Pf=_.A)}};_.Qf=function(a,b,c){try{var d=_.Of[b[c][0]];if(d&&d[a])d[a](b[c][1])}catch(e){window.google.ml(e,_.A,{cause:"m"+a,index:c,mid:b[c]&&b[c][0]})}};_.Uf=function(){var a=_.Vf.value;a?_.Wf=eval("("+a+")"):_.Wf={}};
+_.Xf=function(a,b){if(_.Vf){var c;a:{if(window.google.mc){c=0;for(var d;d=window.google.mc[c++];)if(d[0]==a){c=c-1;break a}}c=-1}0<=c&&(window.google.mc[c][1]=b,(0,_.Uf)(),_.Wf[_.Yf]=window.google.mc,_.Vf.value=(0,_.If)(_.Wf))}};_.Zf=function(a){_.$f.push(a);return _.$f.length-1};_.ag=function(){var a=_.bg.value;_.cg=a?eval("("+a+")"):{}};_.dg=function(a,b){_.bg&&((0,_.ag)(),_.cg[_.eg]||(_.cg[_.eg]={}),_.cg[_.eg][a]=b,_.bg.value=(0,_.If)(_.cg))};
+_.fg=function(a){this.ha=(this.B=-1<a.indexOf("/xjs"))?a.substr(0,a.indexOf("_/js/")):"/externjs/";this.xa=this.B?a.match(_.taa)[1]:a.match(_.uaa)[1];this.oa=a.match(/ver=([^/]+)/)[1];var b=a.match(/am=([^/]+)/);this.M=b&&b[1];this.U=a.match(/sv=([^/]+)/)[1];this.Ea=(a=a.match(/rs=([^/]+)/))&&a[1]};_.gg=function(){var a=_.O.$();if(!_.hg){a.mJ=_.l;var b=new _.fg(window.google.xjsu);a.RK=b;_.hg=_.l}return a};
+_.ig=function(a,b){var b=b||_.ka,c=(0,_.gg)(),d=b,e=c.Jx[a];e.rD?(c=new _.nc(d,_.k),window.setTimeout((0,_.ab)(c.execute,c),0)):(0,_.wc)(c,a)?e.ZH(d,_.k):(e.ZH(d,_.k),(0,_.xc)(c,[a]))};_.jg=function(a){var b=(0,_.gg)();(0,_.vc)(b,a,_.k)};window.google.timers&&window.google.timers.load.t&&(window.google.timers.load.t.xjses=window.google.time());
+_.kg=_.kg||{};_.ha=this;_.$a="closure_uid_"+window.Math.floor(2147483648*window.Math.random()).toString(36);_.aaa=0;_.lg=window.Date.now||function(){return+new window.Date};window.Function.prototype.bind=window.Function.prototype.bind||function(a,b){if(1<arguments.length){var c=window.Array.prototype.slice.call(arguments,1);c.unshift(this,a);return _.ab.apply(_.p,c)}return(0,_.ab)(this,a)};
+(0,_.cb)(_.db,window.Error);_.db.prototype.name="CustomError";_.hb=/&/g;_.ib=/</g;_.jb=/>/g;_.kb=/\"/g;_.daa=/[&<>\"]/;_.tb=window.Array.prototype;_.ob=_.tb.indexOf?function(a,b,c){return _.tb.indexOf.call(a,b,c)}:function(a,b,c){c=c==_.p?0:0>c?window.Math.max(0,a.length+c):c;if((0,_.Na)(a))return!(0,_.Na)(b)||1!=b.length?-1:a.indexOf(b,c);for(;c<a.length;c++)if(c in a&&a[c]===b)return c;return-1};_.Mb=_.tb.forEach?function(a,b,c){_.tb.forEach.call(a,b,c)}:function(a,b,c){for(var d=a.length,e=(0,_.Na)(a)?a.split(""):a,f=0;f<d;f++)f in e&&b.call(c,e[f],f,a)};
+_.Hc=_.tb.filter?function(a,b,c){return _.tb.filter.call(a,b,c)}:function(a,b,c){for(var d=a.length,e=[],f=0,g=(0,_.Na)(a)?a.split(""):a,i=0;i<d;i++)if(i in g){var h=g[i];b.call(c,h,i,a)&&(e[f++]=h)}return e};_.Ac=_.tb.map?function(a,b,c){return _.tb.map.call(a,b,c)}:function(a,b,c){for(var d=a.length,e=(0,window.Array)(d),f=(0,_.Na)(a)?a.split(""):a,g=0;g<d;g++)g in f&&(e[g]=b.call(c,f[g],g,a));return e};
+_.kc=_.tb.some?function(a,b,c){return _.tb.some.call(a,b,c)}:function(a,b,c){for(var d=a.length,e=(0,_.Na)(a)?a.split(""):a,f=0;f<d;f++)if(f in e&&b.call(c,e[f],f,a))return _.l;return _.A};_.mg=_.tb.every?function(a,b,c){return _.tb.every.call(a,b,c)}:function(a,b,c){for(var d=a.length,e=(0,_.Na)(a)?a.split(""):a,f=0;f<d;f++)if(f in e&&!b.call(c,e[f],f,a))return _.A;return _.l};
+_.ng="StopIteration"in _.ha?_.ha.StopIteration:(0,window.Error)("StopIteration");_.Cb.prototype.next=function(){(0,_.aa)(_.ng)};_.Cb.prototype.dJ=function(){return this};_.Ib="constructor hasOwnProperty isPrototypeOf propertyIsEnumerable toLocaleString toString valueOf".split(" ");_.N=_.Nb.prototype;_.N.Zl=0;_.N.kF=0;_.N.cC=(0,_.fa)("Zl");_.N.Ux=function(){(0,_.Qb)(this);for(var a=[],b=0;b<this.B.length;b++)a.push(this.M[this.B[b]]);return a};_.N.DC=function(){(0,_.Qb)(this);return this.B.concat()};_.N.vG=function(a){for(var b=0;b<this.B.length;b++){var c=this.B[b];if((0,_.Pb)(this.M,c)&&this.M[c]==a)return _.l}return _.A};
+_.N.equals=function(a,b){if(this===a)return _.l;if(this.Zl!=a.cC())return _.A;var c=b||_.eaa;(0,_.Qb)(this);for(var d,e=0;d=this.B[e];e++)if(!c(this.get(d),a.get(d)))return _.A;return _.l};_.N.isEmpty=function(){return 0==this.Zl};_.N.clear=function(){this.M={};this.kF=this.Zl=this.B.length=0};_.N.remove=function(a){return(0,_.Pb)(this.M,a)?(delete this.M[a],this.Zl--,this.kF++,this.B.length>2*this.Zl&&(0,_.Qb)(this),_.l):_.A};_.N.get=function(a,b){return(0,_.Pb)(this.M,a)?this.M[a]:b};
+_.N.set=function(a,b){(0,_.Pb)(this.M,a)||(this.Zl++,this.B.push(a),this.kF++);this.M[a]=b};_.N.clone=function(){return new _.Nb(this)};_.N.dJ=function(a){(0,_.Qb)(this);var b=0,c=this.B,d=this.M,e=this.kF,f=this,g=new _.Cb;g.next=function(){for(;;){e!=f.kF&&(0,_.aa)((0,window.Error)("The map has changed since the iterator was created"));b>=c.length&&(0,_.aa)(_.ng);var g=c[b++];return a?g:d[g]}};return g};
+_.tg=_.sg=_.rg=_.qg=_.pg=_.A;if(_.wg=(0,_.Rb)()){_.vaa=(0,_.Sb)();_.pg=0==_.wg.indexOf("Opera");_.qg=!_.pg&&-1!=_.wg.indexOf("MSIE");_.sg=(_.rg=!_.pg&&-1!=_.wg.indexOf("WebKit"))&&-1!=_.wg.indexOf("Mobile");_.tg=!_.pg&&!_.rg&&"Gecko"==_.vaa.product}_.le=_.pg;_.$b=_.qg;_.de=_.tg;_.td=_.rg;_.xg=_.sg;_.yg=(0,_.Sb)();_.zg=_.yg&&_.yg.platform||"";_.ee=-1!=_.zg.indexOf("Mac");_.ug=-1!=_.zg.indexOf("Win");_.vg=-1!=_.zg.indexOf("Linux");_.kaa=!!(0,_.Sb)()&&-1!=((0,_.Sb)().appVersion||"").indexOf("X11");
+a:{_.Bg="";if(_.le&&_.ha.opera){_.Dg=_.ha.opera.version;_.Bg="function"==typeof _.Dg?(0,_.Dg)():_.Dg}else if(_.de?_.Cg=/rv\:([^\);]+)(\)|;)/:_.$b?_.Cg=/MSIE\s+([^\);]+)(\)|;)/:_.td&&(_.Cg=/WebKit\/(\S+)/),_.Cg){_.Eg=_.Cg.exec((0,_.Rb)());_.Bg=_.Eg?_.Eg[1]:""}if(_.$b){_.Gg=_.ha.document;_.Fg=_.Gg?_.Gg.documentMode:_.k;if(_.Fg>(0,window.parseFloat)(_.Bg)){_.Ag=""+_.Fg;break a}}_.Ag=_.Bg}_.faa=_.Ag;_.Xb={};_.Zb={};
+_.ac.prototype.Ea=_.A;_.ac.prototype.dispose=function(){this.Ea||(this.Ea=_.l,this.Df())};_.ac.prototype.Df=function(){this.Sa&&_.cc.apply(_.p,this.Sa);if(this.nj)for(;this.nj.length;)this.nj.shift()()};/*
+ Portions of this code are from MochiKit, received by
+ The Closure Authors under the MIT license. All other code is Copyright
+ 2005-2009 The Closure Authors. All Rights Reserved.
+*/
+_.N=_.dc.prototype;_.N.GA=_.A;_.N.tF=_.A;_.N.NF=0;_.N.DL=_.A;_.N.tT=_.A;_.N.Nx=0;_.N.cancel=function(a){if(this.GA)this.M instanceof _.dc&&this.M.cancel();else{if(this.B){var b=this.B;delete this.B;a?b.cancel(a):(b.Nx--,0>=b.Nx&&b.cancel())}this.oa?this.oa.call(this.ra,this):this.DL=_.l;this.GA||this.BJ(new _.lc(this))}};_.N.$M=function(a,b){(0,_.ec)(this,a,b);this.NF--;0==this.NF&&this.GA&&(0,_.fc)(this)};_.N.Et=function(a){(0,_.gc)(this);(0,_.ec)(this,_.l,a)};
+_.N.BJ=function(a){(0,_.gc)(this);(0,_.ec)(this,_.A,a)};_.N.QG=function(a){var b=new _.dc;(0,_.ic)(this,b.Et,b.BJ,b);a&&(b.B=this,this.Nx++);return b};(0,_.cb)(_.hc,_.db);_.hc.prototype.message="Deferred has already fired";_.hc.prototype.name="AlreadyCalledError";(0,_.cb)(_.lc,_.db);_.lc.prototype.message="Deferred was cancelled";_.lc.prototype.name="CancelledError";
+(0,_.cb)(_.mc,_.ac);_.mc.prototype.initialize=(0,_.ca)();_.nc.prototype.execute=function(a){this.B&&(this.B.call(this.M||_.p,a),this.B=this.M=_.p)};_.nc.prototype.abort=function(){this.M=this.B=_.p};(0,_.cb)(_.oc,_.ac);_.N=_.oc.prototype;_.N.wW=_.mc;_.N.rD=_.p;_.N.getId=(0,_.fa)("nm");_.N.ZH=function(a,b){var c=new _.nc(a,b);this.M.push(c);return c};_.N.Df=function(){_.oc.Sb.Df.call(this);(0,_.bc)(this.rD)};(0,_.cb)(_.O,_.ac);(0,_.la)(_.O);_.N=_.O.prototype;_.N.mJ=_.A;_.N.RK=_.p;_.N.uG=0;_.N.KO=_.A;_.N.FQ=_.A;_.N.aP=_.p;_.N.zY=function(a,b){if((0,_.Na)(a)){for(var c=a.split("/"),d=[],e=0;e<c.length;e++){var f=c[e].split(":"),g=f[0];if(f[1])for(var f=f[1].split(","),i=0;i<f.length;i++)f[i]=d[(0,window.parseInt)(f[i],36)];else f=[];d.push(g);this.Jx[g]=new _.oc(f,g)}b&&(0,_.wb)(this.M,b);this.oa==this.xa&&(this.oa=_.p,(0,_.pc)(this.xa,(0,_.ab)(this.GN,this))&&(0,_.Cc)(this,4))}};_.N.GN=(0,_.fa)("aP");
+_.N.isActive=function(){return 0<this.M.length};_.N.load=function(a,b){return(0,_.vc)(this,[a],b)[a]};_.N.CV=function(a){this.uG++;401==a?((0,_.Cc)(this,0),this.B.length=0):410==a?((0,_.Gc)(this,3),(0,_.Dc)(this)):3<=this.uG?((0,_.Gc)(this,1),(0,_.Dc)(this)):(0,_.yc)(this,this.U,_.l,8001==a)};_.N.DV=function(){(0,_.Gc)(this,2);(0,_.Dc)(this)};_.N.ZH=function(a,b){(0,_.xa)(a)||(a=[a]);for(var c=0;c<a.length;c++){var d=a[c],e=b,f=this.ra;f[d]||(f[d]=[]);f[d].push(e)}}; _.N.Df=function(){_.O.Sb.Df.call(this);(0,_.Mb)((0,_.Eb)(this.Jx),_.bc);this.ra=this.B=this.ha=this.U=this.M=this.Jx=_.p};
+_.Ic.prototype.U=_.p;_.Ic.prototype.M=function(){var a;if(!(a=this.U))a={},(0,_.Mc)(this)&&(a[0]=_.l,a[1]=_.l),a=this.U=a;return a};(0,_.cb)(_.Jc,_.Ic);_.Jc.prototype.B=function(){return this.oa()};_.Jc.prototype.M=function(){return this.ha()};_.Kc.M=_.A;_.Kc.hg=function(){return _.Kc.B.M()};_.Kc.mg=function(a,b){_.Kc.lc(new _.Jc(a,b))};_.Kc.lc=function(a){_.Kc.B=a};(0,_.cb)(_.Lc,_.Ic);_.Lc.prototype.B=function(){var a=(0,_.Mc)(this);return a?new window.ActiveXObject(a):new window.XMLHttpRequest};_.Kc.lc(new _.Lc);
+(0,_.ga)("google.exportSymbol",function(a,b,c){(0,_.ga)(a,b,c)},_.k);(0,_.ga)("google.exportProperty",function(a,b,c){a[b]=c},_.k);(0,_.ga)("google.bindFn",_.ab,_.k);(0,_.ga)("google.partial",_.bb,_.k);(0,_.ga)("google.xhr",_.Kc,_.k);_.Oc={Gd:_.A,Rx:_.A,Bs:_.A,opera:_.A};_.Pc={Gd:_.A,Lv:_.A,Qz:_.A,Gx:_.A,Mz:_.A,hx:_.A,xT:_.A,sG:_.A,jv:_.A,Vy:_.A,opera:_.A,CE:_.A};_.Rc="";_.Qc="";(0,_.Nc)(window.google.ua||window.navigator.userAgent);(0,_.ga)("google.browser.init",_.Nc,_.k);(0,_.ga)("google.browser.compareVersions",_.Sc,_.k);(0,_.ga)("google.browser.isEngineVersion",_.Tc,_.k);(0,_.ga)("google.browser.isProductVersion",_.Uc,_.k);(0,_.ga)("google.browser.getBrowserDimension",_.Vc,_.k); (0,_.ga)("google.browser.Dimension",{HEIGHT_WITH_SCROLLBARS:0,HEIGHT_WITHOUT_SCROLLBARS:1,WIDTH_WITH_SCROLLBARS:2,WIDTH_WITHOUT_SCROLLBARS:3},_.k);
+_.Xc.prototype.clone=function(){return new _.Xc(this.x,this.y)};_.N=_.Yc.prototype;_.N.clone=function(){return new _.Yc(this.width,this.height)};_.N.isEmpty=function(){return!(this.width*this.height)};_.N.ceil=function(){this.width=window.Math.ceil(this.width);this.height=window.Math.ceil(this.height);return this};_.N.floor=function(){this.width=window.Math.floor(this.width);this.height=window.Math.floor(this.height);return this};_.N.round=function(){this.width=window.Math.round(this.width);this.height=window.Math.round(this.height);return this}; _.N.scale=function(a){this.width*=a;this.height*=a;return this};
+_.haa=!_.$b||(0,_.Yb)(9);_.iaa=!_.de&&!_.$b||_.$b&&(0,_.Yb)(9)||_.de&&(0,_.Wb)("1.9.1");_.Od=_.$b&&!(0,_.Wb)("9");_.wd={cellpadding:"cellPadding",cellspacing:"cellSpacing",colspan:"colSpan",frameborder:"frameBorder",height:"height",maxlength:"maxLength",role:"role",rowspan:"rowSpan",type:"type",usemap:"useMap",valign:"vAlign",width:"width"};_.jaa={SCRIPT:1,STYLE:1,HEAD:1,IFRAME:1,OBJECT:1};_.Qd={IMG:" ",BR:"\n"};_.N=_.gd.prototype;_.N.vc=function(a){return(0,_.Na)(a)?this.B.getElementById(a):a};_.N.fu=function(a,b,c){return(0,_.vd)(this.B,arguments)};_.N.createElement=function(a){return this.B.createElement(a)}; _.N.oc=function(){return this.B.parentWindow||this.B.defaultView};_.N.appendChild=function(a,b){a.appendChild(b)};_.N.append=_.zd;_.N.DN=_.Gd;_.N.contains=_.Kd;_.N.zm=_.hd;
+_.Wd.prototype.clone=function(){return new _.Wd(this.top,this.right,this.bottom,this.left)};_.Wd.prototype.contains=function(a){return!this||!a?_.A:a instanceof _.Wd?a.left>=this.left&&a.right<=this.right&&a.top>=this.top&&a.bottom<=this.bottom:a.x>=this.left&&a.x<=this.right&&a.y>=this.top&&a.y<=this.bottom};
+_.Xd.prototype.clone=function(){return new _.Xd(this.left,this.top,this.width,this.height)};_.Xd.prototype.contains=function(a){return a instanceof _.Xd?this.left<=a.left&&this.left+this.width>=a.left+a.width&&this.top<=a.top&&this.top+this.height>=a.top+a.height:a.x>=this.left&&a.x<=this.left+this.width&&a.y>=this.top&&a.y<=this.top+this.height};
+_.ve=_.de?"MozUserSelect":_.td?"WebkitUserSelect":_.p;_.Ce=/^(\w+)?(?:\.(.+))?$/;_.laa=/^#([\w-]+)$/;(0,_.ga)("google.dom.append",_.Ae,_.k);(0,_.ga)("google.dom.create",_.Be,_.k);(0,_.ga)("google.dom.get",_.Ee,_.k);(0,_.ga)("google.dom.getAll",_.De,_.k);(0,_.ga)("google.dom.remove",_.Dd,_.k);(0,_.ga)("google.dom.set",_.Fe,_.k);
+(0,_.ga)("google.listen",_.Je,_.k);(0,_.ga)("google.unlisten",_.Ke,_.k);_.Me={};(0,_.ga)("google.msg.listen",_.Le,_.k);(0,_.ga)("google.msg.unlisten",_.Ne,_.k);(0,_.ga)("google.msg.send",_.Oe,_.k);_.naa=window.location.protocol+"//"+window.location.host;(0,_.ga)("google.nav.getLocation",_.Se,_.k);(0,_.ga)("google.nav.getParam",_.Ue,_.k);(0,_.ga)("google.nav.go",_.Pe,_.k);(0,_.ga)("google.nav.search",_.Re,_.k);_.$e=[];_.af=_.A;(0,_.ga)("google.ori.addListener",_.Ze,_.k);(0,_.ga)("google.style.getComputedStyle",_.gf,_.k);(0,_.ga)("google.style.getHeight",_.hf,_.k);(0,_.ga)("google.style.getWidth",_.jf,_.k);(0,_.ga)("google.style.getPageOffsetTop",_.ne,_.k);(0,_.ga)("google.style.getPageOffsetLeft",_.me,_.k);(0,_.ga)("google.style.getPageOffsetStart",_.kf,_.k);(0,_.ga)("google.style.getColor",function(a){return""+(0,_.gf)(a,"color",_.l)},_.k);(0,_.ga)("google.style.hasClass",_.lf,_.k);(0,_.ga)("google.style.isRtl",_.ff,_.k);(0,_.ga)("google.style.addClass",_.mf,_.k); (0,_.ga)("google.style.removeClass",_.nf,_.k);
+_.uf={};_.pf="& &amp; < &lt; > &gt; \" &quot; ' &#39; { &#123;".split(" ");(0,_.ga)("google.util.arrayIndexOf",_.ob,_.k);(0,_.ga)("google.util.escape",_.of,_.k);(0,_.ga)("google.util.eventTarget",_.rf,_.k);(0,_.ga)("google.util.getChildVed",_.Bf,_.k);(0,_.ga)("google.util.getSelection",function(){try{return window.getSelection&&window.getSelection().toString()||window.document.selection&&window.document.selection.createRange&&window.document.selection.createRange().text}catch(a){}return""},_.k);
+(0,_.ga)("google.util.getVed",_.Af,_.k);(0,_.ga)("google.util.isQueryEmpty",_.wf,_.k);(0,_.ga)("google.util.logByVedVisibilityChange",_.yf,_.k);(0,_.ga)("google.util.logVisibilityChange",_.zf,_.k);(0,_.ga)("google.util.makeVet",_.xf,_.k);(0,_.ga)("google.util.rateLimitFunction",_.vf,_.k);(0,_.ga)("google.util.stopPropagation",_.sf,_.k);
+(0,_.ga)("google.util.togglePopup",function(a){var b=window.document.getElementById(a);if(b)if("none"==b.style.display){b.style.display="";var c=_.A;_.uf[a]=function(){c?(0,_.tf)(b):c=_.l};(0,_.Je)(window.document.body,"click",_.uf[a])}else(0,_.tf)(b)},_.k);(0,_.ga)("google.util.unescape",_.qf,_.k);
+(0,_.ga)("google.srp.qs",_.Ff,_.k);(0,_.ga)("google.startFeedback",function(a,b,c,d){a?window.google.log("gf","&ved="+(0,window.encodeURIComponent)(a)):window.google.log("gf","");var a={productId:196,locale:window.google.kHL,authuser:window.google.authuser,https:window.google.https()},e={ei:window.google.kEI,expi:window.google.kEXPI};b&&(a.bucket=b);c&&(a.enableRating=c);d?(a.enableAnonymousFeedback=d,e.q=(0,_.Ve)("q"),e.tier=1):e.query=(0,_.Ve)("q");(0,_.qaa)(a,e)},_.k);
+_.Lf={'"':'\\"',"\\":"\\\\","/":"\\/","\b":"\\b","\f":"\\f","\n":"\\n","\r":"\\r","\t":"\\t","\x0B":"\\u000b"};_.saa=/\uffff/.test("\uffff")?/[\\\"\x00-\x1f\x7f-\uffff]/g:/[\\\"\x00-\x1f\x7f-\xff]/g;_.Tf={};_.Of={};_.Nf=[];_.Pf=_.A;_.Sf=_.A;if(window.google.j)if(window.google.mc)for(_.waa=0,_.Hg;_.Hg=window.google.mc[_.waa++];){if(29==_.Hg[0]){window.google.j.cfg=_.Hg[1];break}}else window.google.pmc&&(window.google.j.cfg=window.google.pmc[29]);_.Vf=_.p;(0,_.ga)("google.initHistory",function(){_.Yf=window.google.kEI;if(_.Vf=window.document.getElementById("hcache")){(0,_.Uf)();var a=_.Wf[_.Yf];a&&(window.google.mc=a,_.Sf=_.l)}},_.k);(0,_.ga)("google.med",_.Rf,_.k); (0,_.ga)("google.register",_.Mf,_.k);(0,_.ga)("google.save",_.Xf,_.k);
+_.$f=[];_.eg="/";_.Ig=[];(0,_.ga)("google.History.addPostInitCallback",function(a){_.Ig.push(a)},_.k);(0,_.ga)("google.History.client",_.Zf,_.k);(0,_.ga)("google.History.initialize",function(a){_.eg=a;_.cg=_.p;if(_.bg=window.document.getElementById("hcache")){(0,_.ag)();for(a=0;a<_.$f.length;++a)_.cg&&(_.cg[_.eg]&&_.cg[_.eg][a])&&_.$f[a].call(_.p,_.cg[_.eg][a]);for(var a=0,b;b=_.Ig[a++];)b();_.Ig=[]}},_.k);(0,_.ga)("google.History.save",_.dg,_.k);(0,_.ga)("google.stringify",_.If,_.k);
+_.taa=/_\/js\/([^/]+)/;_.uaa=/\/externjs\/([^/]+)/;_.fg.prototype.ra=function(a){if(a===_.p)window.google.ml((0,window.Error)("LM null"),_.A);else{var b=this.M?"/am="+this.M:"",a=this.ha+(this.B?"_/js/":"")+this.xa+"/"+a.join(",")+"/rt=j/ver="+this.oa+"/d=0"+b+"/sv="+this.U+"/rs="+this.Ea,b=window.document.createElement("script");b.src=a;(0,_.Ae)(b)}};_.hg=_.A;(0,_.ga)("google.load",_.ig,_.k);(0,_.ga)("google.loadAll",_.jg,_.k);
+
+_._ModuleManager_initialize=(0,_.ab)(_.O.prototype.zY,_.O.$());
+(0,_._ModuleManager_initialize)("sy0/anim:0/sy1/sy3/sy2:3/sy4:4/sy5:5/sy6/sy8/sy7:5,6,7,8/aut:2,3,4,5,6,7,8,9/axs/bd/sy9/sy10/sy11:e/sy12:e,f/sy13:d,e,g/cv:d,e,f,g,h/cp/bct/cr/cdos/sy15/sy14:n/sy17:n/sy16:n,p/c:n,o,p,q/cb/sy18/csi:t/dbm/el/ctm:e/sy20/sy21/sy19:y,z/sy22/sy23:e/sy24:d,e/sy25/sy26:14/sy27:15/sy28:11,12,13,14,16,e/sy30:0/sy31/sy32:18,19,3,4,5,o/sy33/sy34:19,1a,1b/gsai:0,10,11,12,13,14,15,16,17,18,19,1a,1b,1c,3,4,5,d,e,n,o,y,z/hsm:11/hv/sy35/sy37:0,11,1c,1g,2,n,o,t/j:0,11,18,19,1a,1b,1c,1g,1h,2,3,4,5,n,o,t/jsa:0,18,19,1a,3,4,5,n,o/lc:0,n,o/hov/mb/nos:0,18,19,1a,3,4,5,n,o/ablk:2,n,o/adnsp:3,4/ada:0/pih/adso/sy38/amcl:1t/sy39:0,1t/sy40:1t,1v,o/sy41:1v,1w/kat:0,1t,1v,1w,1x,n,o/sy42:12,e,g/katt:0,12,13,1t,1v,1w,1x,1z,d,e,f,g,n,o/sy44:12,e,g/sy43:0,12,1v,1w,21/klc:0,12,1t,1v,1w,21,22,e,f,g,n,o/sy45/llc:0,12,1t,1v,1w,1z,21,22,24,3,4,e,f,g,n,o/dvl:0,10,18,19,1a,3,4,5,n,o,y,z/du/sy46:h/dise:28,d,e,f,g,h/dsoc:28,d,e,f,g,h/nmns:12,21,e,f,g/sy48/esp:0,18,19,1a,2c,3,4,5,n,o/erh:0,18,19,1a,3,4,5,n,o/cfm/vfm/sy49:0,19,1a/spg:0,18,19,1a,2h,3,4,5,n,o/hw:3,4,5,6,7,8,9/hss/hkp/h5s:z/sy50:4/sy51/irc:11,14,1b,2n,2o,3,4,7/sy52:14,15,16/sy53/sy54:11,14,16,2q,2r/miuv:11,14,15,16,2q,2r,2s/ms:14,2r/bihu/bb:11,12,13,14,15,16,17,d,e/ivf:14,15,16,2q/tiv/pr:14,7/sy55:14,15,1c,e/jstr:0,14,15,18,19,1a,1b,1c,3,30,4,5,e,n,o/str:0,14,15,18,19,1a,1b,1c,3,30,4,5,e,n,o/tic/sy56:17,2q/tiu:11,12,13,14,15,16,17,2q,34,d,e/ifl:0/kpm:11,12,1t,1z,21,3,d,e,f,g/sy57:1t/kp:1t,38/kpt:12,13,1t,21,38,d,e,f,g/sy58:7/lpt:13,3b,7,d,e/lbejs/mlr/sy59/wob:3f/wobt:12,13,21,3f,d,e,f,g/imap:24/sy60:0/lu:0,3j/mbm/mld:11/tlie/lmj:0,11,13,18,19,1a,1b,1c,1g,2,3,4,5,d,e,f,n,o/mfd:11,12,13,14,15,16,17,2o,2q,2r,2s,34,d,e,f,g/sy61:1c/m:0,18,19,1a,1b,1c,3,3q,4,5,n,o/mbhp:3b,7/mbc/mfh/mbje/mbpe/mbsf:n/mbsk/mbsb/mad/nvm/ocl/ov/sy62/ppl:0,18,19,1a,2n,3,4,44,5,6,n,o/sy63/sy64:6/ptl:0,2n,3,3b,3j,4,46,47,5,6,7,n,o,p,q/prv:8/ob:0,18/qi/rtis:0/spr/rcz:13,d,e/sy65/agsa:11,4f/gsarm:4f/cirosm:12,21,d,e,f,g/sic/sy66/spn:4k/tab:e,n/tng:0,2,n,o/tnt:12,21,e,f,g/tts:2/sy67/vsm:11,12,13,21,4q,d,e,f,g/vst:4q/sy68/owm:4t/owt:12,13,21,4t,d,e,f,g/wta/pcc/sy69:1c/ig:0,11,18,19,1a,1b,1c,1g,1h,2,3,4,4y,5,n,o,t/p:0,11,18,19,1a,1b,1c,1g,1h,2,3,4,4y,5,n,o,t/rcs/rsn:0/ssb/sy70/sy71:54/sy72/srl:54,55,56/shb:54,56/sy73:2/tbpr:2,59/sy74/tbui:0,18,19,1a,1b,1c,2,3,4,5,59,5b,n,o/sb:n,p/sb_cn:n,p/sb_cnh:n,p/sb_cnm:n,p/sb_cnmh:n,p/sb_cnv:n,p/sb_cnvh:n,p/sb_he:n,p/sb_dqn:n,p/sb_mob:n,p/sb_mobh:n,p/sb_mqn:n,p/sb_msts:n,p/sb_msu:n,p/sb_omni:n,p/sb_spin:n,p/sb_tab:n,p/riu/ca:8/fa:0,18,19,1a,3,4,5,n,o/lare:0,3j/larh:0,18,19,1a,1b,1c,3,3q,4,5,n,o/sy75:44/sy78/sy77:1b,2n,3,5,5z,6,60/sy76:5z,61/sy79:3,4,5z,6,61,62/pla:1b,2n,3,4,44,5,5z,6,60,61,62,63/sy80/sy81:1b,2n,3,4,5/sy82:3,4,65,66/cu:1b,2n,3,4,5,65,66,67/sy83:1t/rmcl:1t,69/rkab:0,1t,1v,69/lb:8/dict/gol:2n,3,4/zr:54,55/fu:1b,2n,3,4,5,65,66,67,n/rk:1t/lr:0/sy84:3,4,5/sy86:5,60/sy85:4,44,47,60,6k/shlb:11,19,1b,3,4,44,47,5,6,60,6j,6k,6l/sy87/cwsc:1b,3,4,6n,e/cwuc:3,4/sy88:4,5/sc:3,4,5,6,6j,6n,6q/sc3d:3,4,5,6q/sy89:65/hp:1b,2n,3,4,5,65,66,67,6t/nowe:11,46/pif:4k/pi:0,18,19,1a,2h,3,4,5,8,n,o/pscss/sy91/sy93:1b,3,4,66/sy92:1b,3,66,70/sy90:66,6z,71/psrpc:1b,2n,3,4,44,5,5z,6,60,61,62,65,66,6k,6y,6z,70,71,72/pfg:3,4,5,6j/pgl:3,3b,4,5,6j,7/pis:3,3b,4,5,6j,7/sy94:1b,3,66,70/sy95:5z/psj:0,18,19,1a,1b,2n,3,4,44,5,5z,6,66,6n,6y,70,71,77,78,n,o/pmp/ptbm:1b,2n,3,4,44,5,5z,6,60,61,66,70,77,78/rv:19,1b,2n,3,4,44,47,5,5z,6,60,61,62,63,65,66,6k,6l,6z,70,71,72,78/pswtr:3,4/dvdu/bds:54,55,7/ntf:19,4k,7/ho:2n,3,3b,4,46,6n,6z,7,y,z/duf:0,18,19,1a,3,4,5,n,o/sl/tbt:0,18,19,1a,1b,1c,3,4,5,n,o/tbcdr:1b,2n,3,4,5,5b,65,66,67,6t/ttbcdr:1b,2c,2n,3,4,5,5b,65,66,67,6t/rvu/vac");
+
+}catch(e){_._DumpException(e)}
+try{
+_.Jg=function(a){return a};_.Kg=function(a){return(3-2*a)*a*a};_.Lg=function(a,b,c){for(var d=0,e;e=b[d++];){var f="string"==typeof e[2];f?(e[2]=(0,_.Mg)(e[2]),e[3]=(0,_.Mg)(e[3]),e[5]=""):e[5]=e[5]==_.p?"px":e[5];e[4]=e[4]||_.Jg;e[6]=f;(0,_.Fe)(e[0],e[1],f?"rgb("+e[2].join(",")+")":e[2]+e[5])}var g={Sl:a,vk:c,dZ:window.google.time(),qC:b};_.Ng.push(g);_.Og=_.Og||window.setInterval(_.Pg,15);return{finish:function(){g.EJ||(g.EJ=_.l,(0,_.Pg)())}}};
+_.Pg=function(){++_.Qg;for(var a=0,b;b=_.Ng[a++];){var c=window.google.time()-b.dZ;if(c>=b.Sl||b.EJ){for(var d=0,e=_.k;e=b.qC[d++];)(0,_.Fe)(e[0],e[1],e[6]?"rgb("+e[3].join(",")+")":e[3]+e[5]);b.EJ=_.l;b.vk&&b.vk();b=0}else{for(d=0;e=b.qC[d++];){var f=e[4](c/b.Sl),g;if(e[6]){g=(0,_.Rg)(e[2][0],e[3][0],f,_.l);var i=(0,_.Rg)(e[2][1],e[3][1],f,_.l),f=(0,_.Rg)(e[2][2],e[3][2],f,_.l);g="rgb("+[g,i,f].join()+")"}else g=(0,_.Rg)(e[2],e[3],f,"px"==e[5]);(0,_.Fe)(e[0],e[1],g+e[5])}b=1}b||_.Ng.splice(--a,1)}_.Ng.length|| (window.clearInterval(_.Og),_.Og=0)};_.Rg=function(a,b,c,d){a+=(b-a)*c;return d?window.Math.round(a):a};_.Mg=function(a){for(var a=a.match(/#(..)(..)(..)/).slice(1),b=0;3>b;++b)a[b]=(0,window.parseInt)(a[b],16);return a};(0,_.Ec)(_.O.$(),"sy0");
+_.Og=0;_.Qg=0;_.Ng=[];(0,_.ga)("google.fx.animate",_.Lg,_.k);(0,_.ga)("google.fx.easeInAndOut",_.Kg,_.k);(0,_.ga)("google.fx.easeOut",function(a){return 1-window.Math.pow(1-a,3)},_.k);(0,_.ga)("google.fx.getFrameCount",function(){return _.Qg},_.k);(0,_.ga)("google.fx.linear",_.Jg,_.k);(0,_.ga)("google.fx.unwrap",function(a){a.parentNode.parentNode.replaceChild(a,a.parentNode)},_.k); (0,_.ga)("google.fx.wrap",function(a){var b=window.document.createElement("div");a.parentNode.replaceChild(b,a);b.appendChild(a);return b},_.k);(0,_.Mf)(60,{dispose:function(){window.clearInterval(_.Og);_.Og=0;_.Ng=[]}});
+
+(0,_.Bc)(_.O.$(),"sy0");(0,_.Fc)(_.O.$(),"sy0");
+}catch(e){_._DumpException(e)}
+try{
+(0,_.Ec)(_.O.$(),"anim");
+(0,_.Bc)(_.O.$(),"anim");(0,_.Fc)(_.O.$(),"anim");
+}catch(e){_._DumpException(e)}
+try{
+(0,_.Ec)(_.O.$(),"sy3");
+(0,_.Bc)(_.O.$(),"sy3");(0,_.Fc)(_.O.$(),"sy3");
+}catch(e){_._DumpException(e)}
+try{
+_.$g=function(a){var b=a.document,c=0;if(b){var a=(0,_.pd)(a).height,c=b.body,d=b.documentElement;if((0,_.qd)(b)&&d.scrollHeight)c=d.scrollHeight!=a?d.scrollHeight:d.offsetHeight;else{var b=d.scrollHeight,e=d.offsetHeight;d.clientHeight!=e&&(b=c.scrollHeight,e=c.offsetHeight);c=b>a?b>e?b:e:b<e?b:e}}return c};_.ah=function(a,b,c,d){return _.tb.splice.apply(a,(0,_.xb)(arguments,1))};
+_.bh=function(a,b,c){var d=(0,_.$c)(a);(0,_.Na)(b)?(0,_.qb)(d,b):(0,_.xa)(b)&&(d=(0,_.dd)(d,b));(0,_.Na)(c)&&!(0,_.mb)(d,c)?d.push(c):(0,_.xa)(c)&&(0,_.bd)(d,c);a.className=d.join(" ")};_.ch=function(a,b,c){for(var d=(0,_.$c)(a),e=_.A,f=0;f<d.length;f++)d[f]==b&&((0,_.ah)(d,f--,1),e=_.l);e&&(d.push(c),a.className=d.join(" "));return e};_.dh=function(a){return/^[\s\xa0]*$/.test(a==_.p?"":""+a)};_.eh=function(a){_.eh[" "](a);return a};_.fh=function(a,b){try{return(0,_.eh)(a[b]),_.l}catch(c){}return _.A};
+_.gh=function(a,b){this.type=a;this.currentTarget=this.target=b};_.hh=function(a,b){a&&this.init(a,b)};_.ih=function(a,b){return _.Aaa?a.gu.button==b:"click"==a.type?0==b:!!(a.gu.button&_.Baa[b])};_.jh=function(){};
+_.kh=function(a,b,c,d,e){if(b){if((0,_.xa)(b)){for(var f=0;f<b.length;f++)(0,_.kh)(a,b[f],c,d,e);return _.p}var d=!!d,g=_.lh;b in g||(g[b]={Zl:0,Pz:0});g=g[b];d in g||(g[d]={Zl:0,Pz:0},g.Zl++);var g=g[d],i=(0,_.Wa)(a),h;g.Pz++;if(g[i]){h=g[i];for(f=0;f<h.length;f++)if(g=h[f],g.vB==c&&g.IC==e){if(g.BD)break;return h[f].key}}else h=g[i]=[],g.Zl++;var m=_.Caa,n=_.mh?function(a){return m.call(n.src,n.key,a)}:function(a){a=m.call(n.src,n.key,a);if(!a)return a},f=n;f.src=a;g=new _.jh;g.init(c,f,a,b,d,e);
+c=g.key;f.key=c;h.push(g);_.nh[c]=g;_.oh[i]||(_.oh[i]=[]);_.oh[i].push(g);a.addEventListener?(a==_.ha||!a.fN)&&a.addEventListener(b,f,d):a.attachEvent(b in _.ph?_.ph[b]:_.ph[b]="on"+b,f);return c}(0,_.aa)((0,window.Error)("Invalid event type"))};_.qh=function(a,b,c,d,e){if((0,_.xa)(b)){for(var f=0;f<b.length;f++)(0,_.qh)(a,b[f],c,d,e);return _.p}a=(0,_.kh)(a,b,c,d,e);_.nh[a].rJ=_.l;return a};
+_.rh=function(a,b,c,d,e){if((0,_.xa)(b)){for(var f=0;f<b.length;f++)(0,_.rh)(a,b[f],c,d,e);return _.p}d=!!d;a=(0,_.sh)(a,b,d);if(!a)return _.A;for(f=0;f<a.length;f++)if(a[f].vB==c&&a[f].capture==d&&a[f].IC==e)return(0,_.th)(a[f].key);return _.A};
+_.th=function(a){if(!_.nh[a])return _.A;var b=_.nh[a];if(b.BD)return _.A;var c=b.src,d=b.type,e=b.B,f=b.capture;c.removeEventListener?(c==_.ha||!c.fN)&&c.removeEventListener(d,e,f):c.detachEvent&&c.detachEvent(d in _.ph?_.ph[d]:_.ph[d]="on"+d,e);c=(0,_.Wa)(c);_.oh[c]&&(e=_.oh[c],(0,_.qb)(e,b),0==e.length&&delete _.oh[c]);b.BD=_.l;if(b=_.lh[d][f][c])b.fP=_.l,(0,_.uh)(d,f,c,b);delete _.nh[a];return _.l};
+_.uh=function(a,b,c,d){if(!d.GH&&d.fP){for(var e=0,f=0;e<d.length;e++)d[e].BD?d[e].B.src=_.p:(e!=f&&(d[f]=d[e]),f++);d.length=f;d.fP=_.A;0==f&&(delete _.lh[a][b][c],_.lh[a][b].Zl--,0==_.lh[a][b].Zl&&(delete _.lh[a][b],_.lh[a].Zl--),0==_.lh[a].Zl&&delete _.lh[a])}};_.sh=function(a,b,c){var d=_.lh;return b in d&&(d=d[b],c in d&&(d=d[c],a=(0,_.Wa)(a),d[a]))?d[a]:_.p};
+_.vh=function(a,b,c,d,e){var f=1,b=(0,_.Wa)(b);if(a[b]){a.Pz--;a=a[b];a.GH?a.GH++:a.GH=1;try{for(var g=a.length,i=0;i<g;i++){var h=a[i];h&&!h.BD&&(f&=(0,_.wh)(h,e)!==_.A)}}finally{a.GH--,(0,_.uh)(c,d,b,a)}}return(0,window.Boolean)(f)};_.wh=function(a,b){a.rJ&&(0,_.th)(a.key);return a.handleEvent(b)};
+_.Caa=function(a,b){if(!_.nh[a])return _.l;var c=_.nh[a],d=c.type,e=_.lh;if(!(d in e))return _.l;var e=e[d],f,g;if(!_.mh){var i;if(!(i=b))a:{i=["window","event"];for(var h=_.ha;f=i.shift();)if(h[f]!=_.p)h=h[f];else{i=_.p;break a}i=h}f=i;i=_.l in e;h=_.A in e;if(i){if(0>f.keyCode||f.returnValue!=_.k)return _.l;a:{var m=_.A;if(0==f.keyCode)try{f.keyCode=-1;break a}catch(n){m=_.l}if(m||f.returnValue==_.k)f.returnValue=_.l}}m=new _.hh;m.init(f,this);f=_.l;try{if(i){for(var j=[],q=m.currentTarget;q;q=
+q.parentNode)j.push(q);g=e[_.l];g.Pz=g.Zl;for(var t=j.length-1;!m.AD&&0<=t&&g.Pz;t--)m.currentTarget=j[t],f&=(0,_.vh)(g,j[t],d,_.l,m);if(h){g=e[_.A];g.Pz=g.Zl;for(t=0;!m.AD&&t<j.length&&g.Pz;t++)m.currentTarget=j[t],f&=(0,_.vh)(g,j[t],d,_.A,m)}}else f=(0,_.wh)(c,m)}finally{j&&(j.length=0)}return f}d=new _.hh(b,this);return f=(0,_.wh)(c,d)};(0,_.Ec)(_.O.$(),"sy2");
+_.eh[" "]=_.ka;_.Aaa=!_.$b||(0,_.Yb)(9);_.mh=!_.$b||(0,_.Yb)(9);_.Daa=_.$b&&!(0,_.Wb)("9");!_.td||(0,_.Wb)("528");_.de&&(0,_.Wb)("1.9b")||_.$b&&(0,_.Wb)("8")||_.le&&(0,_.Wb)("9.5")||_.td&&(0,_.Wb)("528");_.de&&!(0,_.Wb)("8")||_.$b&&(0,_.Wb)("9");_.N=_.gh.prototype;_.N.dispose=(0,_.ca)();_.N.AD=_.A;_.N.gI=_.l;_.N.stopPropagation=function(){this.AD=_.l};_.N.preventDefault=function(){this.gI=_.A};(0,_.cb)(_.hh,_.gh);_.Baa=[1,4,2];_.N=_.hh.prototype;_.N.target=_.p;_.N.relatedTarget=_.p;_.N.clientX=0;_.N.clientY=0;_.N.screenX=0;_.N.screenY=0;_.N.button=0;_.N.keyCode=0;_.N.charCode=0;_.N.ctrlKey=_.A;_.N.altKey=_.A;_.N.shiftKey=_.A;_.N.metaKey=_.A;_.N.SH=_.A;_.N.gu=_.p;
+_.N.init=function(a,b){var c=this.type=a.type;_.gh.call(this,c);this.target=a.target||a.srcElement;this.currentTarget=b;var d=a.relatedTarget;d?_.de&&((0,_.fh)(d,"nodeName")||(d=_.p)):"mouseover"==c?d=a.fromElement:"mouseout"==c&&(d=a.toElement);this.relatedTarget=d;this.clientX=a.clientX!==_.k?a.clientX:a.pageX;this.clientY=a.clientY!==_.k?a.clientY:a.pageY;this.screenX=a.screenX||0;this.screenY=a.screenY||0;this.button=a.button;this.keyCode=a.keyCode||0;this.charCode=a.charCode||("keypress"==c?
+a.keyCode:0);this.ctrlKey=a.ctrlKey;this.altKey=a.altKey;this.shiftKey=a.shiftKey;this.metaKey=a.metaKey;this.SH=_.ee?a.metaKey:a.ctrlKey;this.state=a.state;this.gu=a;a.defaultPrevented&&this.preventDefault();delete this.AD};_.N.stopPropagation=function(){_.hh.Sb.stopPropagation.call(this);this.gu.stopPropagation?this.gu.stopPropagation():this.gu.cancelBubble=_.l}; _.N.preventDefault=function(){_.hh.Sb.preventDefault.call(this);var a=this.gu;if(a.preventDefault)a.preventDefault();else if(a.returnValue=_.A,_.Daa)try{if(a.ctrlKey||112<=a.keyCode&&123>=a.keyCode)a.keyCode=-1}catch(b){}};_.N.pU=(0,_.fa)("gu");
+_.Eaa=0;_.N=_.jh.prototype;_.N.key=0;_.N.BD=_.A;_.N.rJ=_.A;_.N.init=function(a,b,c,d,e,f){(0,_.Pa)(a)?this.M=_.l:a&&a.handleEvent&&(0,_.Pa)(a.handleEvent)?this.M=_.A:(0,_.aa)((0,window.Error)("Invalid listener argument"));this.vB=a;this.B=b;this.src=c;this.type=d;this.capture=!!e;this.IC=f;this.rJ=_.A;this.key=++_.Eaa;this.BD=_.A};_.N.handleEvent=function(a){return this.M?this.vB.call(this.IC||this.src,a):this.vB.handleEvent.call(this.vB,a)};
+_.nh={};_.lh={};_.oh={};_.ph={};
+(0,_.Bc)(_.O.$(),"sy2");(0,_.Fc)(_.O.$(),"sy2");
+}catch(e){_._DumpException(e)}
+try{
+_.xh=function(a,b,c,d){var e=_.lh;return b in e&&(e=e[b],c in e)?(0,_.vh)(e[c],a,b,c,d):_.l};_.yh=function(a,b,c){var d=0,e=a==_.p,f=b==_.p,g=c==_.p,c=!!c;if(e)(0,_.Db)(_.oh,function(a){for(var e=a.length-1;0<=e;e--){var i=a[e];if((f||b==i.type)&&(g||c==i.capture))(0,_.th)(i.key),d++}});else if(a=(0,_.Wa)(a),_.oh[a]){a=_.oh[a];for(e=a.length-1;0<=e;e--){var i=a[e];if((f||b==i.type)&&(g||c==i.capture))(0,_.th)(i.key),d++}}return d};_.zh=function(a){return/\/search$/.test(a.action)};
+_.Ah=function(a){return"none"!=a.style.display};_.Bh=function(a,b,c){b instanceof _.Yc?(c=b.height,b=b.width):c==_.k&&(0,_.aa)((0,window.Error)("missing height argument"));a.style.width=(0,_.fe)(b,_.l);a.style.height=(0,_.fe)(c,_.l)};_.Ch=function(a,b,c){for(var d=!!c,c=["<tr>"],e=0;e<b;e++)c.push(d?"<td>&nbsp;</td>":"<td></td>");c.push("</tr>");c=c.join("");b=["<table>"];for(e=0;e<a;e++)b.push(c);b.push("</table>");a=window.document.createElement("DIV");a.innerHTML=b.join("");return a.removeChild(a.firstChild)}; _.Dh=function(a){return window.document.createTextNode(a)};_.Eh=function(a){for(var b in a)return _.A;return _.l};_.Fh=function(){};(0,_.Ec)(_.O.$(),"sy4");
+(0,_.cb)(_.Fh,_.ac);_.N=_.Fh.prototype;_.N.fN=_.l;_.N.PH=_.p;_.N.wL=(0,_.ea)("PH");_.N.addEventListener=function(a,b,c,d){(0,_.kh)(this,a,b,c,d)};_.N.removeEventListener=function(a,b,c,d){(0,_.rh)(this,a,b,c,d)};
+_.N.dispatchEvent=function(a){var b=a.type||a,c=_.lh;if(b in c){if((0,_.Na)(a))a=new _.gh(a,this);else if(a instanceof _.gh)a.target=a.target||this;else{var d=a,a=new _.gh(b,this);(0,_.Hb)(a,d)}var d=1,e,c=c[b],b=_.l in c,f;if(b){e=[];for(f=this;f;f=f.PH)e.push(f);f=c[_.l];f.Pz=f.Zl;for(var g=e.length-1;!a.AD&&0<=g&&f.Pz;g--)a.currentTarget=e[g],d&=(0,_.vh)(f,e[g],a.type,_.l,a)&&a.gI!=_.A}if(_.A in c)if(f=c[_.A],f.Pz=f.Zl,b)for(g=0;!a.AD&&g<e.length&&f.Pz;g++)a.currentTarget=e[g],d&=(0,_.vh)(f,e[g], a.type,_.A,a)&&a.gI!=_.A;else for(e=this;!a.AD&&e&&f.Pz;e=e.PH)a.currentTarget=e,d&=(0,_.vh)(f,e,a.type,_.A,a)&&a.gI!=_.A;a=(0,window.Boolean)(d)}else a=_.l;return a};_.N.Df=function(){_.Fh.Sb.Df.call(this);(0,_.yh)(this);this.PH=_.p};
+
+(0,_.Bc)(_.O.$(),"sy4");(0,_.Fc)(_.O.$(),"sy4");
+}catch(e){_._DumpException(e)}
+try{
+(0,_.Ec)(_.O.$(),"sy15");_.P=_.P||{};
+(0,_.Bc)(_.O.$(),"sy15");(0,_.Fc)(_.O.$(),"sy15");
+}catch(e){_._DumpException(e)}
+try{
+_.vl=function(a,b,c,d){this.B=a;this.Sa=b;this.M=_.p;this.oa=c||0;this.Fa=d||(0,_.E)(_.l);a.getAttribute("aria-label")==_.p&&a.setAttribute("aria-label",b);this.ra=(0,_.ab)(this.VS,this);this.U=(0,_.ab)(this.MT,this);(0,_.Je)(this.B,"mouseover",this.ra);(0,_.Je)(this.B,"mouseout",this.U);(0,_.Je)(this.B,"focus",this.ra);(0,_.Je)(this.B,"focusin",this.ra);(0,_.Je)(this.B,"blur",this.U);(0,_.Je)(this.B,"focusout",this.U);(0,_.Je)(this.B,"mousedown",this.U);(0,_.Je)(this.B,"click",this.U);(0,_.Je)(this.B,
+"keydown",this.U)};_.wl=function(a){this.api=a;this.mm=a.c;this.xb=a.e;this.B=a.g;this.xm=a.h;this.U=a.i;this.M=a.j;this.Pd=a.k;this.xa=a.l;this.oa=a.n;this.ra=a.r;this.Ea=a.s;this.Fa=a.t;this.ha=a.u;this.od=a.v;this.Jc=a.w;this.xL=a.x;this.Oa=a.y;this.Sa=a.z;this.fb=a.aa;this.Ta=a.ab};_.xl=function(a){this.ra=a.a;this.U=a.b;this.ha=a.c;this.oa=a.d;this.xa=a.e;this.Ea=a.g;this.MF=a.h;this.Rb=a.i};_.yl=function(){var a=window.google.comm;return!a?_.p:new _.xl(a)};_.N=_.vl.prototype;
+_.N.Qx=function(){(0,window.clearTimeout)(this.Ea);(0,window.clearTimeout)(this.xa);this.YO();(0,_.Ke)(this.B,"mouseover",this.ra);(0,_.Ke)(this.B,"mouseout",this.U);(0,_.Ke)(this.B,"focus",this.ra);(0,_.Ke)(this.B,"focusin",this.ra);(0,_.Ke)(this.B,"blur",this.U);(0,_.Ke)(this.B,"focusout",this.U);(0,_.Ke)(this.B,"mousedown",this.U);(0,_.Ke)(this.B,"click",this.U);(0,_.Ke)(this.B,"keydown",this.U)};
+_.N.VS=function(){this.Fa()&&(window.clearTimeout(this.xa),this.Ea=window.setTimeout((0,_.ab)(this.rW,this),130))};_.N.MT=function(){window.clearTimeout(this.Ea);this.xa=window.setTimeout((0,_.ab)(this.YO,this),130)};
+_.N.rW=function(){if(!this.M){this.M=(0,_.Be)("div",this.Sa);this.ha=(0,_.Be)("div");this.M.style.cssText="background:#2d2d2d;border:1px solid;border-color:#fff;box-shadow:1px 2px 4px rgba(0,0,0,0.2);box-sizing:border-box;color:#fff;display:block;font-size:11px;font-weight:bold;height:29px;line-height:29px;padding:0 10px;position:absolute;text-align:center;transition:opacity 0.13s;white-space:nowrap;visibility:hidden;z-index:2000;";_.Oc.WEBKIT?this.M.style.cssText+="-webkit-box-shadow:0px 1px 4px rgba(0,0,0,0.2);-webkit-box-sizing:border-box;-webkit-transition:opacity 0.13s;":
+_.Oc.GECKO?this.M.style.cssText+="-moz-box-shadow:0px 1px 4px rgba(0,0,0,0.2);-moz-box-sizing:border-box;-moz-transition:opacity 0.13s;":_.Oc.OPERA&&(this.M.style.cssText+="-o-transition:opacity 0.13s;");this.ha.style.cssText="border:6px solid;border-color:#fff transparent;border-top-width:0;content:'';display:block;font-size:0px;height:0;line-height:0;position:absolute;top:-6px;width:0;";var a=(0,_.Be)("div");a.style.cssText=this.ha.style.cssText;a.style.top="1px";a.style.left="-6px";a.style.borderColor=
+"#2d2d2d transparent";this.ha.appendChild(a);this.M.appendChild(this.ha);this.B.parentNode?this.B.parentNode.appendChild(this.M):this.B.offsetParent?this.B.offsetParent.appendChild(this.M):window.document.body.appendChild(this.M);var a=this.B.offsetWidth,b=this.B.offsetLeft,c=this.M.offsetWidth;if(0==this.oa){this.M.style.left=a/2-c/2+b+"px";var d=(0,_.me)(this.M),e=(0,_.Vc)(3);d+c>e?this.M.style.left=b+a-c+1+"px":0>d&&(this.M.style.left=b-1+"px")}else d=(0,_.ff)(),this.M.style.left=3==this.oa||1==
+this.oa&&d?b+a-c+1+"px":b-1+"px";this.M.style.top=this.B.offsetTop+this.B.offsetHeight+5+"px";0==this.oa?this.ha.style.left=this.B.offsetLeft+this.B.offsetWidth/2-this.M.offsetLeft-1-6+"px":(a=(0,_.ff)(),3==this.oa||1==this.oa&&a?this.ha.style.right="18px":this.ha.style.left="18px");this.M.style.visibility="visible"}};_.N.YO=function(){this.M&&((0,_.Dd)(this.M),this.M=_.p)};(0,_.Ec)(_.O.$(),"sy14");
+_.xl.prototype.M=function(a,b){var c=this.Ea(a,b);return!c?_.p:new _.wl(c)};_.xl.prototype.B=function(a){return!a?_.p:new _.wl(a.api)};_.zl=_.yl;
+(0,_.Bc)(_.O.$(),"sy14");(0,_.Fc)(_.O.$(),"sy14");
+}catch(e){_._DumpException(e)}
+try{
+_.gp=function(a,b,c){for(var d=a;!(0,_.lf)(d,"obcontainer");){if(d==window.document.body)return;d=d.parentNode}d=(0,_.De)("div.obselector",d);window.google.log("prose_onebox_dropdown","&id="+b);for(b=0;b<d.length;++b)d[b].style.display="none";"undefined"==typeof c?d[a.selectedIndex].style.display="inline":d[c].style.display="inline"};
+_.hp=function(a,b,c,d,e,f){if(_.ip){_.ip=_.A;for(d=a;!(0,_.lf)(d,"obcontainer");){if(d==window.document.body){_.ip=_.l;return}d=d.parentNode}var g=(0,_.lf)(d,"obsmo");g?(0,_.nf)(d,"obsmo"):(0,_.mf)(d,"obsmo");e=e||0;_.jp&&(e=c=0);for(var i=c,h=e,m=[],n=[],e=g?1:0,c=1-e,j,q,t,r=(0,_.De)("div.obsmw",d),d=0,s;s=r[d++];)j=s.offsetHeight,_.Oc.Bs?(t=(0,_.jf)(s.parentNode),q=0==t?0:-100*j/t-10,t="%"):(q=-j-1,t="px"),j=(1-e)*q,q*=1-c,m.push([s,"marginTop",j,q,_.p,t]),n.push([s.parentNode,"opacity",e,c,_.p,
+""]);var C=function(){var a=r;typeof a.length=="undefined"&&(a=[a]);if(g)for(b=0;c=a[b++];)c.style.marginTop="-9999px";else for(var b=0,c;c=a[b++];)_.Oc.Gd?c.parentNode.style.removeAttribute("filter"):c.parentNode.style.opacity="";_.ip=_.l;f&&f();if(_.jp)window.document.body.className=window.document.body.className};b?(0,_.Lg)(i,n.concat(m),C):g?(0,_.Lg)(i,n,function(){(0,_.Lg)(h,m,C)}):(0,_.Lg)(h,m,function(){(0,_.Lg)(i,n,C)});a=a.getAttribute("data-log-id")||"";window.google.log("prose_onebox_show_more", (g?"close":"open")+"&id="+a)}};(0,_.Ec)(_.O.$(),"sy30");
+(0,_.ga)("google.onebox.dd.update",_.gp,_.k);_.ip=_.l;_.jp=_.Oc.Gd&&0>(0,_.Sc)(_.Rc,"9");(0,_.ga)("google.onebox.sm.toggle",_.hp,_.k);
+(0,_.Bc)(_.O.$(),"sy30");(0,_.Fc)(_.O.$(),"sy30");
+}catch(e){_._DumpException(e)}
+try{
+_.kp=function(a){return(""+a).replace(/([A-Z])/g,"-$1").toLowerCase()};_.lp=function(a,b){return a.dataset?a.dataset[b]:a.getAttribute("data-"+(0,_.kp)(b))};(0,_.Ec)(_.O.$(),"sy31");
+(0,_.Bc)(_.O.$(),"sy31");(0,_.Fc)(_.O.$(),"sy31");
+}catch(e){_._DumpException(e)}
+try{
+_.mp=function(a){var b=arguments.length;if(1==b&&(0,_.xa)(arguments[0]))return _.mp.apply(_.p,arguments[0]);for(var c={},d=0;d<b;d++)c[arguments[d]]=_.l;return c};_.np=function(a){var b=_.ha.document;return b&&!b.createEvent&&b.createEventObject?b.createEventObject(a):a};
+_.op=function(a,b,c,d){this.xa=a.replace(_.Eba,"_");this.Wl=b||_.p;this.Fa=c?(0,_.np)(c):_.p;this.U=[];this.ra={};this.Oa=this.oa=d||(0,_.lg)();this.Nx={};this.Nx["main-actionflow-branch"]=1;this.M=_.A;this.B={};this.ha={};this.Ta=_.A;c&&(b&&"click"==c.type)&&this.action(b);_.pp.push(this)};
+_.qp=function(a,b,c,d){if(a.M||!a.Nx[b])a.Iz("done",b);else{c&&a.tick(c,d);a.Nx[b]--;0==a.Nx[b]&&delete a.Nx[b];if(b=(0,_.Eh)(a.Nx))if(a.Ta)b=_.l;else if(b=new _.rp("beforedone",a),!a.dispatchEvent(b)||!_.sp.dispatchEvent(b))b=_.A;else{var e=[];(0,_.Db)(a.ha,function(a,b){var c=(0,window.encodeURIComponent)(b);(0,window.encodeURIComponent)(a).replace(/%7C/g,"|");e.push(c+":"+a)});(c=e.join(","))&&(a.B.cad=c);b.type="done";b=_.sp.dispatchEvent(b)}b&&(a.M=_.l,(0,_.qb)(_.pp,a),a.Wl=_.p,a.Fa=_.p)}};
+_.tp=function(a){a.M&&a.Iz("tick")};_.rp=function(a,b){_.gh.call(this,a,b)};_.up=function(){this.YE={};this.M={};this.Kr=[]};_.vp=function(a){a.oN&&0!=a.Kr.length&&_.ha.setTimeout((0,_.ab)(function(){this.oN(this.Kr,this)},a),0)};
+_.Fba=function(a,b){for(var c=0;c<a.length;){var d=a[c];if(b.YE.hasOwnProperty(d.action)){var e;if("keypress"==d.event.type||"keydown"==d.event.type||"keyup"==d.event.type){e=d.event;var f=_.k;if(window.document.createEvent)if(f=window.document.createEvent("KeyboardEvent"),f.initKeyboardEvent){var g=_.k,g=e.ctrlKey,i=e.metaKey,h=e.shiftKey,m=[];e.altKey&&m.push("Alt");g&&m.push("Control");i&&m.push("Meta");h&&m.push("Shift");g=m.join(" ");f.initKeyboardEvent(e.type,_.l,_.l,window,e.charCode,e.keyCode,
+e.location,g,e.repeat,e.locale)}else f.initKeyEvent(e.type,_.l,_.l,window,e.ctrlKey,e.altKey,e.shiftKey,e.metaKey,e.keyCode,e.charCode);else f=window.document.createEventObject(),f.type=e.type,f.repeat=e.repeat,f.ctrlKey=e.ctrlKey,f.altKey=e.altKey,f.shiftKey=e.shiftKey,f.metaKey=e.metaKey}else"click"==d.event.type||"dblclick"==d.event.type||"mousedown"==d.event.type||"mouseover"==d.event.type||"mouseout"==d.event.type||"mousemove"==d.event.type?(e=d.event,f=_.k,window.document.createEvent?(f=window.document.createEvent("MouseEvents"),
+f.initMouseEvent(e.type,_.l,_.l,window,e.detail,e.screenX,e.screenY,e.clientX,e.clientY,e.ctrlKey,e.altKey,e.shiftKey,e.metaKey,e.button,e.relatedTarget)):(f=window.document.createEventObject(),f.type=e.type,f.clientX=e.clientX,f.clientY=e.clientY,f.button=e.button,f.detail=e.detail,f.ctrlKey=e.ctrlKey,f.altKey=e.altKey,f.shiftKey=e.shiftKey,f.metaKey=e.metaKey)):(e=d.event,f=_.k,window.document.createEvent?(f=window.document.createEvent("Event"),f.initEvent(e.type,_.l,_.l)):(f=window.document.createEventObject(),
+f.type=e.type));e=f;d=d.targetElement;d.dispatchEvent?d.dispatchEvent(e):d.fireEvent("on"+e.type,e);(0,_.ah)(a,c,1)}else c++}};_.wp=function(a,b,c){var d;if(window.google.jsad&&((0,_.Db)(b,(0,_.ab)(function(b,c){a?this.YE[a+"."+c]=b:this.YE[c]=b},_.xp)),(0,_.vp)(_.xp),!c))for(d in _.yp[a]=_.yp[a]||[],b)(0,_.mb)(_.yp[a],d)||(0,_.pb)(_.yp[a],d)};_.zp=function(a,b){for(var c=0;c<b.length;++c){var d=b[c],e=_.p,e=a?a+"."+d:d;delete _.xp.YE[e];a in _.yp&&((0,_.qb)(_.yp[a],b[c]),0==_.yp[a].length&&delete _.yp[a])}}; _.Ap=function(a,b){var c=_.Bp[a];if(c)for(var d=0;d<c.length;++d)if(c[d].Et==b)return c[d]};_.Cp=function(a,b){var c=_.Bp[a];if(c)for(var d=0;d<c.length;++d)c[d].Et(b)};(0,_.Ec)(_.O.$(),"sy32");
+_.Gba={"class":2,dir:1,"for":2,jsaction:1,jsnamespace:1,log:1,name:2,style:1,type:2,jstrack:1,ved:1};(0,_.mp)("action","cite","data","formaction","href","icon","manifest","poster","src");(0,_.cb)(_.op,_.Fh);_.pp=[];_.sp=new _.Fh;_.Eba=/[~.,?&-]/g;_.N=_.op.prototype;_.N.getTick=function(a){return"start"==a?this.oa:this.ra[a]};_.N.O=(0,_.fa)("xa");_.N.tick=function(a,b){(0,_.tp)(this);b=b||{};a in this.ra&&((0,_.tp)(this),this.ha.dup=a.toString().replace(/[:;,\s]/g,"_"));var c=b.time||(0,_.lg)();!b.TT&&(!b.k0&&c>this.Oa)&&(this.Oa=c);for(var d=c-this.oa,e=this.U.length;0<e&&this.U[e-1][1]>d;)e--;(0,_.ah)(this.U,e,0,[a,d,b.TT]);this.ra[a]=c};_.N.timers=(0,_.fa)("U");
+_.N.Iz=function(a,b){var c=new _.rp("error",this);c.error=a;b&&(c.B=b);_.sp.dispatchEvent(c)};
+_.N.action=function(a){(0,_.tp)(this);var b=[],c=_.p,d=_.p,e=_.p,f=_.p,g=_.ha.document;if(g)for(;a&&a!=g.body;a=a.parentNode){var i=a,h=_.k;!i.__oi&&i.getAttribute&&(i.__oi=i.getAttribute("oi"));if(h=i.__oi)b.unshift(h),c||(c=i.getAttribute("jsinstance"));if(!e&&(!d||"1"==d))e=i.getAttribute("ved");d||(d=i.getAttribute("jstrack"));f||(f=i.getAttribute("jstrackrate"))}d&&(this.B.ct=this.xa,0<b.length&&(b=b.join("."),(0,_.tp)(this),this.ha.oi=b.toString().replace(/[:;,\s]/g,"_")),c&&(c="*"==c.charAt(0)?
+(0,window.parseInt)(c.substr(1),10):(0,window.parseInt)(c,10),this.B.cd=c),"1"!=d&&(this.B.ei=d),e&&(this.B.ved=e))};_.N.Et=function(a,b,c,d){this.M&&this.Iz("branch",b);c&&this.tick(c,_.k);this.Nx[b]?this.Nx[b]++:this.Nx[b]=1;var e=this;return function(){var c=a.apply(this,arguments);(0,_.qp)(e,b,d);return c}};_.N.event=(0,_.fa)("Fa");_.N.value=function(a){if(!(a in _.Gba)){var b=this.Wl;return b?b[a]:_.k}};(0,_.cb)(_.rp,_.gh);
+_.up.prototype.B=function(a){if((0,_.xa)(a))this.Kr=(0,_.vb)(a),(0,_.vp)(this);else{var b=a.action,c=this.YE[b];if(c)a=new _.op(a.action,a.actionElement,a.event),c(a),(0,_.qp)(a,"main-actionflow-branch");else if(c=(0,_.np)(a.event),a.event=c,this.Kr.push(a),a=b.split(".")[0],(b=this.M[a])&&!b.mT)b.t0(this,a),b.mT=_.l}};
+_.xp=new _.up;_.yp={};_.Bp={};(0,_.ga)("google.jsa.adc",function(a,b,c){_.Bp[a]=_.Bp[a]||[];(0,_.Ap)(a,b)||_.Bp[a].push({Et:b,uY:!!c})},_.k);(0,_.ga)("google.jsa.rdc",function(a,b){_.Bp[a]&&(0,_.qb)(_.Bp[a],(0,_.Ap)(a,b))},_.k);
+(0,_.Mf)(225,{init:function(){_.xp.oN=_.Fba;(0,_.vp)(_.xp);window.google.jsad&&window.google.jsad((0,_.ab)(_.xp.B,_.xp));(0,_.wp)("lr",{smt:function(a){var b=(0,_.lp)(a.Wl,"tag");(0,_.hp)(a.Wl,_.A,200,b,200)},ddu:function(a){var b=(0,_.lp)(a.Wl,"tag"),c=(0,window.parseInt)((0,_.lp)(a.Wl,"idx"),10);(0,_.gp)(a.Wl,b,c)},wobt:function(a){a=(0,_.lp)(a.Wl,"url");window.wob.toggle(a)}});(0,_.wp)("spl",{cc:function(a){var b=(0,_.yl)();b&&b.Rb();(0,_.Cp)("click",a.event());if(!window.google.j||!window.google.j.init)(a=
+a.Wl)&&(0,_.Pe)(a.href)}});(0,_.wp)("tcu",{fd:function(a){window.google.util.stopPropagation(a.event());var b=(0,_.lp)(a.Wl,"event"),c=(0,_.lp)(a.Wl,"delta");(0,_.ig)("cu",function(){window.google.tcu.fdh(b,c)})},tf:function(a){window.google.util.stopPropagation(a.event());var b=(0,_.lp)(a.Wl,"event");(0,_.ig)("cu",function(){window.google.tcu.tdph(b)})}});(0,_.wp)("ppl",{pv:function(a){var b=a.Wl,a=(0,_.lp)(b,"se"),c=(0,_.lp)(b,"ee"),b=b.firstChild,d=b.lastChild,e=(0,_.jf)(b)/2;b.style[a]=""+(-e+
+2)+"px";d.style[c]=""+(e+1)+"px"}});(0,_.wp)("st",{mb:function(a){window.google.movies&&window.google.movies.MovieBlur(a.Wl)},mf:function(a){window.google.movies&&window.google.movies.MovieFocus(a.Wl)},ms:function(){window.google.movies&&window.google.movies.Submit()},sm:function(a){(0,_.hp)(a.Wl,_.A,200,"showtimes",200)},sv:function(a){var a=a.Wl,b=(0,_.lp)(a,"idx"),c=(0,window.Number)(b);(0,_.gp)(a,"showtimes",0==c&&/^[\s\xa0]*$/.test(b)?window.NaN:c)}})},dispose:function(){for(var a in _.yp)(0,_.zp)(a, _.yp[a]);for(var b in _.Bp){a=_.Bp[b];for(var c=a.length-1;0<=c;--c)a[c].uY||_.tb.splice.call(a,c,1)}}});
+_.Dp=_.p;
+(0,_.Bc)(_.O.$(),"sy32");(0,_.Fc)(_.O.$(),"sy32");
+}catch(e){_._DumpException(e)}
+try{
+(0,_.Ec)(_.O.$(),"jsa");
+(0,_.Bc)(_.O.$(),"jsa");(0,_.Fc)(_.O.$(),"jsa");
+}catch(e){_._DumpException(e)}
+try{
+(0,_.Ec)(_.O.$(),"sy17");
+(0,_.Bc)(_.O.$(),"sy17");(0,_.Fc)(_.O.$(),"sy17");
+}catch(e){_._DumpException(e)}
+try{
+_.Al=function(a,b){function c(){return a==_.l}var d={VR:_.l,YL:_.A},e=b||window.google.time(),f=d.VR,g,i,h,m,n=_.l,j,q,t,r;return{XS:function(a,b,e,q,t){h||(h=[],m={},n=_.l,j=a);if(t){var r=m,w;for(w in t)r[w]=t[w]}b&&c()&&h.push({data:b,url:a});e&&(f=d.YL);g=window.google.time();i=q},wN:function(){return m?m:{}},KJ:function(){return h?h.length:0},gj:function(){return q},zN:function(a){return h?h[a].data:_.p},OJ:function(){return r},hF:function(){return f==d.YL},RJ:c,uU:function(){return n},SJ:function(){return e},
+AU:function(a){return a&&h&&h.length>a&&h[a].url?h[a].url:j},OG:function(){return t},refresh:function(){var a=window.google.time();g+1E3*i<a&&(h=[],n=_.A)},aQ:function(a){q=a},vL:function(a){r=a},gQ:function(a){t=a},NY:function(a){i=a}}};
+_.lba=function(a){function b(){return _.p}function c(){}function d(){return _.A}function e(a,b,c){for(var d=0,e;e=n[d++];)e.vF(a,b,c)}function f(a,b,c,d,e){for(var c=0,f;f=n[c++];)f.handleError(a,b,d,e)}function g(a,b,c){try{return _.Oc.Gd?eval("("+a+")"):(new window.Function("return "+a))()}catch(d){f(1,9,b,d,c)}return a}var i={uC:_.l,zh:_.A},h=a.Dr,m,n=[],j=1,q={vF:e,B:g,EP:function(a,b,c,d,f){for(var a=a.split('/*""*/'),f=f?0:-1,s=b;s<a.length+f;++s)++b,a[s]&&e(g(a[s],c,d));return[b,0==a[a.length-
+1].length&&b==a.length]},Dh:function(a){return{Dr:a}},handleError:f,SO:function(a){window.google.log("omcr",a.toString())}};switch(h){case _.Bl.vC:var i=a.tJ,t=a.cL,r=function(a,b,c){function d(){a:{var b,e;try{b=a.location.href,e=7>=H||"complete"==a.document.readyState}catch(f){q.handleError(1,13,x,f,_.k);break a}try{!u.test(b)&&((!a.google||!a.google.loc)&&e&&0>b.indexOf(y[c]))&&q.handleError(1,19,x,_.k,_.k)}catch(g){q.handleError(1,7,x,g,_.k)}da==s.UC&&a&&(a.src="about:blank")}}for(var b=window.document.getElementsByName(b),
+e=0,f;f=b[e++];)if("IFRAME"==f.nodeName&&((0,_.Je)(f,"load",d),da==s.UC&&8<=H)){var g=window.document.createElement("div");g.style.display="none";(0,_.Bd)(g,f)}if(da==s.RI&&!y[c])try{a.document.title=window.document.title}catch(j){}},s={UC:0,RI:1},C=a.FK||"tlif"+window.google.time()+i,v="^"+C+"[0-9]+$",x=q.Dh(3),u=/(\/blank\.html|about:blank)$/,y=[],w={},F=[],L=0,H=0,da,z=window.document;if("number"!=typeof t||1>t)t=1;_.Oc.Gd&&(H=window.document.documentMode?window.document.documentMode:(0,window.parseInt)(_.Rc.split(".")[0],
+10));da=H&&7>=H?s.RI:s.UC;m={open:function(){if(_.Oc.Gd&&!(0,_.Uc)("10"))try{var a=window.google.ihtmlfile=new window.ActiveXObject("htmlfile");a.open();a.close();a.parentWindow.google=window.google;(0,_.Je)(window,"unload",function(){window.google.ihtmlfile&&(window.google.ihtmlfile.parentWindow.google=_.p,window.google.ihtmlfile=_.p)});z=a}catch(b){return q.handleError(1,2,x,b,_.k),_.A}for(a=0;a<t;++a){var c=C+a,d;if(!F[a])try{var e=z.createElement("IFRAME");e.name=c;e.style.display="none";e.src=
+"about:blank";var f=z.createElement("DIV");f.id=c;f.appendChild(e);z.body.appendChild(f);d=F[a]=e.contentWindow}catch(s){return q.handleError(1,5,x,s,_.k),_.A}if(!d)return _.A;r(d,c,a)}return _.l},Pd:function(a,b){L=(L+1)%t;var c=C+L,a=a+("&wrapid="+(0,window.encodeURIComponent)(c)),d=F[L].location;da==s.RI?d.href=a:d.replace(a);b&&(w[c]=b);y[L]=a},MF:function(a,b,c){a&&a.match(v)&&(q.vF(b),c&&w[a]&&(w[a](),delete w[a]))},getName:function(){return C},gF:function(){return x},iF:(0,_.E)(_.l),close:function(){for(var a=
+0;a<t;++a){var b=C+a;(0,_.Dd)(z.getElementById(b));w[b]&&(w[b](),delete w[b])}}};break;case _.Bl.TC:var i=a.tJ,G=a.VC,U=a.qD,K=a.pD,W=function(){return G&&Da.length>=U},I=function(a){var b=na[a];if(b){delete na[a];for(var c=0;c<Da.length;++c)if(Da[c]==a){Da.splice(c,1);break}window.setTimeout(function(){try{(0,_.Dd)(b),b.src=_.Oc.Gd?"blank.html":"about:blank"}catch(a){}},0);D[a]&&(D[a](),delete D[a])}},ia="tljp"+window.google.time()+i,Z=q.Dh(4),pa=0,Da=[],D={},na={};m={open:(0,_.E)(_.l),Pd:function(a,
+b){var c=window.document.createElement("script"),d=ia+pa++;c.src=a+"&wrapid="+d;na[d]=c;if(W()){for(;Da.length;)I(Da[0]);K&&q.SO(U)}Da.push(d);b&&(D[d]=b);_.Oc.Gd?c.onreadystatechange=function(){var a=c.readyState;("loaded"==a||"complete"==a)&&I(d)}:c.onload=function(){I(d)};(0,_.Ae)(c)},MF:function(a,b,c){na[a]&&(q.vF(b),c&&D[a]&&(D[a](),delete D[a]))},getName:function(){return ia},gF:function(){return Z},iF:(0,_.E)(_.A),FI:W,close:function(){for(var a in na)I(a),D[a]&&(D[a](),delete D[a])}};break;
+case _.Bl.VD:case _.Bl.WE:case _.Bl.YD:var ma=h==_.Bl.YD?i.uC:i.zh,X=h==_.Bl.VD||h==_.Bl.YD,Ba=a.VC,Ia=a.qD,Ta=a.pD,Aa=function(a){a&&(a.send(_.p),Ja.push(a))},Ea=function(a){for(var b=0,c;c=Ja[b];++b)if(a==c){Ja.splice(b,1);break}for(;Ja.length<Ia&&Ga.length;)Aa(Ga.shift());a.LE&&a.LE()},Ha=q.Dh(ma?5:X?1:2),Ja=[],Ga=[];if("number"!=typeof Ia||1>Ia)Ia=5;m={open:function(){var a=(0,_.Kc)();return ma?!!a&&"withCredentials"in a:!!a},Pd:function(a,b){var c=(0,_.Kc)();if(c){c.open("GET",a);ma&&(c.withCredentials=
+_.l);c.LE=b;var d=[0,_.A];c.onreadystatechange=function(){if(!_.Pc.Gd||!((0,_.Uc)("9")&&1==c.readyState)){try{if(4==c.readyState&&0==c.status){q.handleError(1,21,Ha,_.p,a);Ea(c);return}}catch(b){q.handleError(1,21,Ha,_.p,a);Ea(c);return}(3==c.readyState||4==c.readyState)&&200==c.status&&0>(c.getResponseHeader("Content-Type")||"").indexOf("application/json")?(q.handleError(1,12,Ha,_.p,a),Ea(c)):3==c.readyState&&X?d=q.EP(c.responseText,d[0],Ha,a):4==c.readyState&&(200==c.status?d=q.EP(c.responseText,
+d[0],Ha,a,_.l):400<=c.status&&500>c.status?q.handleError(1,0,Ha,_.p,a):500<=c.status&&600>c.status&&q.handleError(1,1,Ha,_.p,a),d[1]&&Ea(c))}};if(Ja.length<Ia)Aa(c);else if(Ba){for(;Ja.length;){var e=Ja.shift();e.onreadystatechange=(0,_.ca)();e.abort();e.LE&&e.LE()}Aa(c);Ta&&q.SO(Ia)}else Ga.push(c)}},gF:function(){return Ha},iF:function(){return X},FI:function(){return Ba&&Ja.length>=Ia},close:function(){Ga=[];for(var a=0;a<Ja.length;++a){var b=Ja[a];b&&(b.onreadystatechange=(0,_.ca)());b&&(0!=b.readyState&&
+4!=b.readyState)&&b.abort();b.LE&&b.LE()}Ja=[]}}}if(!m)return _.p;a={O:function(){return h},lY:function(a){n.push(a)},mY:function(a){for(var b=0,c;c=n[b];++b)if(c==a){n.splice(b,1);break}n.length||(a.rL(),m.close())},xU:function(){return(j++).toString()},open:m.open,Pd:m.Pd,MF:m.MF||c,FI:m.FI||d,getName:m.getName||b,gF:m.gF,iF:m.iF};a.vF=e;return a};_.Cl=function(a,b){return{Dr:_.Dl.vC,FK:b,cL:a||1}};_.El=function(a,b,c){return{Dr:_.Dl.TC,VC:!!a,qD:b||5,pD:!!c}};
+_.Fl=function(a,b,c){return{Dr:_.Dl.WE,VC:!!a,qD:b||5,pD:!!c}};_.Gl=function(a,b,c){return{Dr:_.Dl.VD,VC:!!a,qD:b||5,pD:!!c}};_.Hl=function(a,b,c,d){if(b==_.Dl.vC||b==_.Dl.TC){var b=_.Il[b],e;for(e in b)b[e].MF(a,c,d)}};_.Jl=function(a){switch(a){case _.Dl.vC:case _.Dl.TC:case _.Dl.WE:return _.l;case _.Dl.VD:return!_.Oc.Gd||_.Oc.Gd&&(0,_.Uc)("10");case _.Dl.YD:return!_.Oc.Gd}return _.A};_.Kl=function(a,b){var c=_.Ll[a];if(c){var d=b.OG();delete c.PF[d];delete c.eI[b.OJ()]}};
+_.Ml=function(){function a(a){for(var b in a)(0,_.Nl)(a[b])||delete a[b]}for(var b in _.Ll){var c=(0,_.Ol)(b);a(c.PF);a(c.eI);a(c.CD)}};_.Ol=function(a){var b=_.Ll[a];b||(b=_.Ll[a]={PF:{},eI:{},CD:{}});return b};_.Nl=function(a){return a&&(a.refresh(),a.uU())?a:_.p};_.Bl={L_:0,VD:1,WE:2,vC:3,TC:4,YD:5};_.Pl={RL:_.l,WL:_.A};_.mba={aM:0,ERROR:1,rR:2};_.nba=/[&\?]ech=([0-9]+)/;_.oba=/[\?&#](tch|ech|psi|wrapid)=[^&]*/g;(0,_.Ec)(_.O.$(),"sy16");
+_.Dl=_.Bl;_.Rl=[];_.Il={};_.pba=0;_.Il[_.Dl.vC]={};_.Il[_.Dl.TC]={};_.Ll={};window.setInterval(_.Ml,9E4);
+_.Sl={WS:function(a,b,c,d){a=(0,_.Ol)(a);c&&(a.PF[c]=d,d.gQ(c));b&&d.RJ()&&(a.CD[b]=d,d.aQ(b))},vM:function(a,b,c,d){a=(0,_.Ol)(a);c&&(a.eI[c]=d,d.vL(c));b&&d.RJ()&&(a.CD[b]=d,d.aQ(b));b=d.OG();delete a.PF[b]},rU:function(a,b,c){return(a=_.Ll[a])?(b=a.PF[b],c?b:(0,_.Nl)(b)):_.p},qU:function(a,b,c){return(a=_.Ll[a])?(b=a.eI[b],c?b:(0,_.Nl)(b)):_.p},xN:function(a,b){var c=_.Ll[a];return c?(0,_.Nl)(c.CD[b]):_.p},CT:_.Kl,clear:function(a){if(a)for(var b=0,c;c=a[b++];){if(c=_.Ll[c])c.CD={}}else for(c in _.Ll)if(a=
+_.Ll[c])a.CD={}},abort:function(a,b){var c=_.Ll[a];c&&((0,_.Kl)(a,b),delete c.CD[b.gj()])},B:_.Ml};(0,_.ga)("google.td",_.Hl,_.k);_.Tl={HU:function(){return _.pba++},eY:function(a){var b=_.Il[a.O()];b&&(b[a.getName()]=a)},rL:function(a){var b=_.Il[a.O()];b&&delete b[a.getName()]},sU:function(){return _.Sl}};
+(0,_.ga)("google.comm",{a:_.Cl,b:_.El,c:_.Fl,d:_.Gl,e:function(a,b,c){return{Dr:_.Dl.YD,VC:!!a,qD:b||5,pD:!!c}},g:function(a){function b(a){if(a&&a.source==window&&Fa.length&&("comm.df"==a.data||"comm.df.daisy"==a.data)){var c=window.google.time();do Fa.shift()();while(Fa.length&&20>window.google.time()-c);Fa.length&&"comm.df.daisy"==a.data&&window.setTimeout(function(){b(a)},0)}}function c(){Fa=[];window.postMessage&&(0,_.Je)(window,"message",b)}function d(a,b){for(var c=0,d;c<a.length;++c)if(d=
+b[c],0<d&&a[c]>d)return _.l;return _.A}function e(a,b,c,d){var e=Ta[a];if(!e){var s=e=f(),g=Aa[Ea];g&&delete Ta[g];Ta[a]=s;Aa[Ea]=a;Ea=(Ea+1)%10}b!=_.p&&e.Lx==_.p&&(e.Lx=b);c!=_.p&&(e.Yx=c);d!=_.p&&(e.Kx+=d)}function f(){var a={Lx:_.p,Yx:0,Kx:0,reset:function(){a.Lx=a.Yx=a.Kx=0}};return a}function g(){Ha.reset();Ja.reset();for(var a=0,b=0,c=0,d=0;d<Aa.length;++d){var e=Ta[Aa[d]],f=e.Lx||0,s=e.Yx,e=e.Kx;0<f&&(Ha.Lx+=f,a++);0<s&&(Ha.Yx+=s,b++);0<e&&(Ha.Kx+=e,c++);Ja.Lx=window.Math.max(f,Ja.Lx);Ja.Yx=
+window.Math.max(s,Ja.Yx);Ja.Kx=window.Math.max(e,Ja.Kx)}1<a&&(Ha.Lx=(Ha.Lx-Ja.Lx)/(a-1));1<b&&(Ha.Yx=(Ha.Yx-Ja.Yx)/(b-1));1<c&&(Ha.Kx=(Ha.Kx-Ja.Kx)/(c-1))}function i(a){var a=a.replace(/^http[s]?:\/\/[^\/]*/,""),b=a.indexOf("?");return-1==b?a:a.substring(0,b)}function h(a){return a.substring(a.indexOf("?")+1).split("&").sort().join("&")}function m(a,b,c,d,e,f,g,q,j,t){var i=I[d]||I["_?"];if(!i||!i.length)s(z.ERROR,10,_.p,d);else for(var d=0,n;n=i[d];++d)n.Cc(a,c,f,!b,g==da.dM,e,q,j,t)}function n(a){return U&&
+Z?U.O()==a:_.A}function j(a,b,c){return!a.RJ()?function(){return b}:function(){var d=[];if(a)for(var e=a.KJ(),e=c?window.Math.min(c,e):e,f=0;f<e;++f){var s=a.zN(f);s&&d.push(s)}return!d.length?b:d.join("")}}function q(a,b){for(var c=0,d;d=a[c];++c)if(d.Cc==b){a.splice(c,1);break}}function t(a,b,c){a.push({Cc:b,Ye:c||0});a.sort(function(a,b){return b.Ye-a.Ye})}function r(a){if(a=(0,_.lba)(a))if(a.lY(Ca),a.open())return U=a,_.Tl.eY(U),Z=_.l;return _.A}function s(a,b,c,d){if(a==z.aM||a==z.ERROR){var e=
+U?U.gF():_.p,e={_svty:a,_err:b,_type:e&&e.Dr};d&&(e._data=(0,window.encodeURIComponent)(""+d));try{e._wl=(0,window.encodeURIComponent)((0,_.Se)()),window.google.ml(c||(0,window.Error)("comm"),_.A,e)}catch(f){}}for(c=0;e=ia[c++];)e.Cc(a,b,d)}function C(){return Z}function v(a){if("string"==typeof a){var b=i(a);if(b)return a=K(a,b),Ba.xN(b,a)}return _.p}function x(){++X}function u(a,b){b?(W[b]&&!(W[b].name==a.name&&W[b].toString()==a.toString())&&s(z.rR,4,_.p,b),W[b]=a):K=function(b,c){var d=W[c];return d?
+d(b):a(b)}}if(a){for(var y=[],w=0,F;F=a[w++];)(0,_.Jl)(F.Dr)&&y.push(F);a=y.length?y:_.p}else if("undefined"!=typeof _.Ql)a=_.Ql;else{a=[[_.Dl.VD,_.Gl],[_.Dl.WE,_.Fl],[_.Dl.vC,_.Cl],[_.Dl.TC,_.El]];y=[];for(w=0;F=a[w++];)(0,_.Jl)(F[0])&&(F=F[1](),y.push(F));a=_.Ql=y.length?y:_.p}var L=a;if(!L)return _.p;var H={bR:-1,B_:0,WR:1},da={dM:_.l,jm:_.A},z=_.mba,G=window.google.kEI+"."+window.google.time(),U,K,W={},I={},ia=[],Z=_.A,pa=59,Da,D={},na={},ma,X=0,Ba,Ia;u(h);var Ta={},Aa=[],Ea=0,Ha=f(),Ja=f(),Ga=
+{tZ:function(a,b){e(a,b,_.p,_.p)},uZ:function(a,b){e(a,_.p,b,_.p)},rZ:function(a,b){e(a,_.p,_.p,b)},wT:function(a,b,c){g();var e=[Ha.Lx,Ha.Yx,Ha.Kx],f=[Ja.Lx,Ja.Yx,Ja.Kx];if(a=a.WJ(b,c))if(b=10==Aa.length&&d(e,a[0]),d(f,a[1])||b)return e.concat(f);return _.p},cY:g,oU:function(){return Ha},vU:function(){return Ja},BU:function(){return Aa.length}};Ga.V0=e;Ba=_.Tl.sU();var Fa,wa=_.A;Ia={defer:function(a){wa&&(0,_.Oe)(76,[])?(Fa||c(),Fa.push(a),1==Fa.length&&window.setTimeout(function(){b({source:window,
+data:"comm.df.daisy"})},0)):window.postMessage?(Fa||c(),Fa.push(a),window.postMessage("comm.df",window.location.href)):window.setTimeout(a,0)},yW:function(){return wa||!!Fa&&0<Fa.length},xL:function(a){wa=a}};var Ca={vF:function(a,b,c){if(Z){var d=a.u,e=d?i(d):"",f;a:{if(d&&(b=d.match(_.nba))){f=b[1];break a}f=""}var s=a.e,g,b=f,q=Ba.qU(e,s,_.l);if(!q)if(q=Ba.rU(e,b,_.l))Ba.vM(e,q.gj(),s,q);else{var q=c?_.Pl.WL:_.Pl.RL,t=K(d,e),q=(0,_.Al)(q,na[b]);q.gQ(b);Ba.vM(e,t,s,q)}g=q;D[e]||(b=window.google.time()-
+g.SJ(),t=g.OG(),Ga.tZ(t,b),g.hF()&&Ga.uZ(t,b));var b=a.c,n=!b||b!=H.WR,h=a.d,a=a.a;if("undefined"!=typeof h&&h!=_.p){var r=d?d.replace(_.oba,""):"";g.XS(r,h,n,pa,a);a=function(){var a=window.google.time();m(h,n,j(g,h),e,g.SJ(),r,da.jm,f,s,g.wN());if(g.KJ()>1){a=window.google.time()-a;Ga.rZ(f,a);if(n&&Da)(a=Ga.wT(Da,e,d))&&Da.vI&&Da.vI(a)}};Ia.yW()?Ia.defer(a):a()}a=g.hF();b==H.bR||a&&c?Ba.abort(e,g):a&&Ba.CT(e,g)}},handleError:s,rL:function(){_.Tl.rL(U)}},a={a:(0,_.E)("_?"),b:C,c:function(){Ga.cY();
+var a=Ga.oU(),b=Ga.vU(),c=Ga.BU(),a=[[c,a.Lx,a.Yx,a.Kx],[c,b.Lx,b.Yx,b.Kx]];return ma?a.concat([ma.nU()]):a},d:function(a){pa=a},e:function(a){Da={WJ:a.a,vI:a.b}},f:function(a){"function"==typeof a&&(i=a)},g:u,h:function(a,b,c){if(b){var d=I[b];d||(d=I[b]=[]);t(d,a,c)}},i:function(a,b){t(ia,a,b)},j:function(a){if(Z)return _.l;++X;var b=_.Tl.HU();if(a){for(var c=_.p,d=0,e;e=L[d];++d)if(e.Dr==_.Bl.vC?e.Dr==a.Dr&&e.FK==a.FK&&e.cL==a.cL:e.Dr==a.Dr&&e.VC==a.VC&&e.qD==a.qD&&e.pD==a.pD){c=e;break}c||(c=
+a,L.push(c));c.tJ=b;return r(c)}for(d=0;e=L[d];++d){e.tJ=b;if(r(e))return _.l;L.splice(d--,1)}return _.A},k:function(a,b,c,d){if(Z){var e=i(a),f=K(a,e),g=_.k,q;if(q=!b){if(c=!c){var t;var n=Ba.xN(e,f);if(n){var h=n.OG(),r=n.OJ(),g=n.hF();t=n.KJ();for(var C=n.wN(),y=window.google.time(),c=0;c<t;++c)(function(a,b,c){Ia.defer(function(){m(a,b,j(n,a,c+1),e,y,n.AU(c),da.dM,h,r,C)})})(n.zN(c),g&&c==t-1,c);t=h}c=g=t}q=c}if(q)return Ia.defer(function(){(0,_.Oe)(82,[a,d])&&d&&d()}),g;g=U.xU();b=(0,_.Al)(b?
+_.Pl.WL:_.Pl.RL);na[g]=b.SJ();Ba.WS(e,f,g,b);U.FI()&&++X;f=a;b=-1==f.indexOf("?")?"?":"&";t=G;window.google.mcp&&(t=G.split("."),c=window.google.mcp(t[1]),t=t[0]+"."+c);a=[f,b,"tch="+U.O(),"&ech=",g,"&psi=",t,".",X].join("");U.Pd(a,function(){var b=a,c=i(b);(b=v(b))&&!b.hF()&&Ba.abort(c,b);d&&Ia.defer(d)});return g}s(z.aM,14)},l:function(a){return!!v(a)},m:function(){return n(_.Bl.vC)},n:function(){return n(_.Bl.TC)},o:function(){return n(_.Bl.WE)},p:function(){return n(_.Bl.VD)},r:function(){return n(_.Bl.YD)},
+s:function(){return U&&Z?U.iF():_.A},t:x,u:function(){Z?(Z=_.A,U.mY(Ca),U=_.p):s(z.ERROR,3)},v:function(a,b){var c=I[b];c&&q(c,a)},w:function(a){q(ia,a)},x:function(a){Ia.xL(a)},y:function(a){D[a]=1},z:function(a){if(0<a&&!window.google.commPmActive){window.google.commPmActive=_.l;var b=function(b){b-=a;0>b&&(b=0);c[d]=b;d=(d+1)%20},c=[],d=0,e=_.A,f={start:function(){function c(){var f=window.google.time();b(f-d);e&&(d=f,window.setTimeout(c,a))}var d=window.google.time();e=_.l;window.setTimeout(c,
+a)},stop:function(){e=_.A},nU:function(){return c.slice(d).concat(c.slice(0,d))}};f.R_=b;ma=f;ma.start()}},aa:function(a){return a&&W[a]?W[a]:h},ab:function(a,b){var c=v(a);return c&&c.hF()?(c.NY(b),_.l):_.A},tU:C,aW:x};_.Rl.push(a);return a},h:_.Hl,i:function(a){_.Sl.clear(a);if(a&&"undefined"!=typeof a&&a!=_.p){var b=[],c;for(c in a)if(!(0,_.Pa)(a[c])){var d=c+" = ";try{d+=a[c]}catch(e){d+="*** "+e+" ***"}b.push(d)}b.join("\n")}for(a=0;b=_.Rl[a++];)b.tU()&&b.aW()}},_.k);
+
+(0,_.Bc)(_.O.$(),"sy16");(0,_.Fc)(_.O.$(),"sy16");
+}catch(e){_._DumpException(e)}
+try{
+(0,_.Ec)(_.O.$(),"c");
+(0,_.Bc)(_.O.$(),"c");(0,_.Fc)(_.O.$(),"c");
+}catch(e){_._DumpException(e)}
+try{
+(0,_.Ec)(_.O.$(),"sb");_.P.yv=_.p;_.P.Bn=/^[6-9]$/;_.qra={mp:0,Hj:1,kp:2,zn:3,Ne:4};_.xZ={nf:0,qk:5,Rm:19,ko:30,Ym:32,$i:33,Zm:34,Zi:35,Zk:38,Jo:39,xl:40,Ck:41,Xw:42,kw:43,Fl:44,wl:45,vn:46,Ew:47,Dw:48,Aw:49,Qu:50,Zw:51,qw:52,lw:54,vw:55,jp:56,Gm:400,Uv:401,Vv:403,Cw:404,xu:405,Tv:406,Hm:407,$w:408,xr:500,Qw:503,gw:504,Yv:505,Fv:506,uw:507};
+_.yZ={NONE:0,Fg:1,Ap:2,jm:3,Oo:4,ro:5,Yw:6,$m:7,Km:8,Mo:9,Of:10,Eo:11,Fn:12,jo:13,Rn:14,On:15,Fo:16,Lo:18,fo:19,Do:20,yp:21,Io:22,bn:23,Yo:24,pn:26,hp:27,Kn:28,Fm:29,eo:30,Jn:31,Po:32,Sm:33,Pw:34,bp:35,In:36,Zn:37,Pn:38,Co:39,Un:42,gp:43,Go:44,Nn:45,nn:46,jw:400};_.rra={EMPTY:0,Ao:1,Cj:2};_.sra={Bp:0,Em:1,Sv:2,vo:3,uo:4};_.tra={DB:1,EB:2,FB:3,TB:4,GB:5,HB:6,IB:7,zu:8,JB:9,PB:10,QB:11,RB:16,SB:12,Mu:13,Nu:14,UB:15};_.ura={$n:1,Bo:2,Iw:3,Fg:4,Ko:5,Sw:6,ww:7};
+_.zZ={IE:0,GECKO:1,OPERA:2,CHROME:3,SAFARI:4,WEBKIT:5,Dj:6,wj:7};_.vra={Gg:"left",OD:"center",Ek:"right"};_.wra={Pu:0,Gg:1,Yl:2};_.xra={Mn:0};_.yra={DONT_CARE:1,mj:2,Gl:3};_.zra={kj:0,np:1,Ne:2};_.Ara={Uw:"a",Wv:"b",Vw:"c",Rw:"d",Bj:"e",xw:"h",Fw:"i",Nw:"j",Xv:"k",Ow:"m",Ej:"o",Fj:"p",lo:"q"};_.Bra={Tm:0,Vo:1,Im:2,Jm:3,Dn:4,ho:5,$o:6,Zo:7,Cn:8,Wm:9,Qn:10,Gn:11,Hn:12,zo:13,qo:14,zp:15,Um:16,Xm:17,io:18,xn:19,Bj:20,yn:21,Vm:22,rw:23,Mw:24,Qm:25,$a:26};_.P.no=[23,24];
+_.AZ={Ww:0,$v:114,vb:115,Oc:116,Ja:117,Ca:118,Nb:119,$a:374,Hb:120,yb:121,Lh:122,Za:123,tc:124,Cd:125,No:230,Ua:126,Ub:127,Ka:128,Gj:343,Qd:129,Zv:231,Yb:130,gi:131,Lk:237,Lw:132,Xf:134,re:189,Nf:246,Gk:264,Bd:133,Wo:184,Sf:173,Eb:135,wb:136,Wb:137,Od:138,Wa:139,ef:140,Tb:141,Kh:142,De:240,Pf:143,Yd:144,zj:347,ke:191,ve:150,Nc:145,Ie:146,Zb:147,Tw:148,Ol:245,Jh:155,Vf:149,Li:154,Ah:311,Mf:153,RENDERER:152,ue:156,Hk:151,Jg:158,Mi:294,Xo:157,Kg:160,Qf:159,ns:256,Bw:328};_.Cra={zh:161,Ij:162};
+_.P.D={};
+_.P.wp=function(){function a(a){for(var b=[],c=0,d;d=a[c++];)b.push(f(d));return b}function b(a){for(var b=[],c=0,d;d=a[c++];)d=d.api||d,b.push({api:d,Mb:d.a,va:d.b,Ab:d.c,O:d.d,qc:d.e,Xj:d.f,Wj:d.g,getId:d.h,Fd:d.i,Wd:d.j,qa:d.k,Le:d.l,Zh:d.m});return b}function c(a){var b="";if(a)for(var c=0,d;d=a[c++];)(d=i[d])&&(b+=d);return b}function d(a){return a.Ab()+c(a.qc())}function e(a){return"string"==typeof a}function f(a){function b(){return d(a)}return a.api||{a:a.Mb,b:a.va,c:a.Ab,d:a.O,e:a.qc,f:a.Xj,
+g:a.Wj,h:b,i:a.Fd,j:a.Wd,k:a.qa,l:a.Le,m:a.Zh}}var g=/\D+$/,i={},h={};h.a=_.yZ.Fo;h.b=_.yZ.Km;h.c=_.yZ.$m;h.d=_.yZ.Un;h.e=_.yZ.Mo;h.g=_.yZ.Fn;h.i=_.yZ.Rn;h.j=_.yZ.Lo;h.l=_.yZ.jo;h.m=_.yZ.ro;h.n=_.yZ.Pn;h.p=_.yZ.Co;h.q=_.yZ.Io;h.r=_.yZ.Oo;h.s=_.yZ.Of;h.t=_.yZ.Ap;h.v=_.yZ.On;h.w=_.yZ.yp;h.x=_.yZ.Eo;h.z=_.yZ.jm;h.A=_.yZ.Fm;h.C=_.yZ.Sm;h.E=_.yZ.In;h.F=_.yZ.bp;h.G=_.yZ.pn;h.H=_.yZ.Nn;h.I=_.yZ.Fg;h.J=_.yZ.Zn;h.K=_.yZ.eo;h.L=_.yZ.fo;h.N=_.yZ.Po;h.P=_.yZ.Do;h.Q=_.yZ.hp;h.R=_.yZ.Kn;h.S=_.yZ.Yo;h.T=_.yZ.bn;
+h.V=_.yZ.Jn;h.W=_.yZ.gp;h.X=_.yZ.Go;h.Y=_.yZ.nn;for(var m in h)i[h[m]]=m;_.P.zb=function(a){var b={};if(a)for(var c=0;c<a.length;++c)b[a[c]]=_.l;return b};_.P.Kj=function(b){var c=a(b.La());return b.api||{a:b.Aa,b:function(){return c}}};_.P.yr=a;_.P.xv=function(a){var a=a.api||a,c=b(a.b());return{api:a,Aa:a.a,La:function(){return c}}};_.P.Rv=b;_.P.Zj=function(a){return a?(a=a.toLowerCase(),"zh-tw"==a||"zh-cn"==a||"ja"==a||"ko"==a):_.A};_.P.getTime=function(){return(new window.Date).getTime()};_.P.Jq=
+function(a){var b=[];if(a)if(e(a)){if(a=a.match(g))for(var a=a[0],c=0,d;c<a.length;c++)d=a.charAt(c),b.push(h[d])}else return a;return b};_.P.vx=c;_.P.qx=d;_.P.Zd=function(a,b,c){b in a||(a[b]=[162]);a[b].push(c)};_.P.vf=e;_.P.$j=function(a){return"number"==typeof a}};_.P.wp();
+_.P.Ki=function(){return{$:function(){var a=_.xZ;return{Ec:"hp",le:"google.com",Be:"",ic:"en",Rd:"",Xe:"",rd:"",authuser:0,Ve:"",xc:"",Ed:_.A,Ff:"",Pc:"",kb:0,Hf:_.p,Hd:_.A,ne:_.A,Kf:_.A,Ue:_.A,Xa:_.P.zb([a.Rm,a.qk,a.nf]),li:_.A,$g:_.l,Vd:10,Ld:_.l,Md:_.l,jg:_.A,of:_.A,qh:_.A,Xd:_.l,Mg:_.A,Tf:500,ee:_.A,jf:_.l,lj:_.l,Ge:_.A,Ud:"",Rh:"//www.google.com/textinputassistant",Sh:"",Th:7,Jf:_.A,Ad:_.A,yi:_.l,zi:_.A,qd:_.A,je:_.A,sf:_.A,rf:_.A,Qc:1,vh:_.l,ze:_.l,Yc:_.A,gf:_.A,Hh:10,Td:_.A,yf:0,Qi:_.A,fg:_.l,
+eh:_.A,we:window.document.body,kh:_.l,xh:_.p,Qa:{},Af:{},lf:0,Ch:_.A,lh:_.l,ob:_.A,kk:_.p,$f:_.A,fk:_.p,lk:_.p,Zg:_.A,Bh:_.A,Lf:1,Lj:1,spellcheck:_.A,Gh:_.A,vg:"Search",Vc:"I'm  Feeling Lucky",Bi:"",sg:"Learn more",ug:"Remove",tg:"This search was removed from your Web History",kf:"",Nj:"Did you mean:",eg:_.p,fe:0,Bb:"",nd:"",isRtl:_.A,gd:"absolute",zg:_.A,hh:_.A,Hc:_.p,rg:_.l,nk:0,Sc:[0,0,0],Ng:_.p,yh:_.p,Lg:[0],ng:0,Uf:1,Zc:"",qi:"",ni:"",Yh:_.p,Oi:"",Ni:"",Fi:1,Kd:{},Zf:_.l}},normalize:function(a){return!a?
+_.p:{a:a.Ec,b:a.le,c:a.Be,d:a.ic,e:a.Rd,f:a.Xe,g:a.rd,h:a.xc,i:a.kb,j:a.Hd,k:a.ne,l:a.Xa,m:a.eg,q:a.Vd,r:a.$g,t:a.jg,u:a.qh,v:a.Xd,w:a.jf,x:a.Ge,y:a.Ad,z:a.qd,aa:a.sf,ab:a.rf,ac:a.Qc,ae:a.gf,af:a.Hh,ag:a.Lf,aj:a.Lj,ak:a.spellcheck,al:a.Gh,am:a.vg,an:a.Vc,ao:a.sg,ap:a.ug,aq:a.tg,ar:a.Bb,as:a.nd,at:a.isRtl,av:a.hh,aw:a.Hc,ax:a.nk,ay:a.li,az:a.vh,ba:a.ze,bb:a.zg,bc:a.Sc,bd:a.Hf,bg:a.authuser,bh:a.Uf,bi:a.Yc,bj:a.of,bk:a.Kf,bo:a.Jf,bq:a.Td,br:a.Ud,bs:a.Zc,bt:a.je,bu:a.yf,bv:a.Qi,bx:a.fg,bz:a.ng,ca:a.we,
+cb:a.yi,cc:a.zi,cd:a.Bi,ce:a.Mg,cf:a.Tf,ch:a.eh,ci:a.xh,ck:a.lf,cl:a.Lg,cm:a.gd,cn:a.kh,cp:a.Ch,cq:a.Ff,cr:a.lh,cs:a.Rh,ct:a.Ed,cu:a.Ue,cv:a.Bh,cw:a.kf,cz:a.Th,da:a.qi,db:a.ni,de:a.Kd,df:a.Zf,dg:a.Qa,dh:a.Af,di:a.Yh,dj:a.Oi,dk:a.Ni,dl:a.Pc,dm:a.rg,dn:a.ob,"do":a.fe,dp:a.Ng,dq:a.yh,dr:a.kk,ds:a.Ve,dt:a.Sh,du:a.Ld,dv:a.Md,dw:a.lj,dx:a.ee,dy:a.$f,dz:a.fk,ea:a.lk,eb:a.Zg,ec:a.Nj,ed:a.Fi}},translate:function(a){return{Ec:a.a,le:a.b,Be:a.c,ic:a.d,Rd:a.e,Xe:a.f,rd:a.g,xc:a.h,kb:a.i,Hd:a.j,ne:a.k,Xa:a.l,
+eg:a.m,Vd:a.q,$g:a.r,jg:a.t,qh:a.u,Xd:a.v,jf:a.w,Ge:a.x,Ad:a.y,qd:a.z,sf:a.aa,rf:a.ab,Qc:a.ac,gf:a.ae,Hh:a.af,Lf:a.ag,Lj:a.aj,spellcheck:a.ak,Gh:a.al,vg:a.am,Vc:a.an,sg:a.ao,ug:a.ap,tg:a.aq,Bb:a.ar,nd:a.as,isRtl:a.at,hh:a.av,Hc:a.aw,nk:a.ax,li:a.ay,vh:a.az,ze:a.ba,zg:a.bb,Sc:a.bc,Hf:a.bd,authuser:a.bg,Uf:a.bh,Yc:a.bi,of:a.bj,Kf:a.bk,Jf:a.bo,Td:a.bq,Ud:a.br,Zc:a.bs,je:a.bt,yf:a.bu,Qi:a.bv,fg:a.bx,ng:a.bz,we:a.ca,yi:a.cb,zi:a.cc,Bi:a.cd,Mg:a.ce,Tf:a.cf,eh:a.ch,xh:a.ci,lf:a.ck,Lg:a.cl,gd:a.cm,kh:a.cn,
+Ch:a.cp,Ff:a.cq,lh:a.cr,Rh:a.cs,Ed:a.ct,Ue:a.cu,Bh:a.cv,kf:a.cw,Th:a.cz,qi:a.da,ni:a.db,Kd:a.de,Zf:a.df,Qa:a.dg,Af:a.dh,Yh:a.di,Oi:a.dj,Ni:a.dk,Pc:a.dl,rg:a.dm,ob:a.dn,fe:a["do"],Ng:a.dp,yh:a.dq,kk:a.dr,Ve:a.ds,Sh:a.dt,Ld:a.du,Md:a.dv,lj:a.dw,ee:a.dx,$f:a.dy,fk:a.dz,lk:a.ea,Zg:a.eb,Nj:a.ec,Fi:a.ed}}}};_.P.bw=_.p;_.P.Nm=/<\/?(?:b|em)>/gi;_.P.Mk=_.l;_.P.Ci=_.l;_.P.ff="gstl_";_.BZ={Kl:1,Hw:2,Ll:3,Hg:4,xg:5,pj:6,oj:7,Sk:8,Gw:9,Kw:10,Ss:11,ut:12,tt:13,Hr:14,Ts:15,Jw:16};
+_.CZ={El:8,uk:9,pk:13,gg:27,Us:32,Cl:37,yj:38,Dl:39,xj:40,tl:46};_.Dra={Dm:0,Mm:1,Lm:2};_.Era={KB:"/complete/search",Au:"/complete/init",Lu:"/complete/deleteitems"};_.Fra={ul:"a",Vs:"b"};_.Gra={Lt:"a",il:"b",Qt:"c",Rt:"d",Tt:"e",oy:"f",sy:"g",UD:"h",TD:"i",py:"j",WD:"k",fw:"l",Ry:"m"};_.Hra={Lt:"a",il:"b",Qt:"c",Rt:"d",Tt:"e",oy:"f",sy:"g",py:"h",Sr:"i",Ry:"j"};
+_.P.Qo=function(){var a=_.P.ta,b=0,c={},d={},e={},f={},g={};return{jq:function(){return b++},Ji:function(a,b,c){d[a]=c;g[a]=[b]},register:function(b,c,d){var n=f[b];n?n!=a&&(f[b]=a):f[b]=d;(n=g[b])?n.push(c):g[b]=[c];e[c]=d},Vp:function(){return g},$:function(b,g){var m=c[b];return m?m:(m=d[b])?c[b]=m():!g?(m=f[b],!m||m==a?_.p:m()):(m=e[g])?m():_.p}}};_.P.ja=_.P.Qo();
+_.P.ln=function(a,b,c,d,e,f){function g(){if(y)for(var a=0,b;b=u[a++];)b.Ga&&b.Ga()}function i(a){for(var b in a){var c=b,d=a[c];if(d!=n.zh)if(q[c]){for(var e=C[c]||[],f=0,g=_.k;f<d.length;++f)(g=h(c,d[f]))&&e.push(g);C[c]=e}else(d=h(c,d))&&(s[c]=d)}}function h(a,b){var e;if(b&&b instanceof window.Object)e=b;else if(e=w.$(a,b),!e)return _.p;if(e.Sd){var f=e.Sd();if(f)for(var s=0,g,j,t;g=f[s++];){t=_.A;j=g.O();if(q[j]){if(t=v[j]){t.push(g);continue}t=_.l}v[j]=t?[g]:g}}x.push([e,a]);u.push(e);e.Ba&&
+e.Ba(c,d);return e}function m(a){for(var b=0,c=0,d;d=x[c++];)d[0]==a&&(b=d[1]);return b}var n=_.Cra,j=_.AZ,q=_.P.zb([j.Qf,j.Jh,j.Vf,j.Mf,j.Li,j.Ah,j.RENDERER,j.ue,j.Hk,j.Jg,j.Mi,j.Kg]),t=[j.Nc,j.Ja,j.Ca,j.Nb,j.$a,j.Ua,j.vb,j.Oc,j.Hb,j.Zb,j.yb,j.Bd,j.Lh,j.Za,j.tc,j.Cd,j.Ub,j.Ka,j.Gj,j.Qd],r=[j.Ub,j.Vf,j.Xf,j.Za,j.yb,j.Ua,j.Ca,j.vb,j.Ka,j.Kg,j.Sf,j.Nb,j.Oc,j.RENDERER,j.Mf,j.Qd,j.Hb,j.$a,j.tc,j.Jg,j.Jh,j.gi,j.Yb,j.Zb,j.Tb,j.Kh,j.Wb,j.De,j.Pf,j.Od,j.Yd,j.Wa,j.ef,j.Eb,j.wb],s={},C={},v={},x=[],u=[],y=
+_.A,w=_.P.ja,F={ka:function(a){g();for(var b=0,c;c=u[b++];)c.ka&&c.ka(a);y=_.l},Ga:g,isActive:function(){return y},get:function(a,b){var c=s[a];if(c)return c.Z?c.Z(m(b)):{}},Pa:function(a,b){var c=C[a];if(c){for(var d=[],e=m(b),f=0,s;s=c[f++];)d.push(s.Z?s.Z(e):{});return d}return[]},Pb:function(){return a},uc:function(){return e},Pp:function(a,b){var c=C[j.Qf];if(c)for(var d=0,e;e=c[d++];)if(e.fa()==a)return e.Z?e.Z(m(b)):{};return _.p}};if(f.Zf){var L=w.Vp(),H,da,z,G;for(G in L){var U=G;H=L[U];
+da=q[U];if(z=b[U]){if(z!=n.zh&&da&&z.length){da=b;z=z.slice(0);for(var K=[],W={},I=0,ia=_.k,Z=_.k;Z=z[I++];)Z instanceof window.Object&&(ia=Z.fa(),W[ia]||(K.push(Z),W[ia]=1),z.splice(--I,1));I=_.P.zb(z);I[n.Ij]&&(I=_.P.zb(z.concat(H)),delete I[n.Ij]);for(ia in I)W[ia]||K.push((0,window.parseInt)(ia,10));da[U]=K}}else b[U]=da?H:H[0]}}i(b);for(L=0;G=t[L++];)b[G]||(da=h(G,_.k))&&(s[G]=da);i(v);u.sort(function(a,b){var c=_.P.indexOf(a.O(),r),d=_.P.indexOf(b.O(),r);return 0>c?1:0>d?-1:c-d});for(L=0;b=
+u[L++];)b.la&&b.la(F);for(L=0;b=u[L++];)b.za&&b.za(f);for(L=0;b=u[L++];)b.ka&&b.ka(f);y=_.l;return F};
+_.P.Ei=function(a,b,c){function d(){return a}function e(){return r}function f(){return s}function g(){return b}function i(){return c||""}function h(){return u}function m(a,b){q(a,b)}function n(a,b){q(a,b,_.l)}function j(){y||(w=F=_.l)}function q(a,b,c){y||(w=_.l,C[a]=b,c&&(v[a]=b))}var t=_.P.iq(),r,s,C={},v={},x,u,y=_.A,w=_.A,F=_.A,L=_.A,H={getId:function(){return t},Sj:function(){var a=(0,window.parseInt)(t,36);return(0,window.isNaN)(a)?-1:a},Aa:d,Xi:e,hb:f,Lb:g,qa:function(){return C},gj:function(){return x},
+yl:i,kg:h,Pj:function(){return{Aa:d,Xi:e,hb:f,Lb:g,yl:i,kg:h,setParameter:m,Gf:n,B:j}},setParameter:m,Gf:n,B:j,Eq:function(){return F},zq:function(){w=L=_.l},Gq:function(d,e,f){return!w&&a==d&&b.equals(e)&&c==f},ek:function(){return L},Op:function(){y||(u=_.P.getTime(),"cp"in v||n("cp",b.getPosition()),q("gs_id",t),x=_.P.Ke(v)+":"+a,w=y=_.l)}};r=a.toLowerCase();s=_.P.wc(r);return H};
+_.P.dd=function(a,b,c,d,e,f,g,i){function h(){return b}function m(){return c}function n(){return!!c&&!!c[0]}var j=_.l,q,t={Cb:function(){return a},Aa:h,ye:function(){return n()?c[0]:_.p},La:m,Db:n,qa:function(){return d},Ih:function(){return e},ge:function(){return f},$h:function(){return g},Yj:function(){return i},ik:function(){g=_.l},O:function(){return j},Rj:function(){q||(q={Aa:h,La:m});return q}};c?c.length&&33==c[0].O()&&(f=j=_.A):c=[];d||(d=_.P.Eg);return t};
+_.P.ud=function(a,b,c,d,e,f,g){function i(a){if(e)for(var b=0,c;c=a[b++];)if(-1!=_.P.indexOf(c,e))return _.l;return _.A}var h={Ej:"za",Fj:"zb"},m=_.A,n={Mb:function(){return a},va:function(){return b},Ab:function(){return c},O:function(){return d},Le:function(){return g.ya(h.Ej)},Zh:function(){return g.ya(h.Fj)},qc:function(){return e||[]},Xj:function(a){return!!e&&i([a])},Wj:i,Fd:function(){return f||[]},qa:function(){return g},Wd:function(){return m}},j=_.xZ;switch(d){case j.nf:case j.Ym:case j.Zk:case j.Jo:case j.Gm:case j.Hm:case j.Zi:case j.$i:case j.Ck:case j.Zm:case j.Fl:case j.wl:case j.xl:case j.vn:case j.jp:case j.ko:m=
+_.l}g||(g=_.P.Eg);return n};
+_.P.Cp=function(){function a(a){return a?-1<a.indexOf(" ")||f.test(a):_.A}var b=/\s/g,c=/\u3000/g,d=/^\s/,e=/\s+$/,f=/\s+/,g=/\s+/g,i=/^\s+|\s+$/g,h=/^\s+$/,m=/<[^>]*>/g,n=/&nbsp;/g,j=/&#x3000;/g,q=[/&/g,/&amp;/g,/</g,/&lt;/g,/>/g,/&gt;/g,/"/g,/&quot;/g,/'/g,/&#39;/g,/{/g,/&#123;/g],t=window.document.getElementsByTagName("head")[0],r=0;_.P.Fe=function(a,b){function c(){return b}b===_.k&&(b=a);return{getPosition:c,Yi:function(){return a},Ul:c,ku:function(){return a<b},equals:function(c){return c&&a==
+c.Yi()&&b==c.Ul()}}};_.P.ub=function(a,b,c,d){if(b==_.p||""===b){if(!d)return;b=""}c.push(a+"="+(0,window.encodeURIComponent)(""+b))};_.P.Ke=function(a){var b=[],c;for(c in a)_.P.ub(c,a[c],b);return b.join("&")};_.P.ht=function(a){var b={},c=window.Math.max(a.indexOf("?"),a.indexOf("#")),a=a.substr(c+1);if(0<=c&&a)for(var c=a.split("&"),a=0,d;a<c.length;++a)if(d=c[a])d=d.split("="),b[d[0]]=d[1]||"";return b};_.P.Gc=function(a){return!!a&&!h.test(a)};_.P.Qk=function(a){return e.test(a)};_.P.escape=
+function(a){for(var b=q.length,c=0;c<b;c+=2)a=a.replace(q[c],q[c+1].source);return a};_.P.unescape=function(a){for(var b=q.length,c=0;c<b;c+=2)a=a.replace(q[c+1],q[c].source);a=a.replace(n," ");return a.replace(j,"\u3000")};_.P.vj=function(a){return a.replace(_.P.Nm,"")};_.P.mk=function(a){return a.replace(m,"")};_.P.yq=function(d){return a(d)?(d=d.replace(c,"&#x3000;"),d.replace(b,"&nbsp;")):d};_.P.jx=a;_.P.wc=function(b,c){return a(b)?(b=b.replace(g," "),b.replace(c?i:d,"")):b};_.P.trim=function(a){return a.replace(i,
+"")};_.P.Bx=function(a){return a.replace(e,"")};_.P.jc=function(a,b,c){c&&(a=a.toLowerCase(),b=b.toLowerCase());return b.length<=a.length&&a.substring(0,b.length)==b};_.P.kx=function(a,b,c){c&&(a=a.toLowerCase(),b=b.toLowerCase());c=a.length-b.length;return-1<c&&a.lastIndexOf(b)==c};_.P.Hp=function(a,b){return!a&&!b?_.l:!!a&&!!b&&a.toLowerCase()==b.toLowerCase()};_.P.Rc=function(a){window.clearTimeout(a)};_.P.ta=(0,_.ca)();_.P.wi=function(){return t};_.P.iq=function(){return(r++).toString(36)};_.P.Fk=
+function(a){return _.P.Bn.test(a)};_.P.Nq=function(a,b){return _.P.ud(a.Mb(),a.va(),b,a.O(),a.qc(),a.Fd(),a.qa())};_.P.Ar=function(a){return!!a.qa().fj("c")&&!_.P.Qk(a.Aa())};_.P.indexOf=function(a,b){if(b.indexOf)return b.indexOf(a);for(var c=0,d=b.length;c<d;++c)if(b[c]===a)return c;return-1};_.P.Mj=function(a,b){return a.Ra()-b.Ra()}};_.P.Cp();
+_.P.Rf=function(a){return{contains:function(b){return b in a},fj:function(b){return!!a[b]},qg:function(b){return a[b]||0},ya:function(b){return a[b]||""},rv:function(b){return a[b]||_.p}}};_.P.Eg=_.P.Rf({});
+_.P.Dp=function(){function a(a,b){var c=window.document.createElement(a);b&&(c.className=b);return c}function b(b){return a("div",b)}function c(a,b,c){var d=a.style;"INPUT"!=a.nodeName&&(c+=1);d.left=d.right="";d[b]=c+"px"}function d(a){return"rtl"==a?"right":"left"}function e(a,b){var c=a.getElementsByTagName("input");if(c)for(var d=0,e;e=c[d++];)if(e.name==b&&"submit"!=e.type.toLowerCase())return e;return _.p}function f(a){a&&(a.preventDefault&&a.preventDefault(),a.returnValue=_.A);return _.A}function g(a){return a?
+a.ownerDocument||a.document:window.document}function i(a){return a?(a=g(a),a.defaultView||a.parentWindow):window}function h(a,b,c){return b+a*(c-b)}function m(a){return n?a+"":[_.P.Wf?"progid:DXImageTransform.Microsoft.Alpha(":"alpha(","opacity=",window.Math.floor(100*a),")"].join("")}var n=window.document.documentElement.style.opacity!=_.k,j={rtl:"right",ltr:"left"};_.P.Ak=function(a,b){if(a.setSelectionRange)a.setSelectionRange(b,b);else if(a.createTextRange)try{var c=a.createTextRange();c.collapse(_.l);
+c.moveStart("character",b);c.select()}catch(d){}};_.P.Lb=function(a){try{var b,c;if("selectionStart"in a)b=a.selectionStart,c=a.selectionEnd;else{var d=a.createTextRange(),e=g(a).selection.createRange();d.inRange(e)&&(d.setEndPoint("EndToStart",e),b=d.text.length,d.setEndPoint("EndToEnd",e),c=d.text.length)}if(b!==_.k)return _.P.Fe(b,c)}catch(f){}return _.p};_.P.rk=function(a,b){for(var c=0,d=0;a&&!(b&&a==b);){c+=a.offsetTop;d+=a.offsetLeft;try{a=a.offsetParent}catch(e){a=_.p}}return{He:c,$b:d}};
+_.P.pd=function(a){try{return g(a).activeElement==a}catch(b){}return _.A};_.P.zk=function(a){var b=_.CZ;return a==b.yj||a==b.xj};_.P.wa=a;_.P.Fc=function(){var b=a("table");b.cellPadding=b.cellSpacing=0;b.style.width="100%";return b};_.P.Na=b;_.P.Dg=function(a,c){var d=b(a),e=d.style;e.background="transparent";e.color="#000";e.padding=0;e.position="absolute";c&&(e.zIndex=c);e.whiteSpace="pre";return d};_.P.Uc=function(a,b){a.innerHTML!=b&&(b&&(_.P.Wf?b=_.P.yq(b):_.P.Nk&&(b=['<pre style="font:inherit;margin:0">',
+b,"</pre>"].join(""))),a.innerHTML=b)};_.P.jk=function(a,b){a.dir!=b&&(c(a,d(b),0),a.dir=b)};_.P.qr=c;_.P.gr=d;_.P.hk=function(a,b){a.dir!=b&&(a.dir=b,a.style.textAlign=j[b])};_.P.Oe=function(b,c,d){if(e(b,c))return _.p;var f=a("input");f.type="hidden";f.name=c;d&&(f.value=d);return b.appendChild(f)};_.P.Pi=e;_.P.sr=function(a){var b=window.document.createEvent("KeyboardEvent");b.initKeyEvent("keypress",_.l,_.l,_.p,_.A,_.A,_.l,_.A,27,0);a.dispatchEvent(b)};_.P.preventDefault=f;_.P.Gb=function(a){if(a=
+a||window.event)a.stopPropagation&&a.stopPropagation(),a.cancelBubble=a.cancel=_.l;return f(a)};_.P.yk=function(a,b){b.parentNode.insertBefore(a,b.nextSibling)};_.P.hi=function(a){var a=a.insertCell(-1),b=_.P.wa("a");b.href="#ifl";b.className="gssb_j gss_ifl";a.appendChild(b);return b};_.P.getComputedStyle=function(a,b){var c=i(a);return(c=c.getComputedStyle?c.getComputedStyle(a,""):a.currentStyle)?c[b]:_.p};_.P.Vj=function(a){var b=a||window,a=b.document,c=b.innerWidth,b=b.innerHeight;if(!c){var d=
+a.documentElement;d&&(c=d.clientWidth,b=d.clientHeight);c||(c=a.body.clientWidth,b=a.body.clientHeight)}return{bf:c,Ef:b}};_.P.Wp=function(a){return(a||window).document.documentElement.clientWidth};_.P.ki=function(a,b,c,d,e){function f(a,b){g.push(a,a?"px":"",b?"":" ")}var g=[];f(a);f(e?d:b);f(c);f(e?b:d,_.l);return g.join("")};_.P.ij=function(a){a=a.style;a.border="none";a.padding=_.P.oe||_.P.gb?"0 1px":"0";a.margin="0";a.height="auto";a.width="100%"};_.P.Tl=function(a){return(n?"opacity":"filter")+
+":"+m(a)+";"};_.P.Cr=function(a,b){a.style[n?"opacity":"filter"]=m(b)};_.P.Si=function(a,b){a.innerHTML="";a.appendChild(window.document.createTextNode(b))};_.P.Eh=function(a){var b={};if(a)for(var c=0,d;d=a[c++];)b[d.Jb()]=d;return b};_.P.zm=g;_.P.oc=i;_.P.interpolate=h;_.P.zt=function(a,b,c){return window.Math.round(h(a,b,c))}};_.P.Dp();
+_.P.Om=function(){function a(a){_.P.vf(a)&&(a=d(a));var b="";if(a){for(var c=a.length,e=0,f=0,g=0;c--;){f<<=8;f|=a[g++];for(e+=8;6<=e;)var i=f>>e-6&63,b=b+"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789-_".charAt(i),e=e-6}e&&(f<<=8,e+=8,i=f>>e-6&63,b+="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789-_".charAt(i))}return b}function b(a){var b=[];if(a)for(var c=0,d=0,e=0;e<a.length;++e){var f=a.charCodeAt(e);if(32>f||127<f||!h[f-32])return[];c<<=6;c|=h[f-32]-1;d+=6;8<=
+d&&(b.push(c>>d-8&255),d-=8)}return b}function c(a,b){var c={};c.Ia=(0,window.Array)(4);c.buffer=(0,window.Array)(4);c.Yq=(0,window.Array)(4);c.padding=(0,window.Array)(64);c.padding[0]=128;for(var h=1;64>h;++h)c.padding[h]=0;e(c);var h=(0,window.Array)(64),s;64<b.length?(e(c),g(c,b),s=i(c)):s=b;for(var n=0;n<s.length;++n)h[n]=s[n]^92;for(n=s.length;64>n;++n)h[n]=92;e(c);for(n=0;64>n;++n)c.buffer[n]=h[n]^106;f(c,c.buffer);c.total=64;g(c,d(a));s=i(c);e(c);f(c,h);c.total=64;g(c,s);return i(c)}function d(a){for(var b=
+[],c=0,d=0;d<a.length;++d){var e=a.charCodeAt(d);128>e?b[c++]=e:(2048>e?b[c++]=e>>6|192:(b[c++]=e>>12|224,b[c++]=e>>6&63|128),b[c++]=e&63|128)}return b}function e(a){a.Ia[0]=1732584193;a.Ia[1]=4023233417;a.Ia[2]=2562383102;a.Ia[3]=271733878;a.Pe=a.total=0}function f(a,b){for(var c=a.Yq,d=0;64>d;d+=4)c[d/4]=b[d]|b[d+1]<<8|b[d+2]<<16|b[d+3]<<24;for(var d=a.Ia[0],e=a.Ia[1],f=a.Ia[2],g=a.Ia[3],i,h,y,w=0;64>w;++w)16>w?(i=g^e&(f^g),h=w):32>w?(i=f^g&(e^f),h=5*w+1&15):48>w?(i=e^f^g,h=3*w+5&15):(i=f^(e|~g),
+h=7*w&15),y=g,g=f,f=e,e=e+(((d+i+n[w]+c[h]&4294967295)<<m[w]|(d+i+n[w]+c[h]&4294967295)>>>32-m[w])&4294967295)&4294967295,d=y;a.Ia[0]=a.Ia[0]+d&4294967295;a.Ia[1]=a.Ia[1]+e&4294967295;a.Ia[2]=a.Ia[2]+f&4294967295;a.Ia[3]=a.Ia[3]+g&4294967295}function g(a,b,c){c||(c=b.length);a.total+=c;for(var d=0;d<c;++d)a.buffer[a.Pe++]=b[d],64==a.Pe&&(f(a,a.buffer),a.Pe=0)}function i(a){var b=(0,window.Array)(16),c=8*a.total,d=a.Pe;g(a,a.padding,56>d?56-d:64-(d-56));for(var e=56;64>e;++e)a.buffer[e]=c&255,c>>>=
+8;f(a,a.buffer);for(e=d=0;4>e;++e)for(c=0;32>c;c+=8)b[d++]=a.Ia[e]>>c&255;return b}var h=[0,0,0,0,0,0,0,0,0,0,0,0,0,63,0,0,53,54,55,56,57,58,59,60,61,62,0,0,0,0,0,0,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,0,0,0,0,64,0,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,0,0,0,0,0],m=[7,12,17,22,7,12,17,22,7,12,17,22,7,12,17,22,5,9,14,20,5,9,14,20,5,9,14,20,5,9,14,20,4,11,16,23,4,11,16,23,4,11,16,23,4,11,16,23,6,10,15,21,6,10,15,21,6,10,15,21,
+6,10,15,21],n=[3614090360,3905402710,606105819,3250441966,4118548399,1200080426,2821735955,4249261313,1770035416,2336552879,4294925233,2304563134,1804603682,4254626195,2792965006,1236535329,4129170786,3225465664,643717713,3921069994,3593408605,38016083,3634488961,3889429448,568446438,3275163606,4107603335,1163531501,2850285829,4243563512,1735328473,2368359562,4294588738,2272392833,1839030562,4259657740,2763975236,1272893353,4139469664,3200236656,681279174,3936430074,3572445317,76029189,3654602809,
+3873151461,530742520,3299628645,4096336452,1126891415,2878612391,4237533241,1700485571,2399980690,4293915773,2240044497,1873313359,4264355552,2734768916,1309151649,4149444226,3174756917,718787259,3951481745];return{O:(0,_.E)(191),fa:function(){return _.P.D.ke},Z:function(){return{ej:a,Vk:b,Xk:c}}}};_.P.D.ke=192;_.P.ja.Ji(191,_.P.D.ke,_.P.Om);
+_.P.Pm=function(){function a(a,c){c=_.P.escape(_.P.vj(c));a=_.P.escape(_.P.wc(a,_.P.Ci));if(_.P.jc(c,a))return[a,"<b>",c.substr(a.length),"</b>"].join("");for(var d=[],e=[],f=c.length-1,g=0,i=-1,h;h=c.charAt(g);++g)if(" "==h||"\t"==h)d.length&&(h=g+1,e.push({t:d.join(""),s:i,e:h}),d=[],i=-1);else if(d.push(h),-1==i)i=g;else if(g==f){h=i;var m=g+1;e.push({t:d.join(""),s:h,e:m})}d=a.split(/\s+/);g={};for(f=0;i=d[f++];)g[i]=1;h=-1;d=[];m=e.length-1;for(f=0;i=e[f];++f)g[i.t]?(i=-1==h,f==m?d.push({s:i?
+f:h,e:f}):i&&(h=f)):-1<h&&(d.push({s:h,e:f-1}),h=-1);if(!d.length)return["<b>",c,"</b>"].join("");f=[];for(g=i=0;h=d[g];++g)(m=e[h.s].s)&&f.push("<b>",c.substring(i,m-1),"</b> "),i=e[h.e].e,f.push(c.substring(m,i));i<c.length&&f.push("<b>",c.substring(i),"</b> ");return f.join("")}return{O:(0,_.E)(150),fa:function(){return _.P.D.ve},Z:function(){return{bold:a}}}};_.P.D.ve=95;_.P.ja.Ji(150,_.P.D.ve,_.P.Pm);
+_.P.En=function(){function a(a){a=b(a,j,c);a=b(a,q,d);return b(a,r,e)}function b(a,b,c){for(var d,e,f=0;(d=b.exec(a))!=_.p;)e||(e=[]),f<d.index&&e.push(a.substring(f,d.index)),e.push(c(d[0])),f=b.lastIndex;if(!e)return a;f<a.length&&e.push(a.substring(f));return e.join("")}function c(a){return window.String.fromCharCode(a.charCodeAt(0)-65248)}function d(a){var b=a.charCodeAt(0);return 1==a.length?g.charAt(b-65377):65438==a.charCodeAt(1)?i.charAt(b-65395):h.charAt(b-65418)}function e(a){var b=a.charCodeAt(0);
+return 12443==a.charCodeAt(1)?m.charAt(b-12454):n.charAt(b-12495)}function f(a){return eval('"\\u30'+a.split(",").join("\\u30")+'"')}var g=f("02,0C,0D,01,FB,F2,A1,A3,A5,A7,A9,E3,E5,E7,C3,FC,A2,A4,A6,A8,AA,AB,AD,AF,B1,B3,B5,B7,B9,BB,BD,BF,C1,C4,C6,C8,CA,CB,CC,CD,CE,CF,D2,D5,D8,DB,DE,DF,E0,E1,E2,E4,E6,E8,E9,EA,EB,EC,ED,EF,F3,9B,9C"),i=f("F4__,AC,AE,B0,B2,B4,B6,B8,BA,BC,BE,C0,C2,C5,C7,C9_____,D0,D3,D6,D9,DC"),h=f("D1,D4,D7,DA,DD"),m=f("F4____,AC_,AE_,B0_,B2_,B4_,B6_,B8_,BA_,BC_,BE_,C0_,C2__,C5_,C7_,C9______,D0__,D3__,D6__,D9__,DC"),
+n=f("D1__,D4__,D7__,DA__,DD"),j=/[\uFF01-\uFF5E]/g,q=(0,window.RegExp)("([\uff73\uff76-\uff84\uff8a-\uff8e]\uff9e)|([\uff8a-\uff8e]\uff9f)|([\uff61-\uff9f])","g"),t="(["+f("A6,AB,AD,AF,B1,B3,B5,B7,B9,BB,BD,BF,C1,C4,C6,C8,CF,D2,D5,D8,DB")+"]\u309b)|(["+f("CF,D2,D5,D8,DB")+"]\u309c)",r=(0,window.RegExp)(t,"g");return{O:(0,_.E)(146),fa:function(){return _.P.D.Ie},Z:function(){return{um:a}}}};_.P.D.Ie=12;_.P.ja.register(146,_.P.D.Ie,_.P.En);
+_.P.mn=function(a,b,c,d,e){var f=_.P.nc?"-moz-":_.P.gb?"-ms-":_.P.oe?"-o-":_.P.wd?"-webkit-":"",g="."+_.P.ff+d,i=(0,window.RegExp)("(\\.("+e.join("|")+")\\b)"),h=[];return{addRule:function(a,d){if(b){if(c){for(var e=a.split(","),f=[],t=0,r;r=e[t++];)r=i.test(r)?r.replace(i,g+"$1"):g+" "+r,f.push(r);a=f.join(",")}h.push(a,"{",d,"}")}},Gp:function(){if(b&&h.length){b=_.A;var c=_.P.wa("style");c.setAttribute("type","text/css");(a||_.P.wi()).appendChild(c);var d=h.join("");h=_.p;c.styleSheet?c.styleSheet.cssText=
+d:c.appendChild(window.document.createTextNode(d))}},prefix:function(a,b){var c=[a,b||""];f&&(c=c.concat(b?[a,f,b]:[f,a]));return c.join("")}}};
+_.P.to=function(){function a(a){var b=0;a&&(g||c(),d(),a in i?b=i[a]:(_.P.Uc(g,_.P.escape(a)),i[a]=b=g.offsetWidth,_.P.Uc(g,"")));return b}function b(){g||c();d();h||(_.P.Uc(g,"|"),h=g.offsetHeight);return h}function c(){g=_.P.Dg(e.Bb);g.style.visibility="hidden";f.appendChild(g)}function d(){var a=_.P.getComputedStyle(g,"fontSize");if(!m||a!=m)i={},h=_.p,m=a}var e,f,g,i,h,m;return{Ba:function(a){f=a.Ph()||window.document.body},za:function(a){e=a},O:(0,_.E)(147),fa:function(){return _.P.D.Zb},Z:function(){return{getWidth:a,
+getHeight:b}}}};_.P.D.Zb=10;_.P.ja.register(147,_.P.D.Zb,_.P.to);
+_.P.hn=function(a){function b(b){return a[b]||c}function c(){}var d;a||(a={});d={Ic:b("a"),search:b("b"),We:b("c"),kd:b("d"),Id:b("e"),Te:b("f"),Vg:b("g"),Wg:b("h"),Rg:b("i"),$d:b("j"),Se:b("k"),Sg:b("l"),Ug:b("m"),$e:b("n"),yd:b("o"),zd:b("p"),Qe:b("q"),$c:b("r"),Wh:b("s"),Xh:b("t"),xd:b("u"),Oj:b("v"),Xg:b("w"),Og:b("x"),Tg:b("y"),Qg:b("z"),Pg:b("aa"),Yg:b("ab")};return{Ic:function(){return d.Ic()},search:function(a,b){d.search(a,b)},We:function(a){d.We(a)},kd:function(a){d.kd(a)},Id:function(a){return d.Id(a)},
+Te:function(a){d.Te(a)},Vg:function(a){d.Vg(a)},Wg:function(a){d.Wg(a)},Rg:function(a){d.Rg(a)},$d:function(a,b){d.$d(a,b)},Se:function(a,b){d.Se(a,b)},Sg:function(){d.Sg()},Ug:function(a){d.Ug(a)},$e:function(a){d.$e(a)},yd:function(){d.yd()},zd:function(){d.zd()},Qe:function(a){d.Qe(a)},$c:function(a,b){d.$c(a,b)},Wh:function(a){d.Wh(a)},Xh:function(){d.Xh()},xd:function(){d.xd()},Tg:function(){d.Tg()},Oj:function(){d.Oj()},Xg:function(a){d.Xg(a)},Og:function(){d.Og()},Qg:function(){d.Qg()},Pg:function(){d.Pg()},
+Yg:function(){d.Yg()}}};
+_.P.Yn=function(){function a(a,b,c,d){var f=a.getId(),g=a.Aa();s.Ed||e();var b=[n,j,q,"?",t?t+"&":"",b?b+"&":""].join(""),h=_.P.ub,a=[];h("q",g,a,_.P.Mk);s.Hd||h("callback","google.sbox.p"+m,a);if(r){for(var g=[],x=4+window.Math.floor(32*window.Math.random()),G=0,U;G<x;++G)U=0.3>window.Math.random()?48+window.Math.floor(10*window.Math.random()):(0.5<window.Math.random()?65:97)+window.Math.floor(26*window.Math.random()),g.push(window.String.fromCharCode(U));g=g.join("");h("gs_gbg",g,a)}h=_.P.wa("script");
+h.src=b+a.join("&");h.charset="utf-8";C[f]=h;v=s.Ed?d:c;i.appendChild(h);return _.l}function b(){return 0}function c(){return 0}function d(a){var b=C[a];b&&(i.removeChild(b),delete C[a])}function e(){for(var a in C)i.removeChild(C[a]);C={};v=_.p}function f(a){v&&v(a,_.A)}function g(a){a||(a=_.P.ta);var b=window.google;s.Hd?b.ac.h=a:b.sbox["p"+m]=a}var i=_.P.wi(),h,m,n,j,q,t,r,s,C={},v,x={la:function(a){h=a.get(127,x);m=a.uc().getId()},ka:function(a){s=a;0==a.kb&&(a=h.Dh(),n=a.protocol,j=a.host,q=
+a.Pc,t=a.fi,r="https:"==window.document.location.protocol,g(f),(new window.Image).src=n+j+"/generate_204")},O:(0,_.E)(149),fa:function(){return _.P.D.lc},Z:function(){return{Pd:a,Vh:d,Rb:_.P.ta,wf:b,xf:c}},Ga:function(){g(_.p);e()}};return x};_.P.D.lc=6;_.P.ja.register(149,_.P.D.lc,_.P.Yn);
+_.P.rn=function(){function a(a){if(!i)return _.l;for(var b=_.A,c=_.A,f=0,g;f<a.length;++f)if(g=a.charAt(f),!d.test(g)&&(e.test(g)?c=_.l:b=_.l,c&&b))return _.l;return _.A}function b(a,b,c){if(!i)return _.l;var e=f.test(c),t=g.test(b);return"ltr"==a?e||t||d.test(c)||d.test(b):!e||!t}function c(a){var b=h;i&&(e.test(a)?b="ltr":d.test(a)||(b="rtl"));return b}var d=(0,window.RegExp)("^[\x00- !-@[-`{-\u00bf\u00d7\u00f7\u02b9-\u02ff\u2000-\u2bff]*$"),e=(0,window.RegExp)("^[\x00- !-@[-`{-\u00bf\u00d7\u00f7\u02b9-\u02ff\u2000-\u2bff]*(?:\\d[\x00- !-@[-`{-\u00bf\u00d7\u00f7\u02b9-\u02ff\u2000-\u2bff]*$|[A-Za-z\u00c0-\u00d6\u00d8-\u00f6\u00f8-\u02b8\u0300-\u0590\u0800-\u1fff\u2c00-\ufb1c\ufdfe-\ufe6f\ufefd-\uffff])"),
+f=(0,window.RegExp)("^[\x00- !-@[-`{-\u00bf\u00d7\u00f7\u02b9-\u02ff\u2000-\u2bff]*(?:\\d|[A-Za-z\u00c0-\u00d6\u00d8-\u00f6\u00f8-\u02b8\u0300-\u0590\u0800-\u1fff\u2c00-\ufb1c\ufdfe-\ufe6f\ufefd-\uffff])"),g=(0,window.RegExp)("(?:\\d|[A-Za-z\u00c0-\u00d6\u00d8-\u00f6\u00f8-\u02b8\u0300-\u0590\u0800-\u1fff\u2c00-\ufb1c\ufdfe-\ufe6f\ufefd-\uffff])[\x00- !-@[-`{-\u00bf\u00d7\u00f7\u02b9-\u02ff\u2000-\u2bff]*$"),i=e.test("x"),h;return{Ba:function(a){h=a.Ae()},O:(0,_.E)(145),fa:function(){return _.P.D.Nc},
+Z:function(){return{B:a,Dq:b,jd:c}}}};_.P.D.Nc=1;_.P.ja.register(145,_.P.D.Nc,_.P.rn);
+_.P.An=function(){function a(a,b,c,d,e){var f=m(a);f||(f={},t.push({element:a,wq:f}));var s=f[b];if(!s){var s=f[b]=[],g=a.Sn?window:_.P.oc(a),q=s,f=function(a,c){if(q.length){var d;if(!(d=a)){d={};var e=g.event;if(e){if(e.keyCode)d.keyCode=e.keyCode;d.Bq=_.l}}d.Nd=c||b;for(var e=d,f,s,j=0,i;i=q[j++];)i.uh?s=_.l:f||(i.Cq?n(i,e):f=i.Cc(e));if(s)for(j=0;i=q[j];)i.uh?q.splice(j,1):++j;if(d.qf){delete d.qf;d.Bq&&(d=g.event||d);_.P.Gb(d);return d.returnValue=_.A}}};_.P.vf(b)?a.addEventListener?a.addEventListener(b,
+f,_.A):a["on"+b]=f:a[b]=f}d=d||0;s.push({Cq:!!e,uh:_.A,Ye:d,Cc:c});s.sort(j);c.Mp=b}function b(a,b){var c=m(a);if(c&&(c=c[b.Mp]))for(var d=0,e;e=c[d++];)if(e.Cc==b){e.uh=_.l;break}}function c(b,c,d,e){a(r,b,c,d,e)}function d(a){b(r,a)}function e(a,b){var c=b||{},d=r[a];d&&d(c,c.Nd)}function f(a,b,c){a.addEventListener?a.addEventListener(b,c,_.A):a.attachEvent("on"+b,c)}function g(a,b,c){a.removeEventListener?a.removeEventListener(b,c,_.A):a.detachEvent("on"+b,c)}function i(a){q?(s||(s=[],f(window,
+"message",h)),s.push(a),a=window.location.href,window.postMessage("sbox.df",/HTTPS?:\/\//i.test(a)?a:"*")):window.setTimeout(a,0)}function h(a){s&&(a&&(a.source==window&&"sbox.df"==a.data)&&s.length)&&(s.shift()(),s&&s.length&&window.postMessage("sbox.df",window.location.href))}function m(a){for(var b=0,c;b<t.length;++b)if(c=t[b],c.element==a)return c.wq;return _.p}function n(a,b){i(function(){a.Cc(b)})}function j(a,b){return b.Ye-a.Ye}var q=window.postMessage&&!(_.P.gb||_.P.Tn||_.P.oe),t=[],r={Sn:1},
+s;return{O:(0,_.E)(117),fa:function(){return _.P.D.Ja},Z:function(){return{Va:a,Oh:b,fc:c,B:d,Ha:e,listen:f,unlisten:g,defer:i}},Ga:function(){s=_.p}}};_.P.D.Ja=2;_.P.ja.register(117,_.P.D.Ja,_.P.An);
+_.P.Vn=function(){function a(){var a={};ra.Ha(13,a);!a.cancel&&Va.Xd&&ra.defer(qa.yg);Ua.Tg()}function b(){ra.Ha(12);Ua.xd()}function c(){Ha("rtl")}function d(){Ha("ltr")}function e(){qa.Uq()}function f(a){qa.Db()?qa.Tq():qa.Re(a)}function g(){var a=_.sra;if(Va.Qc==a.Bp)return _.A;if(Va.Qc==a.uo)return Ua.Yg(),_.A;var b=Ja();if(b)switch(Va.Qc){case a.Em:return Ga(b,_.l);case a.vo:return qa.Jd(b)}return _.A}function i(){Va.sf?Ba(5):(qa.Qb()?qa.yg():s(),F())}function h(a){ta&&a.Yi()==ta.length&&(Ma&&
+Ma.clear(),Va.rf&&Ba(2),Ua.Rg(ta))}function m(a){ya&&0==a.getPosition()&&ya.Al()}function n(a,b,c,d){Va.eh&&!a&&qa.Nh(_.l);Va.Mg&&(!qa.Qb()&&"mousedown"==c)&&qa.Re(b);var e;nb&&nb.Gq(a,b,c)?e=nb:nb=e=_.P.Ei(a,b,c);var f=b=_.A;if(a!=ta||"onremovechip"==c)_.P.jc(c,"key")?za.add(oa.$n):"paste"==c&&za.add(oa.Bo),b=_.l,ta=Xa=a||"",wa(),ra.Ha(1,{Nd:c,Ob:Za}),Ua.Te(a),f=_.P.getTime(),rb||(rb=f),yb=f,_.P.Gc(a)&&(d=_.l),f=_.l;var a=Ca.DONT_CARE,s=e.Pj(),g=Ya.Fb();if(sa)for(var q=0,j;j=sa[q++];)j=j.Kc(s,g),
+j>a&&(a=j);switch(a){case Ca.mj:d=_.l;break;case Ca.Gl:d=_.A}d?(b&&qa.Xq(),sb&&e.setParameter("gs_is",1),Ua.Ug(sb),ua.Gi(e),nb=_.p):f&&(qa.clear(),ua.nh());ra.Ha(2,{Nd:c})}function j(a){(sb=a)&&za.add(oa.Fg)}function q(a){zb!=a&&((zb=a)?Ua.Qg():Ua.Pg())}function t(a){Fa(a)}function r(){J.focus()}function s(){J.blur()}function C(){return J.pd()}function v(a,b){_.P.jc(a,ta,_.l)&&(a=ta+a.substr(ta.length));var c=_.P.Fe(a.length);n(a,c,"",b);Fa(a,_.l)}function x(a){v(a,_.l);Ab=_.P.getTime();za.add(oa.Ko)}
+function u(){n(ta,U(),"onremovechip")}function y(a){ta=Xa=a||"";wa();J.refresh();ra.Ha(4,{Ob:Za,input:a})}function w(){J.select()}function F(){ta!=Xa&&(ta=Xa=Xa||"",wa());ra.Ha(5,{input:Xa,Ag:qa.La(),Ob:Za});J.refresh();Ua.Wg(Xa)}function L(){Xa=ta}function H(){return J.Hi()}function da(){return Xa}function z(){return ta}function G(){return Za}function U(){return J.Lb()}function K(){return J.cg()}function W(){return J.getHeight()}function I(){return J.getWidth()}function ia(){return J.gh()}function Z(){return rb}
+function pa(){return yb}function Da(){return Ab}function D(){return 0!=Vb}function na(){if(Tb){if(Va.ee)return _.l;for(var a=0,b;b=Ub[a++];)if(b.isEnabled())return _.l}return _.A}function ma(a){if(a==ta)return _.l;var b=ta.length;return a.substr(0,b)==ta?Ka.Dq(Za,ta,a.substr(b)):_.A}function X(){J.Ai()}function Ba(a){Qa.search(ta,a)}function Ia(a){ta&&(ta=Xa="",J.clear(),ra.Ha(1),qa.clear(),Ua.Te(ta));a&&Ua.Og()}function Ta(){Ab=yb=rb=0}function Aa(a){J.Bf(a)}function Ea(){var a=Ja();a&&Ga(a)}function Ha(a){var b=
+U().getPosition();Za==a?qa.Db()&&b==ta.length&&(qa.Xc()?Va.ze&&(a=qa.Wc(),Qa.search(a.va(),6)):Va.vh&&g()):ya&&0==b&&ya.Al()}function Ja(){if(qa.Db()){var a=qa.Xc()?qa.Wc():qa.ye();if(a.Wd())return a}return _.p}function Ga(a,b){var c=a.va();return!_.P.Hp(Xa,c)?(L(),b?v(c,_.l):y(c),_.l):_.A}function Fa(a,b){ta=a||"";wa();J.refresh();b||(ra.Ha(4,{Ob:Za,input:ta}),Ua.Vg(ta))}function wa(){var a=Ka.jd(ta);a!=Za&&(J.gc(a),Za=a)}var Ca=_.yra,oa=_.ura,J,ya,Ka,ra,ua,za,Qa,sa,Ya,qa,Ma,Tb,Ub,Ua,Xa,ta,Za,Vb,
+rb,yb,Ab,sb,zb,nb,Va,Ra={la:function(a){var b=_.AZ;J=a.get(b.Nb,Ra);ya=a.get(b.Yb,Ra);Ka=a.get(b.Nc,Ra);ra=a.get(b.Ja,Ra);ua=a.get(b.Za,Ra);za=a.get(b.$a,Ra);Qa=a.get(b.yb,Ra);sa=a.Pa(b.ue,Ra);Ya=a.get(b.Ua,Ra);qa=a.get(b.Ka,Ra);Ma=a.get(b.Wa,Ra);Tb=a.get(b.Sf,Ra);Ub=a.Pa(b.Kg,Ra);Ua=a.Pb();Vb=a.uc().vd()},za:function(a){Va=a;sa.sort(_.P.Mj);ta=Xa=J.Zp()||""},ka:function(a){Va=a;zb=sb=_.A;wa()},O:(0,_.E)(118),fa:function(){return _.P.D.Ca},Z:function(){return{xk:a,kr:b,nr:c,or:d,vq:e,sq:f,Jd:g,tq:i,
+rq:h,jr:m,mr:n,rr:j,Bk:q,Mc:t,If:r,Je:s,At:C,Ti:v,Fs:x,jt:u,Bc:y,tj:w,Yk:F,Lp:L,Hi:H,nb:da,Ma:z,jd:G,Lb:U,cg:K,getHeight:W,getWidth:I,gh:ia,Xp:Z,$p:pa,eq:Da,pr:D,Mh:na,Qr:ma,Ai:X,search:Ba,clear:Ia,Xb:Ta,Bf:Aa,cj:Ea}}};return Ra};_.P.D.Ca=3;_.P.ja.register(118,_.P.D.Ca,_.P.Vn);
+_.P.Xn=function(){function a(a){e[a]=_.l;f=a}function b(){var a=[],b;for(b in e)a.push((0,window.parseInt)(b,10));return a}function c(){return f}function d(){e={};f=_.p}var e,f;return{ka:function(){d()},O:(0,_.E)(374),fa:function(){return _.P.D.$a},Z:function(){return{add:a,nq:b,fq:c,reset:d}}}};_.P.D.$a=375;_.P.ja.register(374,_.P.D.$a,_.P.Xn);
+_.P.oo=function(){function a(a){var b=n.nb(),c;c=[];var g=_.Bra;c[g.Tm]=d(s.Ec);c[g.Vo]=a==_.k?"":a+"";c[g.$a]=j.nq().join("j");var a=g.Im,u="";q.jh()?u="o":t.Xc()&&(u=t.Wk()+"");c[a]=u;var a=g.Jm,u="",da=t.La();if(da){for(var z,G=0,U=0,K;K=da[U++];){var W=K;K=W.O()+"";W=W.qc();W.length&&(K+="i"+W.join("i"));K!=z&&(1<G&&(u+="l"+G),u+=(z?"j":"")+K,G=0,z=K);++G}1<G&&(u+="l"+G)}c[a]=u;c[g.Dn]=e(n.Xp());c[g.ho]=e(n.$p());c[g.$o]=C;c[g.Zo]=_.P.getTime()-v;c[g.io]=e(n.eq());c[g.Cn]=m.lq();if(z=m.Rp())c[g.Qm]=
+z.Fq?["1",s.Ld?"a":"",s.Md?"c":""].join(""):"",c[g.Qn]=z.Aq,c[g.yn]=z.Np;c[g.Gn]=m.fh();c[g.Hn]=m.Yp();if(z=m.mm())c[g.Wm]=z.Qq,c[g.Vm]=z.Oq,c[g.Xm]=z.Rq;c[g.zo]=m.kq();c[g.qo]=m.gq();c[g.zp]=m.mq();c[g.Um]=m.Sp();c[g.xn]=d(s.xc);g=g.Bj;z=(z=q.Fb())?z.qa().ya("e")?"1":"":"";c[g]=z;for(g=0;z=r[g++];)a=z.Ab(),i[a]&&(c[a]=c[a]==_.k?d(z.getValue()):"");c=c.join(".").replace(f,"");h&&x?(g=b+c,z=h.Vk(x),g=h.Xk(g,z),g=g.slice(0,8),g=h.ej(g)):g="";c=[c,g].join(".");return{oq:b,gs_l:c}}function b(){v=_.P.getTime();
+++C;n.Xb();j.reset();m.Xb();for(var a=0,b;b=r[a++];)b.reset()}function c(a){x=a}function d(a){return a?a.replace(g,"-"):""}function e(a){return window.Math.max(a-v,0)}var f=/\.+$/,g=/\./g,i=_.P.zb(_.P.no),h,m,n,j,q,t,r,s,C=-1,v,x,u={la:function(a){var b=_.AZ;h=a.get(b.ke,u);m=a.get(b.Za,u);n=a.get(b.Ca,u);j=a.get(b.$a,u);q=a.get(b.Ua,u);t=a.get(b.Ka,u);r=a.Pa(b.Ah,u);_.P.Eh(a.Pa(b.RENDERER,u))},za:function(a){x=a.Ve},ka:function(a){s=a;b()},O:(0,_.E)(120),fa:function(){return _.P.D.Hb},Z:function(){return{qa:a,
+reset:b,Wq:c}}};return u};_.P.D.Hb=9;_.P.ja.register(120,_.P.D.Hb,_.P.oo);
+_.P.Ho=function(){function a(a,b){if(t){for(var c=_.A,d=0,e;e=t[d++];)2==e.Kc(a,b)&&(c=_.l);if(c)return}if(_.P.Gc(a)||y.ob||h&&h.ob())_.P.Fk(b)?u&&!x&&(x=_.P.Oe(u,"btnI","1")):x&&(u.removeChild(x),x=_.p),g(b),v.search(a,b),f(),m.Ha(14,{query:a})}function b(a){g();v.We(a);f()}function c(a){g();v.kd(a);f()}function d(a){g(1);v.Qe(a);f()}function e(a){return v.Id(a)}function f(){n.nh();n.Kp();q.reset();s?s.clear():r.clear();j.nb()!=j.Ma()&&j.Lp();C&&C.clear()}function g(a){i&&y.Zg&&i.gk(a)}var i,h,m,
+n,j,q,t,r,s,C,v,x,u,y,w={Ba:function(a){u=a.Ph()},la:function(a){var b=_.AZ;i=a.get(b.zj,w);h=a.get(b.Yb,w);m=a.get(b.Ja,w);n=a.get(b.Za,w);j=a.get(b.Ca,w);q=a.get(b.Hb,w);r=a.get(b.Ka,w);s=a.get(b.Gj,w);C=a.get(b.Wa,w);v=a.Pb();t=a.Pa(b.Mi,w)},ka:function(a){y=a},O:(0,_.E)(121),fa:function(){return _.P.D.yb},Z:function(){return{search:a,We:b,kd:c,Qe:d,Id:e}}};return w};_.P.D.yb=11;_.P.ja.register(121,_.P.D.yb,_.P.Ho);
+_.P.To=function(){function a(a){return(a[f.Ne]||{}).j}function b(a){return a[f.kj]}function c(a,b){var c=a[f.kj],e=a[f.np],g={},j=a[f.Ne];if(j)for(var i in j){var h=j[i];i in n&&(h=n[i].parse(h));g[i]=h}return _.P.dd(b,c,d(c,e),_.P.Rf(g),_.A,_.l,_.A,_.A)}function d(a,b){for(var c=_.A,d=_.A,f=_.A,j=0,n;n=b[j++];)if(33==(n[g.Hj]||0)?d=_.l:c=_.l,d&&c){f=_.l;break}c=0;d=[];for(j=0;n=b[j++];){var u=n[g.Hj]||0;if(i[u]&&(!f||33!=u)){var y;y=n[g.mp];m&&(y=h.bold(a.toLowerCase(),_.P.mk(_.P.unescape(y))));
+d.push(_.P.ud(y,_.P.mk(_.P.unescape(y)),c++,u,_.P.Jq(n[g.kp]),n[g.zn],e(n)))}}return d}function e(a){return(a=a[g.Ne])?_.P.Rf(a):_.P.Eg}var f=_.zra,g=_.qra,i,h,m,n={},j={la:function(a){var b=_.AZ;h=a.get(b.ve,j);if(a=a.Pa(b.Jg,j))for(var b=0,c;c=a[b++];)n[c.ox()]=c},ka:function(a){i=a.Xa;m=a.Td},O:(0,_.E)(124),fa:function(){return _.P.D.tc},Z:function(){return{Iq:a,Rr:b,wh:c}}};return j};_.P.D.tc=14;_.P.ja.register(124,_.P.D.tc,_.P.To);
+_.P.Uo=function(){function a(a){var d=b(a);if(d){e&&!a.Yj()&&(a=e.wr(a));f.Vq(a);var j=a,q=j.Cb().Aa(),t=j.La();g.isEnabled()&&(t.length?(j=j.O()==_.A,g.setSuggestions(q,t,j)):g.clear());c.Ha(3,{input:q,Ag:t})}i.$d(a,d);return d}function b(a){var b=d.Ma(),c=f.Fb(),b=b.toLowerCase(),e=a.Aa().toLowerCase();b==e?c=_.l:(b=_.P.wc(b),a=(e=a.Cb())?e.hb():_.P.wc(a.Aa().toLowerCase()),c=c?c.Cb().hb():"",c=0==b.indexOf(a)?0==b.indexOf(c)?a.length>=c.length:_.l:_.A);return c}var c,d,e,f,g,i,h={la:function(a){var b=
+_.AZ;c=a.get(b.Ja,h);d=a.get(b.Ca,h);e=a.get(b.Lh,h);f=a.get(b.Ua,h);g=a.get(b.Ka,h);i=a.Pb()},O:(0,_.E)(125),fa:function(){return _.P.D.Cd},Z:function(){return{Cc:a,Me:b}}};return h};_.P.D.Cd=15;_.P.ja.register(125,_.P.D.Cd,_.P.Uo);
+_.P.So=function(){function a(a,b){if(D&&!(Ka||G&&G.Pl())){a.Gf("ds",za.Rd);a.Gf("pq",Qa);a.Op();var c=_.l,d=a.Sj();d>ma&&(ma=d);++Ba;var d=_.P.getTime(),e;for(e in X){var f=X[e].kg();2500<d-f&&w(e)}if(ua&&(e=z.get(a)))(c=ya||a.Eq())&&za.lh&&a.zq(),ia.Cc(e),e.Ih()&&++Aa,na=_.p;c&&(na=a,(!J||b)&&y())}}function b(){return 10<=Ia||3<=U.xf()?_.l:_.A}function c(){ra=ma}function d(){return ma<=ra}function e(){na=_.p}function f(){return Ba}function g(){return{Fq:ua,Aq:ua?z.Qp():0,Np:Ta}}function i(){return ua?
+z.fh():0}function h(){return Aa}function m(){return{Qq:Ea,Oq:Ha,Rq:Ja}}function n(){return Ga}function j(){return Fa}function q(a){a=I.wh(a,_.p);return ia.Me(a)}function t(){return wa}function r(){for(var a=[],b=0,c,d=0;d<=H;++d)c=Ca[d],0==c?b++:(b=1==b?"0j":1<b?d+"-":"",a.push(b+c),b=0);return a.join("j")}function s(){ua&&z.Ql()}function C(a){ua&&z.Ip(a)}function v(a,b){return I.wh(a,b)}function x(){ua&&z.Xb();wa=Fa=Ga=Ja=Ha=Ea=Aa=Ta=Ia=Ba=0;Ca=[];for(var a=0;a<=H;++a)Ca[a]=0}function u(a){Qa=a}
+function y(){_.P.Rc(J);J=_.p;if(!(2<U.xf())&&na){var a=[],b=na.qa();if(b)for(var c in b)_.P.ub(c,b[c],a);Da.Sg();var a=a.join("&"),d=na,a=U.Pd(na,a,function(a,b){F(a,b,d)},F);na.ek()||(++Ea,a?(a=na,X[a.getId()]=a,++Ia):++Ha);na=_.p;a=100;b=(Ia-2)/2;for(c=1;c++<=b;)a*=2;a<oa&&(a=oa);J=window.setTimeout(y,a)}}function w(a){U.Vh(a);delete X[a];Ia&&--Ia}function F(a,b,c){if(D){if(!c&&(c=I.Iq(a),c=X[c],!c))return;if(!c.ek()){b&&++Ta;a=I.wh(a,c);if(Z)var d=K.Ma(),a=Z.zx(a,d);b&&a.ik();ua&&z.put(a);c.Sj()<=
+ra||(++Ja,ia.Cc(a)||++Ga,b=c,oa=a.qa().qg("d"),b&&(w(b.getId()),b=b.kg(),b=_.P.getTime()-b,wa+=b,Fa=window.Math.max(b,Fa),++Ca[b>da?H:L[window.Math.floor(b/100)]]));a&&(b=_.Ara,(a=a.qa().ya(b.lo))&&W.Wq(a))}}}var L=[0,1,2,3,4,5,5,6,6,6,7,7,7,7,7,8,8,8,8,8],H=L[L.length-1]+1,da=100*L.length-1,z,G,U,K,W,I,ia,Z,pa,Da,D=_.A,na,ma=-1,X,Ba,Ia,Ta,Aa,Ea,Ha,Ja,Ga,Fa,wa,Ca,oa,J,ya,Ka,ra,ua,za,Qa,sa={la:function(a){var b=_.AZ;z=a.get(b.Bd,sa);G=a.get(b.Yb,sa);a.get(b.Ja,sa);K=a.get(b.Ca,sa);W=a.get(b.Hb,sa);
+I=a.get(b.tc,sa);ia=a.get(b.Cd,sa);Z=a.get(b.No,sa);a.get(b.Ua,sa);pa=a.get(b.Ub,sa);a.get(b.Ka,sa);Da=a.Pb()},ka:function(a){U=pa.Tp();za=a;D=_.l;X={};oa=0;ya=a.of;Ka=a.Ue;ra=-1;ua=za.$g&&!!z;Qa=a.Xe},O:(0,_.E)(123),fa:function(){return _.P.D.Za},Z:function(){return{Gi:a,jh:b,nh:c,rj:d,Kp:e,lq:f,Rp:g,fh:i,Yp:h,mm:m,kq:n,gq:j,Me:q,mq:t,Sp:r,Rb:s,Jp:C,sj:v,Xb:x,uj:u}},Ga:function(){D=_.A;_.P.Rc(J);X=na=J=_.p;c()}};return sa};_.P.D.Za=13;_.P.ja.register(123,_.P.D.Za,_.P.So);
+_.P.rp=function(){function a(){return e.jh()}function b(a){g=a;++i;a.$h()&&++h;f.$e&&f.$e(h/i)}function c(){return g}function d(){g=_.p}var e,f,g,i,h,m={la:function(a){e=a.get(123,m);f=a.Pb()},ka:function(){h=i=0;g=_.p},O:(0,_.E)(126),fa:function(){return _.P.D.Ua},Z:function(){return{jh:a,Vq:b,Fb:c,B:d}}};return m};_.P.D.Ua=5;_.P.ja.register(126,_.P.D.Ua,_.P.rp);
+_.P.up=function(){function a(){return e}function b(){return f}function c(){e&&e.Rb()}var d={},e,f,g={la:function(a){for(var a=a.Pa(_.AZ.Vf,g),b=0,c;c=a[b++];)d[c.wf()]=c},ka:function(a){var b="https:"==window.document.location.protocol||a.ne,c=_.P.ub,g=[];c("client",a.Ec,g);c("hl",a.ic,g);c("gl",a.Be,g);c("sugexp",a.xc,g);c("gs_nf",1,g);a.authuser&&c("authuser",a.authuser,g);f={protocol:"http"+(b?"s":"")+"://",host:a.Ff||"clients1."+a.le,Pc:a.Pc||"/complete/search",fi:g.length?g.join("&"):""};if(!e||
+e.wf()!=a.kb)e=d[a.kb]},O:(0,_.E)(127),fa:function(){return _.P.D.Ub},Z:function(d){return{Tp:123==d?a:_.P.ta,Dh:b,xs:c}}};return g};_.P.D.Ub=16;_.P.ja.register(127,_.P.D.Ub,_.P.up);
+_.P.xp=function(){function a(a){a.Ob=Ya;a.marginWidth=sa;var b=qa.yh;b||(b="rtl"==Ya?"right":"left");a.Ii=b}function b(a,b,d){a=Fa&&Fa.sx(b);F();if((oa=b)&&b.length){var e=b[0].va();Ya=Ba.jd(e);e=_.A;d?(Ka=ma.Ao,e=X.Pq(b,Ya),d=_.Fra,b=b[0].qa().ya(d.ul),b=_.P.unescape(b),sa=Ea.getWidth(b)):(Ka=ma.Cj,e=X.render(Z(),Ya),sa=0);a&&(ya=Fa.px(),c(Fa.mx()));e?y():F()}}function c(a){na();if(J!=a){var b=J;J=a;D(b)}}function d(){if(v())if(ra){var a=J;J==oa.length-1?ya=J=_.p:J==_.p?J=0:++J;ya=J;Da(a,d)}else y()}
+function e(){if(v())if(ra){var a=J;!oa||0==J?ya=J=_.p:J==_.p?J=oa.length-1:--J;ya=J;Da(a,e)}else y()}function f(a){var b=a?4:3;x()?(a=s(),X.hf(a)||Aa.search(b),b=Aa.nb(),Ca.Se(b,a)):Aa.search(b)}function g(a){return X.Jd(a)}function i(a){ya=J=a;var a=oa[a],b=Aa.nb();Ca.Se(b,a)}function h(){return ra}function m(){return ua}function n(a){ua&&!a&&F();ua=a}function j(){return Ka}function q(){return oa}function t(){return v()?oa[0]:_.p}function r(){return J}function s(){return x()?oa[ya]:_.p}function C(){return ya}
+function v(){return!(!oa||!oa.length)}function x(){return ya!=_.p}function u(){ra&&!za&&(za=window.setTimeout(F,qa.Tf))}function y(){ra||(Ia.setPanel(ia()),Ia.show(),ra=_.l,Ca.yd())}function w(){ra&&(za&&(_.P.Rc(za),za=_.p),Ia.hide(),ra=_.A,Ca.zd())}function F(){w();oa=_.p;Ka=ma.EMPTY;J!=_.p&&X.Dc(J);ya=J=_.p;X.clear()}function L(){Ta.nh();w()}function H(){J!=_.p&&X.Dc(J);ya=J=_.p}function da(){na();Qa=window.setTimeout(H,0)}function z(){na()}function G(a){if(v())y();else{var b=Aa.nb();if(b){a=a||
+Aa.Lb();b=_.P.Ei(b,a);if(Ja)for(var a=b.Pj(),c=Ga.Fb(),d=0,e;e=Ja[d++];)e.Kc(a,c);Ta.Gi(b)}}}function U(){return X.Da()}function K(){return X.xe()}function W(){ra=_.A}function I(){X.Lc()}function ia(){return _.P.D.Ka}function Z(){if(v()&&Ka==ma.Cj){for(var a=[],b=[],c=0,d;(d=Ha[c++])&&!d.getMessage(Aa.nb(),oa,b););c=_.Dra;(d=b?b.length:0)&&(d-=pa(b,a,c.Dm));for(var e=0;e<oa.length;++e)a.push(oa[e]);d&&(d-=pa(b,a,c.Mm));qa.Ad&&a.push(1);d&&pa(b,a,c.Lm);qa.qd&&a.push(2);wa&&wa.gx(a);return a}return _.p}
+function pa(a,b,c){for(var d=0,e=0,f;e<a.length;++e)if((f=a[e])&&f.position==c)b.push(f),++d;return d}function Da(a,b){if(J!=_.p&&!X.jb(J))X.Dc(a),b();else if(D(a),J==_.p)Aa.Yk();else{var c=X.Tc(oa[J]);Aa.Mc(c);Ca.Xg(c)}}function D(a){na();a!=_.p&&X.Dc(a);J!=_.p&&X.mi(J)}function na(){Qa&&(_.P.Rc(Qa),Qa=_.p)}var ma=_.rra,X,Ba,Ia,Ta,Aa,Ea,Ha,Ja,Ga,Fa,wa,Ca,oa,J,ya,Ka,ra,ua,za,Qa,sa,Ya,qa,Ma={la:function(a){var b=_.AZ;X=a.get(b.Qd,Ma);Ba=a.get(b.Nc,Ma);Ia=a.get(b.vb,Ma);Ta=a.get(b.Za,Ma);Aa=a.get(b.Ca,
+Ma);Ea=a.get(b.Zb,Ma);Ha=a.Pa(b.Mf,Ma);Ja=a.Pa(b.ue,Ma);Ga=a.get(b.Ua,Ma);Fa=a.get(b.Wo,Ma);wa=a.get(b.Xo,Ma);Ca=a.Pb()},za:function(){Ja.sort(_.P.Mj)},ka:function(a){qa=a;ya=J=_.p;Ka=ma.EMPTY;ra=_.A;ua=_.l;Ya="";sa=0},O:(0,_.E)(128),fa:function(){return _.P.D.Ka},Z:function(){return{setSuggestions:b,Kk:c,Tq:d,Uq:e,hf:f,Jd:g,qq:i,Qb:h,isEnabled:m,Nh:n,hq:j,La:q,ye:t,ys:r,Wc:s,Wk:C,Db:v,Xc:x,Xq:u,show:y,hide:w,clear:F,yg:L,zs:H,As:da,B:z,Re:G}},Sd:function(){var b={Ik:a,Da:U,xe:K,Jk:W,Lc:I,Qh:ia};
+return[{Ba:_.P.ta,la:_.P.ta,za:_.P.ta,ka:_.P.ta,O:(0,_.E)(154),fa:function(){return _.P.D.Ka},Z:function(){return b},Sd:_.P.ta,Ga:_.P.ta}]},Ga:function(){za&&(_.P.Rc(za),za=_.p);oa=_.p;w()}};return Ma};_.P.D.Ka=17;_.P.ja.register(128,_.P.D.Ka,_.P.xp);
+_.P.tn=function(){function a(a){h.Ze(a)}function b(){return m}function c(a){if(a in n){if(j){if(a==j.Qh())return;f();j.Jk()}j=n[a];h.setPanel(j)}}function d(){return m?h.getHeight():0}function e(){m||(h.show(g()),m=_.l)}function f(){m&&(h.hide(),m=_.A)}function g(){var a={},b;for(b in i)a[b]=i[b];j.Ik(a);return a}var i={Hl:_.A,Ii:"left",zl:_.l,Ob:_.p,marginWidth:0},h,m,n={},j,q={la:function(a){var b=_.AZ;h=a.get(b.Oc,q);a.Pb();if(a=a.Pa(b.Li,q))for(var b=0,c;c=a[b++];)n[c.Qh()]=c},ka:function(){m=
+_.A},O:(0,_.E)(115),fa:function(){return _.P.D.vb},Z:function(){return{Qb:b,setPanel:c,getHeight:d,show:e,hide:f,Ze:a}},Ga:function(){f()}};return q};_.P.D.vb=7;_.P.ja.register(115,_.P.D.vb,_.P.tn);
+_.P.Wn=function(){function a(a,b){Ia&&(Ia=_.A,Z.Oh(D,F),Z.Oh(D,L));b||(b=a);D.parentNode.replaceChild(a,D);b.appendChild(D);Ba&&X.fg&&(_.P.gb||_.P.nc?Z.defer(function(){D.focus();_.P.Ak(D,Ea.getPosition())}):D.focus());H()}function b(){return wa}function c(a){var b="rtl"==a==("rtl"==ra);D.dir=a;if(Ca){pa.gc(a);var c=Ga.parentNode;c.removeChild(Ca);b?_.P.yk(Ca,Ga):c.insertBefore(Ca,Ga)}wa&&(wa.dir=a,c=wa.parentNode,c.removeChild(wa),b?c.insertBefore(wa,Ga):_.P.yk(wa,Ga));0!=na&&(a=_.P.gr(a),_.P.qr(D,
+a,0))}function d(){return Ea}function e(){return _.P.rk(Fa)}function f(){var a=Fa?Fa.offsetHeight:0;za>a&&(a=za);return a}function g(){return Fa?Fa.offsetWidth:0}function i(){var a=D.offsetWidth;X.je&&(a-=D.offsetHeight);return a}function h(){return D.value}function m(a){(Ga||Qa||D).style.background=a||"transparent"}function n(){Ja=_.l}function j(){D.select();K()}function q(){_.P.tk&&(D.value="");D.value=I.Ma();_.P.tk&&(D.value=D.value);v()}function t(){if(!Ba)try{D.focus(),Ba=_.l,v()}catch(a){}}
+function r(){Ba&&(D.blur(),Ba=_.A)}function s(){return Ba}function C(){D.value=""}function v(){if(Ba){var a=D.value.length;Ea=_.P.Fe(a);_.P.Ak(D,a)}}function x(a){a=a.type;"compositionstart"==a?I.Bk(_.l):"compositionend"==a&&I.Bk(_.A)}function u(a){var b=a.keyCode;Ha=b;var c=_.P.wd&&_.P.zk(b)&&ia.Db(),d=b==W.pk,e=b==W.gg;J=_.A;b==W.uk&&(J=I.Jd());if(d){var b=ia.Wc(),f;if(f=b)f=(b=Da[b.O()].Hx)&&b();f?ia.hf(a.shiftKey):Z.defer(function(){ia.hf(a.shiftKey)})}if(c||d||e||J)a.qf=_.l}function y(a){var b=
+a.keyCode,c=b==W.gg,d=b==W.uk&&J;if(b==W.pk||c||d)a.qf=_.l}function w(a){if(!ya){var b=a.Nd;if(!b.indexOf("key")&&!a.ctrlKey&&!a.altKey&&!a.shiftKey&&!a.metaKey)a:if(a=a.keyCode,"keypress"!=b){var c=_.P.zk(a),d;if("keydown"==b){if(d=229==a,I.rr(d),c)break a}else if(d=a!=Ha,Ha=-1,!c||d)break a;switch(a){case W.gg:I.tq();break;case W.Cl:I.nr();break;case W.Dl:I.or();break;case W.yj:I.vq();break;case W.xj:I.sq(Ea);break;case W.tl:I.rq(Ea);break;case W.El:I.jr(Ea)}}K();I.mr(D.value,Ea,b)}}function F(){Ba=
+_.l;I.kr()}function L(){Ba=_.A;I.xk()}function H(){Ia||(Ia=_.l,Z.Va(D,"focus",F,99),Z.Va(D,"blur",L,99))}function da(){Aa||(Aa=window.setInterval(G,X.Hh||50))}function z(){Aa&&(_.P.Rc(Aa),Aa=_.p)}function G(){w({Nd:"polling"})}function U(){_.P.nc&&_.P.sr(D)}function K(){if(Ba){var a=_.P.Lb(D);a&&(Ea=a)}}var W=_.CZ,I,ia,Z,pa,Da,D,na,ma,X,Ba,Ia=_.A,Ta,Aa,Ea=_.P.Fe(0),Ha=-1,Ja=_.A,Ga,Fa,wa,Ca,oa,J,ya,Ka,ra,ua,za,Qa,sa={Ba:function(a,b){ua=a;D=a.Ce();ra=a.Ae();a.ii()||(b.addRule(".gsib_a","width:100%;padding:4px 6px 0"),
+b.addRule(".gsib_a,.gsib_b","vertical-align:top"))},la:function(a){var b=_.AZ;I=a.get(b.Ca,sa);Z=a.get(b.Ja,sa);ia=a.get(b.Ka,sa);pa=a.get(b.Sf,sa);Da=_.P.Eh(a.Pa(b.RENDERER,sa));a=a.uc();na=a.vd();ma=a.getId()},za:function(b){function c(a){Z.Va(D,a,w,10,j)}X=b;za=b.fe;Ba=_.P.pd(D);K();_.P.gb&&Z.Va(D,"beforedeactivate",function(a){Ja&&(Ja=_.A,a.qf=_.l)},10);if(_.P.nc){var d;Z.listen(window,"pagehide",function(){ya=_.l;d=D.value});Z.listen(window,"pageshow",function(a){ya=_.A;a.persisted&&I.Bc(d)})}Fa=
+D;Ka=!!b.Qa[130];if(I.pr()||I.Mh()||Ka||b.Ch){var e=ua.get("gs_id");if(e)wa=ua.get("gs_ttc"),Ga=ua.get("gs_tti"),I.Mh()&&pa&&(oa=pa.Da(),Ca=oa.parentNode);else{e=_.P.Fc();e.id=ua.getId("gs_id");e.className=_.P.ff+ma+" "+(X.Zc||D.className);var f=e.insertRow(-1),s=e.style,g=D.style;s.width=g.width;s.height=za?za+"px":g.height;s.padding="0";_.P.ij(D);D.className=X.Bb;Ka&&(wa=f.insertCell(-1),wa.id=ua.getId("gs_ttc"),wa.style.whiteSpace="nowrap");Ga=f.insertCell(-1);Ga.id=ua.getId("gs_tti");Ga.className=
+"gsib_a";I.Mh()&&pa&&(oa=pa.Da(),Ca=f.insertCell(-1),Ca.className="gsib_b",Ca.appendChild(oa));a(e,Ga)}_.P.Ui&&_.P.wd&&(D.style.height="1.25em",D.style.marginTop="-0.0625em");Z.Va(e,"mouseup",function(){D.focus()});Fa=e}D.nfd=_.l;b.gf&&(Z.Va(D,"blur",z,10),Z.Va(D,"focus",da,10),Ta=_.l);Z.fc(8,U);Z.Va(D,"keydown",u);(_.P.oe||X.Bh)&&Z.Va(D,"keypress",y);Z.Va(D,"select",K,10);var j=_.A;c("mousedown");c("keyup");c("keypress");j=_.l;c("mouseup");c("keydown");c("focus");c("blur");c("cut");c("paste");c("input");
+Z.Va(D,"compositionstart",x);Z.Va(D,"compositionend",x);H()},ka:function(a){X=a;var b=a.eg;b&&(Qa=ua.Ac(b));D.setAttribute("autocomplete","off");D.setAttribute("spellcheck",a.spellcheck);D.style.outline=a.Gh?"":"none";Ta&&da()},O:(0,_.E)(119),fa:function(){return _.P.D.Nb},Z:function(){return{tr:a,Hi:b,gc:c,Lb:d,cg:e,getHeight:f,getWidth:g,gh:i,Zp:h,Bf:m,Ai:n,select:j,refresh:q,focus:t,blur:r,pd:s,clear:C}},Ga:function(){Ta&&z();X.Xd&&Z.Oh(D,I.xk)}};return sa};_.P.D.Nb=4;
+_.P.ja.register(119,_.P.D.Nb,_.P.Wn);
+_.P.Ou=function(){function a(a,b){if(!Z)return _.A;I=b;v();for(var c=_.A,d=0,e;e=a[d++];)q(e)&&(c=_.l);return c}function b(a){var b=w[a.O()];return b&&b.uq?b.uq(a):_.A}function c(a){return w[a.O()].Kb(_.p,a,F)}function d(a){var b=w[a.O()];if(b&&b.Tc){var c=y.nb();return b.Tc(a,c)}return a.va()}function e(a,b){if(!Z)return _.A;I=b;v();for(var c=_.A,d=0,e;e=a[d++];)if(1==e)if(Da)pa.appendChild(Da);else{e=r();var f=e.style;f.textAlign="center";f.whiteSpace="nowrap";e.dir=ia;f=_.P.Na();f.style.position=
+"relative";D=_.P.Na();D.className="gssb_g";H.qd&&(D.style.paddingBottom="1px");var s=_.tra;t(H.vg,D,s.Mu);H.yi?t(H.Vc,D,s.zu):H.zi&&t(H.Bi,D,s.Nu);f.appendChild(D);e.appendChild(f);Da=e.parentNode}else 2==e?na?pa.appendChild(na):(e=r(),f=e.style,f.padding="1px 4px 2px 0",f.fontSize="11px",f.textAlign="right",f=_.P.wa("a"),f.id="gssb_b",f.href="http://www.google.com/support/websearch/bin/answer.py?hl="+H.ic+"&answer=106230",f.innerHTML=H.sg,e.appendChild(f),na=e.parentNode):3==e?(e=U.pop())?pa.appendChild(e):
+(e=Z.insertRow(-1),e.Hq=_.l,e=e.insertCell(-1),f=_.P.wa("div","gssb_l"),e.appendChild(f)):q(e)&&(c=_.l);return c}function f(a){s(a,ma);var b=x.La();b&&u.Ha(9,{index:a,sC:b[a],tC:K[a]})}function g(a){s(a,"");u.Ha(10)}function i(){for(var a,b,c;c=z.pop();)a=c.O(),(b=da[a])||(b=da[a]=[]),b.push(c),a=c.Da(),a.parentNode.removeChild(a);for(;a=pa.firstChild;)a=pa.removeChild(a),a.Hq?U.push(a):a!=Da&&a!=na&&G.push(a);K=[]}function h(a){return(a=K[a])?a.jb():_.A}function m(){v()}function n(){return Z}function j(){return H.rg||
+ia==I?W:_.p}function q(a){var b=a.O(),c=w[b];if(!c)return _.A;var d=(b=da[b])&&b.pop();d||(d=c.Ib(F));c.render(a,d);z.push(d);var e=d.Da(),b=r();b.className="gssb_a "+H.nd;b.appendChild(e);if(a.Ab!==_.k){K.push(d);var d=I,f=a.Ab();e.onmouseover=function(){x.Kk(f)};e.onmouseout=function(){x.As()};e.onclick=function(b){y.Je();a.Wd()&&y.Mc(a.va());x.qq(f);b=b||_.P.oc(e).event;c.lb(b,a,F)}}else d=ia;_.P.hk(b,d);return _.l}function t(a,b,c){var d=_.P.wa("input");d.type="button";d.value=_.P.unescape(a);
+d.onclick=function(){F.search(y.Ma(),c)};var e;if(H.zg){a="lsb";e=_.P.wa("span");var f=_.P.wa("span");e.className="ds";f.className="lsbb";e.appendChild(f);f.appendChild(d)}else a="gssb_h",e=d;d.className=a;b.appendChild(e)}function r(){var a=G.pop();if(a)return pa.appendChild(a),a.firstChild;a=Z.insertRow(-1);a=a.insertCell(-1);a.className=H.nd;a.onmousedown=C;return a}function s(a,b){var c=K[a];c&&c.jb()&&(c.Da().parentNode.parentNode.className=b)}function C(a){a=a||_.P.oc(Z).event;a.stopPropagation?
+a.stopPropagation():_.P.oe||_.P.gb&&y.Ai();return _.A}function v(){if(D){var a=H.ng?H.ng:y.getWidth()-3;0<a&&(D.style.width=a+"px")}}var x,u,y,w,F,L,H,da={},z=[],G=[],U=[],K=[],W,I,ia,Z,pa,Da,D,na,ma,X={Ba:function(a,b){L=a;ia=a.Ae();b.addRule(".gssb_a","padding:0 7px");b.addRule(".gssb_a,.gssb_a td","white-space:nowrap;overflow:hidden;line-height:22px");b.addRule("#gssb_b","font-size:11px;color:#36c;text-decoration:none");b.addRule("#gssb_b:hover","font-size:11px;color:#36c;text-decoration:underline");
+b.addRule(".gssb_m","color:#000;background:#fff");b.addRule(".gssb_g","text-align:center;padding:8px 0 7px;position:relative");b.addRule(".gssb_h",["font-size:15px;height:28px;margin:0.2em",_.P.wd?";-webkit-appearance:button":""].join(""));b.addRule(".gssb_i","background:#eee");b.addRule(".gss_ifl","visibility:hidden;padding-left:5px");b.addRule(".gssb_i .gss_ifl","visibility:visible");b.addRule("a.gssb_j","font-size:13px;color:#36c;text-decoration:none;line-height:100%");b.addRule("a.gssb_j:hover",
+"text-decoration:underline");b.addRule(".gssb_l","height:1px;background-color:#e5e5e5")},la:function(a){var b=_.AZ;x=a.get(b.Ka,X);u=a.get(b.Ja,X);y=a.get(b.Ca,X);F=a.get(b.yb,X);w=_.P.Eh(a.Pa(b.RENDERER,X))},za:function(a){H=a;Z=_.P.Fc();a=_.P.wa("tbody");Z.appendChild(a);pa=Z.getElementsByTagName("tbody")[0]},ka:function(a){H=a;var b=a.Hc;b&&(W=L.Ac(b));Z.className=a.qi||"gssb_m";ma=a.ni||"gssb_i"},O:(0,_.E)(129),fa:function(){return _.P.D.Qd},Z:function(){return{Pq:a,Tc:d,hf:c,Jd:b,render:e,mi:f,
+Dc:g,clear:i,jb:h,Lc:m,Da:n,xe:j}}};return X};_.P.D.Qd=18;_.P.ja.register(129,_.P.D.Qd,_.P.Ou);
+_.P.un=function(){function a(a){a!=w&&(w=a,a=a.Da(),F?a!=F&&u.replaceChild(a,F):u.appendChild(a),F=a)}function b(){y||(y=u?window.Math.max(u.offsetHeight,0):0);return y}function c(a){u.className=a.Hl?"gssb_e gsdd_a":"gssb_e";var b=a.Ob||G;s!=b&&(s=b,_.P.hk(r,b));b=a.marginWidth;if(x!=b){var c=v.style;b?(C.hasChildNodes()||C.appendChild(v),c.width=b+"px",_.P.nc&&(c.paddingLeft="1px")):(C.hasChildNodes()&&C.removeChild(v),c.paddingLeft="");x=b}K=a.zl;W=a.Ii;h(L,_.l);h(z,_.l);j.Ha(16);e()}function d(){y=
+0;h(L,_.A);h(z,_.A);j.Ha(11)}function e(){y=0;g();if(z){var a=q.Lg[_.xra.Mn],c=z.style;"relative"!=q.gd&&(c.top=r.style.top,c.left=r.offsetLeft+C.offsetWidth+"px");a=b()+a;z.style.height=window.Math.max(a,0)+"px";i(z,u.offsetWidth)}w&&w.Lc()}function f(a){if(H)da!=a&&H.replaceChild(a,da);else{var b=r.insertRow(-1);b.style.height="0";b.insertCell(-1);H=b.insertCell(-1);m.Qb()||(h(u,_.A),h(r,_.l),e());L=u;H.appendChild(a)}da=a}function g(){var a=w&&w.xe(),b=a?a.offsetWidth:n.getWidth(),c=U;c?_.P.vf(c)&&
+(c=_.p):x||!K?(u.style.width="",r.style.width=""):(u.style.width="100%",c=b+q.Sc[2],i(r,c));if("relative"!=q.gd){var d=n.cg();a&&(d.$b=_.P.rk(a).$b);var a=c,e=q.Sc,c=e[1],e=e[0],e=d.He+n.getHeight()+e;"right"==W?(a=_.P.oc(r),b={Sq:_.P.Wp(a)-(d.$b-c+b),He:e}):(d=d.$b+c,"center"==W&&a&&(d+=(b-a)/2),b={$b:d,He:e});d=r.style;d.top=b.He+"px";d.left=d.right="";b.$b!=_.k?d.left=b.$b+"px":d.right=b.Sq+"px"}_.P.Wf&&(d.zoom="normal",d.zoom=1)}function i(a,b){_.P.$j(b)?0<b&&(a.style.width=b+"px"):a.style.width=
+b}function h(a,b){a&&(a.style.display=b?"":"none")}var m,n,j,q,t,r,s,C,v,x,u,y,w,F,L,H,da,z,G,U,K=_.l,W,I={Ba:function(a,b){G=a.Ae();b.addRule(".gssb_c","border:0;position:absolute;z-index:989");b.addRule(".gssb_e",["border:1px solid #ccc;border-top-color:#d9d9d9;",b.prefix("box-shadow:0 2px 4px rgba(0,0,0,0.2);"),"cursor:default"].join(""));b.addRule(".gssb_f","visibility:hidden;white-space:nowrap");b.addRule(".gssb_k","border:0;display:block;position:absolute;top:0;z-index:988");b.addRule(".gsdd_a",
+"border:none!important")},la:function(a){var b=_.AZ;m=a.get(b.vb,I);n=a.get(b.Ca,I);j=a.get(b.Ja,I);t=a.uc().getId()},za:function(a){q=a;r=_.P.Fc();r.className=_.P.ff+t+" gssb_c";h(r,_.A);L=r;var b=r.insertRow(-1);C=b.insertCell(-1);C.className="gssb_f";v=_.P.Na();u=b.insertCell(-1);u.className="gssb_e";u.style.width="100%";q.hh&&(z=_.P.wa("iframe",_.P.ff+t+" gssb_k"),h(z,_.A),(q.we||window.document.body).appendChild(z));if(U=q.Ng)_.P.$j(U)&&(U+=q.Sc[_.wra.Yl]),i(r,U);g();(a.we||window.document.body).appendChild(r);
+j.fc(8,e)},ka:function(a){q=a;r.style.position=a.gd},O:(0,_.E)(116),fa:function(){return _.P.D.Oc},Z:function(){return{setPanel:a,getHeight:b,Ze:f,show:c,hide:d,Lc:e}}};return I};_.P.D.Oc=8;_.P.ja.register(116,_.P.D.Oc,_.P.un);
+_.P.Ro=function(){function a(a){i(a);if(j)for(var b=0;b<j.length;++b)j[b].update(a)}function b(a){var b=n[a.gj()]||_.p,c=_.A;if(b)++q,c=_.l;else if(j)for(var d=0;d<j.length;++d)if(b=j[d].get(a)){i(b);++t;break}b&&(d=a.Aa(),d!=b.Aa()?b=_.P.dd(a,d,b.La(),b.qa(),b.Ih(),b.ge(),c,b.Yj()):c&&b.ik());return b}function c(){return q}function d(){return t}function e(){t=q=0}function f(a){var b,c,d,e;for(e in n){b=n[e];b=b.La();for(d=0;c=b[d++];)if(c.O()==a){delete n[e];break}}h()}function g(){n={};h()}function i(a){a&&
+a.ge()&&(n[a.Cb().gj()]=a)}function h(){if(j)for(var a=0;a<j.length;++a)j[a].reset()}function m(a,b){return b.Ra()-a.Ra()}var n={},j,q,t,r={la:function(a){j=a.Pa(151,r);j.sort(m)},ka:function(){e()},O:(0,_.E)(133),fa:function(){return _.P.D.Bd},Z:function(){return{put:a,get:b,Qp:c,fh:d,Xb:e,Ip:f,Ql:g}}};return r};_.P.D.Bd=21;_.P.ja.register(133,_.P.D.Bd,_.P.Ro);
+_.P.yu=function(a,b,c,d,e,f,g,i,h,m,n,j,q,t,r){var s={Zt:function(){return a},Ra:function(){return b},eu:function(){return c},$t:function(){return d},lz:function(){return e},kz:function(){return f},Yt:function(){return g},lc:function(a,b){return i?i(s,a,b):_.A},Pl:function(){return h},jf:function(){return m},ob:function(){return n},Cg:function(){return j},rz:function(a){return q?q(s,a):_.l},remove:function(a){t&&t(s,a)},hz:function(){return r},equals:function(d){return s==d||d&&d.Zt()==a&&d.Ra()==
+b&&d.eu()==c}};return s};
+_.P.$x=function(){function a(a){if(f(a))return _.A;var b=z[G];m(b);z.push(a);z.sort(u);var c=y(a);F.Az(a,c);b&&h(b);w();return _.l}function b(b){for(var b=_.P.ht(b||window.location.href),c=z.length,d;d=z[--c];)d.rz(b)||n(d,_.A);for(c=0;d=da[c++];)if(d=d.Ru(b))for(var e=0,f;f=d[e++];)a(f)}function c(){for(var a=z.length,b;b=z[--a];)if(b=b.Yt())return b;return""}function d(){return!!z.length}function e(){return-1!=G}function f(a){return-1!=y(a)}function g(a){return e()&&y(a)==G}function i(){d()&&h(z[z.length-
+1])}function h(a){a=y(a);a!=G&&(e()&&F.Dc(G),L.Je(),G=a,e()&&F.mi(G))}function m(a){e()&&(a=y(a),F.Dc(a),a==G&&(G=-1))}function n(a,b){var c=y(a);if(-1==c)return _.A;var d=z[G];m(d);z.splice(c,1);F.Yr(c);d&&h(d);w();a.remove(!!b);L.If();b&&L.jt();return _.l}function j(){0<G&&(F.Dc(G),--G,F.mi(G))}function q(){e()&&(G+1==z.length?(F.Dc(G),G=-1,L.If()):(F.Dc(G),++G,F.mi(G)))}function t(){n(z[G],_.l)}function r(){e()&&(m(z[G]),L.If())}function s(){return U}function C(){for(var a=0,b;b=z[a++];)if(b.ob())return _.l;
+return _.A}function v(){for(var a=z.length,b;b=z[--a];)if(b=b.Cg())return b;return""}function x(){return z.slice(0)}function u(a,b){return a.Ra()-b.Ra()}function y(a){for(var b=0,c=z.length;b<c;++b)if(z[b].equals(a))return b;return-1}function w(){for(var a=0,b;b=z[a++];)if(b.Pl()){H.Nh(_.A);U=_.l;return}H.Nh(_.l);U=_.A}var F,L,H,da,z=[],G=-1,U=_.A,K={la:function(a){var b=_.AZ;F=a.get(b.gi,K);L=a.get(b.Ca,K);H=a.get(b.Ka,K);da=a.Pa(b.Jh,K)},ka:function(){b()},O:(0,_.E)(130),fa:function(){return _.P.D.Yb},
+Z:function(){return{B:a,Ri:b,Yt:c,lc:d,M:e,isActive:f,KC:g,Al:i,select:h,Su:m,Yr:n,vu:j,uu:q,yz:t,Wy:r,Pl:s,ob:C,Cg:v,gz:x}}};return K};_.P.D.Yb=22;_.P.ja.register(130,_.P.D.Yb,_.P.$x);_.P.by=function(){function a(a,b){for(var e=c.DONT_CARE,h=d.gz(),m=0,n;n=h[m++];)n.lc(a,b)&&(e=c.mj);return e}function b(){return 11}var c=_.yra,d,e={la:function(a){d=a.get(130,e)},ka:(0,_.ca)(),O:(0,_.E)(156),fa:function(){return _.P.D.It},Z:function(){return{Kc:a,Ra:b}}};return e};_.P.D.It=112;
+_.P.ja.register(156,_.P.D.It,_.P.by);
+_.P.ey=function(){function a(a,b){function c(){var a=_.P.wa("span","gscp_e");d.appendChild(a)}var d=_.P.wa("a","gscp_a");n&&(d.style.margin=n+"px");m&&(d.style.height=d.style.lineHeight=m+"px");d.href="#";d.onclick=function(){i.defer(function(){f.select(a)});return _.A};d.onfocus=function(){f.select(a)};d.onblur=function(){f.Su(a)};d.onkeydown=e;var g=a.eu();if(g){var j=a.lz(),x=a.kz();if(a.$t()){var u=_.P.wa("span","gscp_f"),y=u.style;y.width=j+"px";y.height=x+"px";y.background=["url(",g,") no-repeat ",
+a.$t()].join("")}else u=_.P.wa("img","gscp_f"),u.src=g,u.width=j,u.height=x;x<m&&(u.style.marginBottom=(m-x)/2+"px");d.appendChild(u)}c();g=_.P.wa("span","gscp_c");_.P.Si(g,a.Zt());d.appendChild(g);a.jf()?(g=_.P.wa("span","gscp_d"),g.innerHTML="&times;",g.onclick=function(b){f.Yr(a,_.l);return _.P.Gb(b)},d.appendChild(g)):c();h&&(b>=h.childNodes.length?h.appendChild(d):h.insertBefore(d,h.childNodes[b]))}function b(a){if(a=h.childNodes[a])a.className="gscp_a gscp_b",a.focus()}function c(a){if(a=h.childNodes[a])a.className=
+"gscp_a"}function d(a){h.removeChild(h.childNodes[a])}function e(a){var a=a||window.event,b=_.CZ,c=a.keyCode,d="rtl"==g.jd();switch(c){case b.Cl:d?f.uu():f.vu();break;case b.Dl:d?f.vu():f.uu();break;case b.tl:case b.El:f.yz();break;case b.gg:case b.Us:f.Wy();default:return}_.P.Gb(a)}var f,g,i,h,m,n,j={Ba:function(a,b){b.addRule(".gscp_a,.gscp_c,.gscp_d,.gscp_e,.gscp_f","display:inline-block;vertical-align:bottom");b.addRule(".gscp_f","border:none");b.addRule(".gscp_a",["background:#d9e7fe;border:1px solid #9cb0d8;cursor:default;outline:none;text-decoration:none!important;",
+b.prefix("user-select:none;")].join(""));b.addRule(".gscp_a:hover","border-color:#869ec9");b.addRule(".gscp_a.gscp_b","background:#4787ec;border-color:#3967bf");b.addRule(".gscp_c","color:#444;font-size:13px;font-weight:bold");b.addRule(".gscp_d","color:#aeb8cb;cursor:pointer;font:21px arial,sans-serif;line-height:inherit;padding:0 7px");if(_.P.Rs||_.P.vl&&_.P.Qs)b.addRule(".gscp_d","position:relative;top:1px"),_.P.gb&&b.addRule(".gscp_c","position:relative;top:1px");b.addRule(".gscp_a:hover .gscp_d",
+"color:#575b66");b.addRule(".gscp_c:hover,.gscp_a .gscp_d:hover","color:#222");b.addRule(".gscp_a.gscp_b .gscp_c,.gscp_a.gscp_b .gscp_d","color:#fff");b.addRule(".gscp_e","height:100%;padding:0 4px")},la:function(a){var b=_.AZ;f=a.get(b.Yb,j);g=a.get(b.Ca,j);i=a.get(b.Ja,j)},za:function(a){a.Qa[130]&&(n=a.Fi,h=g.Hi(),(a=a.fe)&&(m=a-2*(n+1)))},O:(0,_.E)(131),fa:function(){return _.P.D.gi},Z:function(){return{Az:a,mi:b,Dc:c,Yr:d}}};return j};_.P.D.gi=23;_.P.ja.register(131,_.P.D.gi,_.P.ey);
+_.P.$z=function(){function a(){n&&h.Ys(i)}function b(){n&&h.Mr(i)}function c(){n&&m.Ys(i)}function d(){n&&m.Mr(i)}var e,f,g,i,h,m,n=_.A,j={Ba:function(a,b){function c(a){return["box-shadow:",a,"-moz-box-shadow:",a,"-webkit-box-shadow:",a].join("")}g=a;b.addRule(".gsfe_a",["border:1px solid #b9b9b9;border-top-color:#a0a0a0;",c("inset 0px 1px 2px rgba(0,0,0,0.1);")].join(""));b.addRule(".gsfe_b",["border:1px solid #4d90fe;outline:none;",c("inset 0px 1px 2px rgba(0,0,0,0.3);")].join(""))},la:function(a){var b=
+_.AZ;e=a.get(b.Ja,j);f=a.get(b.Ca,j)},za:function(f){var j=f.Yh;if(i=j?g.Ac(j):_.p)e.fc(_.BZ.ut,c),e.fc(_.BZ.tt,d),e.Va(i,"mouseover",a),e.Va(i,"mouseout",b),h=_.P.Gv(f.Oi||"gsfe_a"),m=_.P.Gv(f.Ni||"gsfe_b")},ka:function(){n=_.l;i&&f.At()&&m.Ys(i)},O:(0,_.E)(159),fa:function(){return _.P.D.Cv},Ga:function(){n=_.A;i&&(h.Mr(i),m.Mr(i))}};return j};_.P.D.Cv=190;_.P.ja.register(159,_.P.D.Cv,_.P.$z);
+_.P.Gv=function(a){var b=(0,window.RegExp)("(?:^|\\s+)"+a+"(?:$|\\s+)");return{Ys:function(c){c&&!b.test(c.className)&&(c.className+=" "+a)},Mr:function(a){a&&(a.className=a.className.replace(b," "))}}};
+_.P.ur=function(){function a(a){var a=f.getWidth(a),b=d.gh();return a<b}function b(a){c(a,_.l)}function c(b,c){if(g&&a(d.Ma())){if(!i||c)e.Ha(6,b),i=_.l}else i&&(e.Ha(7),i=_.A)}var d,e,f,g,i=_.l,h={la:function(a){var b=_.AZ;e=a.get(b.Ja,h);d=a.get(b.Ca,h);f=a.get(b.Zb,h)},za:function(){var a=e.fc;a(_.BZ.Kl,b);a(_.BZ.Hg,b);a(_.BZ.xg,b);a(_.BZ.Sk,c)},ka:function(a){g=!!a.Qa[136];c(_.p,_.l)},O:(0,_.E)(136),fa:function(){return _.P.D.wb},Z:function(){return{Il:a}}};return h};_.P.D.wb=46;
+_.P.ja.register(136,_.P.D.wb,_.P.ur);
+_.P.vr=function(){function a(){return d}var b,c,d,e,f={Ba:function(a){e=a},la:function(a){b=a.get(_.AZ.Nb,f);c=a.uc()},za:function(){d=e.get("gs_lc");if(!d){d=_.P.Na();d.id=e.getId("gs_lc");d.style.position="relative";var a=c.vd(),f=e.Ce().style;2==a&&(f.overflow="hidden");f.background="transparent url(data:image/gif;base64,R0lGODlhAQABAID/AMDAwAAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw%3D%3D)";f.position="absolute";f.zIndex=6;b.tr(d)}},O:(0,_.E)(141),fa:function(){return _.P.D.Tb},Z:function(){return{Tj:a}}};
+return f};_.P.D.Tb=43;_.P.ja.register(141,_.P.D.Tb,_.P.vr);
+_.P.Av=function(){function a(){return h}function b(){g&&h&&!e.Ma()?i||(d.show(),i=_.l):c()}function c(){i&&(d.hide(),i=_.A)}var d,e,f,g,i=_.l,h,m={la:function(a){var b=_.AZ;d=a.get(b.ef,m);e=a.get(b.Ca,m);f=a.get(b.Ja,m)},za:function(){var a=f.fc;a(_.BZ.pj,b);a(_.BZ.Hg,b);a(_.BZ.xg,b);a(_.BZ.oj,c)},ka:function(a){g=!!a.Qa[135];d.gc(e.jd());a=a.kf||"";h!=a&&(h=a,d.refresh());b()},O:(0,_.E)(135),fa:function(){return _.P.D.Eb},Z:function(){return{Ma:a}}};return m};_.P.D.Eb=38;
+_.P.ja.register(135,_.P.D.Eb,_.P.Av);
+_.P.Bv=function(){function a(){var a=e.Ma();j?_.P.Uc(n,_.P.escape(a)):n.value!=a&&(n.value=a)}function b(){n.style.visibility=""}function c(){n.style.visibility="hidden"}function d(a){_.P.jk(n,a)}var e,f,g,i,h,m,n,j,q={Ba:function(a){h=a},la:function(a){var b=_.AZ;e=a.get(b.Eb,q);f=a.get(b.Tb,q);g=a.uc()},za:function(a){m=f.Tj();i=g.getId();j=2==g.vd();var b=(j?"gs_htd":"gs_htif")+i,c=h.Ac(b);c?n=c:(j?c=_.P.Dg(a.Bb,1):(c=_.P.wa("input",a.Bb),c.disabled="disabled",c.autocapitalize=c.autocomplete=c.autocorrect=
+"off",_.P.ij(c),a=c.style,a.position="absolute",a.zIndex=1,a.backgroundColor="transparent",a.outline="",_.P.wd&&(a.WebkitTextFillColor="silver")),c.id=b,c.style.color="silver",m.appendChild(c),n=c)},O:(0,_.E)(140),fa:function(){return _.P.D.ef},Z:function(){return{refresh:a,show:b,hide:c,gc:d}}};return q};_.P.D.ef=42;_.P.ja.register(140,_.P.D.ef,_.P.Bv);
+_.P.Bu=function(){function a(a){return _.P.Cu(e,a)}function b(a,b){b.render(a.Mb(),a.va(),f)}function c(a,b,c){c.search(b.va(),1)}function d(){return 38}var e,f,g={Ba:function(a,b){b.addRule(".gsmq_a","padding:0")},la:function(a){e=a.get(118,g)},ka:function(a){f=a.Yc?a.Vc:""},O:(0,_.E)(152),fa:function(){return _.P.D.Jr},Z:function(){return{Ib:a,render:b,lb:c,Kb:_.P.ta,Jb:d}}};return g};_.P.D.Jr=94;_.P.ja.register(152,_.P.D.Jr,_.P.Bu);
+_.P.Cu=function(a,b){var c,d,e,f,g;c=_.P.Na();c.className="gsmq_a";var i=_.P.Fc();c.appendChild(i);d=i.insertRow(-1);i=d.insertCell(-1);i.style.width="100%";e=_.P.wa("span");i.appendChild(e);return{Da:function(){return c},O:(0,_.E)(38),jb:(0,_.E)(_.l),render:function(c,i,n){e.innerHTML=c;g=i;n&&!f&&(f=_.P.hi(d),f.onclick=function(c){a.Je();a.Mc(g);b.search(g,9);return _.P.Gb(c)});n?(f.innerHTML=n+" &raquo;",f.style.display=""):f&&(f.style.display="none")}}};
+_.P.Du=function(){function a(a,b){if(c&&b){var f=b.qa().ya("i");a.setParameter("gs_mss",f)}return 1}function b(){return 7}var c;return{ka:function(a){c=!!a.Qa[_.P.D.ok]},O:(0,_.E)(156),fa:function(){return _.P.D.ok},Z:function(){return{Kc:a,Ra:b}}}};_.P.D.ok=49;_.P.ja.register(156,_.P.D.ok,_.P.Du);
+_.P.Hu=function(){function a(a){n=a.Uf;j=a.ug;q=a.tg;t=a.Yc?a.Vc:""}function b(a){return _.P.Iu(f,g,i,h,m,a,n,q)}function c(a,b){b.render(a.Mb(),a.va(),a.Ab(),j,t)}function d(a,b,c){c.search(b.va(),1)}function e(){return 35}var f,g,i,h,m,n,j,q,t,r={Ba:function(a,b){b.addRule("a.gspqs_a","padding:0 3px 0 8px");b.addRule(".gspqs_b","color:#666;line-height:22px")},la:function(a){var b=_.AZ;i=a.get(b.Za,r);h=a.get(b.Ca,r);g=a.get(b.re,r);f=a.get(b.Ub,r);m=a.get(b.Ka,r)},za:a,ka:a,O:(0,_.E)(152),fa:function(){return _.P.D.Cs},
+Z:function(){return{Ib:b,render:c,lb:d,Kb:_.P.ta,Jb:e}}};return r};_.P.D.Cs=33;_.P.ja.register(152,_.P.D.Cs,_.P.Hu);
+_.P.Iu=function(a,b,c,d,e,f,g,i){function h(a){y=_.l;b.gm(v,m);return _.P.Gb(a)}function m(){y&&(c.Jp(35),a.xs(),n.onmouseover=n.onmouseout=n.onclick=_.p,j.style.display="none",q.style.display="",e.Wk()==x&&d.Yk(),e.ys()==x&&(e.zs(),d.If()),u=_.A)}var n,j,q,t,r,s,C,v,x,u=_.l,y=_.A;n=_.P.Na();n.className="gsq_a";C=_.P.Fc();n.appendChild(C);j=C.insertRow(-1);var w=j.insertCell(-1);t=_.P.wa("span");t.style.color="#52188c";w.appendChild(t);if(0!=g){s=_.P.wa("a");s.href="#ps";s.className="gspqs_a gssb_j";
+var F=j.insertCell(-1);F.appendChild(s);(2==g?F:w).style.width="100%";q=C.insertRow(-1);C=q.insertCell(-1);C.className="gspqs_b";C.innerHTML=i;C.colSpan="2"}return{Da:function(){return n},O:(0,_.E)(35),jb:function(){return u},render:function(a,b,c,e,i){y=_.A;u=_.l;v=b;x=c;j.style.display="";t.innerHTML=a;0!=g&&(q.style.display="none",s.innerHTML=e,s.onclick=h);i&&!r&&(r=_.P.hi(j),r.onclick=function(a){d.Je();d.Mc(v);f.search(v,9);return _.P.Gb(a)});i?(r.innerHTML=i+" &raquo;",r.style.display=""):
+r&&(r.style.display="none")}}};
+_.P.Fu=function(){function a(a){var b={};if(g)if(f)b.tok=e;else if(j&&m){var c=j.ej(a),q=j.Vk(m),a=j.Xk(a,q),a=j.ej(a);b.qe=c;b.qesig=a;b.pkc=n;g&&(i&&h&&828E5<_.P.getTime()-h)&&d.Nr()}return b}function b(a,b){d.Xu(a,b)}function c(a){m=a.websafe_signing_key;n=a.pkc;h=_.P.getTime()}var d,e,f,g,i,h,m,n,j,q={la:function(a){var b=_.AZ;d=a.get(b.Xf,q);j=a.get(b.ke,q)},ka:function(a){f="https:"==window.document.location.protocol||a.ne;e=a.rd;a=!!a.Xa[_.xZ.Zi];g=!(!d||!e||!a);i=!f;g&&i&&d.Nr()},O:(0,_.E)(189),
+fa:function(){return _.P.D.re},Z:function(){return{Uu:a,gm:b,Yu:c}}};return q};_.P.D.re=188;_.P.ja.register(189,_.P.D.re,_.P.Fu);
+_.P.Eu=function(){function a(){var a=[];_.P.ub("callback","google.sbox.hi"+h,a);c(m,a)}function b(a,b){s[a]=b;var d=[];_.P.ub("delq",a,d);_.P.ub("client",t,d);_.P.ub("callback","google.sbox.d"+h,d);c(n,d)}function c(a,b){_.P.ub("tok",j,b);q&&_.P.ub("authuser",q,b);r=_.P.wa("script");r.src=a+b.join("&");g.appendChild(r)}function d(){r&&(g.removeChild(r),r=_.p)}function e(a){d();i.Yu(a)}function f(a){d();var a=a[0],b=s[a];b&&(delete s[a],b())}var g=_.P.wi(),i,h,m,n,j,q,t,r,s={},C={la:function(a){i=
+a.get(_.AZ.re,C);h=a.uc().getId()},za:function(){var a=window.google.sbox;a["hi"+h]=e;a["d"+h]=f},ka:function(a){var b=a.Ff||"clients1."+a.le;m="https://"+b+_.Era.Au+"?";n="https://"+b+_.Era.Lu+"?";j=a.rd;q=a.authuser;t=a.Ec},O:(0,_.E)(134),fa:function(){return _.P.D.Xf},Z:function(){return{Nr:a,Xu:b}},Ga:function(){d()}};return C};_.P.D.Xf=186;_.P.ja.register(134,_.P.D.Xf,_.P.Eu);
+_.P.Gu=function(){function a(a){var b=c.Uu(a.Aa()),d;for(d in b)a.setParameter(d,b[d]);return 1}function b(){return 12}var c,d={la:function(a){c=a.get(_.AZ.re,d)},O:(0,_.E)(156),fa:function(){return _.P.D.Lr},Z:function(){return{Kc:a,Ra:b}}};return d};_.P.D.Lr=187;_.P.ja.register(156,_.P.D.Lr,_.P.Gu);
+_.P.oA=function(){function a(){return n?[_.P.yu(h,0,f,"",g,i,m,_.p,_.A,_.l,_.l,"",_.p,b,_.p)]:[]}function b(a,b){if(b){var d={},f=_.P.Pi(c,"tbs");if(f){var g={};g.tbs=f.value;d.tbs=window.google.Toolbelt.unset("sbi",g).tbs}d.tbm="isch";_.P.Cf(c,d);e.Ma()&&c.submit()}}var c,d,e,f,g,i,h,m,n;d={ka:function(a){n=!!a.Af[_.P.D.Ns]},Ga:_.P.ta,za:_.P.ta,O:(0,_.E)(155),fa:function(){return _.P.D.Ns},Z:function(){return{Ru:a}},Sd:_.P.ta,Ba:function(a){c=a.Ph()},la:function(a){e=a.get(118,j)}};var j={Wr:function(){return d},
+dB:function(a,b,c,d,e){f=a;g=b;i=c;h=d;m=e}};return j};_.P.D.Ns=183;_.P.qA=function(){function a(a){return _.P.rA(e,a)}function b(a,b){b.render(a.Mb(),a.va(),f)}function c(a,b,c){c.search(b.va(),1)}function d(){return 40}var e,f,g={Ba:function(a,b){b.addRule(".gsq_a","padding:0")},la:function(a){e=a.get(118,g)},ka:function(a){f=a.Yc?a.Vc:""},O:(0,_.E)(152),fa:function(){return _.P.D.Dv},Z:function(){return{Ib:a,render:b,lb:c,Kb:_.P.ta,Jb:d}}};return g};_.P.D.Dv=30;_.P.ja.register(152,_.P.D.Dv,_.P.qA);
+_.P.rA=function(a,b){var c,d,e,f,g;c=_.P.Na();c.className="gsq_a";var i=_.P.Fc();c.appendChild(i);d=i.insertRow(-1);i=d.insertCell(-1);i.style.width="100%";e=_.P.wa("span");i.appendChild(e);return{Da:function(){return c},O:(0,_.E)(40),jb:(0,_.E)(_.l),render:function(c,i,n){e.innerHTML=c;g=i;n&&!f&&(f=_.P.hi(d),f.onclick=function(c){a.Je();a.Mc(g);b.search(g,9);return _.P.Gb(c)});n?(f.innerHTML=n+" &raquo;",f.style.display=""):f&&(f.style.display="none")}}};
+_.P.sA=function(a){function b(a){if(n&&m==a.Aa()){var b={};b.b=c(m);return _.P.dd(a,m,n,_.P.Rf(b),_.l,_.A,_.A,_.A)}return _.p}function c(a){return a?!(0>a.indexOf("**")&&0>a.indexOf("####")):_.A}function d(a,b){for(var b=_.P.escape(b),a=_.P.escape(_.P.wc(a,_.P.Ci)),c=a.split(" "),d=b.split(" "),e,g=0;g<d.length;++g)e=d[g],0>c.indexOf(e)&&(d[g]=e.bold());return d.join(" ").replace(f," ")}function e(b){var b=b&&b.results?b.results:[],e=window.Math.min(b.length,3);m=b[0].utterance;i.add(6);if(a&&!c(m))n=
+_.p,h.search(m,15);else{n=[];for(var f=0;f<e;++f){var g=b[f].utterance;c(g)||n.push(_.P.ud(d(m,g),g,f,40,_.p))}}}var f=/<\/b> <b>/gi,g,i,h,m,n,j,q={Ba:function(a){j=a.Ce()},la:function(a){var b=_.AZ;g=a.get(b.Ja,q);i=a.get(b.$a,q);h=a.get(b.yb,q)},za:function(a){j.setAttribute("x-webkit-speech","");j.setAttribute("x-webkit-grammar","builtin:search");""!=a.ic&&j.setAttribute("lang",a.ic);(a=window.google.listen)?a(j,"webkitspeechchange",e):g.listen(j,"webkitspeechchange",e)},O:(0,_.E)(159),fa:function(){return _.P.D.Ev},
+Z:function(){return{LA:b}}};return q};_.P.D.Ev=90;_.P.tA=function(){function a(){return 1}function b(a){var b=_.p;c&&(b=c.LA(a));return b}var c,d={O:(0,_.E)(151),la:function(a){c=a.Pp(_.P.D.Ev,d)},fa:function(){return _.P.D.IA},Z:function(){return{Ra:a,update:_.P.ta,get:b,reset:_.P.ta}}};return d};_.P.D.IA=100;
+_.P.My=function(){function a(){if(m&&i.Db()){var a=h.Fb(),e=f.Ma();if(_.P.Gc(e)&&g.Il(e)&&(a&&_.P.jc(e,a.Aa()))&&(a=a.qa().ya("p"))){e=f.jd();e!=j&&(j=e,d.gc(e));a=a.replace(c,"<span class=gsc_b>$1</span>");d.refresh(a);n||(d.show(),n=_.l);return}}b()}function b(){n&&(d.hide(),n=_.A)}var c=/<se>(.*?)<\/se>/g,d,e,f,g,i,h,m,n=_.l,j,q={la:function(a){var b=_.AZ;e=a.get(b.Ja,q);f=a.get(b.Ca,q);g=a.get(b.wb,q);h=a.get(b.Ua,q);i=a.get(b.Ka,q);d=a.get(b.Pf,q)},za:function(){var c=e.fc;c(_.BZ.Ss,b);c(_.BZ.oj,
+b);c(_.BZ.Hg,b);c(_.BZ.xg,a);c(_.BZ.Ll,a);c(_.BZ.pj,a)},ka:function(b){m=!!b.Qa[138];a()},O:(0,_.E)(138),fa:function(){return _.P.D.Od}};return q};_.P.D.Od=44;_.P.ja.register(138,_.P.D.Od,_.P.My);
+_.P.Ny=function(){function a(a){_.P.Uc(g,a)}function b(){g.style.visibility=""}function c(){g.style.visibility="hidden";_.P.Uc(g,"")}function d(a){_.P.jk(g,a)}var e,f,g,i,h={Ba:function(a,b){i=a;a.ii()||b.addRule(".gsc_b","background:url(data:image/gif;base64,R0lGODlhCgAEAMIEAP9BGP6pl//Wy/7//P///////////////yH5BAEKAAQALAAAAAAKAAQAAAMROCOhK0oA0MIUMmTAZhsWBCYAOw==) repeat-x scroll 0 100% transparent;display:inline-block;padding-bottom:1px")},la:function(a){e=a.get(141,h)},za:function(a){f=e.Tj();var b=
+i.get("gs_sc");b||(b=_.P.Dg(a.Bb,2),b.id=i.getId("gs_sc"),b.style.color="transparent",f.appendChild(b));g=b},O:(0,_.E)(143),fa:function(){return _.P.D.Pf},Z:function(){return{refresh:a,show:b,hide:c,gc:d}}};return h};_.P.D.Pf=39;_.P.ja.register(143,_.P.D.Pf,_.P.Ny);
+_.P.Ws=function(){function a(){return y}function b(a){y=a;f();x&&C.Wh(a)}function c(){var a=t.Fb();if(x&&a&&a.Db()){var c=a.Aa();var e=a.ye();if(c&&e&&e.Wd()){var a=c.replace(h," "),f=_.P.wc(a,_.P.Ci).toLowerCase(),f=f.replace(m,"");v&&(f=v.um(f));var g=e.Zh(),e=(g?_.P.unescape(g.replace(n,"")):e.va()).replace(m,"");_.P.jc(e,f,_.l)&&((f=e.substr(f.length))&&_.P.Qk(a)&&(f=_.P.trim(f)),c=c+f)}else c="";b(c)}else d()}function d(){y&&(y="",w=_.A,u&&j.refresh(),C.Xh())}function e(a){if(y){var b=q.Ma();
+(!_.P.Gc(b)||y.indexOf(b))&&d()}a.Ob&&j.gc(a.Ob);g()}function f(){w=x&&!!y&&r.Il(y)&&q.Qr(y);u?w?j.refresh():i():w&&g()}function g(){!u&&w&&(j.refresh(),j.show(),u=_.l)}function i(){u&&(j.hide(),u=_.A)}var h=/((^|\s)[!"%',:;<>?[\\\]`{|}~]+)|[,\\]+/g,m=/^\+/,n=/<\/?se>/gi,j,q,t,r,s,C,v,x,u=_.l,y,w,F={la:function(a){var b=_.AZ;j=a.get(b.Yd,F);s=a.get(b.Ja,F);v=a.get(b.Ie,F);q=a.get(b.Ca,F);r=a.get(b.wb,F);t=a.get(b.Ua,F);C=a.Pb()},za:function(a){var b=s.fc;b(_.BZ.pj,e);1==a.Lf&&b(_.BZ.Ll,c);b(_.BZ.Hg,
+d);b(_.BZ.xg,c);b(_.BZ.Sk,f);b(_.BZ.oj,i)},ka:function(a){x=!!a.Qa[139];j.gc(q.jd());c()},O:(0,_.E)(139),fa:function(){return _.P.D.Wa},Z:function(){return{Ma:a,Mc:b,refresh:c,clear:d}}};return F};_.P.D.Wa=41;_.P.ja.register(139,_.P.D.Wa,_.P.Ws);
+_.P.Xs=function(){function a(){var a=e.Ma();j?_.P.Uc(n,_.P.escape(a)):n.value!=a&&(n.value=a)}function b(){n.style.visibility=""}function c(){n.style.visibility="hidden"}function d(a){_.P.jk(n,a)}var e,f,g,i,h,m,n,j,q={Ba:function(a){h=a},la:function(a){var b=_.AZ;e=a.get(b.Wa,q);f=a.get(b.Tb,q);g=a.uc()},za:function(a){m=f.Tj();i=g.getId();j=2==g.vd();var b=(j?"gs_tad":"gs_taif")+i,c=h.Ac(b);c?n=c:(j?c=_.P.Dg(a.Bb,1):(c=_.P.wa("input",a.Bb),c.disabled="disabled",c.autocapitalize=c.autocomplete=c.autocorrect=
+"off",_.P.ij(c),a=c.style,a.position="absolute",a.zIndex=1,a.backgroundColor="transparent",a.outline="",_.P.wd&&(a.WebkitTextFillColor="silver")),c.id=b,c.style.color="silver",m.appendChild(c),n=c)},O:(0,_.E)(144),fa:function(){return _.P.D.Yd},Z:function(){return{refresh:a,show:b,hide:c,gc:d}}};return q};_.P.D.Yd=51;_.P.ja.register(144,_.P.D.Yd,_.P.Xs);
+_.P.St=function(){function a(a){if(h){var f=d(a);if(f){a={};a[e.Sr]=f.mu;a[e.il]=f.wz;var f=f.userName,j="",s=a[e.il];s&&g.test(s)&&(j=s+"?sz=23");return[_.P.yu(f,0,j,"",23,23,"",_.p,_.l,_.l,_.l,f,b,c,a)]}}return[]}function b(a,b){var c=d(b);if(c){var f=a.hz()[e.Sr]||"";return c.mu==f}return _.A}function c(){_.P.Rl(m,"tbs")}function d(a){var b=window.google.Toolbelt.parseTbs(a.tbs),a=b.ppl_nps,c=b.ppl_ids;if(c&&a){var a=a.replace(f," "),d="";(b=b.ppl_im)&&(d=["//",b,"/photo.jpg"].join(""));return{mu:c,
+userName:a,wz:d}}return _.p}var e=_.Hra,f=/\+/g,g=/^\/\/lh\d+\.googleusercontent\.com\//,i,h,m,n;n={Ba:function(a){m=a.Ph()},la:function(a){i=a.get(128,j)},za:_.P.ta,ka:function(a){h=!!a.Af[_.P.D.Bm]},O:(0,_.E)(155),fa:function(){return _.P.D.Bm},Z:function(){return{Ru:a}},Sd:_.P.ta,Ga:_.P.ta};var j={Wr:function(){return n},jz:function(){if(i.Xc()){var a=i.Wc();if(44==a.O()){var b=a.va(),c=a.qa(),a={},d=c.ya(e.Sr);if(!d){var f=c.ya(e.Lt);f&&(d=["-",f].join(""))}window.google.Toolbelt.set("ppl_ids",
+d||"",a);window.google.Toolbelt.set("ppl_nps",b,a);if(b=c.ya(e.il))b=b.substring(2,b.length-10),window.google.Toolbelt.set("ppl_im",b,a);return(0,window.decodeURIComponent)(a.tbs)}}return""}};return j};_.P.D.Bm=24;_.P.ja.register(155,_.P.D.Bm,_.P.St);
+_.P.Dy=function(){function a(){return _.P.Ut(44)}function b(a,b){g.render(a.Mb(),a.qa(),b,44)}function c(a){return a.va()}function d(a,b,c){c.search(b.va(),1)}function e(){return _.A}function f(){return 44}var g,i={la:function(a){g=a.get(245,i)},O:(0,_.E)(152),fa:function(){return _.P.D.Pt},Z:function(){return{Ib:a,render:b,Tc:c,lb:d,Kb:e,Jb:f}}};return i};_.P.D.Pt=242;_.P.ja.register(152,_.P.D.Pt,_.P.Dy);
+_.P.Ut=function(a){var b,c,d,e;b=_.P.Na();b.className="gsso_a";var f=_.P.Fc();b.appendChild(f);var g=f.insertRow(-1),i=g.insertCell(-1);i.className="gsso_b";i.rowSpan=2;c=_.P.wa("img");c.className="gsso_c";i.appendChild(c);i=g.insertCell(-1);i.rowSpan=2;var h=_.P.Na("gsso_d");i.appendChild(h);g=g.insertCell(-1);g.className="gsso_e";d=_.P.wa("span");g.appendChild(d);i=_.P.wa("span","gsso_g");i.innerHTML=" &middot; plus.google.com";g.appendChild(i);g=f.insertRow(-1);e=g.insertCell(-1);e.className="gsso_f";
+return{Da:function(){return b},O:function(){return a},jb:(0,_.E)(_.l),render:function(a,b,f,g,i){c.src=b;d.innerHTML=a;a=[];i&&a.push(i);f&&a.push(f);g&&a.push(g);_.P.Si(e,a.join(" \u2022 "))}}};
+_.P.Ly=function(){function a(a,c,d,e){if(45==e)e=_.Gra;else if(44==e)e=_.Hra;else return;var f="//www.google.com/images/ps_placeholder_25.png",g=c.ya(e.il);g&&(f=g+"?sz=36");d.render(a,f,c.ya(e.Tt),c.ya(e.Rt),c.ya(e.Qt))}return{Ba:function(a,c){c.addRule(".gsso_a","padding:3px 0");c.addRule(".gsso_a td","line-height:18px");c.addRule(".gsso_b","width:36px");c.addRule(".gsso_c","height:36px;vertical-align:middle;width:36px");c.addRule(".gsso_d","width:7px");c.addRule(".gsso_e","width:100%");c.addRule(".gsso_f",
+"color:#666;font-size:13px;padding-bottom:2px");c.addRule(".gsso_g","color:#093;font-size:13px")},O:(0,_.E)(245),fa:function(){return _.P.D.Ol},Z:function(){return{render:a}}}};_.P.D.Ol=244;_.P.ja.Ji(245,_.P.D.Ol,_.P.Ly);
+_.P.Ay=function(){function a(){return _.P.Ut(45)}function b(a,b){var c=a.qa(),d=c.ya("l");i.render(d,c,b,45)}function c(a){return a.va()}function d(a,b,c){g(a,b,c)}function e(a,b,c){g(a,b,c);return _.l}function f(){return 45}function g(a,b,c){(a=b.qa().ya("k"))?c.kd(a):c.search(b.va(),1)}var i,h={la:function(a){i=a.get(245,h)},O:(0,_.E)(152),fa:function(){return _.P.D.Nt},Z:function(){return{Ib:a,render:b,Tc:c,lb:d,Kb:e,Jb:f}}};return h};_.P.D.Nt=243;_.P.ja.register(152,_.P.D.Nt,_.P.Ay);
+_.P.Ep=function(){function a(a,b,c){e(a.getId(),a.Aa(),b,c);return _.l}function b(){return 1}function c(){return q}function d(a){var b=j[a];b&&(g(b),delete j[a])}function e(a,b,c,e){t.Ed||f();var g,h=_.p;_.P.gb?h=i("Msxml2")||i("Microsoft"):"undefined"!=typeof window.XMLHttpRequest&&(h=new window.XMLHttpRequest);if(g=h)b=[m,"?",n?n+"&":"",c?c+"&":"","q=",(0,window.encodeURIComponent)(b),"&xhr=t"].join(""),g.open("GET",b,_.l),g.onreadystatechange=function(){if(4==g.readyState){switch(g.status){case 403:q=
+1E3;break;case 302:case 500:case 502:case 503:++q;break;case 200:e(eval(g.responseText),_.A);default:q=0}d(a)}},j[a]=g,g.send(_.p)}function f(){for(var a in j)g(j[a]);j={}}function g(a){a.onreadystatechange=_.P.ta;var b=a.readyState;0!=b&&4!=b&&a.abort()}function i(a){var b=_.p;try{b=new window.ActiveXObject(a+".XMLHTTP")}catch(c){}return b}var h,m,n,j={},q=0,t,r={la:function(a){h=a.get(127,r)},ka:function(a){1==a.kb&&(t=a,a=h.Dh(),m=a.Pc,n=a.fi)},O:(0,_.E)(149),fa:function(){return _.P.D.mg},Z:function(){return{Pd:a,
+Vh:d,Rb:_.P.ta,wf:b,xf:c}},Ga:function(){f();q=0}};return r};_.P.D.mg=180;_.P.ja.register(149,_.P.D.mg,_.P.Ep);
+_.P.Os=function(){function a(a,b,c,d){var c=a.Aa(),b=["/complete/search?",C?C+"&":"",b?b+"&":""].join(""),e=[];_.P.ub("xhr","t",e);_.P.ub("q",c,e,_.P.Mk);b=b+e.join("&");if(t.Kf&&(b=window.google.msg.send(16,[b,_.A,c],b),!b))return _.A;x[c]=a;v=d;s.Pd(b);return _.l}function b(){x={};r&&r.Rb(["/complete/search","/s"])}function c(){return 2}function d(){return 0}function e(){var a=[r.U(),r.ha(),r.oa()],a=r.M(a);a.M();f(a,_.l)}function f(a,b){if(a){s&&s.ha();s=a=b?a:r.B(a);a.U(m,10);var c=g(i),d="/complete/search";
+a.xm(c,d);a.B(h,d);d="/s";a.B(h,d);(window.google.ucp||!a.oa()&&!a.ra())&&a.xm(c,d)}}function g(a){return function(b,c,d,e,f){if(!e){c&&(b=c());try{_.P.vf(b)&&(b=eval("("+b+")")),a(b,f)}catch(g){b={_response:b,_url:d,_isPartial:e,_opt_fromCache:f};try{window.google.ml(g,_.A,b)}catch(s){}}}return _.l}}function i(a,b){var c=q.Rr(a),d=x[c];if(d){if(b){var e=a[2];e&&(e.j=d.getId())}x[c]=_.p}v&&v(a,b)}function h(a){for(var a=a.substring(a.indexOf("?")+1).split("&"),b=[],c={},d=0,e;e=a[d++];){var f=e.split("=");
+2==f.length&&(f=f[0],n[f]&&!c[f]&&("q"==f&&(e=e.toLowerCase().replace(/\+/g," ")),b.push(e),c[f]=_.l))}b.sort();return(0,window.decodeURIComponent)(b.join("&"))}function m(a,b,c){window.google.msg.send(17,[a,b,c],_.A)&&e()}var n=_.P.zb("ds hl client expIds tok xhr q cp pq pws".split(" ")),j,q,t,r,s,C,v,x,u={la:function(a){var b=_.AZ;j=a.get(b.Ub,u);q=a.get(b.tc,u)},za:function(){r=(0,_.zl)()},ka:function(a){x={};2==a.kb&&(t=a,C=j.Dh().fi,(a=a.Hf)?s&&s.api==a.api||f(a):e())},O:(0,_.E)(149),fa:function(){return _.P.D.rm},
+Z:function(){return{Pd:a,Vh:_.P.ta,Rb:b,wf:c,xf:d}}};return u};_.P.D.rm=19;_.P.ja.register(149,_.P.D.rm,_.P.Os);
+_.P.Er=function(){function a(){return 2}function b(a){if(g){var b=a.La();if(!(b.length>=q.Vd)){var c=a.Cb().hb();if(b.length){for(var d=0,j;j=b[d];++d){if(!i[j.O()])return;j=j.va();if(!_.P.jc(j,c,_.l))return}e(a)}else!q.jg&&!f.test(c)&&e(a)}}}function c(a){if(g){var b,c=a.hb(),d=window.Math.min(c.length,n);if(d>=m)for(var e;0<d;--d)if(b=h[d])if(e=c.substring(0,d),b=b[e]){c=b;d=c.La();if(d.length){b=a.Aa();e=b.toLowerCase();for(var f=a.hb(),i=c.qa(),t=q.Td||!i.qg("k"),F=[],L=_.k,H=_.k,da=0,z=0,G=_.k;G=
+d[z++];)H=G.va(),_.P.jc(H,f,_.l)&&(L=t?j.bold(e,H):_.P.escape(H),F.push(_.P.ud(L,H,da++,G.O(),G.qc(),G.Fd(),G.qa())));a=_.P.dd(a,b,F,i,_.l,c.ge(),_.l,_.A)}else a=c;return a}}return _.p}function d(){h={};m=window.Number.MAX_VALUE;n=0}function e(a){var b=a.Cb().hb(),c=b.length;c<m&&(m=c);c>n&&(n=c);var d=h[c];d||(d=h[c]={});d[b]=a}var f=/^[!"#$%'()*,\/:;<=>?[\\\]^`{|}~]+$/,g=_.l,i,h,m,n,j,q,t={la:function(a){j=a.get(150,t)},za:function(){i=_.P.zb([_.xZ.nf]);d()},ka:function(a){q=a;g=a.Ld},O:(0,_.E)(151),
+fa:function(){return _.P.D.Pk},Z:function(){return{Ra:a,update:b,get:c,reset:d}},Ga:function(){g=_.A}};return t};_.P.D.Pk=97;_.P.ja.register(151,_.P.D.Pk,_.P.Er);
+_.P.Fr=function(){function a(){return 3}function b(a){if(e){var b=a.Cb(),c=a.La();if(c.length){var d=b.hb();a:for(var b=window.Number.MAX_VALUE,i,s=0;i=c[s++];){if(!f[i.O()]){b=-1;break a}i=i.va();b=window.Math.min(i.length,b)}if(-1!=b){var h=c[0].va();if(_.P.jc(h,d,_.l))for(s=d.length+1;s<=b;){d=_.p;for(i=0;h=c[i++];){h=h.va();if(s>h.length)return;h=h.substr(0,s);if(d){if(d!=h)return}else d=h}g[d]=a;++s}}}}}function c(a){if(e){var b=g[a.hb()];if(b){var c=a.Xi(),d=a.hb();b.Cb().hb();for(var f=b.qa(),
+s=h||!f.qg("k"),m=[],v,x,u=b.La(),y=0,w;w=u[y++];)x=w.va(),v=s?i.bold(c,x):_.P.escape(x),m.push(_.P.ud(v,x,w.Ab(),w.O(),w.qc(),w.Fd(),w.qa()));delete g[d];return _.P.dd(a,a.Aa(),m,f,_.l,b.ge(),_.l,_.A)}}return _.p}function d(){g={}}var e=_.l,f,g={},i,h,m={la:function(a){i=a.get(150,m)},za:function(){f=_.P.zb([_.xZ.nf])},ka:function(a){h=a.Td;e=a.Md},O:(0,_.E)(151),fa:function(){return _.P.D.Tk},Z:function(){return{Ra:a,update:b,get:c,reset:d}},Ga:function(){e=_.A}};return m};_.P.D.Tk=98;
+_.P.ja.register(151,_.P.D.Tk,_.P.Fr);_.P.fn=function(){function a(){return _.P.gn()}function b(a,b){var c=a.qa(),d=c.ya(f.Gg),c=c.ya(f.Ek);b.render(d,c)}function c(a,b,c){c.search(b.va(),1)}function d(a,b,c){c.search(b.va(),1);return _.l}function e(){return 19}var f={Gg:"a",Ek:"b"};return{O:(0,_.E)(152),fa:function(){return _.P.D.hg},Z:function(){return{Ib:a,render:b,lb:c,Kb:d,Jb:e}}}};_.P.D.hg=35;_.P.ja.register(152,_.P.D.hg,_.P.fn);
+_.P.gn=function(){var a;a=_.P.Na();return{Da:function(){return a},O:(0,_.E)(19),jb:(0,_.E)(_.l),render:function(b,c){a.innerHTML=["<b>",b," = ",c,"</b>"].join("")}}};
+_.P.qy=function(){function a(a){return _.P.ry(i,a)}function b(a,b){var c=a.qa(),d=c.ya(g.fv),e=f(a),c=c.ya(g.Ls);b.render(d,e,h,c)}function c(a){return f(a)}function d(a,b,c){a=f(b);i.Mc(a);c.search(a,1)}function e(){return 46}function f(a){return a.qa().ya(g.Ps)||a.va()}var g={aA:"a",Ls:"b",Ps:"c",fv:"d",fA:"e",bA:"f",Yf:"g",RD:"h"},i,h,m={Ba:function(a,b){b.addRule(".gsen_a","color:#333")},la:function(a){i=a.get(118,m)},ka:function(a){h=a.Yc?a.Vc:""},O:(0,_.E)(152),fa:function(){return _.P.D.Jt},
+Z:function(){return{Ib:a,render:b,Tc:c,lb:d,Kb:_.P.ta,Jb:e}}};return m};_.P.D.Jt=377;_.P.ja.register(152,_.P.D.Jt,_.P.qy);
+_.P.ry=function(a,b){var c,d,e,f,g,i;c=_.P.Na();var h=_.P.Fc();c.appendChild(h);d=h.insertRow(-1);h=d.insertCell(-1);h.style.width="100%";e=_.P.wa("span");h.appendChild(e);f=_.P.wa("span");f.className="gsen_a";h.appendChild(f);return{Da:function(){return c},O:(0,_.E)(46),jb:(0,_.E)(_.l),render:function(c,h,j,q){e.innerHTML=c;f.innerHTML=q?"&nbsp;&ndash; "+q:"";i=h;j&&!g&&(g=_.P.hi(d),g.onclick=function(c){a.Je();a.Mc(i);b.search(i,9);return _.P.Gb(c)});j?(g.innerHTML=j+" &raquo;",g.style.display=
+""):g&&(g.style.display="none")}}};
+_.P.wo=function(){function a(a){return _.P.xo(a)}function b(a,b){var c=a.qa(),d=c.ya(i.Aj),c=c.ya(i.km),e=a.Mb(),f=e.replace(/HTTPS?:\/\//gi,""),e=_.P.vj(e);/^HTTPS?:\/\//i.test(e)||(e=(0<d.indexOf("/url?url=https:")?"https":"http")+"://"+e);b.render(c,f,e,d)}function c(a,b){return b}function d(a,b,c){return g(a,b,c)}function e(a,b,c){g(a,b,c);return _.l}function f(){return 5}function g(a,b,c){b=b.qa().ya(i.Aj);c.kd(b);return _.P.Gb(a)}var i={Aj:"a",km:"b"};return{Ba:function(a,b){b.addRule(".gsn_a",
+"padding-top:4px;padding-bottom:1px");b.addRule(".gsn_b","display:block;line-height:16px");b.addRule(".gsn_c","color:green;font-size:13px")},O:(0,_.E)(152),fa:function(){return _.P.D.wk},Z:function(){return{Ib:a,render:b,Tc:c,lb:d,Kb:e,Jb:f}}}};_.P.D.wk=32;_.P.ja.register(152,_.P.D.wk,_.P.wo);
+_.P.xo=function(a){function b(a){return m?(_.P.Gb(a),_.l):_.A}function c(b){b=b||window.event;m=_.A;b.which?m=2==b.which:b.button&&(m=4==b.button);f.href=a.Id(h)}function d(a,b){var c=_.P.wa("span");c.className=a;b.appendChild(c);return c}var e,f,g,i,h,m;e=_.P.Na();e.className="gsn_a";e.style.lineHeight="117%";var n=d("gsn_b",e);f=_.P.wa("a");n.appendChild(f);g=_.P.wa("br");n.appendChild(g);i=d("gsn_c",n);return{Da:function(){return e},O:(0,_.E)(5),jb:(0,_.E)(_.l),render:function(a,d,e,n){f.innerHTML=
+a;f.onmousedown=c;f.onclick=b;f.href=e;a?(f.style.display="",g.style.display=""):(f.style.display="none",g.style.display="none");i.innerHTML=d;h=n}}};
+_.P.By=function(){function a(a){return _.P.Cy(a)}function b(a,b){var c=a.qa(),d=_.Fra,h=c.ya(d.ul),c=c.ya(d.Vs),d=a.va();b.render(h,c,d)}function c(a,b,c){c.search(b.va(),1)}function d(){return 33}return{Ba:function(a,b){b.addRule(".gspr_a","padding-right:1px")},O:(0,_.E)(152),fa:function(){return _.P.D.Ot},Z:function(){return{Ib:a,render:b,lb:c,Kb:_.P.ta,Jb:d}}}};_.P.D.Ot=31;_.P.ja.register(152,_.P.D.Ot,_.P.By);
+_.P.Cy=function(){var a;a=_.P.Na();a.className="gspr_a";return{O:(0,_.E)(33),Da:function(){return a},jb:(0,_.E)(_.l),render:function(b,c){a.innerHTML=c}}};
+_.P.Ju=function(){function a(a){return _.P.Ku(e,a)}function b(a,b){b.render(a.Mb(),a.va(),f)}function c(a,b,c){c.search(b.va(),1)}function d(){return 0}var e,f,g={Ba:function(a,b){b.addRule(".gsq_a","padding:0")},la:function(a){e=a.get(118,g)},ka:function(a){f=a.Yc?a.Vc:""},O:(0,_.E)(152),fa:function(){return _.P.D.Ds},Z:function(){return{Ib:a,render:b,lb:c,Kb:_.P.ta,Jb:d}}};return g};_.P.D.Ds=20;_.P.ja.register(152,_.P.D.Ds,_.P.Ju);
+_.P.Ku=function(a,b){var c,d,e,f,g;c=_.P.Na();c.className="gsq_a";var i=_.P.Fc();c.appendChild(i);d=i.insertRow(-1);i=d.insertCell(-1);i.style.width="100%";e=_.P.wa("span");i.appendChild(e);return{Da:function(){return c},O:(0,_.E)(0),jb:(0,_.E)(_.l),render:function(c,i,n){e.innerHTML=c;g=i;n&&!f&&(f=_.P.hi(d),f.onclick=function(c){a.Je();a.Mc(g);b.search(g,9);return _.P.Gb(c)});n?(f.innerHTML=n+" &raquo;",f.style.display=""):f&&(f.style.display="none")}}};
+_.P.yy=function(){function a(){return j}function b(){return _.P.D.Zr}function c(){return 1}function d(){return C}function e(a){if(x){if(q.onclick)q.onclick(a)}else a=window.document.createElement("script"),a.src=["//www.google.com/textinputassistant/",s,"/",r,"_tia.js"].join(""),window.document.body.appendChild(a),x=_.l,n.add(3)}function f(){m.oz()}function g(a){m.Cz(b(),a)}function i(a){m.toggleDropdown(b(),a)}function h(a){C.className="gsok_a gsst_e "+a}var m,n,j,q,t,r,s,C,v,x,u={Ba:function(a,
+b){v=a;a.ii()||(b.addRule(".gsok_a","background:url(data:image/gif;base64,R0lGODlhEwALAKECAAAAABISEv///////yH5BAEKAAIALAAAAAATAAsAAAIdDI6pZ+suQJyy0ocV3bbm33EcCArmiUYk1qxAUAAAOw==) no-repeat center;display:inline-block;height:11px;line-height:0;width:19px"),b.addRule(".gsok_a img","border:none;visibility:hidden"))},la:function(a){var b=_.AZ;m=a.get(b.Sf,u);n=a.get(b.$a,u)},za:function(a){j=!!a.Ge;t=a.Rh;r=a.Ud;s=a.Th;(C=v.get("gs_ok"))?q=C.firstChild:(q=_.P.wa("img"),q.src=t+"/tia.png",C=_.P.wa("span",
+"gsok_a gsst_e"),C.id=v.getId("gs_ok"),C.appendChild(q));q.hd=f;q.sc=h;q.sd=g;q.td=i;q.setAttribute("tia_field_name",v.Ce().name);q.setAttribute("tia_disable_swap",_.l)},ka:function(a){a.ee&&(j=!!a.Ge);q.setAttribute("tia_property",a.Sh)},O:(0,_.E)(160),fa:function(){return _.P.D.Zr},Z:function(){return{isEnabled:a,Or:b,Ra:c,Da:d,lb:e}}};return u};_.P.D.Zr=78;_.P.ja.register(160,_.P.D.Zr,_.P.yy);
+_.P.Ky=function(){function a(){return f}function b(){return _.P.D.$r}function c(){return 2}function d(){return g}function e(){var a=window.google&&window.google.qb;a&&a.tp()}var f,g,i;return{Ba:function(a,b){i=a;a.ii()||b.addRule("#qbi.gssi_a","background:url(data:image/gif;base64,R0lGODlhEgANAOMKAAAAABUVFRoaGisrKzk5OUxMTGRkZLS0tM/Pz9/f3////////////////////////yH5BAEKAA8ALAAAAAASAA0AAART8Ml5Arg3nMkluQIhXMRUYNiwSceAnYAwAkOCGISBJC4mSKMDwpJBHFC/h+xhQAEMSuSo9EFRnSCmEzrDComAgBGbsuF0PHJq9WipnYJB9/UmFyIAOw==) no-repeat center;cursor:pointer;display:inline-block;height:13px;padding:0;width:18px")},
+za:function(a){f=!!a.Jf;g=i.get("gs_si");g||(g=_.P.wa("span"),g.id=i.getId("gs_si"),a=_.P.wa("span","gssi_a gsst_e"),a.id="qbi",g.appendChild(a))},ka:function(a){a.ee&&(f=!!a.Jf)},O:(0,_.E)(160),fa:function(){return _.P.D.$r},Z:function(){return{isEnabled:a,Or:b,Ra:c,Da:d,lb:e}}}};_.P.D.$r=79;_.P.ja.register(160,_.P.D.$r,_.P.Ky);
+_.P.Oy=function(){function a(){return _.P.D.es}function b(a){ia!=a&&(H.dir=ia=a,f())}function c(){return H}function d(a){if((a=z[a])&&a.style)a.style.display=""}function e(a){if((a=z[a])&&a.style)a.style.display="none"}function f(){G&&(z[G].className="gsst_a",u.hide(),G=_.p)}function g(a,b){G=a;var c=z[a];c.className="gsst_a gsst_g";var d=U.lastChild;d!=b&&(d==K?U.appendChild(b):U.replaceChild(b,d));u.setPanel(q());u.show();c=c.clientWidth;K.style.width=c+"px";K.style.left="rtl"==ia?"0":U.clientWidth-
+c+"px"}function i(a,b){G==a?f():g(a,b)}function h(a){var b=_.vra;a.Ii="rtl"==ia?b.Gg:b.Ek;a.zl=_.A}function m(){return U}function n(){return L.rg||I==ia?Z:_.p}function j(){f()}function q(){return _.P.D.es}function t(a,b){return b.Ra()-a.Ra()}function r(){W!=G&&f()}function s(){for(var a,b=0,c;c=F[b++];)if(c.isEnabled()){a=_.l;var d=_.P.wa("a","gsst_a");x(d,c);d.appendChild(c.Da());H.appendChild(d)}H.style.display=a?"":"none"}function C(){W=_.p}function v(){z={};for(var a=0,b;b=F[a++];)if(b.isEnabled()){var c=
+b.Or(),d=b.Da().parentNode;d.onclick=b.lb;d.onmouseover=function(){W=c};d.onmouseout=C;z[c]=d;b.Tx&&b.Tx().oD&&e(c)}}function x(a,b){a.href="javascript:void(0)";a.onkeydown=function(a){var a=a||window.event,c=a.keyCode;if(13==c||32==c)b.lb(a),w.If(),_.P.Gb(a)}}var u,y,w,F,L,H,da,z={},G,U,K,W,I,ia,Z,pa,Da={Ba:function(a,b){da=a;I=a.Ae();a.ii()||(b.addRule(".gsst_a","display:inline-block"),b.addRule(".gsst_a","cursor:pointer;padding:0 4px"),b.addRule(".gsst_a:hover","text-decoration:none!important"),
+b.addRule(".gsst_b",["font-size:16px;padding:0 2px;",b.prefix("user-select:none;"),"white-space:nowrap"].join("")),b.addRule(".gsst_e",_.P.Tl(0.55)),b.addRule(".gsst_a:hover .gsst_e,.gsst_a:focus .gsst_e",_.P.Tl(0.72)),b.addRule(".gsst_a:active .gsst_e",_.P.Tl(1)),b.addRule(".gsst_f","background:white;text-align:left"),b.addRule(".gsst_g",["background-color:white;border:1px solid #ccc;border-top-color:#d9d9d9;",b.prefix("box-shadow:0 2px 4px rgba(0,0,0,0.2);"),"margin:-1px -3px;padding:0 6px"].join("")),
+b.addRule(".gsst_h","background-color:white;height:1px;margin-bottom:-1px;position:relative;top:-1px"))},la:function(a){u=a.get(115,Da);y=a.get(117,Da);w=a.get(118,Da);F=a.Pa(160,Da)},za:function(a){pa=a.ee;F.sort(t);H=da.get("gs_st");if(!H){H=_.P.Na("gsst_b");H.id=da.getId("gs_st");if(a=a.fe)H.style.lineHeight=a+"px";s()}v()},ka:function(a){L=a;(a=a.Hc)&&(Z=da.Ac(a));if(pa)for(var a=0,b;b=F[a++];){var c=!!z[b.Or()];if(b.isEnabled()!=c){H.innerHTML="";s();v();break}}K=_.P.Na("gsst_h");U=_.P.Na("gsst_f");
+U.dir="ltr";U.appendChild(K);y.fc(13,r)},O:(0,_.E)(173),fa:a,Z:function(){return{gc:b,Da:c,HD:d,jD:e,oz:f,Cz:g,toggleDropdown:i}},Sd:function(){var b={Ik:h,Da:m,xe:n,Jk:j,Lc:_.P.ta,Qh:q};return[{Ba:_.P.ta,la:_.P.ta,za:_.P.ta,ka:_.P.ta,O:(0,_.E)(154),fa:a,Z:function(){return b},Sd:_.P.ta,Ga:_.P.ta}]}};return Da};_.P.D.es=174;_.P.ja.register(173,_.P.D.es,_.P.Oy);
+_.P.QD=function(){function a(a){if(_.P.Gc(a))if(b.Xc()){var a=_.DZ,e=b.Wc().qa();c(e.ya(a.Dk))}else d?c(d):c(a)}var b,c,d,e,f={uf:function(a,d,h,m,n,j,q){b&&b.Ga();e=h;c=d;var t=_.P.Uk(),r=_.P.Ki(),s=r.$();s.Zf=_.A;s.Ec="flights-universal";s.Rd="flights";s.ic=window.google.kHL;s.Be=j;s.Xa=_.P.zb([55]);s.kb=0;d={QA:d,Iv:h,Hv:m,ZA:n};s.Kd={};_.P.Xz(s.Kd,d);_.P.Nk||(s.Sc=[1,1,0]);s.Hc=q;s.ze=_.A;s.$f=_.l;b=t.$(a,_.p,f,1);b.uf(r.normalize(s))},search:a,a:_.P.Ic,b:a,j:function(a){a=a.La();if(a.length){var b=
+_.DZ;d=a[0].qa().ya(b.Dk);for(var c=0,f;f=a[c++];)f=f.qa(),f.contains(b.Gr)&&(e[f.ya(b.Dk)]=f.ya(b.Gr))}}};return f};
+_.P.Vz=function(a){function b(){return _.P.Wz(a.Hv)}function c(b,c){var d=b.qa(),e=d.ya(i.Gr)||a.Iv[d.ya(i.Dk)]||"";c.render(d.ya(i.zv),g(b),d.ya(i.dA),e)}function d(a){return a.qa().ya(i.zv)+" ("+g(a)+")"}function e(b,c){a.QA(c.qa().ya(i.Dk));return _.l}function f(){return 55}function g(b){b=b.qa();return b.fj(i.cA)?a.Hv:b.ya(i.Dk)}var i=_.DZ;return{Ba:function(a,b){b.addRule(".gsfd","padding:1px 0");b.addRule(".gsfd_c,.gsfd_u","color:#888")},O:(0,_.E)(152),fa:function(){return _.P.D.vA},Z:function(){return{Ib:b,
+render:c,Tc:d,lb:e,Kb:e,Jb:f}}}};_.P.D.vA=320;_.P.Wz=function(){var a,b,c,d,e=_.P.Fc();a=_.P.Na("gsfd");a.appendChild(e);var e=e.insertRow(-1),f=e.insertCell(-1);f.style.width="100%";b=_.P.wa("span");c=_.P.wa("span","gsfd_c");f.appendChild(b);f.appendChild(c);d=e.insertCell(-1);return{Da:function(){return a},O:(0,_.E)(55),jb:(0,_.E)(_.l),render:function(a,e,f,m){_.P.Si(b,a);_.P.Si(d,m);_.P.Si(c," ("+e+")");b.className=f?"":"gsfd gsfd_u"}}};
+_.P.Xz=function(a,b){var c=_.AZ;a[c.RENDERER]=[_.P.Vz(b)];a[c.ue]=[_.P.Yz(b.ZA)];a[c.Lh]=_.P.Zz(b.Iv);a[c.Vf]=[_.P.D.lc]};_.P.Yz=function(a){function b(b){b.setParameter("requiredfields","flun_origin:"+a);return 1}function c(){return 16}return{O:(0,_.E)(156),fa:function(){return _.P.D.wA},Z:function(){return{Kc:b,Ra:c}}}};_.P.D.wA=319;
+_.P.Zz=function(a){function b(b){for(var d=_.DZ,e=[],f=[],g=b.La(),i=0,h;h=g[i++];){var m=h.qa();m.ya(d.Gr)||a[m.ya(d.Dk)]?e.push(h):f.push(h)}d=e.concat(f);for(i=0;i<d.length;i++)d[i]=_.P.Nq(d[i],i);return _.P.dd(b.Cb(),b.Aa(),d,b.qa(),b.Ih(),b.ge(),b.$h(),_.l)}return{O:(0,_.E)(122),fa:function(){return _.P.D.xA},Z:function(){return{wr:b}}}};_.P.D.xA=351;_.DZ={Dk:"a",dA:"b",cA:"c",zv:"d",Gr:"e"};
+_.P.Ya=function(a){function b(b){function c(a,b,d){Ja&a||(Ha[b]=Ha[d]=161)}var e=v.$(),f=d(),g=F!=q.wg;if(U[1]||_.P.Zj(window.google.kHL))e.gf=_.l;e.Rd=y;e.Xe=K.pq||"";e.rd=K.token||"";e.Ve=K.stok||"";e.xc=K.exp||"";e.Be=K.scc||"";e.qh=_.l;e.Qc=f?1:0;e.ic=window.google.kHL;e.authuser=window.google.authuser;e.Kf=g;e.fe=27;K.soff&&(e.Ue=_.l);e.Ld=K.agen;e.Md=K.cgen;var i=K.lyrs,h=i&t.Wb&&f,n=i&t.Wa&&f,L=i&t.Of&&f,ia=i&t.Eb,Aa=i&t.Tr,Ea=e.Qa;Ea[r.wb]=i&t.el;Ea[r.Wb]=h;Ea[r.Wa]=n;Ea[r.Od]=L;Ea[r.Eb]=
+ia;Ea[r.De]=Aa;e.Lf=n?2:0;i=_.xZ;w&&(e.sf=_.l,e.Vd=f?K.sce:K.scd);f&&(e.rf=_.l,e.of=_.l,K.navs||delete e.Xa[i.qk],e.Xa[i.$i]=_.l);K.jsonp?(e.kb=0,e.le=K.host,e.Hd=_.l):e.kb=1;if((w||g)&&window.google.j&&window.google.j.gt)if(f=window.google.j.gt())e.kb=2,e.Hf=(0,_.zl)().B(f);a.ll&&a.ll(e);if(f=K.ovr){g=f;if("ent"in g&&(z=!!g.ent))e.Xa[46]=_.l,e.xc="les;"+e.xc;"he"in g&&(e.Hc=g.he);"s"in g&&(e.ne=g.s);a.kl&&a.kl(g,e)}var Ha={},Ja=K.lyrs;c(t.el,r.wb,r.Tb);c(t.Wb,r.Wb,r.Kh);c(t.Wa,r.Wa,r.Yd);c(t.Of,
+r.Od,r.Pf);c(t.Eb,r.Eb,r.ef);a.jl&&(Ha[r.Qf]=[162],a.jl(e,Ha));_.P.Ya.B(Ha,K);e.Kd=Ha;f=f||{};_.P.Ya.lc(f,e);f=_.A;a.ka&&(f=a.ka(e));e=v.normalize(e);if(s&&H)m(),!w||da||b||f?s.ka(e):d()||s.Ri(),a.Lq&&a.Lq();else{s=C.$(u,x,I,0);s.uf(e);_.P.Fp(x,s);b=[j.Ig,j.Dd];for(e=0;f=b[e++];)G[f]=s.Oe(x,f);for(b=0;e=W[b++];)window.google.msg.listen(e.ql,e.nl,e.Ye);a.uf&&a.uf()}}function c(){return s}function d(){return F==q.Vi}function e(a,b,c){W.push({ql:a,nl:b,Ye:c})}function f(){return U}function g(a){var b=
+s.Uj();return a+"&"+s.Ke(b)}function i(a,b,c,d){d!=_.p&&(c[j.$k]=d);_.P.Cf(x,c);c=s.Uj(b);a=[a,_.P.Fk(b)];window.google.msg.send(15,a)&&(a=j.Ig,G[a]&&(G[a].value=c[a]),a=j.Dd,G[a]&&(G[a].value=c[a]),(!x.onsubmit||x.onsubmit()!=_.A)&&x.submit());_.P.Br();d!=_.p&&(s.Bc(d),_.P.Rl(x,j.$k))}function h(){var b={};a.Am&&(b=a.Am());if(z){var c=j.Yf;if(!(c in b)){var d=s.Ok(c);d&&(b[c]=d)}}return b}function m(){var a=j.Ig;G[a]&&(G[a].value="");a=j.Dd;G[a]&&(G[a].value="")}function n(a){a=a?q.Vi:q.wg;a!=F&&
+(F=a,H=L=_.l,b(_.l))}var j={Ig:"oq",$k:"dq",Ur:"tbs",Dd:"gs_l",Yf:"gs_ssp"},q={Vi:"p",ty:"i",wg:"b"},t={el:1,Wb:2,Wa:4,Of:8,Eb:16,Tr:32},r=_.AZ,s,C,v,x,u,y,w,F=q.wg,L=_.A,H,da,z,G={},U,K,W=[],I={a:f,b:function(a,b){var c=h();if(j.Ur in c)i(a,b,c,"");else if(_.P.Gc(a))i(a,b,c);else{var d=s.Cg();d&&(s.Bc(d),i(d,b,c,a))}},c:function(a){window.location=a},d:function(a){var a=g(a),b=window.frames.wgjf;b?(window.google.r=1,b.location.replace(a)):window.location=a},e:g,f:function(a){_.P.Cf(x,{});window.google.msg.send(49,
+[a])},h:function(a){_.P.Cf(x,{});window.google.msg.send(66,[a])},i:function(a){window.google.msg.send(50,[a])},j:function(b,c){a.$d&&a.$d(b,c);_.P.wc(b.Aa())&&window.google.msg.send(9,[b.Aa(),_.P.yr(b.La()),b.$h(),b.qa().fj("b"),c,_.P.Ar(b)])},k:function(a,b){var c=b.va();window.google.msg.send(23,[a,c])},l:function(){m()},m:(0,_.ca)(),o:function(){a.yd&&a.yd();window.google.msg.send(22)},p:function(){a.zd&&a.zd();window.google.msg.send(11)},r:function(b,c){a.$c&&a.$c(b,c);_.P.Ya.M(b,c)},s:function(a){window.google.msg.send(54,
+[a])},t:function(){window.google.msg.send(55)},u:function(){a.xd&&a.xd()},v:function(){window.google.msg.send(45)},w:function(a){_.P.Cf(x,h());window.google.msg.send(12,[a])},z:function(){window.google.msg.send(74)},aa:function(){window.google.msg.send(75)}},ia={Ic:f,fr:function(){return y},Ce:function(){return u},fm:c,Fh:function(){return K},Vl:d,Ml:function(){return w},Hs:e};U=_.P.Ic();window.google.ac={a:b,gs:c,cc:function(){s.Rb()}};C=_.P.Uk();v=_.P.Ki();_.P.Mq(function(c){var d=_.P.bm(),e=d.q,
+f=c.ds;H=x==d&&u==e;da=y!=f;x=d;u=e;y=f;K=c;c=c.psy||q.wg;w=c==q.Vi;L||(F=c);s||window.google.msg.listen(62,n);a.Kq&&a.Kq();b(_.A)},function(){if(s){if(!w){for(var a=0,b;b=W[a++];)window.google.msg.unlisten(b.ql,b.nl);s.Ga()}m()}});e(4,function(a){s.Bc(a);return _.p},50);return ia};_.P.Ya.lc=_.P.ta;_.P.Ya.hg=function(a){_.P.Ya.lc=a};_.P.Ya.M=_.P.ta;_.P.Ya.Bg=function(a){_.P.Ya.M=a};_.P.Ya.B=_.P.ta;_.P.Ya.mg=function(a){_.P.Ya.B=a};
+_.P.Ln=function(){function a(a,b,c){var d=a[b],e=d&&d.parentNode;c===_.p?e&&e.removeChild(d):(e||(e=window.document.getElementById("gbqffd")||window.document.getElementById("tophf")||a,d=window.document.createElement("input"),d.type="hidden",d.name=b,e.appendChild(d)),d.value=c)}var b=/^\/(search|images)$/,c=/[#&]fp=/,d,e={};_.P.bm=function(){for(var a=["gbqf","f","gs"],b=0,c;c=a[b++];)if(c=window.document.getElementsByName(c)[0])return c;return _.p};_.P.Mq=function(a,b){window.google.register(10,
+{init:a,dispose:b})};_.P.om=function(){return b.test(window.location.pathname)||c.test(window.location.hash)};_.P.Ic=function(){if(!d){var a=window.google.browser.engine,b=window.google.browser.product;d={};d[_.zZ.IE]=a.IE;d[_.zZ.GECKO]=a.GECKO;d[_.zZ.OPERA]=b.OPERA;d[_.zZ.WEBKIT]=a.WEBKIT;d[_.zZ.SAFARI]=b.SAFARI;d[_.zZ.CHROME]=b.CHROME;d[_.zZ.Dj]=b.IPAD||b.IPOD||b.IPHONE;d[_.zZ.wj]=b.ANDROID_MOBILE||b.ANDROID_TABLET}return d};_.P.Cf=function(b,c){for(var d in e)d in c||(a(b,d,e[d]),delete e[d]);
+for(d in c){if(!(d in e)){var h=b[d];e[d]=h&&h.parentNode?h.value:_.p}a(b,d,c[d])}};_.P.Rl=function(b,c){a(b,c,_.p)};_.P.Br=function(){e={}}};_.P.Ln();_.P.jn=function(){function a(a,c,d,e){a&&c&&(a=a[d])&&c.Jj(a[0]||a,e)}_.P.Jj=a;_.P.Fp=function(b,c){a(b,c,"btnG",12);a(b,c,"btnK",12);a(b,c,"btnI",7)};_.P.Ac=function(a){return window.document.getElementById(a)};_.P.Ct=function(a){var c=window.gbar;(c=c&&c.elc)&&c(function(){window.setTimeout(a.Bl,0)})}};_.P.jn();
+_.P.Uk=function(){function a(a){return{api:a,uf:a.a,ka:a.b,Ga:a.c,lx:a.d,Oe:a.e,nb:a.f,Ma:a.g,Db:a.h,Xc:a.i,Uj:a.j,Ke:a.k,uv:a.l,rx:a.m,Jj:a.n,Rb:a.o,nv:a.p,Ti:a.q,Tu:a.r,Wt:a.s,Me:a.t,tj:a.u,focus:a.v,blur:a.w,rj:a.x,Fb:a.y,Bc:a.z,sj:a.aa,Xb:a.ab,search:a.ad,vv:a.ae,wv:a.af,Re:a.ag,Wc:a.ah,Bl:a.ai,cj:a.al,isActive:a.am,Ri:a.an,ob:a.ao,Cg:a.ap,Pi:a.aq,vd:a.ar,getId:a.as,mv:a.at,setSuggestions:a.au,Ht:a.av,pd:a.aw,uj:a.ax,Ze:a.ay,hj:a.az,Le:a.ba,Qv:a.bb,Ok:a.bc,gk:a.bd,nx:a.be}}return{$:function(b,
+c,d,e){try{var f=window.google.sbox(b,c,d,e);return a(f)}catch(g){return _.p}},translate:function(b){return a(b.api||b)}}};
+_.P.qp=function(){function a(){return window.google.dom.get("#gbqfw")!=_.p}var b=_.P.D,c=_.AZ,d=_.xZ,e,f="hp",g,i,h,m,n={Kq:function(){var a=e.Fh(),b=a.msgs;f=a.client;a=!!a.sbih;g=!!b.sbi||a},ka:function(d){var f=e.Fh(),i=e.Ml(),n=e.Vl(),s=0;a()&&(s=1);d.Sc=[s,0,0];d.Ad=!i;if(g||"i"==e.fr())d.Jf=_.l;"i"==e.fr()?(d.Ad=_.A,d.qd=_.A):_.P.om()&&(d.Ad=_.A);g&&(i=f.msgs.sbih,h.dB(f.sbiu,f.sbiw,f.sbih,f.msgs.sbi,i),i&&(d.kf=i));d.Qa[c.Yb]=n||g;f=d.kf!=m;m=d.kf;d.Af[b.Bm]=n;d.Af[b.Ns]=g;return f},Lq:function(){g&&
+e.fm().Bc(e.Fh().sbiq)},uf:function(){var a=e.fm();("webhp"==window.google.sn||"imghp"==window.google.sn)&&a.focus();g&&a.Bc(e.Fh().sbiq);_.P.Ct(a)},$c:function(b,c){a()&&(b.addRule(".gssb_a","padding:0 10px"),b.addRule(".gssb_c","z-index:986"),c||b.addRule(".gsib_a","padding:"+(_.P.Ui&&_.P.wd||_.P.gb&&!_.P.Nk?6:5)+"px 9px 0"))},ll:function(b){var c=e.Vl(),g=e.Fh();b.Ec=f;b.jf=_.A;b.Yc=c&&g.fl;b.ze=b.Yc;b.Zc="lst-t";b.kf=g.hint;b.zg=_.l;b.qd=!!g.lm;b.je=!!g.spch;b.ee=_.l;a()?(b.Bb="gbqfif",b.nd="gbqfsf",
+b.Hc="gbqfqw",b.Yh="gbqfqw"):(b.Bb="gsfi",b.nd="gsfs",b.Hc="sftab");b.Xa[d.Fl]=_.l;b.Xa[d.wl]=_.l;if("hp"==f||"serp"==f)b.Xa[d.$i]=_.l;e.Ml()&&(b.Xa[d.xl]=_.l);c&&(b.Xd=_.A,b.Uf=2);"token"in g&&(b.Xa[d.Zi]=_.l);c=g.msgs;b.vg=c.srch;b.Vc=c.lcky;b.sg=c.lml;b.ug=c.psrl;b.tg=c.psrc;if(c=g.kbl)b.Ge=_.l,b.Ud=c,b.Rh="//www.gstatic.com/inputtools/images",b.Sh="i"==e.fr()?"images":"web","kbv"in g&&(b.Th=g.kbv)},kl:function(a,c){if("ms"in a){var e=a.ms;c.Qa[b.ok]=e;c.Xa[d.Zk]=e}"q"in a&&(c.Jf=a.q);"tds"in a&&
+(c.Qi=a.tds)},jl:function(a,b){i||(i=_.P.St());h||(h=_.P.oA());b[c.Jh]=[i.Wr(),h.Wr()];if(a.je){var d=!e.Ml();b[c.Qf].push(_.P.sA(d));b[c.Hk]=[_.P.tA(),162]}},Am:function(){var a={},b=i&&i.jz();b&&(a.tbs=b,a.dq="");return a}};e=_.P.Ya(n);e.Hs(64,function(){e.fm().Bl()},50);return n};_.P.qp();
+_.P.pp=function(a,b,c,d){function e(){v.Ga()}function f(a){H.Bc(a||"")}function g(){return Da}function i(){return pa}function h(){return H.Ma()}function m(){return I.Wc()}function n(){F.Ha(8)}function j(a){return G.qa(a)}function q(){return na||!!y&&y.ob()}function t(a){a=x.translate(a);a.Xa[35]||(a.rd="");var b=a.Ud;b?a.Ud=b.toLowerCase():a.Ge=_.A;_.P.vl||(a.je=_.A);return a}function r(a){var b=_.AZ,c=a.Qa,d=c[b.Eb],e=c[b.Wb],f=c[b.De],g=c[b.Od],s=c[b.Wa],f=e||g||f;c[b.wb]||s||d||f?(a.Qa[b.wb]=_.l,
+a.Qa[b.Tb]=_.l,f?(a=_.P.Zj(a.ic),!e||_.P.nc&&(_.P.Ui||a)||_.P.gb&&a?(Da=3,c[b.Wb]=_.A,c[b.Kh]=_.A):Da=2):Da=1):Da=0}var s={Dd:"gs_l",Yf:"gs_ssp",yo:"oq"},C,v,x,u,y,w,F,L,H,da,z,G,U,K,W,I,ia,Z,pa,Da,D=_.A,na,ma={a:function(c){if(!D){var c=t(c),d=_.P.zm(a),e;a:{if(a)for(var f=a;f=f.parentNode;){var g=f.dir;if(g){e=g;break a}}e="ltr"}var s=!!d.getElementById("gs_id"+pa),f=["gssb_c","gssb_k"];c.Zc&&f.push(c.Zc);f=_.P.mn(c.xh,c.kh,c.$f,pa,f);r(c);na=c.ob;v=_.P.ln(C,c.Kd||{},{ii:function(){return s},get:function(a){return d.getElementById(a+
+pa)},Ac:function(a){return d.getElementById(a)},Ph:function(){return b},Ae:function(){return e},getId:function(a){return a+pa},Ce:function(){return a}},f,ma,c);C.$c(f,s);f.Gp();c=_.AZ;u=v.get(c.zj,ma);y=v.get(c.Yb,ma);w=v.get(c.vb,ma);F=v.get(c.Ja,ma);L=v.get(c.Za,ma);H=v.get(c.Ca,ma);da=v.get(c.Nb,ma);z=v.get(c.$a,ma);G=v.get(c.Hb,ma);U=v.get(c.re,ma);K=v.get(c.Nf,ma);W=v.get(c.Ua,ma);I=v.get(c.Ka,ma);ia=v.get(c.Wa,ma);Z=v.get(c.yb,ma);var j=_.P.oc(a),q=_.P.Vj(j);F.listen(j,"resize",function(){var a=
+_.P.Vj(j);if(a.bf!=q.bf||a.Ef!=q.Ef)q=a,n()});D=_.l}},b:function(a){e();a=t(a);r(a);na=a.ob;v.ka(a)},c:e,d:function(){return b},e:function(a,b){return _.P.Oe(a,b)},f:function(){return H.nb()},g:h,h:function(){return I.Db()},i:function(){return I.Xc()},j:j,k:function(a,b){a||(a=G.qa(b));return _.P.Ke(a)},l:function(){return I.Qb()},m:function(){return I.hq()},n:function(a,b){F.listen(a,"click",function(a){Z.search(h(),b);return _.P.preventDefault(a)})},o:function(){L.Rb()},p:function(){I.yg()},q:function(a){H.Ti(a||
+"")},r:function(){return w.getHeight()},s:function(){H.clear()},t:function(a){return L.Me(a)},u:function(){H.tj()},v:function(){da.focus()},w:function(){da.blur()},x:function(){return L.rj()},y:function(){var a=W.Fb();return a?_.P.Kj(a.Rj()):_.p},z:f,aa:function(a){a=L.sj(a,_.p);return _.P.Kj(a.Rj())},ab:function(){G.reset()},ad:function(a,b){Z.search(a,b)},ae:function(){ia&&ia.refresh()},af:function(a){I.Nh(a)},ag:function(){I.Re()},ah:m,ai:n,al:function(){H.cj()},am:function(){return v&&v.isActive()},
+an:function(a){y&&y.Ri(a)},ao:q,ap:function(){return q()&&y?y.Cg():""},aq:function(a,b){return _.P.Pi(a,b)},ar:g,as:i,at:function(){ia&&ia.clear()},au:function(a,b){f(a);I.isEnabled()&&I.setSuggestions(a,b,_.A)},av:function(a){F.Ha(15,{query:a})},aw:function(){return da.pd()},ax:function(a){L.uj(a)},ay:function(a){w.Ze(a)},az:function(a){return!!K&&K.hj(a)},ba:function(){var a,b=W.Fb();if(b){var c=b.ye();c&&((a=c.Le())||(a=b.qa().ya("o")))}return a||""},bb:function(a,b){return U?(U.gm(a,b),_.l):_.A},
+bc:function(a,b){switch(a){case s.yo:case s.Dd:return j(b)[a]||_.p;case s.Yf:var c;a:{if((c=m())&&46==c.O())if(c=c.qa().ya("g"))break a;c=_.p}return c;default:return _.p}},bd:function(a){u&&u.gk(a)},be:function(){return z.fq()},getId:i,vd:g};pa=d==_.p?_.P.ja.jq():d;x=_.P.Ki();C=_.P.hn(c);var d=window.navigator.userAgent,c=C.Ic(),X=/Version\/(\d+)/.exec(d),X=X&&X[1];X||(X=(X=/(?:Android|Chrome|Firefox|Opera|MSIE)[\s\/](\d+)/.exec(d))&&X[1]);d=(0,window.parseInt)(X,10)||0;_.P.gb=c[_.zZ.IE];_.P.Nk=_.P.gb&&
+8>=d;_.P.Wf=_.P.gb&&7>=d;_.P.nc=c[_.zZ.GECKO];_.P.yw=_.P.nc&&3>=d;_.P.oe=c[_.zZ.OPERA];_.P.wd=c[_.zZ.WEBKIT];_.P.Tn=c[_.zZ.SAFARI];_.P.vl=c[_.zZ.CHROME];_.P.zw=c[_.zZ.Dj];_.P.tk=c[_.zZ.wj];c=window.navigator&&(window.navigator.platform||window.navigator.appVersion)||"";_.P.Qs=/Linux/.test(c);_.P.Ui=/Mac/.test(c);_.P.Rs=/Win/.test(c);return ma};window.google||(window.google={});window.google.sbox=_.P.pp;
+
+(0,_.Bc)(_.O.$(),"sb");(0,_.Fc)(_.O.$(),"sb");
+}catch(e){_._DumpException(e)}
+try{
+_.vq=function(a,b){a instanceof window.Array?this.qz(a):b?this.qz([(0,_.me)(a),(0,_.ne)(a),a.offsetWidth,a.offsetHeight]):this.qz([a.offsetLeft,a.offsetTop,a.offsetWidth,a.offsetHeight])};_.wq=function(a,b){a.rC(window.Math.max(a.left,b.left));var c=window.Math.min(a.right,b.right);a.right=c;a.left=a.right-a.width;a.yB(window.Math.max(a.top,b.top));c=window.Math.min(a.bottom,b.bottom);a.bottom=c;a.top=a.bottom-a.height};
+_.xq=function(a,b){b.rC(window.Math.round((a.width-b.width)/2)+a.left);b.yB(window.Math.round((a.height-b.height)/2)+a.top)};_.yq=function(a,b){b.setAttribute("style",["width:",a.width,"px;height:",a.height,"px"].join(""))};_.zq=function(){this.M=this.B=this.y=this.x=this.t=window.NaN};_.Aq=function(a,b){return(0,window.isNaN)(a)?b:0.6*b+0.4*a};_.Bq=function(){this.B=_.p;this.U={};this.M=0;this.oa=[];this.xa=(0,_.ab)(this.dY,this);(0,_.Je)(window.document,"mousemove",this.xa)};_.Cq=function(){return(new window.Date).getTime()};
+_.Dq=function(a){var b=(0,_.Cq)(),c=a.U.x,d=a.U.y,e=b-a.B.t;a.B.update(b,c,d,(c-a.B.x)/e,(d-a.B.y)/e);if(b=a.ra)a:{if(e)if(b=a.B,c=b.x,b.B&&(c+=3E3*b.B),d=b.y,b.M&&(d+=3E3*b.M),b={x:c,y:d},b=a.Fa.edgeDistance(b.x,b.y),c=a.Fa.edgeDistance(a.B.x,a.B.y),0>b||0>c)a.ha=0;else{c<a.Ea&&(e*=window.Math.max(c/a.Ea,0.25));a.ha+=e;e=_.A;for(b=0;c=a.oa[b++];)c.time&&a.ha>=c.time&&(c.mU(),c.time=0),c.time&&(e=_.l);if(!e){b=_.l;break a}}b=_.A}b&&a.clear();a.M&&(a.M=window.setTimeout(function(){(0,_.Dq)(a)},30))};
+_.Eq=function(a){if(!_.Fq){a||(a=window.event);var a=a.target||a.srcElement,b=(0,_.Gq)(a,_.Hq);if(b&&(_.Iq=b.className,!a||!("A"!=a.tagName&&"IMG"!=a.tagName)))if(a=(0,_.Gq)(a,"uh_r")){window.clearTimeout(_.Jq);var c=(0,_.Kq)(a);c.docid!=_.Lq.targetDocId&&((0,_.Mq)(),_.Jq=window.setTimeout(function(){(0,_.Nq)(c)},0))}}};_.Gq=function(a,b){for(var c=0;a&&!(0,_.Oq)(a,b)&&a!=window.document.body&&7>c;)a=a.parentNode,c++;return a&&(0,_.Oq)(a,b)?a:_.p};
+_.Oq=function(a,b){if(!b)return _.A;if(!(b instanceof window.Array))return(0,_.ed)(a,b);for(var c=0;c<b.length;++c)if((0,_.ed)(a,b[c]))return _.l;return _.A};_.Pq=function(a,b){var c=window.document.getElementById(a);return c?(0,_.Gq)(c,b):_.p};
+_.Nq=function(a){var b=a.docid;(0,_.Pq)(b,"uh_rl");_.Lq.resultInfo&&(0,_.Mq)();var c=(0,_.jd)(b),c=c?c.getElementsByTagName("img"):[],d=0<c.length?c[0]:_.p;c&&"ri_of"==d.className||(_.Lq.resultInfo=a,_.Lq.targetDocId=b,_.Lq.startTime=(0,_.Cq)(),a=_.Lq.resultInfo.rect.clone(),a.adjustByScrollOffset(),a.setSizeAndPositionForElement(_.Qq,_.l),_.Qq.className="v",_.Rq=_.Oc.Gd?new _.vq([a.left-5,a.top-5,a.width+10,a.height+10]):new _.vq(_.Qq),_.Qq.onmouseout=function(){(0,_.Mq)()},_.Sq=_.l,(0,_.Je)(window.document,
+"mousemove",_.Tq),_.Uq.pK(25,function(){var a=_.Vq[_.Iq];a&&a.render(_.Lq)}),_.Uq.pK(130,function(){if(_.Lq.element&&_.Lq.image||_.Vq[_.Iq].render(_.Lq)){(0,_.Je)(_.Lq.element,"mousedown",_.Wq);_.Lq.element.style.overflow="hidden";var a=+_.Lq.image.getAttribute("data-width"),b=+_.Lq.image.getAttribute("data-height"),c=_.Lq.image.style;c.width=c.height=_.Lq.element.style.height="";_.Lq.element.className="uh_hp";var d=window.Math.max(a,_.Xq),c=_.Lq.element.offsetHeight+1,h=_.Lq.resultInfo.$V,m=new _.vq([0,
+0,h.width,h.height]),d=new _.vq([0,0,d,b]),a=new _.vq([0,0,a,b]);(0,_.xq)(h,m);(0,_.xq)(h,d);d.height=c;d.bottom=d.top+d.height;m.adjustByScrollOffset();d.adjustByScrollOffset();(0,_.wq)(m,_.Yq);(0,_.wq)(d,_.Yq);_.Lq.rect=_.Oc.Gd?new _.vq([d.left-10,d.top-10,d.width+20,d.height+20]):d.clone();(0,_.Zq)();(0,_.$q)(m,d,a,(0,_.Cq)());_.Lq.element.onmouseout=function(a){a||(a=window.event);var b=a.target||a.srcElement;if(b==this){for(a=a.relatedTarget?a.relatedTarget:a.toElement;a&&a!=b&&"BODY"!=a.nodeName;)a=
+a.parentNode;a!=b&&(0,_.Mq)()}};_.Oc.Gd||(a=(0,_.Pq)(_.Lq.targetDocId,"uh_r"),b=(0,_.Pq)(_.Lq.targetDocId,"ires"),a&&b&&((a=a.nextSibling)?b.insertBefore(_.Lq.element,a):b.appendChild(_.Lq.element)));_.Lq.element.className="uh_hv"}}),_.Uq.aO(_.Rq))};
+_.Kq=function(a){var b={},c=a.getElementsByTagName("a")[0],a=new _.vq(a,_.l);a.yB(a.top+window.Math.max(c.offsetTop,0));a.rC(a.left+window.Math.max(c.offsetLeft,0));var d=window.Math.min(a.width,c.offsetWidth);a.width=d;a.right=a.left+a.width;d=window.Math.min(a.height,c.offsetHeight);a.height=d;a.bottom=a.top+a.height;b.rect=a;b.$V=new _.vq(c,_.l);b.docid=c.id;return b};
+_.ar=function(){window.document.getElementById("uh_h")&&(_.Yq=new _.vq([12,12,window.document.documentElement.clientWidth-12-16,window.document.documentElement.clientHeight-12-12]))};_.cca=function(){var a=(0,_.Td)(window.document);_.br!=a?_.br=a:(0,_.Mq)()};_.cr=function(a){a||(a=window.event);(0,_.er)(a);_.fr.target?(0,_.gr)():(0,_.Mq)();return _.l};_.hr=function(a){_.Uq.clear();a.button!=(_.Oc.Gd?1:0)&&(0,_.er)(a)};
+_.ir=function(a,b,c){if(a=(0,_.md)(a))for(var d=0;d<a.length;++d)(0,_.Je)(a[d],b,c)};_.jr=function(a){a||(a=window.event);(0,_.kr)(a)&&(_.Lq.targetDocId||(0,_.lr)(a),(0,_.cr)(a))};_.mr=function(a){a||(a=window.event);(0,_.kr)(a)&&(_.Lq.targetDocId||(0,_.lr)(a),(0,_.hr)(a))};_.kr=function(a){var a=a.target||a.srcElement,b=(0,_.Gq)(a,"uh_r");return!!a&&!!b&&"IMG"==a.tagName};
+_.er=function(){var a=(0,_.Pq)(_.Lq.targetDocId,"uh_rl");if(a){if(_.Lq.startTime!=_.p){var b=(0,_.Cq)()-_.Lq.startTime;(0,_.nr)(a,"dur",b);_.Lq.startTime=_.p}_.fr.href=a.href}};_.nr=function(a,b,c){var d=a.href.match(/^(.*)\?(.*?)(#.*)?$/);if(d){for(var e=d[2].split("&"),f=b+"=",g=d[3]||"",i=0;i<e.length;i++)if(0==e[i].indexOf(f)){e[i]=b+"="+c;a.href=d[1]+"?"+e.join("&")+g;return}a.href=d[1]+"?"+d[2]+"&"+b+"="+c+g}else d=a.href.match(/^([^#]*)(#.*)?$/),g=d[2]||"",a.href=d[1]+"?"+b+"="+c+g};
+_.Wq=function(){if(!_.Lq.element)return _.l;var a=-1;_.Lq.startTime!=_.p&&(a=(0,_.Cq)()-_.Lq.startTime);for(var b=_.Lq.element.getElementsByTagName("a"),c=0,d;d=b[c];c++)_.Lq.startTime!=_.p&&(0,_.nr)(d,"dur",a);_.Lq.startTime=_.p;return _.l};_.Tq=function(a){a||(a=window.event);(_.Sq?_.Rq:_.Lq.rect).contains(a.clientX,a.clientY)||(0,_.Mq)()};
+_.Mq=function(){(0,_.Ke)(window.document,"mousemove",_.Tq);window.clearTimeout(_.Jq);window.clearTimeout(_.or);_.Uq&&_.Uq.clear();_.Lq.element&&("uh_hv"==_.Lq.element.className&&_.Lq.startTime!=_.p&&_.Vq[_.Iq].log(_.Lq),(0,_.Ke)(_.Lq.element,"mousedown",_.Wq),_.Lq.element.onmouseout=_.p,_.Lq.element.className="uh_h",_.Lq.element=_.p);(0,_.Zq)();_.Rq=_.p;_.Lq.targetDocId="";_.Lq.startTime=_.p;_.Lq.resultInfo=_.p;_.Lq.image=_.p};_.Zq=function(){_.Qq&&(_.Qq.onmouseout=_.p,_.Qq.className="");_.Sq=_.A};
+_.$q=function(a,b,c,d){var e;if(_.Oc.Gd)e=1;else{e=((0,_.Cq)()-d)/100;var f=+_.Lq.image.getAttribute("data-width"),g=+_.Lq.image.getAttribute("data-height"),i=window.document.getElementById(_.Lq.targetDocId);i&&(f==i.width&&g==i.height)&&(e=1)}1>e?(e=0.5>e?2*e*e:1-2*(e-1)*(e-1),(0,_.pr)(a,b,e).setSizeAndPositionForElement(_.Lq.element,_.l),(0,_.yq)((0,_.pr)(a,c,e),_.Lq.image),_.or=window.setTimeout(function(){(0,_.$q)(a,b,c,d)},5)):(b.setSizeAndPositionForElement(_.Lq.element,_.A),(0,_.yq)(c,_.Lq.image),
+_.Oc.Gd||(_.Lq.rect=new _.vq(_.Lq.element)),_.Lq.startTime=(0,_.Cq)(),_.Lq.element.style.overflow="")};_.pr=function(a,b,c){return new _.vq([+(window.Math.round(b.left-a.left)*c+a.left).toFixed(0),+(window.Math.round(b.top-a.top)*c+a.top).toFixed(0),+(window.Math.round(b.width-a.width)*c+a.width).toFixed(0),+(window.Math.round(b.height-a.height)*c+a.height).toFixed(0)])};_.qr=function(){window.document.getElementById("uh_h")&&(0,_.gr)()};_.rr=function(a){27==a.which&&(0,_.Mq)()};
+_.gr=function(){_.Fq=_.sr.s=_.l;(0,_.Mq)();(0,_.Je)(window.document,"mousemove",_.tr)};_.tr=function(a){(0,_.Ke)(window.document,"mousemove",_.tr);a:{_.sr.s=_.A;for(var b in _.sr)if(_.sr[b])break a;_.Fq=_.A}_.Fq||(a||(a=window.event),(0,_.lr)(a))};_.lr=function(a){var b=a.target||a.srcElement;if(b=(0,_.Gq)(b,_.Hq))_.Iq=b.className,b=a.target||a.srcElement,(b=(0,_.Gq)(b,"uh_r"))&&(0,_.Nq)((0,_.Kq)(b))};
+_.ur=function(a){_.Iq==a&&(_.Iq="");var b=(0,_.ob)(_.Hq,a);-1!=b&&_.Hq.splice(b,1);if(b=(0,_.md)(a))for(var c=0;b&&c<b.length;++c)(0,_.Ke)(b[c],"mouseover",_.Eq);if(_.Oc.Gd)for(b=(0,_.md)(a);b&&c<b.length;++c)(0,_.Ke)(b[c],"mousedown",_.mr),(0,_.Ke)(b[c],"click",_.jr);delete _.Vq[a]};(0,_.Ec)(_.O.$(),"hv");
+_.N=_.vq.prototype;_.N.$U=function(){return"[left: "+this.left+" right: "+this.right+" top: "+this.top+" bottom: "+this.bottom+" width: "+this.width+" height: "+this.height+"]"};_.N.qz=function(a){this.left=a[0];this.top=a[1];this.width=a[2];this.height=a[3];this.right=this.left+this.width;this.bottom=this.top+this.height};_.N.rC=function(a){this.left=a;this.right=this.left+this.width};_.N.yB=function(a){this.top=a;this.bottom=this.top+this.height};
+_.N.clone=function(){return new _.vq([this.left,this.top,this.width,this.height])};_.N.edgeDistance=function(a,b){return window.Math.min(a-this.left,this.right-a,b-this.top,this.bottom-b)};_.N.contains=function(a,b){return 0<=this.edgeDistance(a,b)};
+_.N.adjustByScrollOffset=function(){var a=window.pageYOffset||window.document.body.scrollTop||window.document.documentElement.scrollTop||0;this.rC(this.left-(window.pageXOffset||window.document.body.scrollLeft||window.document.documentElement.scrollLeft||0));this.yB(this.top-a)};_.N.setSizeAndPositionForElement=function(a,b){a.setAttribute("style",["left:",this.left,"px;top:",this.top,"px;width:",this.width,"px;",b?"height:"+this.height+"px":""].join(""))};(0,_.ga)("google.hover.hr",_.vq,_.k);
+(0,_.ga)("google.hover.hr.prototype.adjustByScrollOffset",_.vq.prototype.adjustByScrollOffset,_.k);(0,_.ga)("google.hover.hr.prototype.clone",_.vq.prototype.clone,_.k);(0,_.ga)("google.hover.hr.prototype.contains",_.vq.prototype.contains,_.k);(0,_.ga)("google.hover.hr.prototype.edgeDistance",_.vq.prototype.edgeDistance,_.k);(0,_.ga)("google.hover.hr.prototype.setSizeAndPositionForElement",_.vq.prototype.setSizeAndPositionForElement,_.k);
+(0,_.ga)("google.hover.hr.prototype.left",_.vq.prototype.left,_.k);(0,_.ga)("google.hover.hr.prototype.top",_.vq.prototype.top,_.k);(0,_.ga)("google.hover.hr.prototype.width",_.vq.prototype.width,_.k);(0,_.ga)("google.hover.hr.prototype.height",_.vq.prototype.height,_.k);(0,_.ga)("google.hover.hr.prototype.debugString",_.vq.prototype.$U,_.k);
+_.zq.prototype.update=function(a,b,c,d,e){this.t=(0,_.Aq)(this.t,a);this.x=(0,_.Aq)(this.x,b);this.y=(0,_.Aq)(this.y,c);this.B=(0,_.Aq)(this.B,d);this.M=(0,_.Aq)(this.M,e)};_.N=_.Bq.prototype;_.N.dispose=function(){(0,_.Ke)(window.document,"mousemove",this.xa)};_.N.pK=function(a,b){this.oa.push({time:a,mU:b})};_.N.aO=function(a){this.Fa=a;this.ra=_.l;this.ha=0;this.Ea=0.25*window.Math.min(a.width,a.height);if(!this.M){this.B=new _.zq;var b=this;this.M=window.setTimeout(function(){(0,_.Dq)(b)},30)}};_.N.clear=function(){this.ra&&(this.M&&(window.clearTimeout(this.M),this.M=0),this.ra=_.A,this.oa=[])};
+_.N.dY=function(a){a||(a=window.event);this.U.x=a.clientX;this.U.y=a.clientY};(0,_.ga)("google.hover.vt",_.Bq,_.k);(0,_.ga)("google.hover.vt.prototype.add",_.Bq.prototype.pK,_.k);(0,_.ga)("google.hover.vt.prototype.clear",_.Bq.prototype.clear,_.k);(0,_.ga)("google.hover.vt.prototype.track",_.Bq.prototype.aO,_.k);(0,_.ga)("google.hover.vt.prototype.disp",_.Bq.prototype.dispose,_.k);(0,_.ga)("google.hover.vt.now",_.Cq,_.k);
+_.Xq=160;_.Vq={};_.Hq=[];_.Iq="";_.Uq=_.p;_.Lq={element:_.p,image:_.p,rect:_.p,Vb:_.p,Jc:"",startTime:_.p};_.Fq=_.A;_.sr={};_.Yq=_.p;_.Sq=_.A;_.Qq=_.p;_.fr=_.p;_.Rq=_.p;_.or=0;_.Jq=0;_.br=_.p;(0,_.ga)("google.hover.ga",_.Pq,_.k);(0,_.ga)("google.hover.r",function(a,b,c){if(_.Vq[a])return _.A;var d=(0,_.md)(a);if(!d||0==d.length)return _.A;_.Hq.push(a);_.Vq[a]={render:b,log:c,animate:_.p};(0,_.ir)(a,"mouseover",_.Eq);_.Oc.Gd&&((0,_.ir)(a,"click",_.jr),(0,_.ir)(a,"mousedown",_.mr));return _.l},_.k);
+(0,_.ga)("google.hover.s",function(a){_.Xq=a},_.k);(0,_.ga)("google.hover.u",_.ur,_.k);
+(0,_.Mf)(152,{init:function(){if(window.document.getElementById("uh_h")){_.Xq=160;(0,_.Je)(_.Oc.Gd?window:window.document,"scroll",_.qr);(0,_.Je)(window.document,"keydown",function(a){(0,_.rr)(a)});(0,_.Je)(window,"resize",_.ar);_.Oc.Gd?(_.br=(0,_.Td)(window.document),(0,_.Je)(window.document,"focusout",function(){var a=(0,_.Td)(window.document);_.br!=a?_.br=a:(0,_.Mq)()})):window.onblur=function(){(0,_.Mq)()};(0,_.ar)();_.Qq=window.document.getElementById("uh_hp");if((_.fr=window.document.getElementById("uh_hpl"))&&
+!_.Oc.Gd)(0,_.Je)(_.fr,"click",_.cr),(0,_.Je)(_.fr,"mousedown",_.hr);_.Uq=new _.Bq}},dispose:function(){_.Uq&&_.Uq.dispose();(0,_.Ke)(window.document,"mousemove",_.Tq);_.Lq.element&&(0,_.Ke)(_.Lq.element,"mousedown",_.Wq);for(var a in _.Vq)(0,_.ur)(a);(0,_.Ke)(_.Oc.Gd?window:window.document,"scroll",_.qr);(0,_.Ke)(window.document,"keydown",_.rr);_.Oc.Gd&&(0,_.Ke)(window.document,"focusout",_.cca);(0,_.Ke)(window.document,"mousemove",_.tr);(0,_.Ke)(window,"resize",_.ar)}});
+
+(0,_.Bc)(_.O.$(),"hv");(0,_.Fc)(_.O.$(),"hv");
+}catch(e){_._DumpException(e)}
+try{
+_.pW=function(a,b){a+="&ei="+window.google.kEI;b&&(a+="&ved="+b);window.google.log("wta",a)};
+_.voa=function(a,b,c,d){(0,_.qW)();if(a&&_.rW){var e;if(e=(e=(0,_.Ee)(".wtalbc",a.parentNode))?e.innerHTML:_.p){_.sW=d;(0,_.Fe)(_.rW,"width",d+"px");if(_.rW&&(d=(0,_.Ee)("div.wtalbc",_.rW)))d.innerHTML=e;(0,_.woa)(a);if(_.rW&&(d=(0,_.Ee)("a.wtaal",_.rW)))_.tW=function(a){a=a||window.event;a.preventDefault&&a.preventDefault();a.returnValue=_.A;(0,_.sf)(a);_.uW&&((0,_.pW)("n",c),a="",_.vW&&(a=(0,_.wW)("token",_.vW)),a=a+(0,_.wW)("reasons",_.xoa)+(0,_.wW)("hl",window.google.kHL),a=(0,_.Be)("form",a),
+a.setAttribute("method","post"),a.setAttribute("action",_.uW),(0,_.Ae)(a),a.submit())},(0,_.Je)(d,"click",_.tW),d.href="javascript:void(0)";_.xW=a;_.rW&&((0,_.Fe)(_.rW,"display","block"),(0,_.Fe)(_.rW,"visibility","visible"));(0,_.Je)(window.document,"click",_.yoa);(0,_.pW)("o",b)}}};_.yoa=function(a){a=a.target||a.srcElement;a==_.xW||((0,_.lf)(a,"wtaal")||(0,_.lf)(a,"wtali"))||(0,_.yW)("cm")};
+_.qW=function(){if(_.rW){(0,_.Fe)(_.rW,"display","none");(0,_.Fe)(_.rW,"visibility","hidden");(0,_.Ke)(window.document,"click",_.yoa);if(_.rW){var a=(0,_.Ee)("a.wtaal",_.rW);a&&_.tW&&((0,_.Ke)(a,"click",_.tW),_.tW=_.p)}_.xW=_.p}};_.yW=function(a,b){(0,_.zoa)()&&((0,_.pW)(a,b),(0,_.qW)())};_.woa=function(a){if(a){var b=(0,_.me)(a)+(0,_.jf)(a)/2-16-_.sW/2,c=16+_.sW/2-(0,_.jf)(a)/2;_.Aoa&&(c*=-1);b=(0,_.ff)()?b+c:b-c;a=(0,_.ne)(a)+(0,_.hf)(a)+11;(0,_.Fe)(_.rW,"left",b+"px");(0,_.Fe)(_.rW,"top",a+"px")}}; _.zoa=function(){return _.rW&&"visible"==(0,_.gf)(_.rW,"visibility",_.l)?_.l:_.A};_.wW=function(a,b){return'<input type=hidden name="'+a+'" value="'+(0,_.of)(b)+'"/>'};(0,_.Ec)(_.O.$(),"wta");
+(0,_.Mf)(163,{init:function(a){a.s||(_.vW=a.t||"",_.xoa=a.r||"",_.uW=a.a||"",_.Aoa=a.l||_.A,_.rW||(a=(0,_.Be)("div.wtalb",'<span class="wtalbal"></span><span class="wtalbar"></span><div class="wtalbc f"></div>'),(0,_.Fe)(a,"id","wtalb"),(0,_.Fe)(a,"display","none"),_.rW=a,(0,_.Ae)(a),(0,_.Je)(window,"resize",function(){window.setTimeout(function(){(0,_.woa)(_.xW)},0)}),(0,_.Je)(window.document,"keydown",function(a){a=a||window.event;27==a.keyCode&&(0,_.yW)("ck")}),(a=(0,_.Ee)("#lst-ib"))&&(0,_.Je)(a,
+"focus",function(){(0,_.yW)("cf")})))},dispose:function(){(0,_.qW)()}});(0,_.ga)("google.wta.hideLightbox",_.qW,_.k);(0,_.ga)("google.wta.openLightbox",_.voa,_.k);(0,_.ga)("google.wta.toggleLightbox",function(a,b,c,d){(0,_.zoa)()&&_.xW==a?(0,_.yW)("ct",b):(0,_.voa)(a,b,c,d)},_.k);
+
+(0,_.Bc)(_.O.$(),"wta");(0,_.Fc)(_.O.$(),"wta");
+}catch(e){_._DumpException(e)}
+try{
+(0,_.Ec)(_.O.$(),"cr");_.ml=_.A;_.nl=_.A;_.ol=_.A;_.pl=_.l;(0,_.Mf)(43,{init:function(a){_.ml=a.uff;_.nl=a.rctj;_.ol=a.ref;_.pl=a.qir}});
+(0,_.ga)("rwt",function(a,b,c,d,e,f,g,i,h,m){try{var n=window.google.getEI(a);if(a===window){a=window.event.srcElement;for(n=window.google.getEI(a);a&&!a.href;)a=a.parentNode}var b=window.encodeURIComponent||window.escape,j=_.Oc.Gd?a.getAttribute("href",2):a.getAttribute("href"),q,t,r,s=(new window.Date).getTime();window.google.v6&&(q=window.google.v6.src,t=window.google.v6.complete||window.google.v6s?2:1,r=s-window.google.v6t,delete window.google.v6);g&&"&sig2="!=g.substring(0,6)&&(g="&sig2="+g);
+var C=window.google.psy&&window.google.psy.q&&window.google.psy.q(),v=C?b(C):(0,_.Ue)("q"),s=_.pl&&(_.nl||_.ol),C=!s&&(_.nl||_.ol),d="";_.ol&&("encrypted.google.com"!=window.location.hostname&&"https:"!=j.substr(0,6))&&(d="http://"+window.location.hostname+(window.google.kPTP?":"+window.google.kPTP:""));var x="";c&&"docid="==c.substr(0,6)&&(x=c);var c=""!=x?_.l:_.A,u=m&&m.button&&2==m.button?"&cad=rja":"",y=[d,"/url?sa=t",_.nl||_.ol?"&rct=j":"",s?"&q="+(v||""):"",C?"&q=&esrc=s":"",_.ol&&_.ml?"&frm=1":
+"","&source=",window.google.sn,"&cd=",b(e),u,c?"&"+x:"",window.google.j&&window.google.j.pf?"&sqi=2":"","&ved=",b(i),"&url=",b(j).replace(/\+/g,"%2B"),"&ei=",n,h?"&authuser="+b(h.toString()):"",q?"&v6u="+b(q)+"&v6s="+t+"&v6t="+r:"",f?"&usg="+f:"",g].join("");if(2038<y.length)if(s&&2038>=y.length-v.length)y=y.replace(v,v.substring(0,v.length-(y.length-2038)));else return window.google.log("uxl","&ei="+window.google.kEI),_.l;a.href=y;if((_.nl||_.ol)&&(!window.google.j||!window.google.j.init)){var w=
+y,F=a,L=window.event&&"number"==typeof window.event.button?window.event.button:_.k;(0,_.Je)(a,"click",function(a){if(!a.altKey&&!a.ctrlKey&&!a.shiftKey&&!a.metaKey&&!F.target&&!(a.button&&a.button!=0||L>1)){(0,_.Pe)(w);(0,_.sf)(a);a.preventDefault&&a.preventDefault();a.returnValue=_.A}})}a.onmousedown=""}catch(H){}return _.l},_.k);
+
+(0,_.Bc)(_.O.$(),"cr");(0,_.Fc)(_.O.$(),"cr");
+}catch(e){_._DumpException(e)}
+try{
+_.ql=function(){(0,_.rl)("biw",(0,_.Vc)(2));(0,_.rl)("bih",(0,_.Vc)(0))};_.rl=function(a,b){for(var c=window.document.getElementsByName(a),d=0,e;e=c[d++];)e.value=b};_.sl=function(a){var b=a.match(/[?&#]biw=[^&#]+/)?_.l:_.A,c=a.match(/[?&#]bih=[^&#]+/)?_.l:_.A;if(window.google.isr&&window.google.isr.prs&&b&&c)return a;b=(0,_.Vc)(2);c=(0,_.Vc)(0);a=(0,_.tl)(a,"biw",b);return a=(0,_.tl)(a,"bih",c)};
+_.ul=function(a){if(!window.google.j||!window.google.j.init||!window.google.j.xmi){a=a||window.event;for(a=a.target||a.srcElement;a&&"A"!=a.tagName;)a=a.parentNode;if(a&&a.href){var b=a.getAttribute("href",2);_.kba.test(b)&&(a.href=(0,_.sl)(b))}}};_.tl=function(a,b,c){return a.replace((0,window.RegExp)("([?&#])"+b+"=([^&#]*)&?","i"),"$1").replace(/&*$/,"&"+b+"="+c)};(0,_.Ec)(_.O.$(),"cdos");
+_.kba=/^\/(search|images)\?/;
+(0,_.Mf)(83,{init:function(a){if(!window.google.Toolbelt||!window.google.Toolbelt.get||!window.google.Toolbelt.get("isch"))(0,_.ql)(),(0,_.Je)(window,"resize",_.ql),(0,_.ga)("google.cds.rs",_.ql,_.k);(0,_.Le)(51,_.sl);(0,_.Je)(window.document,"click",_.ul);if("web"==window.google.sn){var b=(0,_.Vc)(2),c=(0,_.Vc)(0);b&&(c&&(b!=a.biw||c!=a.bih))&&window.google.log("","","/client_204?&biw="+b+"&bih="+c+"&ei="+window.google.kEI)}},dispose:function(){(0,_.Ke)(window,"resize",_.ql);(0,_.Ke)(window.document, "click",_.ul);(0,_.Ne)(51,_.sl)}});
+
+(0,_.Bc)(_.O.$(),"cdos");(0,_.Fc)(_.O.$(),"cdos");
+}catch(e){_._DumpException(e)}
+try{
+_.Cca=function(a){var a=(0,_.lp)(a.Wl,"xhr"),b=(0,_.Kc)();b.open("GET",a,_.l);b.send("");a=(0,_.nd)("nossln");(0,_.re)(a,_.A)};(0,_.Ec)(_.O.$(),"nos");(0,_.Mf)(342,{init:function(){(0,_.wp)("nos",{d:_.Cca})}});
+(0,_.Bc)(_.O.$(),"nos");(0,_.Fc)(_.O.$(),"nos");
+}catch(e){_._DumpException(e)}
+try{
+_.Sg=function(a,b){a&&(_.Tg[a]=b);(0,_.Xf)(81,_.Tg)};_.Ug=function(){for(var a=[],b=[],c=0,d=_.Vg.length;c<d;c++){var e=_.Vg[c](_.Tg[_.Wg[c]]);e&&(0==e.indexOf("&")?b.push(e):(0<a.length&&a.push(","),a.push(e)))}a=a.concat(b);window.google._bfr=_.l;a.push("&ei=",window.google.kEI);window.google.log("backbutton",a.join(""))};_.xaa=function(a,b){return function(c){c=c||window.event;for(c=c.target||c.srcElement;c.parentNode&&"A"!=c.tagName;)c=c.parentNode;a(c,b?_.Tg[b]:_.p)}};
+_.yaa=function(a){(a.persisted||_.Xg)&&!_.zaa&&(0,_.Ug)();_.Xg=_.l};_.Yg=function(a,b,c,d){d&&(_.Tg[d]={});for(var e=window.document.getElementsByTagName("a"),f=0,g;g=e[f++];)a(g)&&(0,_.Je)(g,"click",(0,_.xaa)(b,d));_.Vg.push(c);_.Wg.push(d)};(0,_.Ec)(_.O.$(),"sy1");
+_.Vg=[];_.Wg=[];_.zaa=window.google.j&&window.google.j.en;(0,_.ga)("google.event.back.register",_.Yg,_.k);(0,_.ga)("google.event.back.saveHistory",_.Sg,_.k);_.Zg={init:function(){_.Tg={persisted:_.A};window.google._bfr=_.A},history:function(a){a&&(_.Tg=a);_.Tg.persisted?(0,_.Ug)():_.Tg.persisted||(_.Tg.persisted=_.l,(0,_.Sg)(),window.addEventListener&&(window.addEventListener("pageshow",_.yaa,_.A),_.Xg=_.A))},dispose:function(){_.Vg.length=0;_.Wg.length=0}};_.Zg=_.Zg||{};_.Zg._e=_.ka; (0,_.Mf)(81,_.Zg);
+
+(0,_.Bc)(_.O.$(),"sy1");(0,_.Fc)(_.O.$(),"sy1");
+}catch(e){_._DumpException(e)}
+try{
+_.jra=function(a){return _.kra.test(a.className)};_.lra=function(a){var b="",c;for(c in _.rZ)_.rZ[c].style.display="none";a&&0<=a.tB&&(b=a.tB,_.rZ[b]&&(_.rZ[b].style.display="block"),b="tbpr:idx="+a.tB);return b};_.mra=function(a,b){b==_.p&&(b={});b.tB=a.sY||-1;(0,_.Sg)("tbpr",b)};(0,_.Ec)(_.O.$(),"sy73");
+_.rZ={};_.kra=/\bl\b/;(0,_.Mf)(78,{init:function(){_.rZ={};for(var a=window.document.getElementsByTagName("h3"),b=0,c;c=a[b++];)if("tbpr"==c.className){var d=(0,window.Number)(c.id.substr(5));for(_.rZ[d]=c;c&&"LI"!=c.nodeName;)c=c.parentNode;if(c){c=c.getElementsByTagName("a");for(var e=0,f=_.k;f=c[e++];)if((0,_.jra)(f)){f.sY=d;break}}}(0,_.Yg)(_.jra,_.mra,_.lra,"tbpr")}});
+
+(0,_.Bc)(_.O.$(),"sy73");(0,_.Fc)(_.O.$(),"sy73");
+}catch(e){_._DumpException(e)}
+try{
+(0,_.Ec)(_.O.$(),"tbpr");
+(0,_.Bc)(_.O.$(),"tbpr");(0,_.Fc)(_.O.$(),"tbpr");
+}catch(e){_._DumpException(e)}
+try{
+_.Ep=function(a){switch(a){case 61:return 187;case 59:return 186;case 224:return 91;case 0:return 224;default:return a}};(0,_.Ec)(_.O.$(),"sy33");
+(0,_.Bc)(_.O.$(),"sy33");(0,_.Fc)(_.O.$(),"sy33");
+}catch(e){_._DumpException(e)}
+try{
+_.Fp=function(a,b,c){var d=(0,window.RegExp)("([#?&]"+a+"=)[^&#]*");return b=d.test(b)?b.replace(d,"$1"+(0,window.encodeURIComponent)(c)):b+("&"+a+"="+(0,window.encodeURIComponent)(c))};_.Gp=function(a){for(;a&&!(0,_.lf)(a,"tbt");)a=a.parentNode;return a};
+_.Hp=function(a,b,c){a=a||"cdr_opt";"cdr_opt"==a&&c&&(0,_.sf)(c);window.google.Toolbelt.maybeLoadCal&&window.google.Toolbelt.maybeLoadCal();b=b||"cdr_min";if(a=window.document.getElementById(a))if(a.className="tbots",a=(0,_.Gp)(a)){for(var c=0,d;d=a.childNodes[c++];)"tbos"==d.className&&(d.className="tbotu");(b=window.document.getElementById(b))&&b.focus()}return _.A};
+_.Ip=function(a,b){var c=window.document.getElementById(a);if(c)for(var d in b){var e=window.document.getElementById(d).value.replace(/_/g,"_1").replace(/,/g,"_2").replace(/:/g,"_3"),e=e.replace(/^\s+|\s+$/g,"");c.value=c.value.replace((0,window.RegExp)("("+b[d]+":)([^,]*)"),"$1"+e)}return _.l};_.Jp=function(a){if((a=(0,_.rf)(a))&&"tbotu"==a.className)if(a.className="tbos",a=(0,_.Gp)(a))for(var b=0,c;c=a.childNodes[b++];)"tbots"==c.className&&(c.className="tbou")};
+_.Kp=function(a,b){var c=(0,_.lf)(a,"checked");(0,_.Lp)(a,!c);b&&!c&&(0,_.Lp)(b,_.A);a.hasAttribute("url")&&(c=a.getAttribute("url")+"&ei="+window.google.getEI(a),a.hasAttribute("data-ved")&&(c=c+"&ved="+a.getAttribute("data-ved")),(0,_.Pe)(c));return _.A};_.Lp=function(a,b){b?((0,_.mf)(a,"checked"),a.setAttribute("aria-checked","true")):((0,_.nf)(a,"checked"),a.setAttribute("aria-checked","false"))};_.Mp=function(){(0,_.Hp)("cdr_opt","cdr_min",_.p)};_.Hba=function(){(0,_.ig)("tbcdr",_.Mp)};
+_.Iba=function(a){(0,_.Jp)(a.event());window.google.jsad&&(0,_.Cp)("click",a.event())};_.Jba=function(a){(0,_.Kp)(a.Wl)};_.Kba=function(a){32==a.event().keyCode&&(0,_.Kp)(a.Wl)};_.Np=function(){(0,_.Pe)(window.document.getElementById("tbpi").href)};_.Lba=function(a){try{(0,_.Mba)(eval(a))}catch(b){(0,_.Np)()}};
+_.Nba=function(a){(0,_.ga)("mbtb1.insert",_.Lba,_.k);var b;if(b=(0,_.Kc)()){var c=window.google.time();window.google.mcp&&(c=window.google.mcp(c));b.open("GET",[0==window.google.base_href.indexOf("/images?")?window.google.base_href.replace(/^\/images\?/,"/mbd?"):window.google.base_href.replace(/^\/search\?/,"/mbd?"),"&mbtype=29&resnum=1&tbo=1",window.mbtb1.tbm?"&tbm="+window.mbtb1.tbm:"",window.mbtb1.tbs?"&tbs="+window.mbtb1.tbs:"","&docid=",window.mbtb1.docid,"&usg=",window.mbtb1.usg,"&ved=",a,"&zx=",
+c].join(""),_.l);b.onreadystatechange=function(){if(4==b.readyState)if(200==b.status)try{eval(b.responseText)}catch(a){(0,_.Np)()}else(0,_.Np)()};b.send(_.p)}};_.Mba=function(a){for(var b=0,c=0,d,e;(d=a[b])&&(e=_.Op[c]);b++,c++)window.google.Toolbelt.pti[c]?e.id!=d[0]&&b--:(d[2]?(e.className="tbos",(0,_.Je)(e,"click",window.google.Toolbelt.tbosClk)):e.className="tbou",e.id=d[0],e.innerHTML=d[1]);(0,_.Oe)(48)};
+_.Pp=function(){_.Qp=[];_.Op=[];var a=window.document.getElementById("tbd");if(a){for(var b=a.getElementsByTagName("ul"),c=0,d;d=b[c++];){_.Qp.push(d);d=d.getElementsByTagName("li");for(var e=0,f;f=d[e++];)_.Op.push(f)}if(_.Oc.Gd){a=a.getElementsByTagName("ul");for(c=0;d=a[c];c++)(0,_.hf)(d)}}};_.Oba=function(a){var b=(0,_.lp)(a.Wl,"ved");(0,_.Rp)(""+b);a=a.event();a.preventDefault?a.preventDefault():a.returnValue=_.A};
+_.Rp=function(a){var b=!(0,_.lf)(window.document.body,"tbo");if(b){var c=window.document.getElementById("tbd");if(!c.getAttribute("data-loaded")){c.setAttribute("data-loaded",1);for(var d=[],e=0,f=0,g=window.google.Toolbelt.atg.length;f<g;++f){var i=window.google.Toolbelt.atg[f],h=(0,_.lf)(_.Qp[f],"tbpd");d.push('<li><ul class="tbt'+(h?" tbpd":"")+'">');for(var m;(m=window.google.Toolbelt.pbt[e])&&m[0]==f;e++){for(h=0;h++<m[1];)d.push("<li>");d.push('<li class="'+_.Op[e].className+'" id='+_.Op[e].id+
+">"+_.Op[e].innerHTML)}for(h=0;h++<i;)d.push("<li>");d.push("</ul>")}c.innerHTML=d.join("");(0,_.Pp)();(0,_.Nba)(a)}}(0,_.Ef)("tbo",b?"1":"",_.Df,_.zh);e=b?1:0;c=b?"":"none";for(d=0;f=_.Qp[d];d++)(0,_.lf)(f,"tbpd")||(0,_.Fe)(f,"marginBottom",e*_.Sp+"px");for(d=0;e=_.Op[d];d++)window.google.Toolbelt.pti[d]||(e.style.display=c);_.Tp&&(0,_.nf)(window.document.getElementById("tbpi"),"pi");b?(0,_.mf)(window.document.body,"tbo"):(0,_.nf)(window.document.body,"tbo");(0,_.Oe)(48);window.google.log("toolbelt",
+(b?"0":"1")+"&ved="+a,"",window.document.getElementById("tbd"));return _.A};_.Up=function(a,b){var c=(0,_.Ue)("tbm",b);if(c)for(var d=0,e;e=a[d++];)if(e==c)return _.l;return(c=(0,_.Ue)("tbs",b))&&(0,window.RegExp)("(^|,)("+a.join("|")+"):").test(c)?_.l:_.A};_.Vp=function(a,b,c){if(a in _.Wp)c=c||{},c.tbm=a;else{var c=(0,_.Xp)(a,c),d=c.tbs,b=(0,window.encodeURIComponent)(b.replace(/_/g,"_1").replace(/,/g,"_2").replace(/:/g,"_3")),a=a+":"+b;c.tbs=d?d+","+a:a}return c};
+_.Xp=function(a,b){var c=b||{};if(a in _.Wp){var d=b?b.tbm:(0,_.Ue)("tbm");d&&(d=(0,window.decodeURIComponent)(d));if(!d||d==a)b.tbm=_.p}else{var e=b?b.tbs:(0,_.Ue)("tbs");e&&(e=(0,window.decodeURIComponent)(e));d=_.p;if(e)for(var e=e.split(","),f=0,g;g=e[f++];)g.match("^"+a+":")||(d=d?d+","+g:g);c.tbs=d}return c};(0,_.Ec)(_.O.$(),"sy34");
+(0,_.ga)("google.Toolbelt.ctlClk",_.Hp,_.k);(0,_.ga)("google.Toolbelt.cdrClk",_.Hp,_.k);(0,_.ga)("google.Toolbelt.cdrSbt",function(){return(0,_.Ip)("ctbs",{cdr_min:"cd_min",cdr_max:"cd_max"})},_.k);(0,_.ga)("google.Toolbelt.clSbt",function(){return(0,_.Ip)("ltbs",{l_in:"cl_loc"})},_.k);
+(0,_.ga)("google.Toolbelt.prcSbt",function(a,b){(0,_.Ip)("prcbs",{prc_max:b,prc_min:a});var c=window.document.getElementById("prc_frm");if(c){var d=window.gbar&&window.gbar.qfgf&&window.gbar.qfgf()||window.document.getElementById("tsf");d&&(c.elements.q.value=d.elements.q.value)}},_.k);(0,_.ga)("google.Toolbelt.tbosClk",_.Jp,_.k); (0,_.ga)("google.Toolbelt.toggleCb",function(a,b){var c=(0,_.lf)(a,"checked");(0,_.Lp)(a,!c);b&&!c&&(0,_.Lp)(b,_.A);a.hasAttribute("url")&&(0,_.Pe)(a.getAttribute("url"));return _.A},_.k);(0,_.ga)("google.Toolbelt.toggleCbWithVedAndEI",_.Kp,_.k);
+_.Yp={};_.Wp={};(0,_.Mf)(25,{init:function(a){_.Tp=a.k;_.Sp=a.g;_.Yp=a.t||{};_.Wp=a.m||{};(0,_.Pp)();window.google.jsad&&(0,_.wp)("tbt",{tpt:_.Oba});(0,_.wp)("tbt",{hic:_.Mp,hiccalui:_.Hba,tbos:_.Iba,cb:_.Jba,cbkd:_.Kba})},dispose:function(){_.Yp=_.Wp={}}});(0,_.ga)("google.Toolbelt.ascrs",(0,_.ca)(),_.k);(0,_.ga)("google.Toolbelt.togglePromotedTools",_.Rp,_.k);(0,_.ga)("google.Toolbelt.hasInURL",_.Up,_.k);(0,_.ga)("google.Toolbelt.get",function(a){return _.Yp[a]},_.k);
+(0,_.ga)("google.Toolbelt.set",_.Vp,_.k);(0,_.ga)("google.Toolbelt.unset",_.Xp,_.k);(0,_.ga)("google.Toolbelt.parseTbs",function(a){var b={};if(a)for(var a=(0,window.decodeURIComponent)(a.replace(/\+/g," ")),a=a.split(","),c=0,d;d=a[c++];){d=d.split(":");var e=d[1]||"",e=e.replace(/_3/g,":").replace(/_2/g,",").replace(/_1/g,"_");b[d[0]]=e}return b},_.k);
+
+(0,_.Bc)(_.O.$(),"sy34");(0,_.Fc)(_.O.$(),"sy34");
+}catch(e){_._DumpException(e)}
+try{
+_.sZ=function(a){for(var a=a.split(/{|}/),b=1;b<a.length;b+=2){var c=a[b-1],d=a[b];if(!_.tZ&&(_.tZ=window.document.createElement("style"),_.Oc.Gd?(window.document.getElementById("xjsc").appendChild(_.tZ),_.uZ=_.tZ.styleSheet):(window.document.getElementsByTagName("head")[0].appendChild(_.tZ),_.uZ=_.tZ.sheet),_.Oc.Bs&&!_.uZ))_.vZ=window.document.createTextNode(""),_.tZ.appendChild(_.vZ);if(_.Oc.Gd)for(var c=c.split(","),e=0,f=_.k;f=c[e++];)_.uZ.addRule(f,d);else d=c+"{"+d+"}",_.Oc.Bs&&!_.uZ?_.vZ.data+= d:_.uZ.insertRule(d,_.uZ.cssRules.length)}};(0,_.Ec)(_.O.$(),"sy74");
+(0,_.ga)("google.acrs",_.sZ,_.k);
+(0,_.Bc)(_.O.$(),"sy74");(0,_.Fc)(_.O.$(),"sy74");
+}catch(e){_._DumpException(e)}
+try{
+_.nra=function(a,b,c){return[[b,"height",a?c:0,a?0:c],[b,"opacity",a?1:0,a?0:1,_.p,""]]};_.ora=function(a){if(!a)return _.p;var b=a.offsetHeight,c=(0,_.gf)(a,"overflow",_.l);a.style.overflow="hidden";return{height:b,overflow:c}};_.pra=function(a,b,c){b?a.style.height=c.height+"px":a.style.removeAttribute&&a.style.removeAttribute("filter");a.style.overflow=c.overflow};(0,_.Ec)(_.O.$(),"tbui");
+_.wZ=_.A;(0,_.ga)("google.srp.toggleModes",function(){if(!_.wZ){_.wZ=_.l;var a=window.document.getElementById("ms"),b=window.document.getElementById("hidden_modes"),c=window.document.getElementById("hmp"),d=(0,_.lf)(a,"open");a.className="open";var e=(0,_.ora)(b),f=(0,_.ora)(c),g=(0,_.nra)(d,b,e.height);f&&(g=g.concat((0,_.nra)(d,c,f.height)));(0,_.Ef)("prmdo",!d?"1":"",_.Df,_.zh);(0,_.Lg)(227,g,function(){d&&(a.className="");(0,_.pra)(b,d,e);c&&(0,_.pra)(c,d,f);_.wZ=_.A;(0,_.Oe)(48)})}},_.k);
+
+(0,_.Bc)(_.O.$(),"tbui");(0,_.Fc)(_.O.$(),"tbui");
+}catch(e){_._DumpException(e)}
+try{
+(0,_.Ec)(_.O.$(),"rsn");_.$Y=_.l;
+(0,_.ga)("google.rs.sm.toggle",function(a,b,c,d,e,f){if(_.$Y){_.$Y=_.A;for(var g=a;!(0,_.lf)(g,"rscontainer");){if(g==window.document.body){_.$Y=_.l;return}g=g.parentNode}var i=(0,_.lf)(g,"rssmo");i?(0,_.nf)(g,"rssmo"):(0,_.mf)(g,"rssmo");for(var h=[],m=[],d=i?1:0,n=1-d,j,q,t,r=(0,_.De)("div.rssmw",g),g=0,s;s=r[g++];)j=s.offsetHeight,_.Oc.Bs?(t=(0,_.jf)(s.parentNode),q=-100*j/t-10,t="%"):(q=-j-1,t="px"),j=(1-d)*q,q*=1-n,h.push([s,"marginTop",j,q,window.google.fx.linear,t]),m.push([s.parentNode,"opacity",
+d,n,window.google.fx.linear,""]);var C=function(){var a=r;"undefined"==typeof a.length&&(a=[a]);if(i)for(b=0;c=a[b++];)c.style.marginTop="-9999px";else for(var b=0,c;c=a[b++];)_.Oc.Gd?c.parentNode.style.removeAttribute("filter"):c.parentNode.style.opacity="";_.$Y=_.l;f&&f()};b?(0,_.Lg)(c,m.concat(h),C):i?(0,_.Lg)(c,m,function(){(0,_.Lg)(e,h,C)}):(0,_.Lg)(e,h,function(){(0,_.Lg)(c,m,C)});a=a.getAttribute("link-cgi")||"";window.google.log("rich_snippets_toggle",(i?"close":"open")+a)}},_.k);
+(0,_.ga)("google.rs.msm.toggle",function(a){for(;!(0,_.lf)(a,"rscontainer");){if(a==window.document.body)return;a=a.parentNode}var b=(0,_.lf)(a,"rssmo");b?(0,_.nf)(a,"rssmo"):(0,_.mf)(a,"rssmo");window.google.log("rich_snippets_mobile_toggle",b?"close":"open")},_.k);
+
+(0,_.Bc)(_.O.$(),"rsn");(0,_.Fc)(_.O.$(),"rsn");
+}catch(e){_._DumpException(e)}
+try{
+(0,_.Ec)(_.O.$(),"ob");
+(0,_.Bc)(_.O.$(),"ob");(0,_.Fc)(_.O.$(),"ob");
+}catch(e){_._DumpException(e)}
+try{
+_.Xu=function(a,b,c,d,e){this.nm=a;this.xJ=b;this.ha=d;this.BK=e;this.M="/mbd?jsid="+a+(b?"&docid="+b:"")+"&resnum="+a.replace(/[^0-9]/,"")+"&mbtype="+d+"&usg="+c+"&hl="+(window.google.kHL||"");this.ji={};this.oa={};_.Yu[a]={open:_.A,content:this.ji,doc:this.xJ,sent:_.A};this.U=0;this.B=_.l;this.fz=this.MM=_.A;this.VA=this.Ix=this.$q=_.p};_.Zu=function(a){var b="",c;for(c in a.oa)b=[b,"&",c,"=",a.oa[c]].join("");return b};_.$u=function(a,b){return window.document.getElementById("mb"+b+a.nm)};
+_.av=function(a,b){a.jE.style.paddingTop=b+"px";a.jE.style.display=a.jE.innerHTML?"":"none";b>a.U&&(a.U=b);a.VA.style.fontSize=b+"px";a.VA.style.fontSize=""};_.bv=function(a){window.google.log("manybox",[a.fz?"close":"open","&id=",a.nm,"&docid=",a.xJ,"&mbtype=",a.ha,(0,_.Zu)(a)].join(""))};
+_.cv=function(a,b){var c=(0,_.Kc)();if(c){var d=window.google.time();window.google.mcp&&(d=window.google.mcp(d));c.open("GET",a.M+(0,_.Zu)(a)+"&zx="+d);a.xa=_.A;c.onreadystatechange=(0,_.ab)(a.RV,a,c,b);a.xa=_.l;c.send(_.p)}};
+_.Aca=function(a){a.ji.lD||(_.dv&&_.dv.m_errors&&(_.dv.m_errors[a.ha]?a.ji.lD=_.dv.m_errors[a.ha]:_.dv.m_errors["default"]&&(a.ji.lD=_.dv.m_errors["default"])),a.nX=a.Ix.onclick,a.Ix.onclick=(0,_.ab)(function(){_.ev=_.A;(0,_.fv)(this);_.ev=_.l;this.Kv.parentNode.removeChild(this.Kv);_.Yu[this.nm].sent=this.ji.lD=this.WM=_.A;this.Ix.onclick=this.nX},a));if(!a.WM){a.WM=_.l;var b=window.document.getElementById("res");a.Fa=b&&(0,_.kf)(a.$q)>(0,_.kf)(b)+(0,_.jf)(b);a.Kv=window.document.createElement("div");
+(0,_.av)(a,0);a.Kv.style.position="absolute";a.Kv.style.paddingTop=a.Kv.style.paddingBottom="6px";a.Kv.style.display="none";a.Kv.className="med";b=window.document.createElement("div");a.Kv.appendChild(b);b.className="std";b.innerHTML=a.ji.lD+(_.gv?"<p><a href="+a.M+(0,_.Zu)(a)+"&deb="+window.google.kDEB+">MBD request</a>":"");a.jE.parentNode.insertBefore(a.Kv,a.jE);a.vk=(0,_.$u)(a,"cb");a.vk&&a.vk.getAttribute("overlaycontent")&&(a.B=_.A)}};
+_.hv=function(a,b){a.Kv.style.clip="rect(0px,"+(a.$q.width||"34em")+","+(b||1)+"px,0px)"};_.iv=function(a){a.fz=_.Yu[a.nm].open=_.l;var b=a.vk&&a.vk.getAttribute("mbopen");b&&(eval(b),a.onopen(a.vk))};_.Bca=function(a){var b=a.vk&&a.vk.getAttribute("mbpreopen");b&&(eval(b),a.onpreopen(a.vk))};
+_.fv=function(a){a.Ea=_.A;if(!a.$q.Ta){a.$q.Ta=_.l;var b;if(a.fz){if(b=a.vk&&a.vk.getAttribute("mbclose"))eval(b),a.onclose(a.vk);b=a.B?a.ra-(0,_.hf)(a.$q):0;a.B&&(a.jE.style.display="none",(0,_.av)(a,a.U),a.Kv.style.position="absolute")}else a.ra=(0,_.hf)(a.$q),(0,_.Aca)(a),(0,_.av)(a,0),a.U=0,(0,_.jv)(function(a){a.VA.title=""}),(0,_.Bca)(a),a.B&&(_.kv?(a.VA.innerHTML="&#8722;",(0,_.mf)(a.VA,"mbto")):a.VA.style.backgroundPosition=_.lv,a.QK.innerHTML=a.BK,(0,_.hv)(a,1),a.Kv.style.position="absolute",
+a.Kv.style.display=""),b=a.B?a.Kv.offsetHeight:0;a.PM((0,_.hf)(a.$q),b,_.Pc.Qz?2:1,window.google.time())}};_.jv=function(a){for(var b in _.mv)if(_.mv[b].nm&&a(_.mv[b]))break};
+_.nv=function(a){a&&(_.dv=a,_.kv=_.dv.utp,_.ov=_.dv.nlpp||"-114px -78px",_.lv=_.dv.nlpm||"-126px -78px",_.gv=_.dv.db);for(a=0;a<_.pv.length;a++)try{_.pv[a].func()}catch(b){delete _.mv[_.pv[a].id]}_.pv=[];(0,_.jv)(function(a){if(!a.MM){a.MM=_.l;a.$q=(0,_.$u)(a,"b");if(a.$q){a.fz=_.A;a.Ix=(0,_.$u)(a,"l");if(a.Ix){a.VA=a.Ix.getElementsByTagName("DIV")[0];a.QK=a.Ix.getElementsByTagName("A")[0];a.zP=a.QK.innerHTML;a.BK=a.BK||a.zP;a.VA.title=_.dv&&_.dv.m_tip;a.jE=(0,_.$u)(a,"f");(0,_.av)(a,0);a.Ix.onmousedown= (0,_.ab)(a.load,a);a.Ix.onclick=(0,_.ab)(a.dO,a)}else delete _.mv[a.nm]}else delete _.mv[a.nm]}})};(0,_.Ec)(_.O.$(),"mb");
+_.gv=_.A;_.ev=_.l;_.kv=_.A;_.N=_.Xu.prototype;_.N.append=function(a){for(var b=0;b<a.length;++b){var c=a[b].split("=");this.oa[c[0]]=c[1]}};
+_.N.RV=function(a,b){if(4==a.readyState){var c=_.A;if(200==a.status)try{eval(a.responseText),c=_.l}catch(d){}!c&&!this.Iz?(_.Yu[this.nm].sent=_.A,this.Iz=_.l,this.M+="&cad=retry",(0,_.cv)(this,b)):(b?((0,_.$u)(this,"cb").parentNode.innerHTML=this.ji.lD+(_.gv?"<p><a href="+this.M+(0,_.Zu)(this)+"&deb="+window.google.kDEB+">MBD request</a>":""),(0,_.iv)(this)):this.Ea&&(0,_.fv)(this),this.xa=_.A)}};
+_.N.load=function(){_.Yu[this.nm].sent?3>this.Sa++&&(0,_.bv)(this):(this.ji.lD?(0,_.bv)(this):(0,_.cv)(this,_.A),_.Yu[this.nm].sent=_.l,this.Sa=1)};_.N.dO=function(){_.Yu[this.nm].sent||this.load();(this.Ea=this.xa)||(0,_.fv)(this)};_.N.eW=function(a){this.ji.lD=a};_.N.qZ=function(){(0,_.cv)(this,_.l)};
+_.N.PM=function(a,b,c,d){var e=0<b?150:75,f=window.google.time()-d,e=f<e&&_.ev?f/e*b:1<c?b-10:b,f=window.Math.max(this.ra,a+e),g=f-this.ra;(0,_.hv)(this,g);this.$q.style.height=0>f?0:g?f+"px":"";(0,_.av)(this,window.Math.max(0,g-5));window.Math.abs(e)<window.Math.abs(b)&&this.B?window.setTimeout((0,_.ab)(this.PM,this,a,b,c-1,d),30):window.setTimeout((0,_.ab)(this.gU,this),0)};
+_.N.gU=function(){this.fz?(this.Kv.style.display="none",_.kv?(this.VA.innerHTML="&#43;",(0,_.nf)(this.VA,"mbto")):this.VA.style.backgroundPosition=_.ov,this.QK.innerHTML=this.zP,this.fz=_.Yu[this.nm].open=_.A,(0,_.dg)(_.qv,_.Yu)):(0,_.iv)(this);this.B&&(!_.Oc.Gd&&this.Fa&&(this.Kv.style.width="100px"),this.Kv.style.position=this.$q.style.height="",(0,_.av)(this,0),(0,_.Oe)(48));this.$q.Ta=_.A;(0,_.dg)(_.qv,_.Yu)};_.mv={};_.Yu={};_.pv=[];
+_.qv=(0,_.Zf)(function(a){_.ev=_.A;(0,_.nv)();(0,_.jv)(function(b){b.xJ==a[b.nm].doc?(b.ji=a[b.nm].content,a[b.nm].open!=b.fz&&(0,_.fv)(b)):a[b.nm].sent=_.A});_.Yu=a;_.ev=_.l;(0,_.dg)(_.qv,_.Yu)});
+(0,_.Je)(window.document,"click",function(a){for(var a=a||window.event,b=a.target||a.srcElement;b.parentNode;){if("A"==b.tagName||b.onclick)return;b=b.parentNode}var c=a.clientX+window.document.body.scrollLeft+window.document.documentElement.scrollLeft,d=a.clientY+window.document.body.scrollTop+window.document.documentElement.scrollTop;(0,_.jv)(function(a){var b=(0,_.kf)(a.Ix),g=(0,_.ne)(a.Ix);if(c>b-5&&c<b+(0,_.jf)(a.Ix)+5&&d>g-5&&d<g+(0,_.hf)(a.Ix)+5)return b=window.document.createEvent?window.document.createEvent("MouseEvents"):
+window.document.createEventObject(),a.Ix.onmousedown(b),a.Ix.onclick(b),1})});(0,_.ga)("ManyBox.delayedRegister",function(a){_.pv.push(a)},_.k);_.Xu.prototype.append=_.Xu.prototype.append;(0,_.ga)("ManyBox.create",function(a,b,c,d,e){return new _.Xu(a,b,c,d,e)},_.k);(0,_.ga)("ManyBox.register",function(a,b,c,d,e){return _.mv[a]=new _.Xu(a,b,c,d,e)},_.k);_.Xu.prototype.insert=_.Xu.prototype.eW;_.Xu.prototype.loadManyboxData=_.Xu.prototype.load;_.Xu.prototype.toggleManyboxState=_.Xu.prototype.dO; _.Xu.prototype.updateManybox=_.Xu.prototype.qZ;(0,_.Mf)(22,{init:_.nv,dispose:function(){_.mv={};_.Yu={};_.pv=[]}});
+
+(0,_.Bc)(_.O.$(),"mb");(0,_.Fc)(_.O.$(),"mb");
+}catch(e){_._DumpException(e)}
+try{
+_.wca=function(){var a=window.document.getElementById("lc-input");if(a.value!=window.google.loc.m4)return _.A;var b=(0,_.Be)("div",a.value);b.setAttribute("class",a.getAttribute("class"));b.style.cssText=a.style.cssText;b.style.visibility="hidden";b.style.position="absolute";b.style.width="auto";b.style.whiteSpace="nowrap";a.parentNode.appendChild(b);a=b.offsetWidth>a.offsetWidth;(0,_.Dd)(b);return a};
+_.nu=function(){_.ou=_.A;var a=window.document.getElementById("lc-input");a&&(_.pu=new _.vl(a,window.google.loc.m4,1,_.wca))};_.qu=function(){_.pu&&(_.pu.Qx(),_.pu=_.p)};
+_.ru=function(a,b,c){var d=window.document.getElementById("set_location_section");""!=a.innerHTML&&(d.style.height=d.offsetHeight-a.offsetHeight-4+"px");var e=d.offsetHeight,f="";c&&(f="color:#c11;");a.innerHTML='<div style="'+f+'margin-top:3px">'+b+"</div>";a.style.display="block";d.offsetHeight==e&&(d.style.height=d.offsetHeight+a.offsetHeight+4+"px")};_.su=function(){var a={q:(0,_.Ue)("q"),changed_loc:1};(0,_.Re)(a,_.l)};
+_.tu=function(a,b){var c=window.document.getElementById("error_section"),d=(0,_.Kc)();d.onreadystatechange=function(){if(4==d.readyState)if(200==d.status&&!d.responseText){c.innerHTML="";try{var a=(0,_.yl)();a&&a.Rb()}catch(e){window.google.log("location_widget_make_uul_request","&err="+e,"",b)}(0,_.su)()}else 200==d.status&&d.responseText?d.responseText.match("\n")?(0,_.ru)(c,d.responseText.split("\n")[0],_.l):(0,_.ru)(c,d.responseText,_.A):(0,_.ru)(c,window.google.loc.m3,_.l)};var e="/uul?muul=4_18"+
+a+"&usg="+(0,window.encodeURIComponent)(window.google.loc.s)+"&hl="+window.google.kHL,f=(0,_.Ue)("host");f&&(e+="&host="+f);d.open("GET",e,_.l);d.send(_.p)};_.uu=function(a){window.google.log("location_widget_enable_autodetect","","",a);(0,_.tu)("&uulo=2",a)};(0,_.Ec)(_.O.$(),"lc");
+_.ou=_.A;(0,_.ga)("google.loc.init",_.nu,_.k);(0,_.ga)("google.loc.dispose",_.qu,_.k);(0,_.ga)("google.loc.devloc",function(){var a=window.document.getElementById("error_section");window.google.devloc?window.google.devloc.pnlic(_.su,function(){(0,_.ru)(a,window.google.loc.m5,_.l)}):(0,_.ru)(a,window.google.loc.m5,_.l)},_.k);
+(0,_.ga)("google.loc.submit",function(){var a=window.document.getElementById("lc-input"),b=a.value;b?(window.google.log("location_widget_change_location","","",a),(0,_.tu)("&luul="+(0,window.encodeURIComponent)(b)+"&uulo=1",a)):(0,_.uu)(a);return _.A},_.k);(0,_.ga)("google.loc.enableAutoDetect",_.uu,_.k);
+(0,_.ga)("google.loc.expandLocationChange",function(){if(!_.ou){_.ou=_.l;var a=window.document.getElementById("lc"),b=window.document.getElementById("set_location_section");a.className="lco";var c;if(b){var d=b.offsetHeight,e=(0,_.gf)(b,"overflow",_.l);b.style.overflow="hidden";c={Ef:d,hL:e}}else c=_.p;(0,_.Lg)(227,[[b,"height",0,c.Ef],[b,"opacity",0,1,_.p,""]],function(){window.google.log("location_widget","&open=1","",a);var d=c;b.style.removeAttribute&&b.style.removeAttribute("filter");b.style.overflow=
+d.hL;b.style.height=""})}},_.k);(0,_.ga)("google.loc.b",function(){var a=window.document.getElementById("lc-input");""==a.value&&(a.value=window.google.loc.m4,a.style.color="#666666")},_.k);(0,_.ga)("google.loc.f",function(){var a=window.document.getElementById("lc-input");a.value==window.google.loc.m4&&(a.value="",a.style.color="#000000")},_.k);(0,_.Mf)(77,{init:_.nu,dispose:_.qu});
+
+(0,_.Bc)(_.O.$(),"lc");(0,_.Fc)(_.O.$(),"lc");
+}catch(e){_._DumpException(e)}
+try{
+(0,_.Ec)(_.O.$(),"du");(0,_.ga)("google.dictU.play",function(a,b){var c=window.document.getElementById("speaker_icon");c.className="speaker-icon-listen-on";window.document.getElementById("sound_flash").innerHTML='<object data="//ssl.gstatic.com/dictionary/static/sounds/0/SoundApp.swf" height=1 type="application/x-shockwave-flash" width=1><param value="//ssl.gstatic.com/dictionary/static/sounds/0/SoundApp.swf" name=movie><param value="sound_name=//ssl.gstatic.com/dictionary/static/sounds/de/0/'+b+'" name=flashvars><param name=wmode value=transparent></object>'; (0,window.setTimeout)(function(){c.className="speaker-icon-listen-off"},1500)},_.k);
+
+(0,_.Bc)(_.O.$(),"du");(0,_.Fc)(_.O.$(),"du");
+}catch(e){_._DumpException(e)}
+try{
+_.xv=function(a,b,c){this.M=a;this.ha=b;this.ji=c;this.B=this.fz=_.A;this.U=""};_.yv=function(a,b){if(!(a.B||a.fz==b)){"none"==a.ha.style.display&&(a.ha.style.display="");"none"==a.ji.style.display&&(a.ji.style.display="");b?(a.U=a.M.getAttribute("title"),a.M.setAttribute("title","")):a.M.setAttribute("title",a.U);var c=a.ji.offsetHeight,d=a.fz?0:0-c,c=a.fz?0-c:0;a.B=_.l;(0,_.Lg)(b?400:200,[[a.ji,"marginTop",d,c]],function(){a.fz=b;if(!b)a.ji.style.display="none";a.B=_.A})}};
+_.zv=function(a,b){window.google.log("advocate","&ved="+a,"",b)};_.Av=function(a,b){var c=a.split(":");return'{"inventory_type":'+(0,window.parseInt)(c[0],10)+',"category":{"taxonomy":'+(0,window.parseInt)(c[1],10)+',"id":'+(0,window.parseInt)(c[2],10)+"}"+(b?',"signup_query":"'+b+'"':"")+"}"};_.Bv=function(a,b,c){_.Cv=_.Cv||(0,_.Kc)();_.Cv.open("POST",a);_.Cv.onreadystatechange=function(){4==_.Cv.readyState&&c(200==_.Cv.status)};_.Cv.send(b)};
+_.Dv=function(a,b){var c=(0,_.Ee)(a);c&&(c.style.display=b?"none":"",b||window.setTimeout(function(){c.style.display="none"},2500))};
+_.Lca=function(a){(0,_.Dv)("#advcprmpe",a);if(a){_.Ev&&(0,_.yv)(_.Ev,_.A);if(a=(0,_.Ee)("#advcprmph"))a.style.display="none";if(a=(0,_.Ee)("#advcprmps"))a.style.display="none";if(a=(0,_.Ee)("#advcprmpi"))a.style.display="none";a=(0,_.Ee)("#advcpsuh");a.style.display="";for(var b=(0,_.Ee)("#advcpsui"),c=(0,_.De)("div.advcadut"),d=0,e;e=c[d];d++)e=(0,_.Dd)(e),(0,_.Cd)(e,b),e.style.display="";b=(0,_.Ee)("#advcpsuw");c=(0,_.Ee)("#advcpsuz");b&&c&&(_.Fv=new _.xv(a,b,c),(0,_.yv)(_.Fv,_.l))}};
+_.Mca=function(a){(0,_.Dv)("#advcinte",a);a&&((0,_.Ee)("#advcintr").style.display="none",(0,_.Ee)("#advcintu").style.display="")};_.Nca=function(a){(0,_.Dv)("#advcinte",a);a&&((0,_.Ee)("#advcintr").style.display="",(0,_.Ee)("#advcintu").style.display="none")};(0,_.Ec)(_.O.$(),"ada");
+_.Cv=_.p;_.Ev=_.p;_.Fv=_.p;_.xv.prototype.toggle=function(){(0,_.yv)(this,!this.fz)};(0,_.Mf)(144,{init:function(){_.Fv=_.Ev=_.p}});(0,_.ga)("google.advocate.pzc",function(a){if(!_.Ev){var b=(0,_.Ee)("#advcprmph"),c=(0,_.Ee)("#advcprmpw"),d=(0,_.Ee)("#advcprmpz");if(!b||!c||!d)return;_.Ev=new _.xv(b,c,d)}_.Ev.toggle();(0,_.zv)(a,(0,_.Ee)("#advcprmpz"))},_.k);(0,_.ga)("google.advocate.plm",function(a){(0,_.zv)(a,(0,_.Ee)("#advcpsuz"))},_.k);
+(0,_.ga)("google.advocate.sup",function(a,b,c){(0,_.Bv)("/ads-advocate-api/addinterest",(0,_.Av)(b,c),_.Lca);(0,_.zv)(a,(0,_.Ee)("#advcprmpz"))},_.k);(0,_.ga)("google.advocate.pno",function(a){_.Ev&&((0,_.yv)(_.Ev,_.A),(0,_.zv)(a,(0,_.Ee)("#advcprmpz")))},_.k);(0,_.ga)("google.advocate.rmi",function(a,b){(0,_.Bv)("/ads-advocate-api/removeinterest",(0,_.Av)(b),_.Mca);(0,_.zv)(a,(0,_.Ee)("#advcintr"))},_.k); (0,_.ga)("google.advocate.uri",function(a,b){(0,_.Bv)("/ads-advocate-api/undoremoveinterest",(0,_.Av)(b),_.Nca);(0,_.zv)(a,(0,_.Ee)("#advcintu"))},_.k);
+
+(0,_.Bc)(_.O.$(),"ada");(0,_.Fc)(_.O.$(),"ada");
+}catch(e){_._DumpException(e)}
+try{
+_.Lv=function(a,b){var c=b||"kr",d="kpbv:"+a.getAttribute("data-ved")+"&ei="+window.google.getEI(a);window.google.log(c,d)};_.Mv=function(a){a in _.Nv||(_.Nv[a]=1);_.Ov[a]=_.A};_.Pv=function(a){a in _.Nv&&(delete _.Nv[a],delete _.Ov[a])};_.Qv=function(a,b){a in _.Nv&&(_.Ov[a]=b)};_.Rv=function(a){var a=a||"kr",b;for(b in _.Nv)(0,_.ig)(b,(0,_.bb)(_.Tca,2,a,b))};_.Sv=function(a){(0,_.Tv)(1,a||"kr")};_.Uv=function(a){(0,_.Tv)(0,a||"kr")};
+_.Vv=function(a,b,c,d,e){e=e||"kr";e in _.Wv[0]||(_.Wv[0][e]={},_.Wv[1][e]={},_.Wv[2][e]={});_.Wv[0][e][a]=b;_.Wv[1][e][a]=c;_.Wv[2][e][a]=d};_.Xv=function(a,b){var c=b||"kr";c in _.Wv[0]&&a in _.Wv[0][c]&&(_.Wv[0][c][a]=_.p,_.Wv[1][c][a]=_.p,_.Wv[2][c][a]=_.p)};_.Tv=function(a,b){if(!(_.Yv[b]&&_.Yv[b]==a)){var c=_.Wv[a];if(c[b]){for(var d in c[b])if(c[b][d])c[b][d]();(0,_.Zv)(a,b);_.Yv[b]=a}}};
+_.Tca=function(a,b,c){var d=_.Wv[a];if(d[b]){if(d[b][c])d[b][c]();if(!_.Yv[b]||_.Yv[b]!=a)(0,_.Zv)(a,b),_.Yv[b]=a}};_.Zv=function(a,b){switch(a){case 0:window.google.log(b,"toBase");break;case 2:window.google.log(b,"toReporting")}};(0,_.Ec)(_.O.$(),"sy38");
+_.Yv={};_.Wv=[{},{},{}];_.Nv={};_.Ov={};(0,_.ga)("google.kno.repr",_.Rv,_.k);(0,_.ga)("google.kno.repd",_.Sv,_.k);(0,_.ga)("google.kno.repb",_.Uv,_.k);
+(0,_.Bc)(_.O.$(),"sy38");(0,_.Fc)(_.O.$(),"sy38");
+}catch(e){_._DumpException(e)}
+try{
+_.$v=function(){this.B=(0,_.Ee)("#answer_slist_more_button");this.M=(0,_.Ee)("#answer_slist_less_button");this.U=(0,_.Ee)("#answer_slist_more_results_container");if((this.ha=(0,_.Ee)("#answer_slist_more_results"))&&this.B&&this.M)(0,_.Je)(this.B,"click",(0,_.ab)(this.ra,this)),(0,_.Je)(this.M,"click",(0,_.ab)(this.oa,this))};(0,_.Ec)(_.O.$(),"amcl");
+_.$v.prototype.ra=function(){(0,_.Fe)(this.U,"height",(0,_.hf)(this.ha)+"px");(0,_.Fe)(this.B,"display","none");(0,_.Fe)(this.M,"display","block");(0,_.zf)(this.B,[this.B],[_.l])};_.$v.prototype.oa=function(){(0,_.Fe)(this.U,"height",0);(0,_.Fe)(this.B,"display","block");(0,_.Fe)(this.M,"display","none");(0,_.zf)(this.M,[this.B],[_.A])};_.$v.prototype.dispose=function(){this.B&&this.M&&((0,_.Ke)(this.B,"click",(0,_.ab)(this.ra,this)),(0,_.Ke)(this.M,"click",(0,_.ab)(this.oa,this)))}; (0,_.Mf)(324,{init:function(){(0,_.Ee)(".answer_slist_collection")!=_.p&&(new _.$v,(0,_.Mv)("rmcl"))}});
+
+(0,_.Bc)(_.O.$(),"amcl");(0,_.Fc)(_.O.$(),"amcl");
+}catch(e){_._DumpException(e)}
+try{
+_.dE=function(a,b){var c=(0,window.RegExp)("[?&#]"+b+"=([^&#]*)","i").exec(a);return c&&1<c.length?c[1]:""};
+_.Hea=function(a){var b=window.document.createElement("div"),a=a.split("<b>"),c;for(c=0;c<a.length;c++){var d=a[c].split("</b>");if(1==d.length)b.appendChild(window.document.createTextNode((0,_.eE)(d[0])));else{var e=window.document.createTextNode((0,_.eE)(d[0])),f=window.document.createElement("span");f.style.fontWeight="bold";f.appendChild(e);d=window.document.createTextNode((0,_.eE)(d[1]));b.appendChild(f);b.appendChild(d)}}return b};
+_.eE=function(a){return a.replace(/&([^;]+);/g,function(a,c){switch(c){case "amp":return"&";case "lt":return"<";case "gt":return">";case "quot":return'"';default:if("#"==c.charAt(0)){var d=(0,window.Number)("0"+c.substr(1));if(!(0,window.isNaN)(d))return window.String.fromCharCode(d)}return a}})};_.fE=function(a,b){a.innerHTML="";a.appendChild(window.document.createTextNode(b))};
+_.Iea=function(a){if(!a.targetDocId||!_.gE[a.targetDocId])return _.A;if(_.hE){var b=(0,_.Ee)("#rg_ht");if(b){var c=(0,_.iE)(b);c&&((0,_.jE)(),(0,_.Ke)(c,"click",_.kE),_.kE=_.p,b.removeChild(c),_.hE&&_.hE.appendChild(c))}}var d=_.gE[a.targetDocId],e=d[0],f=window.document.getElementById(a.targetDocId).childNodes[0].parentNode.href,b=(0,_.dE)(f,"imgurl"),c=4<=d.length?d[4]:"";c||(c=(b=/\/([^/]+.(jpg|jpeg|png|gif|bmp)$)/i.exec(b))?(0,window.unescape)(b[1]):"");var b=d[7],g=d[8],g=b&&g?b+"\u00a0\u00d7\u00a0"+
+g:"";(b=d[3])&&(g=g+"\u00a0-\u00a0"+b);(b=(0,_.dE)(f,"imgrefurl"))||(b=(0,_.dE)(f,"url"));var i=/:\/\/(www.)?([^/?#]*)/i.exec(b),h=6<=d.length&&_.lE&&_.mE;a:{var b=d[1],m=d[2],n=c,j=g,q=i?i[2]:"",c=h?d[5]:"",g=h?_.lE:"",d=h?d[6]:"",h=h?_.mE:"";window.document.getElementById("rg_hl").href=f;i=window.document.getElementById("rg_hi");i.removeAttribute("src");if(e==_.nE.src)i.src=e;else{var t=(0,_.Ee)("IMG",window.document.getElementById(a.targetDocId));if(t==_.p)break a;t=_.Oc.Gd?(t=t.getAttributeNode("src"))?
+t.value:"":t.getAttribute("src");t&&i.setAttribute("src",t);_.nE.src=e}i.width=b;i.height=m;i.setAttribute("data-width",b);i.setAttribute("data-height",m);(0,_.Fe)(i,"width",b+"px","height",m+"px");var m=window.document.getElementById("rg_ilbg"),t=window.document.getElementById("rg_il"),r=window.document.getElementById(a.targetDocId).parentNode,s=(0,_.Ee)(".rg_ilbg",r),r=(0,_.Ee)(".rg_il",r);s&&r?(m.innerHTML=s.innerHTML,m.style.display="block",t.innerHTML=r.innerHTML,t.style.display="block"):(m.innerHTML=
+"",m.style.display="none",t.innerHTML="",t.style.display="none");window.document.getElementById("rg_ht").style.display=n?"":"none";n&&(m=window.document.getElementById("rg_hta"),m.href=f,(0,_.fE)(m,(0,window.decodeURI)(n).replace(/ /g,"\u00a0").replace(/-/g,"\u2011")));var C=window.google.hover.ga(a.targetDocId,["uh_r"]);_.hE=C;var v=(0,_.iE)(C);if(v&&v.getAttribute("g:imgtitle")){C.removeChild(v);m=(0,_.Ee)("#rg_ht");m.appendChild(v);m.style.maxHeight="2.4em";(0,_.jE)();var x=window.document.getElementById("rg_hx");
+_.oE=function(a){window.google.pw&&window.google.pw.yL&&window.google.pw.yL.animate(a,v,x)};(0,_.Je)(x,"mouseover",_.oE);_.pE=function(a){window.google.pw&&window.google.pw.yL&&window.google.pw.yL.Q0(a,v,x)};(0,_.Je)(x,"mouseout",_.pE);m=(0,_.Ee)("#rg_img_wn");t=v.getAttribute("g:undo");s=(0,_.Ee)("#rg_pos");if(m&&s&&t){s.innerHTML="";var u=m.cloneNode(_.l);u.id=t;s.appendChild(u);var y=(0,_.lf)(v,"eswa");_.kE=function(){if(!(0,_.lf)(v,"esww")){u.style.display=y?"none":"";var a=(0,_.Ee)("div.rg_ils",
+C),b=(0,_.Ee)("#isr_soa");if(b&&!y){a&&C.removeChild(a);a=b.cloneNode(_.l);a.removeAttribute("id");C.appendChild(a)}if(a){a=a.style;a.display=y?"none":"";a.width=C.style.width}y=!y}};(0,_.Je)(v,"click",_.kE)}m=_.l}else m=_.A;(0,_.Ee)("#rg_ht").style.display=n||m?"":"none";(t=(0,_.Ee)("#rg_pos"))&&(t.style.display=m?"":"none");m=a.targetDocId;if(t=(0,_.qE)(window.document.getElementById("rg_hta"),"pplsrsli"))if(t.style.display="inline",t.id="srsl_"+m,t.setAttribute("data-docid",m),t.setAttribute("data-title",
+n),t.setAttribute("data-url",f),t.setAttribute("data-imgurl",e),e=window.document.getElementById("rg_ht"),e.style.maxHeight="2.4em",e=(0,_.qE)(e,"pplsrslc"))e.style.display="none",e.id="srslc_"+m,e=(0,_.kd)("a","pplsrslcl",e),e.length&&(e[0].id="srslcl_"+m);e=window.document.getElementById("rg_hn");e.innerHTML="";e.style.display=j?"":"none";e.appendChild((0,_.Hea)(j));window.document.getElementById("rg_hr").innerHTML=q;f=window.document.getElementById("rg_ha_osl");e=window.document.getElementById("rg_hs");
+j=window.document.getElementById("sha"+a.targetDocId);e.style.display="none";if(j&&(e.style.display="",e.innerHTML=j.innerHTML,window.google.sos&&(window.google.sos.hover&&window.google.sos.hover.cW)&&window.google.sos.hover.cW(e),f&&(f.style.display="none"),(j=(0,_.Ee)("a.kpbb",e))&&j.href)){q=window.location.protocol+"//"+window.location.host+(0,_.Se)();if((n=j.href)&&-1!=n.indexOf("//plus.google.com/up")&&q&&(0,_.Ue)("continue",n)===_.p)m="&",-1==n.indexOf("?")&&(m="?"),n+=m+"continue="+(0,window.escape)(q);
+j.href=n;(0,_.Je)(j,"click",function(){window.google.log("biuc","up")})}if(c||d)f&&(f.style.display=""),f="none",j=window.document.getElementById("rg_hals"),j.style.display=c?"":"none",c&&(j.href=c,(0,_.fE)(j,g)),g=window.document.getElementById("rg_haln"),g.style.display=d?"":"none",d&&(g.href=d,(0,_.fE)(g,h),c&&(f="")),window.document.getElementById("rg_has").style.display=f;a.element=window.document.getElementById("rg_h");a.image=i;c=0;if(e&&(g=(0,_.Ee)("div.cpb",e)))d=a.element.style.display,
+a.element.style.display="inline-block",c=58+g.offsetWidth,a.element.style.display=d;a=window.Math.max(window.document.getElementById("rg_hr").offsetWidth+2,window.document.getElementById("rg_ha").offsetWidth+2,c,b,160);window.google.hover.s(a)}return _.l};
+_.Jea=function(a){var b=-1,c=a.startTime;c&&(b=(new window.Date).getTime()-c,0>b&&(b=-1));if(a.resultInfo!=_.p&&6E4>b){c=window.location.href;(0,_.dE)(c,"tbs");b=["/imghover?iact=hm","&ei=",window.google.kEI,"&q=",(0,_.dE)(c,"q"),"&tbnh=",a.resultInfo.rect.height,"&tbnw=",a.resultInfo.rect.width,"&dur=",b,"&tbnid=",a.targetDocId];a.image&&b.push("&hovh=",a.image.height,"&hovw=",a.image.width);a.rect&&b.push("&vpx=",a.rect.left,"&vpy=",a.rect.top);(c=(0,_.rE)("imgurl",a.element))&&b.push("&imgurl=",
+c);(c=(0,_.rE)("imgrefurl",a.element))&&b.push("&imgrefurl=",c);(a=window.document.getElementById(a.targetDocId).getAttribute("ved"))&&b.push("&ved=",a);a="";(c=(0,_.qE)(window.document.getElementById("rg_hta"),"pplsrsli"))&&"inline"==c.style.display&&(a+="h");window.document.getElementById("rg_haln")!=_.p&&(a+="m");if(c=window.document.getElementById("rg_ht"))for(var c=c.getElementsByTagName("button"),d=c.length,e=0;e<d;e++){var f=c.item(e).getAttribute("g:pingback");if(f&&-1!=f.indexOf("ct=plusone")){a+=
+"p";break}}window.document.getElementById("rg_hals")&&(a+="s");a&&b.push("&vetl=",a);window.google.j&&window.google.j.pf&&b.push("&sqi=6");window.google.log("","",b.join(""))}};_.iE=function(a){if(!a)return _.p;for(var a=a.getElementsByTagName("button"),b=0,c;c=a[b];++b)if((0,_.lf)(c,"esw"))return c;return _.p};_.jE=function(){var a=window.document.getElementById("rg_hx");_.oE&&((0,_.Ke)(a,"mouseover",_.oE),_.oE=_.p);_.pE&&((0,_.Ke)(a,"mouseout",_.pE),_.pE=_.p)};
+_.qE=function(a,b){if(a)for(a=a.nextSibling;a!=_.p;){if(a.className==b)return a;a=a.nextSibling}return _.p};_.rE=function(a,b){if(!b)return _.p;for(var c=b.getElementsByTagName("a"),d=0,e;e=c[d];d++)if(e=e.href.match(/(\?|$)[^#]*/)[0])if(e=e.match("[?&]"+a+"=([^&]*)"))return e[1];return _.p};(0,_.Ec)(_.O.$(),"bihu");
+_.hE=_.p;_.gE={};_.lE="";_.mE="";_.sE="";_.nE=window.document.createElement("img");_.kE=_.pE=_.oE=_.p;_.tE=_.A;
+(0,_.Mf)(167,{init:function(a){for(var b in a)if("MESSAGES"==b){var c=a[b];_.lE=c.msg_si||"";_.mE=c.msg_ms||"";_.sE=c.msg_img_from||""}else _.gE[b]=a[b];(0,_.Ee)("#iur");a=(0,_.De)("li.uh_r");b=_.sE;for(var c=0,d;d=a[c++];){var e=(0,_.Ee)("a.bia",d),f=_.gE[e.id];d=(0,_.Ee)("button.esw",d);f&&d&&(d.setAttribute("g:imgtbn",f[0]),e=e.href,d.setAttribute("g:imgland",e),e=(0,_.dE)(e,"imgrefurl"),e=/:\/\/(www.)?([^/?#]*)/i.exec(e),e=b.replace(/\%1\$s|\%s/,e?e[2]:""),d.setAttribute("g:imgtitle",e))}if(_.tE= window.google.hover.r("rg_r",_.Iea,_.Jea,_.p))_.nE.onload=function(){window.document.getElementById("rg_hi").src=_.nE.src}},dispose:function(){_.tE&&(window.google.hover.u("rg_r"),(0,_.jE)());_.tE=_.A;_.hE=_.p}});
+
+(0,_.Bc)(_.O.$(),"bihu");(0,_.Fc)(_.O.$(),"bihu");
+}catch(e){_._DumpException(e)}
+try{
+_.tL=function(a){this.a=a.a;this.B=a.bb;this.id=a.id;var b={};if("c"in a)try{b=eval("(0,"+a.c+")")}catch(c){}if(b&&b["9"]){if(window.google.LU.fmap_xc){var a=window.google.LU.fmap_xc[b["9"].index],d;for(d in a)b[d]=a[d]}"r"==b["9"].index.substr(0,1)?(this.isMarker=_.l,d=b["9"].index.substr(1),this.markerElement=(0,_.Ee)(".lumi"+d)):b.isMarker&&(this.isMarker=_.l);if("bluepin"==b["9"].index.substr(0,7)){d=b["9"].index.substr(7);d=(0,_.De)(".luadpini"+d);for(var a=0,e;e=d[a];a++)0<e.offsetHeight&&(this.markerElement=
+e)}}this.extendedContent=b};_.cga=function(a){this.B=_.p;this.M=[];this.ha=[];this.U=_.A;var b;if(a){b=0;for(var c;b<a.length;++b)if(c=a[b].features)for(var d=0,e;e=c[d];++d)e=new _.tL(e),this.M.push(e),e.extendedContent["9"]&&(this.ha[e.id]=e);b=0<this.M.length}else b=_.A;if(b&&(this.B=a[0].rectangle)&&4==this.B.length)this.U=_.l};
+_.uL=function(a,b,c,d,e,f){this.ra=0;this.B=_.p;this.ha=f;e=e.join(",");this.oa=a+e+c;var g="loadFeaturemap_"+window.Math.floor(window.google.time()/100)%864+"_"+d,i=this;(0,_.ga)("google.LU."+g,function(a){delete window.google.LU[g];(0,_.dga)(i);i.B=new _.cga(a);window.google.log("lu_featuremap",window.google.time()-i.ra+"")},_.k);this.xa=[b,e,c,"&callback=google.LU.",g].join("")};_.ega=function(a){a.ra=window.google.time();a.U=window.document.createElement("SCRIPT");a.U.src=a.xa;(0,_.Ae)(a.U)};
+_.dga=function(a){a.U&&(a.U.parentNode.removeChild(a.U),delete a.U)};_.fga=function(a){a.M&&((0,_.Ke)(a.ha,"mouseover",a.M),(0,_.Ke)(a.ha,"mousemove",a.M),a.M=_.p)};_.vL=function(a){return _.Oc.Gd?window.document.documentElement["client"+a]:window["inner"+a]};_.gga=function(){if(_.wL)for(var a in _.xL)_.wL.style[a]=_.xL[a]};_.hga=function(){var a=window.document.getElementById("lu_pinned_rhs-placeholder");a&&a.parentNode.removeChild(a)};
+_.yL=function(){if(_.zL){var a=window.document.body.scrollTop+window.document.documentElement.scrollTop;if(!_.AL&&a>=_.BL){if(_.wL&&"none"!=_.wL.style.display){_.CL.ol=(0,_.me)(_.wL);_.CL.iw=(0,_.jf)(_.wL);_.CL.yR=_.wL.offsetWidth;_.CL.uR=_.wL.offsetHeight;for(var a=0,b;b=_.iga[a++];)_.xL[b]=_.wL.style[b];_.wL&&("absolute"!=(0,_.gf)(_.wL,"position",_.l)&&(a=window.document.createElement("div"),a.id=_.wL.id+"-placeholder",_.Oc.Gd?a.style.styleFloat=(0,_.gf)(_.wL,"styleFloat",_.l):a.style.cssFloat=
+(0,_.gf)(_.wL,"float",_.l),a.style.width=_.CL.yR+"px",a.style.height=_.CL.uR+"px",a.style.marginTop=(0,_.gf)(_.wL,"margin-top",_.l),a.style.marginBottom=(0,_.gf)(_.wL,"margin-bottom",_.l),a.style.marginLeft=(0,_.gf)(_.wL,"margin-left",_.l),a.style.marginRight=(0,_.gf)(_.wL,"margin-right",_.l),_.wL.parentNode.insertBefore(a,_.wL.nextSibling)),_.wL.style.margin=0,_.wL.style.zIndex=109,_.wL.style.width=_.CL.iw+"px",_.wL.style.top=0,_.wL.style.position="fixed",_.wL.style.paddingTop="6px",_.wL.style.backgroundColor=
+"#fff");_.AL=_.l}}else _.AL&&a<_.BL&&((0,_.hga)(),(0,_.gga)(),_.AL=_.A);var a=window.pageXOffset||window.document.body.scrollLeft||window.document.documentElement.scrollLeft,c=(b=(0,_.ff)())?"marginRight":"marginLeft";b&&(a=window.Math.abs(a));_.wL&&(_.wL.style[c]=_.AL?-a+"px":"0")}};
+_.jga=function(){if(!_.wL||!window.document.getElementById("rhs_block"))return _.A;var a=window.document.getElementById("mbEnd");if(!a)return _.A;var b=a.getElementsByTagName("li");if(!b||0==b.length)return _.A;var a=(0,_.vL)("Height"),c=(0,_.hf)(_.wL),b=2*(b[0].offsetHeight+12)+c+(0,_.ne)(_.wL);return a<b};_.DL=function(){_.EL||((_.AL&&((0,_.hga)(),(0,_.gga)(),_.AL=_.A),(0,_.jga)())?_.zL=_.A:(_.zL=_.l,_.BL=(0,_.ne)(window.document.getElementById("lu_pinned_rhs")),_.BL-=6,(0,_.yL)()))};
+_.kga=function(){_.wL&&(this.m=(0,_.hf)(_.wL),this.h=(0,_.vL)("Height"),this.w=(0,_.vL)("Width"))};_.lga=function(){if(_.wL){var a=new _.kga;if(!(_.Oc.Gd?a.m==_.FL.m&&a.h==_.FL.h&&a.w==_.FL.w:a.h==_.FL.h))(0,_.DL)(),_.FL=a}};_.mga=function(){_.Je&&_.hf?(_.wL=window.document.getElementById("lu_pinned_rhs"),_.xL={},_.CL={},_.FL=new _.kga,(0,_.Je)(window,"scroll",_.yL),_.Oc.Gd?_.GL=window.setInterval(_.lga,200):(0,_.Je)(window,"resize",_.DL),(0,_.DL)()):window.setTimeout(function(){(0,_.mga)()},100)};
+_.nga=function(a){this.U=0;this.B=[];this.ha=_.A;this.Vr=window.document.createElement("div");var b=this.Vr.style;b.position="fixed";b.WebkitTransitionProperty="left, top";b.MozTransitionDuration=".1s, .1s";b.MozTransitionProperty="left, top";b.WebkitTransitionDuration=".1s, .1s";this.M=window.document.createElement("div");this.M.className="lu_map_tooltip";b=this.M.style;b.position="absolute";b.zIndex=110;var c=" "+(!_.Oc.Gd||(0,_.Tc)("9")?"rgba(0,0,0,0.2)":"#999999");b.border="1px solid"+c;b.Bg=
+"2px";b.padding="6px 12px";b.lineHeight="1.2";b.fontSize="85%";b.backgroundColor="white";b.whiteSpace="nowrap";b.B="0 2px 4px"+c;b.WebkitBoxShadow="0 2px 4px"+c;b.mg="0 2px 4px"+c;a?b.right=0:b.left=0;this.Vr.appendChild(this.M);(0,_.HL)(this);(0,_.Ae)(this.Vr)};_.IL=function(a){return a.extendedContent&&a.extendedContent["1"]};_.oga=function(a,b){for(var c=0,d;d=b[c++];)if(d==a)return _.l;return _.A};_.HL=function(a){a.Vr.style.display="none"};
+_.JL=function(a){this.xa=a;this.U=[];this.Ta={};this.Ea=0;this.ra=this.od=_.p;this.Sa=this.fb=_.A;this.Oa=_.p;if(this.B=window.document.getElementById("lu_map")){for(this.oa=this.B;this.oa&&"A"!=this.oa.tagName;)this.oa=this.oa.parentNode;if(window.google.LU.fmap_url_delta&&(this.Ee=window.document.getElementById("lu_pinned_rhs"),this.Jc=(a=window.document.getElementById("center_col"))&&a.parentNode||window.document.getElementById("ires"),this.oa&&this.Jc&&(this.Fa=this.oa.href,this.lg=-1!=this.Fa.search(/&iwloc=|&cid=0,0,/),
+a=(0,_.pga)(this,this.B)))){var b=a.indexOf(",")+1;this.nj=a.substring(0,b);var c=a.indexOf("data=")+5;this.Uh=a.substring(0,c)+window.google.LU.fmap_url_delta+",";c=a.indexOf("&");this.xb=-1==c?"":a.substring(c);a=a.substring(b).split("&")[0].split(",")[0];this.Ea=0;this.Vb={id:this.Ea++,token:a,featuresCallback:_.p};this.Rk={id:this.Ea++,featuresCallback:_.p};this.Jl={id:this.Ea++,featuresCallback:_.p};this.xa.IL||(this.ra=new _.nga(!(0,_.ff)()),this.ra.ha=this.xa.jW);this.ha={x:0,y:0};var d=this;
+this.Oa=(0,_.vf)(_.p,function(){if(d.M&&d.M.B&&d.M.B.U){d.Zq=d.B.offsetHeight;var a;if(_.Oc.Gd){a=d.B.getBoundingClientRect();var b=d.B.ownerDocument;a.left=a.left-(b.documentElement.clientLeft+b.body.clientLeft);a.top=a.top-(b.documentElement.clientTop+b.body.clientTop);a={x:d.ha.x-a.left,y:d.ha.y-a.top}}else{b=(a=d.Ee&&d.Ee.style.position=="fixed")?0:window.document.body.scrollTop+window.document.documentElement.scrollTop;a={x:d.ha.x+(a?0:window.document.body.scrollLeft+window.document.documentElement.scrollLeft)-
+(0,_.me)(d.B),y:d.ha.y+b-(0,_.ne)(d.B)}}var c,b=(d.M.B.B[3]-d.M.B.B[1])/d.Zq;c={x:a.x*b,y:a.y*b};a=d.M.B;b=c.x;c=c.y;for(var i=[],h=0,m;m=a.M[h];++h)m.contains(b,c)&&i.push(m);d.oa.href=(0,_.qga)(d,i)}},100,_.l);this.Vb.featuresCallback=function(a){a:{for(var a=(0,_.rga)(d,a),b=0,c;c=a[b++];)if(c.id=="0"){a=_.p;break a}d.xa.IL||d.ra.B.length&&(a=d.ra.B);if(a.length==0||d.lg)a=d.Fa;else{for(var i=[],b=0;c=a[b++];)i.push(c.id);a=i.length?d.Fa+"&iwloc=cids:"+i.join(","):_.p}}return a};this.Rk.featuresCallback=
+function(a){if(d.xa.uT){for(var b=_.p,c=0,i;i=a[c++];)if(i.markerElement){b=i.markerElement;break}if(d.od!=b){(0,_.nf)(d.od,"luhovm");(0,_.mf)(b,"luhovm");d.od=b}}};this.Jl.featuresCallback=function(a){if(!d.xa.IL){for(var a=(0,_.rga)(d,a),b={x:6*((0,_.ff)()?1:-1),y:12},c=d.ra,i={x:d.ha.x+b.x,y:d.ha.y+b.y},b=_.A,h=0,m;m=c.B[h];)if((0,_.oga)(m,a))h++;else{c.B.splice(h,1);b=_.l}for(var h=0,n;n=a[h++];)if(!(0,_.oga)(n,c.B)){m=c;var j=(0,_.IL)(n);if(j){if(typeof j.star_rating=="undefined")m.B.push(n);
+else{for(var q=_.k,q=0;q<m.B.length;++q)if((j=(0,_.IL)(m.B[q]))&&typeof j.star_rating=="undefined")break;m.B.splice(q,0,n)}m=_.l}else m=_.A;m&&(b=_.l)}if(b){c.U++;(0,window.setTimeout)(function(){c.U--;if(c.U==0)if(c.B.length){for(var a=[],b=0,d;b<5&&(d=c.B[b++]);){var e=(0,_.IL)(d);if(e.title){c.B.length!=1&&a.push('<div style="min-height: 16px">');a.push("<b>",e.title,"</b> ");var f=e.star_rating,e=e.review_count,q=a;if(!(typeof f=="undefined"||typeof e=="undefined")){q.push('<div style="display: inline-block; vertical-align: -2px">');
+for(var j=0;j<5;++j){var n;if(f>0.75){n="rsw-starred";f=f-1}else if(f>0.25){n="rsw-half-starred";f=f-0.5}else n="rsw-unstarred";q.push('<div style="float: none; display: inline-block" class="',n,'"></div>')}q.push("</div>");q.push("<span dir=",(0,_.ff)()?"dir=rtl":"","> (",e,") </span>")}c.B.length!=1&&a.push("</div>")}}if(c.B.length==1)if(c.ha){b=c.B[0];if((b=(b=b.extendedContent&&b.extendedContent["14"])&&b.known_for_terms)&&b.length!=0){a.push('<div style="color: #222; min-width: 150px;','white-space: normal; margin-top: 8px">');
+a.push(b.join(" \u00b7 "));a.push("</div>")}}else{b=(d=(0,_.IL)(c.B[0]))&&d.snippet;d=d&&d.snippet_attribution;if(b&&d){a.push('<div style="min-width: 150px; white-space: normal">',b,"</div>");a.push('<div style="color: #666">',d,"</div>")}}c.M.innerHTML=a.join("");c.Vr.style.left=i.x+"px";c.Vr.style.top=i.y+"px";c.Vr.style.display=""}else(0,_.HL)(c)},200)}}};this.U=[this.Rk,this.Jl,this.Vb];this.ks=this.U.length;this.U=this.U.concat(this.xa.$E);a=(0,_.sga)(this.U);b=(0,_.tga)(this.U);this.M=new _.uL(this.nj,
+this.Uh,this.xb,a,b,this.xa.tN?this.Jc:_.p);this.fb=!!this.M;this.Ta[a]=this.M;this.M.ka(this.B)}}};_.sga=function(a){for(var b=[],c=0,d;d=a[c++];)d.token&&b.push(d.id);return b.join("_")};_.tga=function(a){for(var b=[],c=0,d;d=a[c++];)d.token&&b.push(d.token);return b};_.qga=function(a,b){for(var c=a.Fa,d=0,e;e=a.U[d++];)(e=(e=e.featuresCallback)&&e(b))&&(c=e);return c};_.rga=function(a,b){for(var c=[],d=0,e;e=b[d++];)e.isMarker&&c.push(e);return 0<c.length&&c||b};
+_.pga=function(a,b){if("IMG"==b.tagName)return b.src;var c=/url\(([\'\"]?)(.*)\1\)/.exec(b.style.background);return!c||3>c.length?"":c[2]};_.uga=function(a){var b=(0,_.tga)(a.U),c=(0,_.sga)(a.U),d=a.Ta[c];d||(d=new _.uL(a.nj,a.Uh,a.xb,c,b,_.p),a.Ta[c]=d);d!=a.M&&(a.M.Ga(),d.ka(a.B),a.M=d)};_.vga=function(a){var b=_.p;a!=_.p&&(b=(0,_.Ee)(".lupin",a)||(0,_.Ee)(".lucir",a)||(0,_.Ee)(".luadpin",a)||_.p);_.KL!=b&&((0,_.nf)(_.KL,"luhovm"),(0,_.mf)(b,"luhovm"),_.KL=b);a==_.p&&(0,_.LL)()};
+_.wga=function(a,b,c){var a=a.cloneNode(_.l),c=88*c-16,d=a.getElementsByTagName("IMG")[0];_.ML.tQ||(d.width=c);d.onload=function(){d.style.display="block";delete d.onload};d.style.display="none";d.src=d.src.split("&")[0]+"&w="+c;_.ML.tQ||(d.parentNode.style.width=c+"px");b.appendChild(a);return a};
+_.LL=function(){if(!_.NL)return _.A;if(!_.OL)for(var a in _.NL)a=(0,window.Number)(a),_.NL[a].firstChild&&(_.OL=_.NL[a]);if(!_.OL)return _.A;var b=_.OL.firstChild;if(!b)return _.A;var c=_.OL.column_count,d=_.p,e=0;for(a in _.NL)if(a=(0,window.Number)(a),0<_.NL[a].offsetHeight){d=_.NL[a];e=a;break}if(!d)return _.A;if(c==e)return _.PL[e]||(_.PL[e]=new _.JL(_.ML)),_.QL=e,_.PL[_.QL].ka(),_.l;window.document.getElementById("lu_map").id="";_.PL[_.QL]&&_.PL[_.QL].Ga();(d.firstChild||(0,_.wga)(b,d,e)).getElementsByTagName("IMG")[0].id=
+"lu_map";_.OL=d;_.PL[e]||(_.PL[e]=new _.JL(_.ML));_.QL=e;_.PL[_.QL].ka();return _.l};_.xga=function(a){var b=_.A,c;for(c in _.PL){if(!_.PL[(0,window.Number)(c)].addMapConfig(a))return _.A;b=_.l}b&&_.ML.$E.push(a);return b};_.yga=function(){return _.PL[_.QL].B?(0,_.pga)(_.PL[_.QL],_.PL[_.QL].B):""};_.zga=function(){return _.PL[_.QL].oa?_.PL[_.QL].oa.href:""};(0,_.Ec)(_.O.$(),"sy60");
+_.N=_.tL.prototype;_.N.isMarker=_.A;_.N.height=function(){return this.B[3]-this.B[1]+1};_.N.width=function(){return this.B[2]-this.B[0]+1};_.N.top=function(){return this.a[1]-this.height()+1};_.N.left=function(){return this.a[0]+this.B[0]+1};_.N.contains=function(a,b){var c=a-this.a[0],d=b-this.a[1];return c>=this.B[0]&&d>=this.B[1]&&c<=this.B[2]&&d<=this.B[3]};_.tL.prototype.extendedContent=_.tL.prototype.extendedContent;(0,_.ga)("google.LU.Feature",_.tL,_.k);
+_.uL.prototype.ka=function(a){if(a.src!=this.oa){var b=a.cloneNode(_.l);(0,_.Fe)(b,"position","absolute");var c=this;b.onload=function(){(0,_.Bd)(b,a);(0,_.Lg)(100,[[b,"opacity",0,1,_.p,""]],function(){a.src=c.oa;(0,_.Dd)(b)})};b.src=this.oa}if(!this.B)if(this.ha){var d=this;this.M=function(){(0,_.fga)(d);d.B||(0,_.ega)(d)};(0,_.Je)(this.ha,"mouseover",this.M);(0,_.Je)(this.ha,"mousemove",this.M)}else(0,_.ega)(this)};_.uL.prototype.Ga=function(){(0,_.dga)(this);(0,_.fga)(this)};
+_.zL=_.l;_.iga="left margin paddingTop position top width zIndex".split(" ");_.xL={};_.CL={};_.EL=_.A;(0,_.ga)("google.LU.hideLocalRhsContent",function(){_.wL&&(_.wL.style.display="none",_.EL=_.l)},_.k);(0,_.ga)("google.LU.showLocalRhsContent",function(){_.wL&&(_.wL.style.display="block",_.EL=_.A,(0,_.yL)())},_.k);
+(0,_.ga)("google.LU.Tooltip",_.nga,_.k);_.JL.prototype.ka=function(){if(this.B&&!this.Sa&&this.fb){this.Sa=_.l;var a=this.B,b=this;a.B=function(a){a=a||window.event;b.ha.x=a.clientX;b.ha.y=a.clientY;b.Oa()};(0,_.Je)(a,"mousemove",a.B);a.oa=function(){b.Oa()};(0,_.Je)(window,"scroll",a.oa);a.U=function(){b.ha.x=b.ha.y=0;(0,_.HL)(b.ra)};(0,_.Je)(window,"pagehide",a.U);a.M=function(){b.ha.x=b.ha.y=0;b.oa.href=(0,_.qga)(b,[])};(0,_.Je)(a,"mouseout",a.M)}};
+_.JL.prototype.Ga=function(){if(this.B&&this.Sa){this.Sa=_.A;var a=this.B;a.B&&((0,_.Ke)(a,"mousemove",a.B),delete a.B);a.oa&&((0,_.Ke)(window,"scroll",a.oa),delete a.oa);a.U&&((0,_.Ke)(window,"pagehide",a.U),delete a.U);a.M&&((0,_.Ke)(a,"mouseout",a.M),delete a.M)}};_.JL.prototype.addMapConfig=function(a){if(!this.fb)return _.A;a.id||(a.id=this.Ea++);this.U.push(a);(0,_.uga)(this);return _.l}; _.JL.prototype.deleteMapConfig=function(a){if(!(a.id<this.ks))for(var b=0;b<this.U.length;++b)if(this.U[b].id==a.id){this.U.splice(b,1);(0,_.uga)(this);break}};
+_.PL={};_.QL=-1;_.RL=_.p;_.NL=_.p;_.OL=_.p;_.KL=_.p;_.ML={};
+(0,_.Mf)(84,{init:function(a){if("webhp"!=window.google.sn&&window.document.getElementById("lu_map")){_.ML={IL:a.no_tt,uT:a.cm_hov,$E:[],tN:_.l,jW:a.tt_kft,tQ:a.tm};window.document.getElementById("lu_pinned_rhs")&&(_.Oc.Gd&&0==(0,_.Sc)("7",_.Qc)||_.Pc.Gx||window.document.getElementById("tbt5")||!window.document.getElementById("aerhs")&&!window.document.getElementById("pplicrhs")&&(0,_.mga)());a:for(var a={},b=3;5>=b;b++)if(a[b]=window.document.getElementById("rhsmap"+b+"col"),a[b])a[b].column_count=
+b;else{a=_.p;break a}(_.NL=a)&&(0,_.LL)()?(_.RL=(0,_.vf)(_.p,_.LL,100,_.l),(0,_.Le)(60,_.RL)):(_.PL[3]||(_.PL[3]=new _.JL(_.ML)),_.QL=3,_.PL[3].ka());_.ML.tN=_.A;(0,_.Le)(59,_.vga)}},dispose:function(){_.RL&&((0,_.Ne)(60,_.RL),_.RL=_.p);(0,_.Ne)(59,_.vga);for(var a in _.PL)if(_.PL[(0,window.Number)(a)]){var b=_.PL[(0,window.Number)(a)];b.Ga();b.B=_.p;b.oa=_.p;b.Jc=_.p;b.Ee=_.p;b.Fa="";b.xb="";b.lg=_.A;b.M&&b.M.Ga();b.M=_.p;b.U.length=0;b.Ta={};b.Vb=_.p;b.Ea=0;b.fb=_.A;if(b.ra){var c=b.ra;c.Vr&&c.Vr.parentElement&&
+c.Vr.parentElement.removeChild(c.Vr);b.ra=_.p}b.ha=_.p;b.Oa=_.p}_.PL={};_.QL=-1;_.KL=_.NL=_.OL=_.p;_.wL&&((0,_.Ke)(window,"scroll",_.yL),_.Oc.Gd||(0,_.Ke)(window,"resize",_.DL),_.GL&&window.clearInterval(_.GL),_.wL=_.p,_.EL=_.A);_.ML={}}});(0,_.ga)("google.LU.addMapConfig",_.xga,_.k);(0,_.ga)("google.LU.deleteMapConfig",function(a){for(var b in _.PL)_.PL[(0,window.Number)(b)].deleteMapConfig(a);for(b=0;b<_.ML.$E.length;++b)if(_.ML.$E[b].id==a.id){_.ML.$E.splice(b,1);break}},_.k); (0,_.ga)("google.LU.getCurrentMapImageUrl",_.yga,_.k);(0,_.ga)("google.LU.getCurrentMapAnchorUrl",_.zga,_.k);
+
+(0,_.Bc)(_.O.$(),"sy60");(0,_.Fc)(_.O.$(),"sy60");
+}catch(e){_._DumpException(e)}
+try{
+(0,_.Ec)(_.O.$(),"lu");
+(0,_.Bc)(_.O.$(),"lu");(0,_.Fc)(_.O.$(),"lu");
+}catch(e){_._DumpException(e)}
+try{
+_.QO=function(){return window.document.getElementById("sftab")||window.document.getElementById("lst-ib")};_.RO=function(){var a=(0,_.QO)();a&&(0,_.mf)(a,"lst-d-f")};_.Cia=function(){var a=(0,_.QO)();a&&(0,_.nf)(a,"lst-d-f")};_.Dia=function(a){this.element=a;this.B=[];this.M=_.p;"ab_opt"==this.element.id&&0==this.element.childNodes.length&&window.gbar.aomc(this.element);for(var a=(0,_.De)(".ab_dropdownitem",this.element),b=0,c;c=a[b];b++)(0,_.lf)(c,"disabled")||this.B.push(c)};
+_.SO=function(a,b){(0,_.Eia)(a,a.M==_.p?b?0:a.B.length-1:(a.M+(b?1:a.B.length-1))%a.B.length)};_.Eia=function(a,b){var c=a.B[b];c&&((0,_.TO)(a),(0,_.mf)(c,"selected"),c.setAttribute("aria-selected","true"),c=(0,_.Ee)("a",c)||c,c.setAttribute("tabindex","0"),c.focus(),a.M=b)};_.TO=function(a){var b=a.B[a.M];b&&((0,_.nf)(b,"selected"),b.setAttribute("aria-selected","false"),((0,_.Ee)("a",b)||b).setAttribute("tabindex","-1"),a.element.focus(),a.M=_.p)};
+_.Fia=function(a){var b=(0,_.UO)((0,_.rf)(a),"ab_button"),c=b&&_.VO!=b;_.WO&&(0,_.XO)();b&&c&&(0,_.Gia)(b);(0,_.sf)(a)};
+_.Gia=function(a){var b;if(_.YO[a.id]==_.k){var c=(0,_.UO)(a,"ab_ctl");b=_.p;c&&(c=(0,_.Ee)(".ab_dropdown",c))&&(b=new _.Dia(c));_.YO[a.id]=b}if(b=_.YO[a.id])(0,_.mf)(a,"selected"),a.setAttribute("aria-expanded","true"),_.VO=a,b.element.style.visibility="visible",_.WO=b,(0,_.Je)(b.element,"keydown",_.Hia),(0,_.Je)(b.element,"mouseover",_.Iia),(0,_.Je)(b.element,"mouseout",_.Jia),_.Pc.Lv&&(0,_.Je)(b.element,"keypress",_.ZO),(0,_.Je)(window.document,"click",_.XO),(0,_.Je)(window.document,"keydown",
+_.Kia)};_.XO=function(){_.WO&&((0,_.Ke)(_.WO.element,"keydown",_.Hia),(0,_.Ke)(_.WO.element,"mouseover",_.Iia),(0,_.Ke)(_.WO.element,"mouseout",_.Jia),_.Pc.Lv&&(0,_.Ke)(_.WO.element,"keypress",_.ZO),(0,_.Ke)(window.document,"click",_.XO),(0,_.Ke)(window.document,"keydown",_.Kia),(0,_.TO)(_.WO),_.WO.element.style.visibility="hidden",_.WO=_.p);_.VO&&((0,_.nf)(_.VO,"selected"),_.VO.setAttribute("aria-expanded","false"),_.VO=_.p)};_.Kia=function(a){27==a.keyCode&&(0,_.XO)()};
+_.Lia=function(a){var b=(0,_.UO)((0,_.rf)(a),"ab_button");if(b)if(9==a.keyCode)(0,_.XO)();else if(27==a.keyCode){if(_.WO)return(0,_.XO)(),(0,_.$O)(a)}else{if(32==a.keyCode)return(0,_.Fia)(a),(0,_.$O)(a);if(38==a.keyCode||40==a.keyCode)return _.WO?(0,_.SO)(_.WO,40==a.keyCode):(0,_.Gia)(b),(0,_.$O)(a);if(37==a.keyCode||39==a.keyCode)return(0,_.$O)(a)}return _.l};
+_.Iia=function(a){if(_.WO)if(a=(0,_.UO)((0,_.rf)(a),"ab_dropdownitem"))for(var b=_.WO,c=0,d;d=b.B[c];c++){if(a==d){c!=b.M&&(0,_.Eia)(b,c);break}}else(0,_.TO)(_.WO)};_.Jia=function(){_.WO&&(0,_.TO)(_.WO)};_.Hia=function(a){if(_.WO)if(9==a.keyCode)(0,_.XO)();else{if(27==a.keyCode){var b=_.VO;(0,_.XO)();b.focus();return(0,_.$O)(a)}if(38==a.keyCode)return(0,_.SO)(_.WO,_.A),(0,_.$O)(a);if(40==a.keyCode)return(0,_.SO)(_.WO,_.l),(0,_.$O)(a);if(32==a.keyCode||37==a.keyCode||39==a.keyCode)return(0,_.$O)(a)}return _.l};
+_.$O=function(a){(0,_.sf)(a);a.preventDefault&&a.preventDefault();return a.returnValue=_.A};_.ZO=function(a){(37==a.keyCode||38==a.keyCode||39==a.keyCode||40==a.keyCode)&&(0,_.$O)(a);return _.A};_.UO=function(a,b){for(;a&&a!=window.document.body;){if((0,_.lf)(a,b))return a;a=a.parentNode}return _.p};
+_.Mia=function(a){var b=(0,_.Ee)("#rcnt"),c=_.Nia||(0,_.Ee)("#searchform");if(c&&b){var d=(0,window.parseInt)((0,_.$d)(c,"top"),10),e=(0,_.QO)(),e=e?e.offsetHeight:c.offsetHeight,b=(0,_.ne)(b);if(a!=_.Oia||d!=_.Pia||e!=_.Qia||b!=_.Ria)_.Oia=a,_.Pia=d,_.Qia=e,_.Ria=b,d=0,a&&!_.Yp.isch&&(c=(0,_.ne)(c)+e,a+=7,(0,_.Ee)("#hdtb")&&(a+=5),d=window.Math.max(0,a-b+c)),_.aP=d;if((a=(0,_.Ee)("#center_col"))&&a.style.paddingTop!=_.aP+"px")a.style.paddingTop=_.aP+"px"}return _.A};
+_.Sia=function(a){var b=window.document.getElementById("cnt"),c=window.document.getElementById("searchform");"lg"==a?((0,_.mf)(b,"big"),(0,_.mf)(c,"big"),(0,_.nf)(b,"mdm"),(0,_.nf)(c,"mdm")):("md"==a?((0,_.mf)(b,"mdm"),(0,_.mf)(c,"mdm")):((0,_.nf)(b,"mdm"),(0,_.nf)(c,"mdm")),(0,_.nf)(b,"big"),(0,_.nf)(c,"big"))};_.bP=function(){var a=window.document.body.offsetWidth;_.Tia||(0,_.Sia)(1250<=a?"lg":"sm");_.cP.elastic.rhsOn&&((0,_.Uia)(window.document.getElementById("rhs_block")),(0,_.Uia)(_.dP))};
+_.Via=function(){var a=window.document.body.offsetWidth;return a>=_.cP.elastic.rhs5Col?5:a>=_.cP.elastic.rhs4Col||_.cP.elastic.tiny&&a>=_.cP.elastic.tinyMd&&a<_.cP.elastic.tinyHi?4:3};_.Uia=function(a){if(a){var b=(0,_.Via)();5<=b?((0,_.nf)(a,"rhstc3"),(0,_.nf)(a,"rhstc4"),(0,_.mf)(a,"rhstc5")):4==b?((0,_.nf)(a,"rhstc3"),(0,_.nf)(a,"rhstc5"),(0,_.mf)(a,"rhstc4")):((0,_.nf)(a,"rhstc4"),(0,_.nf)(a,"rhstc5"),(0,_.mf)(a,"rhstc3"))}};
+_.eP=function(){var a=window.pageXOffset||window.document.body.scrollLeft||window.document.documentElement.scrollLeft,b=(0,_.ff)(),c=b?"marginRight":"marginLeft",d=b?"right":"left";b&&(a=window.Math.abs(a));for(var b=0,e;e=_.fP[b];b++)"fixed"==(0,_.gf)(e,"position",_.l)&&("tbbcc"==e.id?e.style[c]=-a+"px":e.style[d]=-a+"px")};_.gP=function(a){return!a||!a.getAttribute?_.A:(a=a.getAttribute("data-extra"))?-1!=a.indexOf("ludocid="):_.A};
+_.Wia=function(a,b,c,d,e){d=["s"+c,"c"+d];d.push("x:"+((0,_.hP)(b)&&!(0,_.iP)(b)?"w":(0,_.iP)(b)?(0,_.hP)(b)?"y":"np":"p"));(0,_.lf)(a,"vsta")&&d.push("ad");(0,_.gP)(a)&&d.push("lr");b=e?"&dur="+e:"";e="";if(window.google.j&&window.google.j.pf&&(3==c||5==c||7==c))e="&sqi=6";c=d.join(",")+"&oi=vsnip"+b+e;for(d=0;b=a.childNodes[d];d++)if(b.hasAttribute&&b.hasAttribute("data-ved"))for(var e=0,f;f=b.childNodes[e];e++)if(f.hasAttribute&&f.hasAttribute("data-ved")){(0,_.zf)(b,[f],[],"",c);return}if(d=a.getAttribute("pved"))b=
+a.getAttribute("bved"),(0,_.yf)(d,a,[b],[a],[],"",c)};_.jP=function(a,b){var c={};if(b){var d=(0,_.Bf)(b);d&&(c.ved=d);b.hasAttribute("pved")&&(c.ved=b.getAttribute("pved"));(0,_.lf)(b,"vsta")&&(c.ad=_.l);(0,_.gP)(b)&&(c.lr=_.l)}window.google.ml(a,_.A,c)};
+_.Xia=function(a,b,c){function d(f){e!=_.p&&window.clearTimeout(e);var g=(0,_.rf)(f);e=window.setTimeout(function(){a(g)&&(_.kP=_.A,(0,_.Ke)(window.document,"mousemove",d),b(g))},c)}var e=_.p;_.kP||(_.kP=_.l,(0,_.Je)(window.document,"mousemove",d))};_.lP=function(a){return(0,_.lf)(a,"vsta")?1:0};
+_.mP=function(a){if(a.hasAttribute("rawurl"))return a.getAttribute("rawurl");var b="";if(1==(0,_.lP)(a))var b=(b=(0,_.nP)(a))?b.getAttribute("href"):"",c=b.match(_.Yia);else b="",b=a.hasAttribute("url")?a.getAttribute("url"):(b=(0,_.Zia)(a))?b.getAttribute("href"):"",c=b.match(_.$ia)||b.match(_.aja);c&&(b=(0,window.decodeURIComponent)(c[1]));a.setAttribute("rawurl",b);return b};
+_.oP=function(a){var b=(0,_.mP)(a)+"|"+(a.getAttribute("sig")||"")+"|"+(a.getAttribute("data-extra")||"");_.cP&&(_.cP.elastic&&_.cP.elastic.rhsOn&&(0,_.gP)(a))&&(b+="|"+(0,_.Via)());return b};_.Zia=function(a){for(var b=(0,_.De)("a.l",a),c=0,d;d=b[c];c++)if((0,_.bja)(d))return d;(0,_.jP)((0,window.Error)("(manhattan) No result link"),a);return _.p};_.nP=function(a){var b=(0,_.Ee)("h3",a);if(b&&(b=(0,_.Ee)("a",b),(0,_.bja)(b)))return b;(0,_.jP)((0,window.Error)("(manhattan) No ad link"),a);return _.p};
+_.bja=function(a){if(!a)return _.A;a=a.getAttribute("href");return a!=_.p&&0<a.length&&"#"!=a};_.pP=function(a){for(;a&&a!=window.document.body;){if((0,_.lf)(a,"vsc"))return a;a=a.parentNode}return _.p};
+_.cja=function(a,b){if(!(0,_.qP)()&&!_.kP){(0,_.mf)(window.document.body,"vsh");var c=(0,_.rP)(a),d=(0,_.pP)(c);if(!(0,_.sP)(c)||_.tP!=d)(0,_.nf)(_.tP,"vsdth"),_.tP=_.p;(0,_.sP)(c)&&!_.uP&&((0,_.mf)(d,"vsdth"),_.tP=d);if(_.vP!=c)if(_.vP=c,(0,_.sP)(c)){if(!_.uP){_.wP=_.A;var e=_.cP.time.hOn,e=(0,_.xP)()?_.cP.time.hSwitch:(0,_.lf)(c,"vspii")?_.cP.time.hOn:(0,_.yP)(c)?_.cP.time.hTitle:_.cP.time.hUnit;(0,_.zP)(function(){if(!_.wP&&_.vP==c&&!(0,_.qP)()){var a=3;(0,_.yP)(c)?a=5:(0,_.AP)(c)&&(a=7);(0,_.BP)(d,
+a);(0,_.Xia)(function(a){return(0,_.rP)(a)==c?_.A:_.l},_.dja,_.cP.time.hOff)}},e)}}else if((0,_.xP)()){if(!(e=c==window.document.documentElement))if(e=_.cP.exp.lru)if(!(e="rso"==c.id)){a:{for(var e=0,f;f=c.childNodes[e];e++)if((0,_.gP)(f)){e=_.l;break a}e=_.A}e=e||(0,_.lf)(c,"intrlu")}if(e)e=0;else if(e=!(0,_.CP)(c))if(e=!(0,_.lf)(c,"vspib"))if(e=!(0,_.lf)(c,"lacl"))e=!(0,_.DP)(c,function(a){return(0,_.ob)(_.EP,a)!=-1})&&!(0,_.DP)(c,function(a){return a.id=="nyc"});e?(0,_.zP)(function(){_.vP==c&&
+!(0,_.qP)()&&(0,_.eja)()},b?0:_.cP.time.hOff):d&&((0,_.lf)(d,"vsc")&&!(0,_.lf)(d,"laol")&&!(0,_.lf)(d,"vso"))&&(0,_.zP)(function(){_.vP==c&&!(0,_.qP)()&&(0,_.BP)(d,3)},b?0:_.cP.time.hSwitch)}else(0,_.CP)(c)&&(0,_.Xia)((0,_.E)(_.l),function(a){var b=(0,_.rP)(a);(0,_.CP)(b)&&!(0,_.sP)(b)?(0,_.BP)((0,_.pP)(b),3):(0,_.dja)(a)},_.cP.time.hOn)}};_.dja=function(a){(0,_.FP)();(0,_.cja)({target:a},_.l)};
+_.fja=function(a){2!=a.button&&(_.uP=_.l,(0,_.yP)((0,_.rP)(a))&&(_.wP=_.l,a.preventDefault?a.preventDefault():a.returnValue&&(a.returnValue=_.A)))};_.rP=function(a){var a=a.parentNode?a:(0,_.rf)(a),b=a.parentNode;return b&&(0,_.CP)(b)?b:a};_.sP=function(a){return(0,_.yP)(a)||(0,_.AP)(a)||(0,_.lf)(a,"vspii")&&(0,_.DP)(a,function(a){return(0,_.lf)(a,"mslg")})};_.CP=function(a){return(0,_.yP)(a)||(0,_.AP)(a)||(0,_.lf)(a,"vspii")||(0,_.lf)(a,"vspii-nh")};
+_.yP=function(a){if(!_.cP.exp.rt&&!_.cP.exp.lrt&&!_.cP.exp.adt)return _.A;var b=(0,_.pP)(a);if(!b)return _.A;var c=(0,_.lf)(a,"l"),b=c&&(0,_.gP)(b),a="pa1"==a.id||"pa2"==a.id||"pa3"==a.id||"1"==a.id;return _.cP.exp.rt?c||a:_.cP.exp.lrt&&b||_.cP.exp.adt&&a?_.l:_.A};_.AP=function(a){var b=(0,_.pP)(a);return!b||(0,_.DP)(a,function(a){return(0,_.lf)(a,"vspib")})?_.A:_.cP.exp.adu&&(0,_.lf)(b,"vsta")||_.cP.exp.lru&&(0,_.gP)(b)?_.l:_.A};
+_.zP=function(a,b){window.clearTimeout(_.GP);_.GP=window.setTimeout(a,window.Math.max(0,b))};_.DP=function(a,b){for(;a&&a!=window.document.body;){if(b(a))return _.l;a=a.parentNode}return _.A};_.gja=function(a){_.EP.push(a)};_.hja=function(a){a=(0,_.ob)(_.EP,a);-1!=a&&_.EP.splice(a,1)};_.FP=function(){_.vP=_.p;window.clearTimeout(_.GP);_.GP=-1};_.ija=function(a){a=(0,_.jja)(a);_.HP&&a?(0,_.IP)(a):(0,_.JP)();return _.l};
+_.jja=function(a){if(!a)return _.p;for(var b=a;"center_col"!=b.id;)if(b=b.parentNode,!b)return _.p;if((0,_.lf)(a,"vsc"))return a;for(var a=a.childNodes,b=0,c;c=a[b++];)if((0,_.lf)(c,"vsc"))return c;return _.p};_.KP=function(a){var b=(0,_.oP)(a),c=_.LP[b];c||(c=new _.kja(a),_.LP[b]=c);return c};_.kja=function(a,b,c){this.result=a;this.Dr=b||0;this.data=c||_.p;this.source=this.B=_.p;this.M=_.A};_.hP=function(a){return 0==a.Dr||4==a.Dr};_.iP=function(a){return 1==a.Dr||4==a.Dr};
+_.MP=function(a,b,c){a.Dr=b;a.data=c||a.data};_.lja=function(){this.t={start:window.google.time()}};_.NP=function(a,b){var c=(0,_.KP)(a);if(c&&c.B){var d=c.B;if(d.name&&!c.M){c.M=_.l;d.t.ol=window.google.time();for(var c={},e=0,f;f=_.mja[e++];)f in window.google.kCSI&&(c[f]=window.google.kCSI[f]);1==(0,_.lP)(a)&&(d.name="ads,ads_"+d.name);e=window.google.sn;window.google.sn=b;try{window.google.report&&window.google.report(d,c)}finally{window.google.sn=e}}}};
+_.nja=function(a,b,c,d,e,f){this.B=a;this.SC=b;this.M=c;this.U=d;this.ha=e||_.A;this.gL=f||_.p;this.AF=this.bB=_.p};_.OP=function(a){this.qz(a)};_.oja=function(a){for(;a.U<a.ha&&0<a.M.length;){var b=a.M.shift();(0,_.pja)(a,b)}};
+_.pja=function(a,b){if(!a.B[b.B]){var c=(0,_.qja)(a,b);0<=c&&a.M.splice(c,1);if(b.ha)c=(0,_.Be)("img"),c.onload=function(){var c=b.B,d=a.B[c];if(d){var g={};g.img=d.AF;g.url=c;d.gL(g)}},c.onerror=b.M,c.src=b.SC,b.AF=c;else{var d=(0,_.Be)("script");d.src=b.SC;_.Pc.Gd||(d.onerror=b.M);d.onreadystatechange=function(){b.U&&b.U(d)};window.setTimeout(function(){(0,_.Ae)(d)},0);b.bB=d}a.B[b.B]=b;a.U++}};_.qja=function(a,b){for(var c=0;c<a.M.length;c++)if(a.M[c].B==b.B)return c;return-1};
+_.PP=function(a,b){var c=a.B[b];c&&(c.bB&&(0,_.rja)(a,c.bB),delete a.B[b],a.U--,(0,_.oja)(a))};_.rja=function(a,b){window.setTimeout(function(){try{(0,_.Dd)(b),_.Oc.Gd&&!(0,_.Tc)("9")&&(b.src="about:blank")}catch(a){}},0)};_.sja=function(a,b,c){this.B=a;this.ha=c;this.oa=0;this.M=b+1;this.U=b-1};
+_.QP=function(a,b,c){for(var d=0,e;e=_.tja[d];d++)a.removeAttribute(e);if(b.hasAttribute("url"))a.href=b.getAttribute("url");else{d=_.p;if(1==(0,_.lP)(b)){var f=(0,_.nP)(b);f&&(d=f.getAttribute("href"),b=b.getAttribute("ived"),d&&b&&(d=(0,_.Fp)("ved",d,b)))}else(f=(0,_.Zia)(b))&&(d=f.getAttribute("href"));if(d){a.href=d;for(d=0;e=_.tja[d];d++)(c=f.getAttribute(e))&&a.setAttribute(e,c)}else a.href=c||"javascript:void(0)"}};_.uja=function(a,b,c){this.result=a;this.time=b;this.source=c};
+_.RP=function(a,b){a==_.SP&&window.clearTimeout(_.TP);(0,_.UP)(b.data)?(0,_.MP)(b,2,b.data):((0,_.MP)(b,1,_.cP.msgs.noPreview),b.B&&(b.B.name="e"));_.SP==a&&((0,_.VP)(a,b),_.WP&&((0,_.gP)(a)?(0,_.NP)(a,"lrd"):(0,_.NP)(a,"vsnip")))};
+_.VP=function(a,b){if(_.SP==a)if(_.XP=_.l,(!a?0:a.getAttribute("data-extra"))&&(_.XP=_.A),(0,_.nf)(_.dP,"vspbv"),(0,_.hP)(b)?(_.YP.src||(_.YP.src="/images/nycli1.gif"),(0,_.Fe)(_.YP,"display","inline")):(0,_.Fe)(_.YP,"display","none"),(0,_.iP)(b)&&b.data?((0,_.Fe)(_.ZP,"display","block"),_.ZP.innerHTML=b.data):(0,_.Fe)(_.ZP,"display","none"),2==b.Dr){if((0,_.$P)(b.data)){var c=b.data;(0,_.Fe)(_.aQ,"display","block");_.aQ.innerHTML='<a id=vsia style="display:block"></a>';var d=_.aQ.firstChild;if(c&&
+c.ssegs&&0<c.ssegs.length){(0,_.QP)(d,a,c.url);d.style.maxWidth=c.dim[0]+2+"px";for(var e=0;e<c.ssegs.length;e++){var f=(0,_.Be)("img.vsi");f.src=c.ssegs[e];f.style.maxWidth=c.dim[0]+"px";c["ssegs-heights"]&&c["ssegs-heights"][e]&&(f.style.maxHeight=c["ssegs-heights"][e]+"px");(0,_.Fe)(f,"display","block");(0,_.Fe)(f,"height","auto");d.appendChild(f)}(0,_.bQ)();c&&(c.tbts&&0<c.tbts.length)&&(0,_.cQ)(c,d)}else if(c&&c.shards&&0<c.shards.length){e=(c.dim&&c.dim[0]||_.cP.kfe.vsW||400)+2;(0,_.QP)(d,a,
+c.url);d.style.maxWidth=e+"px";for(var f=0,g;g=c.shards[f];f++){var i=(0,_.Be)("div.vssrd");i.style.maxWidth=e+"px";d.appendChild(i);var h=(0,_.Be)("div.vssrdi");i.appendChild(h);for(var m=0;m<g.imgs.length;m++){var n=(0,_.Be)("img.vsi");h.appendChild(n);n.src=g.imgs[m];(0,_.Fe)(n,"display","block");(0,_.Fe)(n,"height","auto")}g.top?h.style.borderTopWidth="1px":(i.style.marginTop="4px",h.style.borderTopWidth="0",(0,_.dQ)(i,_.l));g.bot?h.style.borderBottomWidth="1px":(h.style.borderBottomWidth="0",
+(0,_.dQ)(i,_.A))}(0,_.Fe)(d,"display","block");(0,_.vja)(c,d);(0,_.bQ)();(0,_.cQ)(c,d)}}else b.data.html&&(0,_.wja)(b.data);(0,_.xja)(_.aQ)}else(0,_.Fe)(_.aQ,"display","none")};_.wja=function(a){_.eQ=_.A;_.aQ.innerHTML=a.html+"<script>google.nyc.notifyRanScripts();<\/script>";if(!_.eQ)for(var a=_.aQ.getElementsByTagName("script"),b=0;b<a.length;b++)try{eval(a[b].innerHTML)}catch(c){break}_.eQ=_.A;(0,_.Fe)(_.aQ,"display","block")};
+_.fQ=function(a,b,c,d){if(4<=b&&(!_.cP.progressive||!_.cP.progressive.enabled||a.getAttribute("blobref")))b=3;for(var e=b,f="j_"+window.google.kEI+"_",g=(0,_.oP)(a),i=0,h=0;h<g.length;++h)i=31*i+g.charCodeAt(h),i%=4294967296;var m=f+i+"_"+e,m=m.replace(_.yja,"_"),n="google.nyc.c."+m;_.gQ[m]=function(b){var c;if(c=_.LP[(0,_.oP)(a)]){if((!b?-100:!(0,_.UP)(b)?-10:b.retry?-2:b.retry==_.A?-1:1)>=(!c.data?-100:!(0,_.UP)(c.data)?-10:c.data.retry?-2:c.data.retry==_.A?-1:1))c.data=b;(0,_.UP)(c.data)?(0,_.MP)(c,
+2,c.data):(0,_.MP)(c,1,_.cP.msgs.noPreview)}else c=_.p;if(c){if(c.B){var d=c.B,e=b.s;!e&&b.html&&(e="gws");d.name=d.name||e}b=(d=_.hQ.B[n])&&d.oa&&(!b.quality||b.quality<_.cP.progressive.replaceQuality);((0,_.$P)(c.data)||!b)&&(0,_.RP)(c.result,c,c.source);(0,_.PP)(_.hQ,n);b&&(0,_.fQ)(c.result,3)}delete _.gQ[m]};g=b;if(e=(0,_.mP)(a))if(f=a.getAttribute("data-extra")){var g=_.cP.ajax.gwsHost,i=_.cP.ajax.requestPrefix,h=_.cP.ajax.q,j=_.cP.ajax.hl,q=_.cP.ajax.gl,t=a.getAttribute("sig");-1!=f.indexOf("sig=")&&
+(t="");var r=(0,_.Vc)(2),s=(0,_.Vc)(0),C=a.getAttribute("bved"),e=[g?"//"+g:"",i,"rdu=",(0,window.encodeURIComponent)(e),"&rdj=",(0,window.encodeURIComponent)(n),(0,_.zja)(),h?"&q="+(0,window.encodeURIComponent)(h):"",j?"&hl="+(0,window.encodeURIComponent)(j):"",q?"&gl="+(0,window.encodeURIComponent)(q):"",t?"&sig="+(0,window.encodeURIComponent)(t):"","&",f,window.google.kEI?"&ei="+window.google.kEI:"",C?"&vet="+C:"",0<s&&0<r?"&bih="+s+"&biw="+r:""].join("")}else if(f=_.cP.kfe.kfeHost,e=a.getAttribute("sig"))if(i=
+_.cP.kfe.clientId,1==(0,_.lP)(a)&&(i=_.cP.kfe.adsClientId),i="&c="+i,h=(0,_.mP)(a)){f=[f?"//"+f:"",_.cP.kfe.kfeUrlPrefix,i,"&d=",(0,window.encodeURIComponent)(h),"&b=",2<=g?1:0,"&j=",n];_.cP.kfe.expi&&(f.push("&expi="),f.push((0,window.encodeURIComponent)(_.cP.kfe.expi)));if(i=a.hasAttribute("ma")?a.getAttribute("ma"):_.p)f.push("&ma="),f.push(i);4==g&&(f.push("&q="),f.push(_.cP.progressive.quality),f.push("&t="),f.push(_.cP.progressive.timeout));f.push("&a=");f.push((0,window.encodeURIComponent)(e));
+if(e=a.getAttribute("blobref"))f.push("&bl="),f.push(e);e=f.join("")}else e=_.p;else e=_.p;else e=_.p;if(e){var v=(0,_.KP)(a);v.B=c||v.B;v.source=d||v.source;var x;x=(!a?0:a.getAttribute("data-extra"))?function(){(0,_.PP)(_.hQ,n);a.removeAttribute("data-extra");(0,_.fQ)(a,3)}:function(){(0,_.RP)(a,v,v.source);(0,_.PP)(_.hQ,n)};c=new _.nja(n,e,x,function(a){window.setTimeout(function(){try{"function"==typeof eval(n)&&("complete"==a.readyState||"loaded"==a.readyState)&&x()}catch(b){}},0)});c.oa=4==
+b;3<=b?(0,_.pja)(_.hQ,c):(b=_.hQ,!b.B[c.B]&&0>(0,_.qja)(b,c)&&(b.M.push(c),(0,_.oja)(b)))}};_.zja=function(){if(_.iQ==_.p){for(var a=[],b=0,c;c=_.Aja[b];++b){var d=(0,_.Ue)(c);d&&(d=(0,window.encodeURIComponent)((0,window.decodeURIComponent)(d)),a.push("&",c,"=",d))}_.iQ=a.join("")}return _.iQ};_.UP=function(a){return a!=_.p&&((0,_.$P)(a)||!!a.html)};
+_.$P=function(a){if(!a)return _.A;var b=a.ssegs!=_.p&&0<a.ssegs.length&&0<a.ssegs[0].length&&a.dim!=_.p&&2==a.dim.length;return b=b||a.shards!=_.p&&0<a.shards.length&&a.shards[0].imgs!=_.p&&0<a.shards[0].imgs.length};_.jQ=function(a){var b=_.SP;if(b){var c=(0,_.KP)(b);a&&(_.kQ&&(0,_.Wia)(b,c,_.kQ.source,a,window.google.time()-_.kQ.time),_.kQ=_.p);if(_.WP&&c&&!c.M&&c.B&&((0,_.hP)(c)||(0,_.iP)(c)))c.B.name="y",(0,_.gP)(b)?(0,_.NP)(b,"lrd"):(0,_.NP)(b,"vsnip")}};_.lQ=function(a,b){this.M=a;this.B=b};
+_.mQ=function(a){this.top=a.t;this.bottom=a.b;this.left=a.l;this.right=a.r;this.height=a.h;this.width=a.w;this.B=a.c};_.nQ=function(a){return new _.lQ(a.top,a.bottom)};
+_.Bja=function(a,b){this.U=a.dim&&a.dim[0]||_.cP.kfe.vsW||400;this.M=(0,_.jf)(_.oQ);this.M-=2;this.M=window.Math.min(this.U,this.M);this.scale=this.M/this.U;var c=(0,_.hf)(_.oQ),c=c-b.offsetTop,c=c/this.scale;this.B=this.ha=a.dim&&a.dim[1]||0;this.oa=[];if(0==this.ha&&a.shards&&0<a.shards.length)for(var d=0,e;e=a.shards[d];d++){for(var f=0,g=0;g<e.heights.length;g++)f+=e.heights[g];e=e.top?1:4;e/=this.scale;80<c-e-this.B&&(this.B+=f,this.B+=e);this.ha+=f;this.oa.push(f)}this.B=window.Math.min(this.B,
+c);this.B*=this.scale};
+_.vja=function(a,b){var c=new _.Bja(a,b),d=(0,_.De)("div.vssrd",b);if(d.length==a.shards.length)for(var e=c.B,f=0,g;g=a.shards[f];f++){var i=d[f];if(0>=window.Math.round(e))i.style.display="none";else{i.style.display="block";if(!(0,_.Ee)("div.vssrdi",i)){(0,_.jP)((0,window.Error)("(manhattan) Lost shard divs"));break}var e=e-(g.top?1:4),h=c.oa[f]*c.scale;if(g.bot&&0<=window.Math.round(e-h)){i.style.height="auto";var m=(0,_.Ee)(".vstbtm",i);m&&(m.style.display="none")}else(m=(0,_.Ee)(".vstbtm",i))?
+m.style.display="block":(0,_.dQ)(i,_.A),e<h?(g=window.Math.round(e)+(g.top?1:0),i.style.height=g+"px"):i.style.height="auto";e-=h}}};_.dQ=function(a,b){for(var c="vstd "+(b?"vsttop":"vstbtm"),d="vsti ",d=d+(b?"vstitop":"vstibtm"),c=(0,_.Be)("div."+c),e=0;3>e;e++){var f=(0,_.Be)("div."+d);c.appendChild(f)}a.appendChild(c)};_.bQ=function(){for(var a=(0,_.De)(".vsb",_.pQ),b=0,c;c=a[b];b++)(0,_.Dd)(c)};
+_.cQ=function(a,b){if(a.ssegs&&0<a.ssegs.length)for(var c=a.dim[0],d=a.dim[1],e=(0,_.jf)(_.pQ)/c||1,f=window.Math.min(e,1)*d,g=window.Math.min(e,1)*c,f=(0,_.Cja)(f,g,b),g=(0,_.De)("img.vsi",b),g=g[g.length-1],i=a.tbts,d=new _.lQ(0,1<e?d:window.Math.floor(d*e)),h=i.length-1;0<=h;h--)(0,_.qQ)(f,i[h],g,c,e,d);else if(a.shards&&0<a.shards.length){for(var c=new _.Bja(a,b),e=(0,_.jf)(_.pQ)/c.U||1,d=(0,_.De)("div.vssrd",b),d=d[d.length-1],i=c.B,f=(0,_.Cja)(c.B,c.M,b),h=1.5>e,m=c.oa,n=c.scale,g=[],j=0,q=
+0,t;t=a.shards[q];q++){if(t.tbts)for(var r=0;r<t.tbts.length;r++){var s=t.tbts[r];if(!h||(_.cP.kfe.fewTbts?s.lt||s.em:1)){var C={};C.txt=s.txt;C.box=(0,_.Dja)(s.box,j);s.txtBox&&(C.txtBox=(0,_.Dja)(s.txtBox,j));"dir"in s&&(C.dir=s.dir);g.push(C)}}j+=m[q]+4/n}if(0!=g.length){m=new _.lQ(0,i);n=0;if(h&&g[0].box&&(150>g[0].box.t||g[0].txtBox&&150>g[0].txtBox.t)){h=window.Math.max(window.Math.floor(g[0].box.t*c.scale)-2,0);m.M=h;(0,_.qQ)(f,g[0],d,c.U,e,m);if(h=(0,_.Ee)(".vstbt",b))m.M=h.offsetTop+h.offsetHeight,
+m.B=i;n++}for(i=g.length-1;i>=n;i--)(0,_.qQ)(f,g[i],d,c.U,e,m)}}};_.Cja=function(a,b,c){if(_.Oc.Gd&&!(0,_.Uc)("9"))return _.p;var d=(0,_.Ee)("canvas.vstbc",c);if(d!=_.p)d.getContext("2d").clearRect(0,0,d.width,d.height);else if(d=(0,_.Be)("canvas.vstbc"),!d.getContext)return _.p;(0,_.Fe)(d,"left","-5px");d.setAttribute("height",a);d.setAttribute("width",b+10);c.appendChild(d);return d.getContext("2d")};
+_.qQ=function(a,b,c,d,e,f){if(b.txt&&b.box&&b.box.t!=_.p&&b.box.l!=_.p&&b.box.h!=_.p&&b.box.w!=_.p){var g=!!(b.txtBox&&b.txtBox.t<b.box.t),i=(0,_.Be)("div.vsb vstbb");(0,_.Cd)(i,c);var h,m=(0,_.Eja)(b.box,e);h={t:m.t-2,b:m.t+m.h+2,l:m.l-2,r:m.l+m.w+2};(0,_.Fe)(i,"top",h.t+"px");(0,_.Fe)(i,"left",h.l+"px");(0,_.Fe)(i,"height",m.h+"px");(0,_.Fe)(i,"width",m.w+"px");(0,_.Fe)(i,"borderWidth","2px");h=new _.mQ(h);var n=b.txt,j=b.dir,m=(0,_.Be)("div.vsb vstbt");(0,_.Fe)(m,"direction",j||"inherit");m.innerHTML=
+n;(0,_.Cd)(m,c);if(1.5>e){if(c=(0,_.Fja)(m,b.txtBox,e,h,d,g),f.contains((0,_.nQ)(c))&&f.contains((0,_.nQ)(h))||(c=(0,_.Fja)(m,b.txtBox,e,h,d,!g)),f.contains((0,_.nQ)(c))&&f.contains((0,_.nQ)(h))){i=h.top<c.top?h:c;d=h.top<c.top?c:h;(0,_.rQ)(a,"rgba(0, 0, 0, 0.1)",[{x:i.left,y:i.top},{x:i.right,y:i.top},i.right>d.right?{x:i.right,y:i.bottom}:{x:d.right,y:d.top},{x:d.right,y:d.bottom},{x:d.left,y:d.bottom},i.left<d.left?{x:i.left,y:i.bottom}:{x:d.left,y:d.top}]);f.B=window.Math.min(c.top,h.top);return}}else{b=
+f.B;c=d+4;e=(0,_.jf)(_.pQ)-d-30;(0,_.ff)()?((0,_.Fe)(m,"right",c+"px"),(0,_.Fe)(m,"borderRightWidth","2px")):((0,_.Fe)(m,"left",c+"px"),(0,_.Fe)(m,"borderLeftWidth","2px"));(0,_.Fe)(m,"width",e+"px");(0,_.Fe)(m,"padding","10px");e=(h.top+h.bottom)/2;n=m.offsetHeight;g=window.Math.floor(e+n/2);g>b&&(g=b);b=g-n;(0,_.Fe)(m,"top",b+"px");c=new _.mQ({t:b,b:g,l:c,c:window.Math.floor(e)});if(h=f.contains((0,_.nQ)(c))&&f.contains((0,_.nQ)(h)))if(!(h=!a))g=c,h=g.B,h>g.bottom||h<g.top||!a?h=_.A:(b=window.Math.floor(window.Math.max(h-
+5,g.top)),e=window.Math.floor(window.Math.min(h+5,g.bottom)),(0,_.ff)()?(d=-g.left+d+2,(0,_.rQ)(a,"#dd4b39",[{x:2,y:h},{x:d,y:b},{x:d,y:e}])):(0,_.rQ)(a,"#dd4b39",[{x:d,y:h},{x:g.left,y:b},{x:g.left,y:e}]),h=_.l);if(h){f.B=c.top-4;return}}(0,_.Dd)(i);(0,_.Dd)(m)}};_.Dja=function(a,b){var c={};c.t=a.t+b;c.l=a.l;c.h=a.h;c.w=a.w;return c};
+_.Eja=function(a,b){if(!a||1<=b)return a;var c={};a.t&&(c.t=window.Math.floor(b*a.t));if(a.l||0==a.l)c.l=window.Math.floor(b*a.l);a.w&&(c.w=window.Math.floor(b*a.w));a.h&&(c.h=window.Math.floor(b*a.h));return c};
+_.Fja=function(a,b,c,d,e,f){var g=(0,_.Eja)(b,c);if(!b||!(b.l<e&&-5<=b.l&&b.w&&b.w<e))g={l:-5,w:(1<c?e:window.Math.floor(e*c))+10};(0,_.Fe)(a,"borderWidth","0");(0,_.Fe)(a,"padding","10px");(0,_.Fe)(a,"left",g.l+"px");(0,_.Fe)(a,"width",g.w-20+"px");b=a.offsetHeight;d=f?d.top-b:d.bottom-2;(0,_.Fe)(a,"top",d+"px");(0,_.Fe)(a,f?"borderBottomWidth":"borderTopWidth","2px");return new _.mQ({t:d,b:d+b+2,l:g.l,r:g.l+g.w})};
+_.rQ=function(a,b,c){if(a){a.beginPath();var d=c[0];a.moveTo(d.x+5,d.y);for(var e=1;e<c.length;e++)d=c[e],a.lineTo(d.x+5,d.y);a.closePath();a.fillStyle=b;a.fill()}};_.Gja=function(a){return"opacity:"+a+(_.Oc.Gd?";filter:alpha(opacity="+100*a+")":"")};
+_.sQ=function(a,b){if(!(_.tQ&&a==_.SP)){_.uQ=window.google.time();_.SP&&((0,_.nf)(_.SP,"vso"),(0,_.jQ)());_.SP=a;(0,_.mf)(_.SP,"vso");(0,_.lf)(a,"vsta")?((0,_.mf)(_.dP,"vsta"),(0,_.lf)(a,"vsca")?(0,_.mf)(_.dP,"vsca"):(0,_.nf)(_.dP,"vsca")):((0,_.nf)(_.dP,"vsta"),(0,_.nf)(_.dP,"vsca"));var c=window.document.getElementById("nycntg");if(c)if((0,_.gP)(a))c.innerHTML="";else{var d=a.parentElement||a.parentNode,e=(0,_.Ee)("h3",a)||(0,_.Ee)("h4",a)||(0,_.Ee)("a.l",a);(0,_.Ee)("button.esw",d);var d=(0,_.Ee)("cite",
+a),f=(0,_.Ee)(".vshid",a),g="";e&&(g="A"==e.nodeName.toUpperCase()?g+("<h3 class=r>"+(0,_.vQ)(e)+"</h3>"):g+(0,_.vQ)(e));g+="<div>";d&&(g+=(0,_.vQ)(d));f&&(d&&f.innerHTML&&(g+="&nbsp;- "),g+=(0,_.vQ)(f));g+="</div>";(0,_.lf)(a,"vsta")&&!a.hasAttribute("sig")&&(g="");c.innerHTML=g;if(1==(0,_.lP)(a)&&(e=a.getAttribute("hved"))){c=(0,_.De)("a",c);for(d=0;d<c.length;d++)(f=c[d].getAttribute("href"))&&c[d].setAttribute("href",(0,_.Fp)("ved",f,e))}}if(_.cP.exp.larhsp&&(c=window.document.getElementById("nycpp"),
+(0,_.wQ)(c),e=window.document.getElementById("nyclad")))if(e.innerHTML="",(0,_.lf)(a,"vsta")&&(d=(d=(0,_.nP)(a))?d.getAttribute("href"):""))if(d=d.replace(/ved=[^&]+&/,""),d=_.Hja[d])f=window.document.createElement("div"),f.innerHTML=d,e.appendChild(f),(0,_.xQ)(c);_.tQ||(_.tQ=_.l,(0,_.wQ)(_.dP),(0,_.mf)(window.document.body,"nyc_opening"),(0,_.Ija)([80,(0,_.yQ)("wipeRight"),80,_.Jja,(0,_.yQ)("fadeOut"),80,(0,_.yQ)("")]));_.zQ=(0,_.Kja)().top;(0,_.AQ)();c=new _.lja;e=(0,_.KP)(a);b&&a&&(_.kQ&&(0,_.Wia)(_.kQ.result,
+(0,_.KP)(_.kQ.result),_.kQ.source,9,window.google.time()-_.kQ.time),_.kQ=new _.uja(a,window.google.time(),b));a.hasAttribute("sig")?(0,_.UP)(e.data)&&!e.data.retry?(e.source=b,e.B=c,c.name="pf",(0,_.RP)(a,e,b)):((0,_.fQ)(a,4,c,b),window.clearTimeout(_.TP),_.TP=window.setTimeout(function(){var b=(0,_.KP)(a);(0,_.VP)(a,b);_.TP=window.setTimeout(function(){b.Dr==2||(0,_.MP)(b,4,_.cP.msgs.loading);(0,_.VP)(a,b)},_.cP.time.timeout)},_.cP.time.loading)):(0,_.RP)(a,_.Lja,b);if(_.cP.ajax.prefetchTotal&&!(0>=
+_.cP.ajax.prefetchTotal)){_.hQ.M=[];c=(0,_.De)("div.vsc",window.document.getElementById("center_col"));e=-1;if(a)if(window.Array.prototype.indexOf)e=c.indexOf(a);else for(var e=0,i;(i=c[e])&&i!=a;e++);for(i=new _.sja(c,e,_.cP.ajax.prefetchTotal);0<i.ha&&(i.M<i.B.length||0<=i.U);){if(e=c=i.next())e=(0,_.KP)(c),e=!((0,_.UP)(e.data)&&!e.data.retry);e&&(0,_.fQ)(c,2,_.p)}}!(0,_.lf)(window.document.body,"vsh")&&(0,_.lf)((0,_.Td)(window.document),"vspib")&&(0,_.pP)((0,_.Td)(window.document))==a?(window.setTimeout(function(){window.document.getElementById("nycx").focus()},
+160),_.BQ=_.l):_.BQ=_.A;(0,_.Oe)(59,[a]);(0,_.xja)(_.dP)}};_.vQ=function(a){if(a.outerHTML)return a.outerHTML;var b=(a.ownerDocument||a.document).createElement("div");b.appendChild(a.cloneNode(_.l));return b.innerHTML};_.Mja=function(a){if(!(400>window.google.time()-_.uQ))if((a=(0,_.rf)(a))&&((0,_.lf)(a,"vspib")||(0,_.lf)(a,"vspii")||(0,_.lf)(a,"vspii-nh")||(0,_.lf)(a,"vspiic")))if(_.tQ)(0,_.CQ)(1);else{var b=(0,_.pP)(a);b&&(_.vP=a,(0,_.sQ)(b,1))}else a&&(a==_.dP&&_.tQ)&&(0,_.CQ)(8)};
+_.Jja=function(){window.google.LU&&window.google.LU.hideLocalRhsContent&&window.google.LU.hideLocalRhsContent();(0,_.mf)(window.document.body,"nyc_open");(0,_.nf)(window.document.body,"nyc_opening")};
+_.CQ=function(a){_.tQ&&(_.uQ=window.google.time(),_.tQ=_.A,(0,_.jQ)(a),4!=a&&(_.HP=_.A),(0,_.FP)(),_.SP&&(!(0,_.lf)(window.document.body,"vsh")&&_.BQ&&(a=(0,_.Ee)("div.vspib",_.SP))&&a.focus(),(0,_.nf)(_.SP,"vso")),_.SP=_.p,(0,_.Ija)([(0,_.yQ)("fadeIn"),80,_.Nja,(0,_.yQ)("wipeLeft"),80,(0,_.yQ)(""),function(){(0,_.xQ)(_.dP);_.Pc.Gd&&!(0,_.Uc)("9")&&(0,_.eP)()}]))};
+_.Nja=function(){(0,_.nf)(window.document.body,"nyc_open");window.google.LU&&window.google.LU.showLocalRhsContent&&window.google.LU.showLocalRhsContent();(0,_.Oe)(59,[_.p])};_.Ija=function(a,b){function c(a,e){for(;e<a.length;e++){var f=a[e];if("number"==typeof f){f=window.setTimeout(function(){c(a,e+1)},f);b?_.Oja=f:_.DQ=f;break}"function"==typeof f&&f()}}window.clearTimeout(b?_.Oja:_.DQ);c(a,0)};_.yQ=function(a){"none"==_.EQ.style.display&&(0,_.wQ)(_.EQ);return function(){_.EQ.className=a;!a&&(0,_.xQ)(_.EQ)}};
+_.xQ=function(a){a&&(0,_.Fe)(a,"display","none")};_.wQ=function(a,b){a&&(0,_.Fe)(a,"display",b||"block")};_.Pja=function(){window.document.getElementById("nyc")==_.dP&&((0,_.AQ)(),(0,_.Oe)(60))};
+_.AQ=function(){if(_.FQ&&_.dP&&_.tQ){var a=(0,_.Kja)(),b=(0,_.ne)(_.FQ)+(0,_.hf)(_.FQ),c=_.zQ===_.k?0:a.top-_.zQ,d=window.document.documentElement.clientHeight,e=0,f=_.l;if(!_.XP){var g=_.aQ;g&&(e=(0,_.ne)(g)+(0,_.hf)(g)-(0,_.ne)(_.dP),f=d>=e)}g=(0,_.ff)()?"right":"left";a.top>b&&(0>=c||f)?(_.dP.style.position="fixed",_.dP.style.top="0",_.dP.style.bottom="0",_.dP.style.height="auto",_.dP.style[g]=-window.Math.abs(a.left)+"px"):(_.dP.style.position="absolute",_.cP.exp.tnav&&(b=(0,_.hf)(_.FQ),_.GQ||
+(b+=(0,_.ne)(_.FQ))),0<c&&(b=window.Math.max(b,_.zQ)),_.dP.style.top=b+"px",_.dP.style[g]="0",_.dP.style.height=window.Math.max(0,d+a.top-b,e)+"px",_.dP.style.bottom="auto");c=_.SP;a=_.aQ;if(a.firstChild&&"A"==a.firstChild.nodeName.toUpperCase()&&c&&(c=(0,_.KP)(c))&&c.data)c=c.data,c.shards&&0<c.shards.length&&(0,_.vja)(c,_.aQ.firstChild),(0,_.bQ)(),(0,_.cQ)(c,a.firstChild)}};
+_.Kja=function(){return{top:window.document.body.scrollTop||window.document.documentElement.scrollTop||window.pageYOffset||0,left:window.document.body.scrollLeft||window.document.documentElement.scrollLeft||window.pageXOffset||0}};
+_.Qja=function(){if(_.GQ&&_.cP.elastic.tiny){var a=window.document.getElementById("cnt"),b=window.document.getElementById("searchform");if("ut"==window.gbar.elr().mo){if(a&&((0,_.mf)(a,"tmlo"),(0,_.nf)(a,"tmhi")),b)(0,_.mf)(b,"tmlo"),(0,_.nf)(b,"tmhi")}else if("ty"==window.gbar.elr().mo){if(a&&((0,_.mf)(a,"tmhi"),(0,_.nf)(a,"tmlo")),b)(0,_.mf)(b,"tmhi"),(0,_.nf)(b,"tmlo")}else if(a=window.document.getElementById("cnt"),b=window.document.getElementById("searchform"),a&&((0,_.nf)(a,"tmlo"),(0,_.nf)(a,
+"tmhi")),b)(0,_.nf)(b,"tmlo"),(0,_.nf)(b,"tmhi")}};_.Rja=function(){(0,_.jQ)(2)};_.xja=function(a){for(var a=(0,_.De)("a",a),b=0;b<a.length;b++)(0,_.Je)(a[b],"click",_.Rja)};
+_.Sja=function(a,b){var c=window.document.getElementById(b);if(c){var c=(0,_.De)(".vsta",c),d=/[&?]ai=([^&]+)/;if(c)for(var e=0;e<c.length;e++){var f=(0,_.nP)(c[e]);if((f=d.exec(f))&&2==f.length)if(f=a[f[1]])c[e].setAttribute("data-extra",f.d),f.i&&c[e].setAttribute("icon-classes",f.i),f.iw&&c[e].setAttribute("icon-wrapper-classes",f.iw),f.ib&&c[e].setAttribute("icon-button-classes",f.ib)}}};_.Tja=function(a){a=(0,_.pP)(a);if(!a)return _.p;(0,_.sQ)(a,6);return a};_.Uja=function(){(0,_.CQ)(10)}; (0,_.Ec)(_.O.$(),"sy61");
+_.cP=_.p;_.YO={};_.WO=_.p;_.VO=_.p;_.IQ=[];(0,_.ga)("google.kennedy.toggleDropdown",_.Fia,_.k);_.Tia=_.A;_.fP=[];_.kP=_.A;_.$ia=/^\/url.*[?&]url=([^&]+)/;_.aja=/^\/url.*[?&]q=([^&]+)/;_.Yia=/(?:(?:\/aclk)|(?:\/d\/AdPreview\/adclick.html)).*[?&]adurl=([^&]+)/;_.GP=-1;_.xP=_.p;_.qP=_.p;_.BP=_.p;_.eja=_.p;_.vP=_.p;_.tP=_.p;_.uP=_.A;_.wP=_.A;_.EP=[];_.HP=_.A;_.JQ=_.p;_.IP=_.p;_.JP=_.p;_.Vja=[35,function(a){(0,_.JQ)()&&(_.HP=_.l);return(0,_.ija)(a)},34,function(a,b){_.HP=b;return(0,_.ija)(a)}];_.Lja=new _.kja(_.p,1);_.mja=["e","ei"];_.OP.prototype.qz=function(a){this.ha=a;this.U=0;this.B={};this.M=[]};_.OP.prototype.clear=function(){for(var a in this.B){var b=this.B[a];b.bB&&(0,_.rja)(this,b.bB)}this.qz(this.ha)};_.sja.prototype.next=function(){if(!(0<this.ha&&(this.M<this.B.length||0<=this.U)))return(0,_.jP)((0,window.Error)("(visual-snippets) !hasNext()")),_.p;var a=this.oa;this.oa=(a+1)%3;switch(a){case 0:case 1:if(this.M<this.B.length)return--this.ha,this.B[this.M++];case 2:return 0<=this.U?(--this.ha,this.B[this.U--]):this.next()}return _.p};
+_.Aja="authuser deb e esrch expid expflags plugin uideb".split(" ");_.yja=/\W/g;_.gQ={};_.tja=["onmousedown","onmouseup","onclick"];_.eQ=_.A;(0,_.ga)("google.nyc.c",_.gQ,_.k);_.lQ.prototype.isEmpty=function(){return this.M>=this.B};_.lQ.prototype.contains=function(a){return a.isEmpty()||this.M<=a.M&&this.B>=a.B};
+_.KQ=_.p;_.Wja=_.A;_.SP=_.p;_.tQ=_.A;_.uQ=0;_.LQ=0;_.BQ=_.A;
+_.MQ={ab:{on:_.A},ajax:{maxPrefetchConnections:2,prefetchTotal:9},css:{adpc:"#fffbf2",adpbc:"#fec"},elastic:{js:_.A,rhsOn:_.A,rhs4Col:1068,rhs5Col:1156,tiny:_.A,tinyLo:847,tinyMd:924,tinyHi:980},kfe:{fewTbts:_.l},logging:{csiFraction:0.05},msgs:{sPers:"Show personal results",hPers:"Hide personal results",sPersD:"Showing personal results",hPersD:"Hiding personal results"},time:{hOn:300,hOff:300,hTitle:1200,hUnit:1500,hSwitch:300,loading:100,timeout:1E4},exp:{larhsp:_.A,rt:_.A,lrt:_.A,lur:_.A,adt:_.A,
+adu:_.A,tnav:_.A}};_.Hja={};_.GQ=_.A;
+(0,_.Mf)(151,{init:function(a){_.HQ=window.document.getElementById("center_col");_.dP=window.document.getElementById("nyc");_.EQ=window.document.getElementById("nyccur");_.FQ=window.document.getElementById("appbar")||(0,_.Ee)("div.sfbgg");_.LQ=_.uQ=0;if(_.cP=a){var a=_.cP,b;for(b in _.MQ){a[b]=a[b]||{};for(var c in _.MQ[b])c in a[b]||(a[b][c]=_.MQ[b][c])}if(_.dP){_.cP.exp.tnav&&(_.FQ=window.document.getElementById("hdtb"));b=_.HQ;if(!(0,_.Ee)("div.vspib",b)){b=(0,_.De)("div.vsc",b);for(c=0;a=b[c];c++){var d=
+"vspiic";a.hasAttribute("icon-classes")&&(d=a.getAttribute("icon-classes"));var e="vspii";a.hasAttribute("icon-wrapper-classes")&&(e=a.getAttribute("icon-wrapper-classes"));d=(0,_.Be)("div.vspib",'<div class="'+e+'"><div class="'+d+'"></div></div>');a.hasAttribute("icon-button-classes")&&(e=a.getAttribute("icon-button-classes").split(/\s/),e.unshift("vspib"),d.className=e.join(" "));d.setAttribute("aria-label",_.cP.msgs.details);d.setAttribute("role","button");d.setAttribute("tabindex","0");(0,_.Cd)(d,
+a.firstElementChild||a.firstChild);_.cP.exp.adu&&(0,_.lf)(a,"vsta")&&(d=(0,_.Be)("div.vs_shadow",""),(0,_.Cd)(d,a.lastElementChild||a.lastChild));_.cP.exp.lru&&(0,_.gP)(a)&&(0,_.mf)(a,"vslru")}}_.cP&&(_.WP=window.Math.random()<_.cP.logging.csiFraction);_.LP={};_.pQ=window.document.getElementById("nycpp");_.oQ=window.document.getElementById("nycp");_.iQ=_.kQ=_.p;_.hQ=_.hQ||new _.OP(_.cP.ajax.maxPrefetchConnections);_.aQ=window.document.getElementById("nycprv");_.YP=window.document.getElementById("nycli");
+_.ZP=window.document.getElementById("nycm");(0,_.AQ)();(b=window.document.getElementById("nycx"))&&(0,_.Je)(b,"click",function(){(0,_.CQ)(5)});_.qP=function(){return 300>window.google.time()-_.LQ};_.xP=function(){return _.tQ};_.BP=function(a,b){(0,_.sQ)(a,b)};_.eja=function(){(0,_.CQ)(3)};(0,_.Je)(window.document,"mouseover",_.cja);(0,_.Je)(window.document,"mousedown",_.fja);(0,_.Je)(window.document,"mouseup",function(){_.uP=_.A});(0,_.Je)(window.document,"click",_.Mja);_.HP=_.A;_.JQ=function(){return _.tQ};
+_.IP=function(a){(0,_.sQ)(a,4)};_.JP=function(){(0,_.CQ)(4)};_.Le.apply(_.p,_.Vja)}b=(0,_.ff)()?"right":"left";c=(0,_.ff)()?"left":"right";a="transition";_.Oc.Bs?a="-webkit-transition":_.Oc.Rx&&(a="-moz-transition");d="border";_.Oc.Bs?d="-webkit-border":_.Oc.Rx&&(d="-moz-border");var e=_.cP.css.adpc,f=_.cP.css.adpbc,g=_.cP.css.showTopNav?"z-index:100;":"",i="#nycntg{margin:"+((0,_.ff)()?"6px 0 10px 25px":"6px 25px 10px 0")+"}#nycntg h3{font-size:small}#nycntg h3 a,#nycntg a.l{font-size:16px}",h=(0,_.ff)()?
+"overflow:hidden;padding:22px 31px 10px 16px":"padding:22px 16px 10px 31px",i=i+("#nycp{background-color:#fafafa;border-"+b+":1px solid #ebebeb;bottom:0;"+b+":0;margin-"+b+":33px;min-width:240px;position:absolute;"+c+":0;top:0;visibility:hidden;"+g+h+"}.nyc_open #nycp{visibility:visible}#nycf{display:none;height:1px;"+b+":0;min-width:940px;position:absolute;visibility:hidden;z-index:-1}.nyc_open #nycf{display:block}.nyc_opening #nycp,.nyc_opening #nycprv{display:block;visibility:hidden!important}");
+(0,_.ff)()||(i+="#nyccur{background:#fafafa;height:100%;"+b+":33px;opacity:0;position:absolute;top:0;width:0;z-index:120}#nyccur.wipeRight{border-"+c+":1px solid #e8e8e8;opacity:1;"+a+":width 0.08s ease-in;width:100%}#nyccur.fadeOut{opacity:0;"+a+":opacity 0.08s linear;width:100%}#nyccur.fadeIn{opacity:1;"+a+":opacity 0.08s linear;width:100%}#nyccur.wipeLeft{border-"+c+":1px solid #eee;opacity:1;"+a+":width 0.08s ease-out;width:0}");_.cP.css&&_.cP.css.hIconsLarge&&(g="border-radius:2px;cursor:default;height:100%;position:relative;",
+h="background-color:#f5f5f5;background-image:linear-gradient(top,#f5f5f5,#f1f1f1);border:1px solid #dcdcdc;visibility:hidden;",_.Oc.Bs?(g+="-webkit-border-radius:2px;-webkit-user-select:none",h+="background-image:-webkit-gradient(linear,left top,left bottom,from(#f5f5f5),to(#f1f1f1));background-image:-webkit-linear-gradient(top,#f5f5f5,#f1f1f1);"):_.Oc.Rx?(g+="-moz-border-radius:2px;-moz-user-select:none",h+="background-image:-moz-linear-gradient(top,#f5f5f5,#f1f1f1);"):_.Oc.opera?h+="background-image:-o-linear-gradient(top,#f5f5f5,#f1f1f1)":
+_.Oc.Gd&&(h+="-ms-filter:\"progid:DXImageTransform.Microsoft.gradient(startColorStr='#f5f5f5',EndColorStr='#f1f1f1')\";background-image:-ms-linear-gradient(top,#f5f5f5,#f1f1f1)"),i+=".vspii,.vspii-nh{"+g+"}.vspii{"+h+"}.vspii-nh{border:1px solid #fff8e7;outline:none}.vspib:focus .vspii,.vspib:focus .vspii-nh{outline:#ccc solid thin;visibility:visible}.vsh .vspib:focus .vspii{outline:none;visibility:hidden}.vsh .vspib:focus .vspii-nh{outline:none}.vsh .vsc:hover .vspii,.vsh .vsc:hover .vspib:focus .vspii,.vsh .vspii:hover,.vsh .vspib:focus .vspii:hover,.vso .vspii,.vso .vspib:focus .vspii{outline:none;visibility:visible}.nyc_opening .vspii,.nyc_open .vspii{background-color:#fafafa;background-image:none;border-color:#e6e6e6"+
+(_.Oc.Gd?';-ms-filter:""':"")+"}.vsta .vspii,.vsta .vspii:hover{background-color:"+e+";background-image:none;border-color:"+f+(_.Oc.Gd?';-ms-filter:""':"")+"}.vsca .vspii,.vsca .vspii:hover{background-color:#fafafa;border-color:#ccc}.vsh .vsc:hover .vspii-nh,.vsh .vsc:hover .vspib:focus .vspii-nh,.vsh .vspii-nh:hover,.vsh .vspib:focus .vspii-nh:hover,.vso .vspii-nh,.vso .vspib:focus .vspii-nh{background-color:"+e+";border-color:"+f+"}");i+=".vstd{line-height:0;overflow:hidden;position:absolute;white-space:nowrap;width:100%}.vstbtm{bottom:0}.vsttop{top:0}.vssrd{display:block;overflow:hidden;position:relative}.vssrdi{border-color:#bbb;border-style:solid;border-width:0 1px 0 1px}.vsta #nyccur,.vsta #nycp{background-color:"+
+e+";border-color:"+f+"}.vsca #nyccur,.vsca #nycp{background-color:#fafafa;border-color:#ccc}.nyc_open .vspib,.nyc_opening .vspib{padding-"+c+":0;"+a+":padding-"+c+" .2s ease}.nyc_open .vspib.vspib-nh,.nyc_opening .vspib.vspib-nh{padding-"+c+":4px}.vso .vspib.vspib-nh{padding-"+c+":0;"+a+":padding-"+c+" .2s ease}.nyc_open .vspib .vspii,.nyc_opening .vspib .vspii,.vso .vspib.vspib-nh .vspii-nh{"+d+"-top-"+c+"-radius:0;"+d+"-bottom-"+c+"-radius:0;border-"+c+":none}.nyc_open #nycxh{cursor:pointer;"+(0,_.Gja)(0.7)+
+";padding:15px;position:absolute;"+c+":1px;top:12px}.nyc_open #nycxh:hover{"+(0,_.Gja)(1)+"}#nycx{display:none}.nyc_open #nycx{border:none;cursor:pointer;display:block;padding:0}#nyc #nycprv #vsia{position:relative;text-decoration:none}#nycntg h3 .esw{display:none}#nyc .vshid{display:inline}#nyc #nycntg .vshid a{white-space:nowrap}#nycntg a:link{border:0;text-decoration:none}#nycntg a:hover{text-decoration:underline}#vsi,.vsi{border:none;width:100%}div.vsta{display:block}.vstbb{border:0 solid #dd4b39;position:absolute}.vstbt{background-color:#202020;border:0 solid #dd4b39;color:#fff;font-size:12px;line-height:15px;max-width:400px;opacity:0.9;position:absolute}.vstbc{position:absolute;top:0}a .vstb em,a .vstb b{text-decoration:none}";
+_.cP.exp.lru&&(i+=".vslru.vso:before{border:1px solid #ebebeb;border-"+c+":none;bottom:-8px;top:-7px;"+b+":-7px;"+c+':-9px;content:"";position:absolute;z-index:-1}.vslru div.vspib{bottom:-6px;top:-7px}.vslru div.vspib .vspii{border-radius:0}.vscl.vso.vslru:before,.vscl.vslru div.vspib{top:-4px}');_.KQ=window.document.createElement("style");_.KQ.setAttribute("type","text/css");(0,_.Ae)(_.KQ);_.Oc.Gd&&!(0,_.Uc)("9")?_.KQ.styleSheet.cssText=i:_.KQ.appendChild(window.document.createTextNode(i));_.Wja||
+((0,_.Je)(window,"resize",_.Pja),(0,_.Je)(window,"scroll",_.AQ),(0,_.Je)(window.document,"keydown",function(a){a=a||window.event;_.LQ=window.google.time();(0,_.nf)(window.document.body,"vsh");if(a.keyCode==13){if((a=(0,_.rf)(a))&&(0,_.lf)(a,"vspib"))(a=(0,_.pP)(a))&&(0,_.sQ)(a,4)}else a.keyCode==27&&(0,_.CQ)(6)}),(0,_.Le)(49,function(){(0,_.CQ)(7);return _.l}),_.cP.ab.on&&((0,_.Le)(41,_.Mia),(0,_.Le)(37,function(a){if(a)if(a=window.document.getElementById("appbar"))a.style.visibility="hidden"}),_.Nia=
+(0,_.Ee)("#gbqf"),(0,_.Ee)("#pocs")),(_.Tia=(0,window.Boolean)(window.gbar&&window.gbar.elc&&window.gbar.elr))&&window.gbar.elc(function(){_.cP.elastic.js&&(0,_.Sia)(window.gbar.elr().mo);(0,_.Oe)(71)}),window.google.video=window.google.nyc.video);_.Wja=_.l;if(b=(0,_.QO)())b=(0,_.Ee)("#lst-ib",b),(0,_.Je)(b,"focus",_.RO),(0,_.Je)(b,"blur",_.Cia),b==(0,_.Td)(window.document)&&(0,_.RO)();b=(0,_.De)(".ab_button");for(c=0;a=b[c];c++)(0,_.Je)(a,"keydown",_.Lia),_.Pc.Lv&&(0,_.Je)(a,"keypress",_.ZO);_.IQ=
+[];(b=window.document.getElementById("abar_ps_on"))&&_.IQ.push(new _.vl(b,(0,_.ed)(b,"disabled")?_.cP.msgs.sPersD:_.cP.msgs.sPers));(b=window.document.getElementById("abar_ps_off"))&&_.IQ.push(new _.vl(b,(0,_.ed)(b,"disabled")?_.cP.msgs.hPersD:_.cP.msgs.hPers));_.cP.elastic&&_.cP.elastic.js&&((0,_.Je)(window,"resize",_.bP),(0,_.bP)());(b=(0,_.Ee)("div.lhshdr"))&&_.fP.push(b);(b=window.document.getElementById("tbbcc"))&&_.fP.push(b);(0,_.eP)();(0,_.Je)(window,"scroll",_.eP);_.Pc.Gd&&!(0,_.Uc)("9")&&
+(0,_.Je)(window,"resize",_.eP);(_.GQ=(0,window.Boolean)(window.gbar&&window.gbar.elc&&window.gbar.elr))&&window.gbar.elc(function(){(0,_.Qja)()});_.cP.elastic.tiny&&_.GQ&&(0,_.Qja)()}},dispose:function(){if(_.cP){_.KQ&&((0,_.Dd)(_.KQ),_.KQ=_.p);_.fP=[];_.cP.elastic&&_.cP.elastic.js&&(0,_.Ke)(window,"resize",_.bP);(0,_.Ke)(window,"scroll",_.eP);_.Pc.Gd&&!(0,_.Uc)("9")&&(0,_.Ke)(window,"resize",_.eP);var a=(0,_.QO)();a&&(a=(0,_.Ee)("#lst-ib",a),(0,_.Ke)(a,"focus",_.RO),(0,_.Ke)(a,"blur",_.Cia));for(var a=
+(0,_.De)(".ab_button"),b=0,c;c=a[b];b++)(0,_.Ke)(c,"keydown",_.Lia),_.Pc.Lv&&(0,_.Ke)(c,"keypress",_.ZO);_.WO&&(0,_.XO)();_.YO={};for(b=0;b<_.IQ.length;b++)_.IQ[b].Qx();_.IQ=[];_.pQ=_.oQ=_.p;_.hQ&&_.hQ.clear();_.JP=_.IP=_.JQ=_.kQ=_.ZP=_.YP=_.aQ=_.iQ=_.p;_.Ne.apply(_.p,_.Vja);(0,_.FP)();(0,_.Ke)(window.document,"click",_.Mja);window.clearTimeout(_.DQ)}_.dP=_.HQ=_.SP=_.p;_.tQ=_.A;_.FQ=_.EQ=_.p;_.LQ=_.uQ=0}});(0,_.ga)("google.nyc.closePanelViaLinkClick",_.Uja,_.k);
+(0,_.ga)("google.nyc.openPanelViaLinkClick",_.Tja,_.k);(0,_.ga)("google.nyc.addHoverStateLockingElement",_.gja,_.k);(0,_.ga)("google.nyc.removeHoverStateLockingElement",_.hja,_.k);(0,_.ga)("google.nyc.notifyRanScripts",function(){_.eQ=_.l},_.k);(0,_.ga)("google.nyc.me",function(a,b){var c=window.document.getElementById(a);if(c!=_.p)for(var d in b)c.setAttribute(d,b[d])},_.k);(0,_.ga)("google.nyc.registerAds",function(a){(0,_.Sja)(a,"tads");(0,_.Sja)(a,"tadsb")},_.k); (0,_.ga)("google.nyc.setImageAnchorHrefForCurrentResult",function(a){a=window.google.dom.get(a);_.SP!=_.p&&(0,_.QP)(a,_.SP)},_.k);
+
+(0,_.Bc)(_.O.$(),"sy61");(0,_.Fc)(_.O.$(),"sy61");
+}catch(e){_._DumpException(e)}
+try{
+(0,_.Ec)(_.O.$(),"m");
+(0,_.Bc)(_.O.$(),"m");(0,_.Fc)(_.O.$(),"m");
+}catch(e){_._DumpException(e)}
+try{
+_.bra=function(){_.cra||((0,_.Dd)((_.cZ||window).document.getElementById("googleShareboxIframeDiv")),_.dZ=_.A,_.eZ&&(0,_.eZ)({}))};
+_.dra=function(a,b){if(!_.dZ){_.fZ=a;b&&(_.gZ=b.onShareOpened,_.hZ=b.onShareClosed,_.eZ=b.onShareTimedOut,_.iZ=b.onNotLoggedInForGooglePlus,_.jZ=b.footerCallback,_.kZ=b.sessionIndex,_.lZ=b.socialHost,_.cZ=b.window,b.window=_.p,_.mZ=b.spinnerPath,_.nZ=b.spinnerWidth,_.oZ=b.spinnerHeight,_.era=b);var c=_.cZ||window;_.kZ=_.kZ||"0";_.lZ=_.lZ||"https://plus.google.com";_.mZ=_.mZ||"//ssl.gstatic.com/docs/documents/share/images/spinner-1.gif";_.nZ=_.nZ||"16px";_.oZ=_.oZ||"16px";var d=_.cZ||window;d.iframes.setHandler("shareboxDialog",
+{onOpen:function(a){var b=window.document.getElementById("googleShareboxIframeDiv");b.style.background="";b.style.opacity="";b.style.filter="";(0,_.Dd)(d.document.getElementById("googleShareboxLoadingSpinner"));return a.openInto(a.getOpenParams().element,{"class":"abc",scrolling:"auto",width:"100%",height:"100%",allowtransparency:"true"})},onReady:function(a){window.setTimeout(function(){_.cra=a;_.fZ&&a.setPrefill(_.fZ);a.setParamBag(_.era);_.gZ&&(0,_.gZ)({})},0)},onClose:function(a,b){if(b){b.loggedOut&&
+_.iZ&&(0,_.iZ)();b.footerCallback&&_.jZ&&(0,_.jZ)()}a.remove();(0,_.Dd)(d.document.getElementById("googleShareboxIframeDiv"));_.dZ=_.A;_.hZ&&(0,_.hZ)(b)}});_.dZ=_.l;var e=c.document.createElement("div");e.setAttribute("id","googleShareboxIframeDiv");e.style.position="fixed";e.style.width="100%";e.style.height="100%";e.style.left="0px";e.style.top="0px";e.style.zIndex=5001;e.style.opacity="0.75";e.style.filter="alpha(opacity=75)";e.style.background="#FFF";c.document.body.appendChild(e);var f=c.document.createElement("img");
+f.setAttribute("id","googleShareboxLoadingSpinner");f.setAttribute("src",_.mZ);f.style.position="absolute";f.style.width=_.nZ;f.style.height=_.oZ;f.style.left="50%";f.style.top="50%";e.appendChild(f);e=_.lZ+"/u/"+_.kZ+"/_/sharebox/dialog";f={};f.claimedOrigin=c.document.location.protocol+"//"+c.document.location.host;var g=_.A;b&&("games"==b.apiMode&&(f.mode=b.apiMode),b.hl&&(f.hl=b.hl),b.sourceForLogging&&(f.source=b.sourceForLogging),b.dialogTitle&&(f.dialogTitle=b.dialogTitle),b.shareButtonText&&
+(f.shareButtonText=b.shareButtonText),b.showIcons&&(f.showIcons="true"),b.segments?f.segments=c.JSON.stringify(b.segments):b.editorText&&(f.editorText=b.editorText),b.editorHelperText&&(f.editorHelperText=b.editorHelperText),b.birthday&&(f.birthday=b.birthday),b.birthdayName&&(f.birthdayName=b.birthdayName),b.recipients&&(f.rcpt=b.recipients.join(",")),g=!!b.updateMetadata);var i=_.p;if(!g){var h;a&&(a.items&&1==a.items.length&&a.items[0].properties)&&(g=a.items[0].properties,g.description===_.p&&
+delete g.description,g.image===_.p&&delete g.image,g.name===_.p&&delete g.name,g.url===_.p&&delete g.url,!g.description&&(!g.image&&!g.name)&&(g.url&&g.url[0])&&(h=g.url[0]));g=(g=c.gapi.config.get("iframes/sharebox/httpMethod"))&&"GET"!=g;if(h){if(750>=(0,window.encodeURIComponent)(h).length||g)f.url=h;i="url"}if(a&&!h){(!a.items||0==a.items.length)&&delete a.items;a.errorMsg===_.p&&delete a.errorMsg;h=c.gadgets.json.stringify(a);if(750>=(0,window.encodeURIComponent)(h).length||g)f.md=h;i="md"}}i&&
+(f.prm=i);f.sts=(+(new window.Date).getTime()).toString(36);750>window.document.documentElement.clientHeight&&(f.susp=_.l);window.document.documentMode&&(f.hostiemode=window.document.documentMode);c.iframes.open(e,{style:"shareboxDialog",element:"googleShareboxIframeDiv"},f,{}).getIframeEl().style.zIndex=5002;window.setTimeout(_.bra,15E3)}};_.fra=function(a,b){window.iframes?(0,_.dra)(a,b):window.gbar&&window.gbar.lGC&&window.gbar.lGC(function(){(0,_.dra)(a,b)})};(0,_.Ec)(_.O.$(),"sy70");
+_.dZ=_.A;(0,_.ga)("google.standaloneSharebox.load",_.fra,_.k);
+(0,_.Bc)(_.O.$(),"sy70");(0,_.Fc)(_.O.$(),"sy70");
+}catch(e){_._DumpException(e)}
+try{
+(0,_.Ec)(_.O.$(),"sy72");
+(0,_.Bc)(_.O.$(),"sy72");(0,_.Fc)(_.O.$(),"sy72");
+}catch(e){_._DumpException(e)}
+try{
+(0,_.Ec)(_.O.$(),"shb");
+(0,_.Bc)(_.O.$(),"shb");(0,_.Fc)(_.O.$(),"shb");
+}catch(e){_._DumpException(e)}
+try{
+_.Lma=function(a,b){(0,_.Fe)(a,"position","absolute","top",b.y+"px","left",b.x+"px","width",b.w+"px","height",b.h+"px")};_.Mma=function(a,b,c,d){try{var e=(0,_.Kc)();e.onreadystatechange=function(){4==e.readyState&&200==e.status&&(c&&c(d?eval("("+e.responseText+")"):e.responseText),e=_.p)};if(0==a)e.open("GET",b,_.l),e.send(_.p);else{var f=b.split("?");e.open("POST",f[0],_.l);e.setRequestHeader("Content-Type","application/x-www-form-urlencoded");e.send(f[1]||"")}}catch(g){}};
+_.Nma=function(a){var b=(0,_.Ue)("authuser");return b?a+"&authuser="+b:a};
+_.GU=function(a,b,c){if(_.HU){var d;d=b.SC?{url:b.SC}:b.qQ?{swUrl:b.qQ,groups:["W"],encrypted:b.oL==_.p?_.IU.qt:_.IU.at[b.OF]}:{tingUrl:b.dG,groups:["__TING_TLD"]};var e={applicationId:19};if("write"==a){var f={},g=b.OF;d={entity:d,attributes:f};g&&256<g.length&&(g=g.substr(0,256));_.IU.ex&&(f.exp=_.IU.ex);b.AP&&(f.originalUrl=b.AP);if(b.oL!=_.p){if(f.rquery=g,b.He!=_.p&&(f.pa=b.He),d.starRating=b.oL,b.yP)f.originalDomain=b.yP,b.bY&&(f.reasonOther=b.bY)}else if(b.W_){if(f.rquery=g,d.bookmarked=_.l,
+b.gT&&(g=b.gT.split(/=|\|/),0==g.length%2))for(var i=0;i<g.length;i+=2){var h=g[i];h in _.Oma&&(f[_.Oma[h]]=g[i+1])}}else d.labels=[b.OF];b.LL&&(d.title=b.LL);d.language=window.google.kHL;d.country=b.mz?b.mz:_.IU.gl;e.annotations=[d]}else"delete"==a&&(e.entities=[d]);e="/reviews/json/"+a+"?req="+(0,window.encodeURIComponent)(window.google.stringify(e));if("write"==a||"delete"==a)e+="&token="+_.HU;(0,_.JU)((0,_.Nma)(e),c)}else e=function(){(0,_.GU)(a,b,c)},_.HU?e():1==_.KU.push(e)&&(e="/reviews/json/token?req="+
+(0,window.encodeURIComponent)(window.google.stringify({applicationId:19})),(0,_.JU)((0,_.Nma)(e)))};_.JU=function(a,b,c){(0,_.Mma)(1,a,function(d){if(d.channelHeader.token){_.HU=d.channelHeader.token;if(d.swToken&&(_.IU.qt=d.swToken,_.IU.at={},d.queryTokens))for(var e=0,f;f=d.queryTokens[e++];)_.IU.at[f.query]=f.token;for(;_.KU.length;)_.KU.shift()()}e=d.channelHeader.errorCode;f=c||1;7==e&&3>f?(0,_.JU)(a,b,f+1):(e&&window.google.log("error","&sa=X&oi=sw_s&cd="+e),b&&b(d))},1)};
+_.LU=function(a,b){var c=_.MU[a],d;for(d in b)c=c.replace(d,b[d]);return c};_.Pma=function(a){return(0,_.lf)(a,"l")};_.Qma=function(a){var b="";if(a){var a=a.href,c=window.location.protocol+"//"+window.location.host;0==a.indexOf(c)&&(a=a.substring(c.length));(a=a.match(/^\/interstitial\?url=(.+?)(&|$)/))&&(b=(0,window.decodeURIComponent)(a[1]))}return b};
+_.Rma=function(a){var b="";if(a){var b=a.href,c=b.match(/\/url\?(?:.+&)?(?:url|q)=(.+?)(?:&|$)/);c&&(b=(0,window.decodeURIComponent)(c[1]));a=(0,_.Qma)(a);""!=a&&(b=a)}return b};_.NU=function(a){return(0,_.Rma)((0,_.Ee)("a.l",a))};_.OU=function(a){return(a=a.match(/^([A-Za-z]+:\/\/)([^\/:]+)[:\/]/))&&2<=a[2].split(".").length?a[2]:""};_.PU=function(a){return"http://"+a+"/"};_.QU=function(a,b){var c=window.Array.prototype.slice.call(arguments,1);return function(b){return a.apply(_.p,c.concat(window.Array.prototype.slice.call(arguments)))}};
+_.Sma=function(a){_.RU&&(0,window.clearTimeout)(_.SU);_.RU=_.l;_.SU=(0,window.setTimeout)(function(){var b=(0,_.Ee)("a.kob",a),c=(0,_.Ee)("div.kobh",a);c&&((0,_.ff)()||(c.style.left=b.offsetLeft+"px"),c.style.top=b.offsetHeight+"px",c.style.display="");_.RU=_.A},_.TU.td)};_.Tma=function(a){_.RU&&(_.RU=_.A,(0,window.clearTimeout)(_.SU));if(a=(0,_.Ee)("div.kobh",a))a.style.display="none"};
+_.UU=function(a,b,c){b?(b={mz:_.TU.gl},c&&(b.AP=c),a={dG:a,OF:_.TU.q},c=(c=b)||{},c.OF=a.OF||_.IU.q,a.dG?c.dG=a.dG:c.qQ=a.SC,c.oL=1,a=_.p,c.yP&&(a=function(a){a.channelHeader.errorCode?(0,_.Ee)("span.t_inpterr").style.display="block":window.location.href=window.location.href}),(0,_.GU)("write",c,a)):(0,_.GU)("delete",{dG:a})};
+_.Uma=function(a){if(_.VU[a]){for(a=_.VU[a];a&&"LI"!=a.nodeName;)a=a.parentNode;if(a){var b=(0,_.OU)((0,_.NU)(a)),c=(0,_.Ee)(".f",a);!c&&""!=(0,_.Qma)((0,_.Ee)("a",a))&&(c=(0,_.Ee)(".s",a));if(c){var d=(0,_.Ee)("a.kob",c);if(!d){var e=(0,_.LU)("a",{"%1$s":b}),f=(0,_.LU)("b",{"%1$s":b}),g=(0,_.ff)()?-10:10,e=(0,_.Be)("span",' <div style="display:block;position:relative"><div class=kobh style="display:none;position:absolute;z-index:111;padding:0px;right:0px"><div style="height:0;width:0;position:relative;left:'+
+g+'px;direction:ltr;top:4px;border-top:0;border-left:15px solid transparent;border-right:15px solid transparent;border-bottom:15px solid #aaa"></div><div style="height:0;width:0;position:relative;left:'+g+'px;direction:ltr;top:-9px;z-index:112;border-top:0;border-left:15px solid transparent;border-right:15px solid transparent;border-bottom:15px solid #fff"></div><div style="background:#fff;position: absolute;top:18px;pointer-events: none;white-space: nowrap;padding:8px;border:1px solid #a6a6a6;border-right-color:#aaa;border-bottom-color:#aaa;color:#000;-webkit-box-shadow: 2px 2px 5px rgba(0,0,0,.5);-moz-box-shadow: 1px 1px 1px rgba(0,0,0,.75);-o-box-shadow: 1px 1px 1px rgba(0,0,0,.75);box-shadow: 1px 1px 1px rgba(0,0,0,.75);">'+
+f+'<span class=kobs style="display:none">'+b+'</span></div></div><span class=gl><a href=# class=kob style="color:#c00c00">'+e+"</a></span></div>");if((0,_.lf)(c,"f"))c.appendChild(e);else{for(f=c.lastChild;f&&"BR"!=f.tagName&&""==f.innerHTML;)f=f.previousElementSibling;f?c.insertBefore(e,f):c.appendChild(e)}d=(0,_.Ee)("a.kob",c);d.onclick=(0,_.QU)(_.Vma,d);d.onmouseover=(0,_.QU)(_.Sma,a);d.onmouseout=(0,_.QU)(_.Tma,a);d.onfocus=(0,_.QU)(_.Sma,a);d.onblur=(0,_.QU)(_.Tma,a);(0,window.setTimeout)(function(){(0,_.Lg)(2E3,
+[[d,"color","#c00c00","#1122cc"]])},0)}d.style.display=""}return b}}return""};_.Wma=function(a,b){b==_.p&&(b={});b.tB=a.kobi?a.kobi-1:-1;b.CF=window.google.time();(0,_.Sg)("kob",b)};_.Xma=function(a){var b="";if(a&&0<=a.tB){var b="kob:idx="+a.tB,c=window.Math.floor((window.google.time()-a.CF)/1E3);if(0>=_.TU.cd||c<_.TU.cd)a=(0,_.Uma)(a.tB),b+=":sb=1:dom="+a;b+=":cd="+c;a={};(0,_.Sg)("kob",a)}return b};_.Yma=function(){var a=(0,_.yl)();a&&a.Rb();window.google.j&&window.google.j.cl&&window.google.j.cl()};
+_.Vma=function(a){for(;a&&"LI"!=a.nodeName;)a=a.parentNode;if(a){var b=a;if(!window.document.cookie||!/(^|; )SID=[^;]+/.test(window.document.cookie))return a=window.location.href+"&kob="+(0,_.NU)(b),(0,_.Pe)("https://accounts.google.com/Login?hl="+window.google.kHL+"&continue="+(0,window.encodeURIComponent)(a)),_.A;var a=(0,_.Ee)("span.kobs",b),a=(0,_.Nd)(a),a=(0,_.LU)("c",{"%1$s":a}),c=(0,_.Ue)("authuser"),d=(0,_.Be)("li.g s",a+'&nbsp; <span style="display:inline-block"><a href="/reviews/t?hl='+
+window.google.kHL+(c?"&authuser="+c:"")+'"><b>'+_.MU.d+"</b></a> &nbsp; <a href=# class=kobu><b>"+_.MU.e+"</b></a></span>");(0,_.Fe)(d,"backgroundColor","#fff1a8","padding","4px 8px","marginLeft","-8px","marginRight","-8px","display","none");(0,_.Cd)(d,b);(0,_.Ee)("a.kobu",d).onclick=(0,_.QU)(_.Zma,d,b);(0,_.UU)((0,_.PU)((0,_.OU)((0,_.NU)(b))),_.l,(0,_.NU)(b));var e=function(){b.style.display="none";d.style.display=""},a={x:(0,_.me)(b),y:(0,_.ne)(b),w:b.offsetWidth,h:b.offsetHeight};b.style.visibility=
+"hidden";var f=new window.Image,g=window.Math.min(1,a.h/65),c=window.Math.round(120*g),i=(0,_.Be)("div");f.width=c;if(_.Oc.Bs){i.style.zIndex=100;c=(0,_.Fe)((0,_.Be)("div"),"position","relative","overflow","hidden","margin","auto","width",c+"px","height",window.Math.round(65*g)+"px");(0,_.Lma)(i,a);i.appendChild((0,_.Be)("div.s")).appendChild(c);window.document.body.appendChild(i);f.style.position="absolute";f.src="/images/swxa.png";f.height=window.Math.round(780*g);c.appendChild(f);var h=1,m=window.setInterval(function(){12==
+h?(window.clearInterval(m),(0,_.Dd)(i),b.style.display="none",e()):f.style.top=window.Math.round(-65*h++*g)+"px"},62.5)}else(0,_.Fe)(i,"zIndex",100,"verticalAlign","middle"),(0,_.Lma)(i,a),window.document.body.appendChild(i),f.src="/images/swxa.gif",f.height=window.Math.round(65*g),i.appendChild((0,_.Fe)((0,_.Be)("div.s"),"textAlign","center")).appendChild(f),window.setTimeout(function(){(0,_.Dd)(i);b.style.display="none";e()},750);(0,_.Yma)()}return _.A};
+_.Zma=function(a,b){a.style.display="none";b.style.display="";b.style.visibility="";(0,_.Ee)("span.kobs",b);(0,_.UU)((0,_.PU)((0,_.OU)((0,_.NU)(b))),_.A);return _.A};
+_.$ma=function(a,b,c){var d=(0,_.Nd)(b),d=(0,_.LU)("g",{"%1$s":_.WU[a]});(0,_.Fe)(b,"fontWeight","bold","innerHTML",d,"cursor","default","color","#767676");(0,_.Ke)(b,"click",_.XU[a]);delete _.XU[a];_.XU[a]=_.p;if(!c)return _.A;(b=_.YU[a])||(b=(0,_.PU)(_.WU[a]));(0,_.UU)(b,_.A);(0,_.Yma)();(0,_.sf)(c);for(c=0;d=_.YU[c];++c)if(c!=a&&_.XU[c]&&d==b)_.XU[c](_.p);return _.A};
+_.ana=function(a,b){(0,_.Mma)(0,"/search?q=info:"+(0,window.encodeURIComponent)(a+" "+_.TU.q)+"&swm=5&hl="+window.google.kHL,function(c){if((c=c&&c.match(_.bna))&&/class="?g\b/.test(c[1]))b((0,_.Be)("div",c[1]).firstChild);else{/^[a-zA-Z]+:\/\//.test(a)||(a="http://"+a);var c={url:(0,_.of)(a),site:(0,_.of)(a.replace("http://",""))},d='<h3 class=r><a class=l href="{url}">{url}</a></h3><div class=s><cite>{site}</cite></div>',e;for(e in c)d=d.replace((0,window.RegExp)("\\{"+e+"\\}","g"),c[e]);b((0,_.Be)("li.g",
+d))}})};
+_.cna=function(){var a=(0,_.Ee)("a.kobbs"),b=(0,_.Ee)("ol.kobb");if(_.ZU)a.innerHTML=_.MU.h,b.style.display="none",_.ZU=_.A;else{a.innerHTML=_.MU.i;b.style.display="";if(!_.$U){for(var c=function(a,c){if(_.WU[a]){b.appendChild(c);var d=(0,_.Ee)("cite",c).parentNode;d.appendChild(window.document.createTextNode(" - "));var e=(0,_.LU)("f",{"%1$s":_.WU[a]}),e=(0,_.Fe)((0,_.Be)("span.kob","<span   onmouseout=\"this.style.textDecoration='none';\"   onmouseover=\"this.style.textDecoration='underline';\">"+e+
+"</span>"),"color","#c00","cursor","pointer");d.appendChild(e);_.XU[a]=(0,_.QU)(_.$ma,a,e);(0,_.Je)(e,"click",_.XU[a]);(0,_.Dd)((0,_.Ee)("button.vspib",c))}},d=0,e;e=_.aV[d];++d)(0,_.ana)(e,(0,_.QU)(c,d));_.$U=_.l}_.ZU=_.l}window.google.log("t_t","to:"+(_.ZU?1:0),"",a);return _.A};(0,_.Ec)(_.O.$(),"tng");
+_.IU=_.p;_.Oma={s:"s2CellId"};_.HU="";_.KU=[];_.VU={};_.aV=[];_.WU=[];_.YU=[];_.XU=[];_.$U=_.A;_.ZU=_.A;_.TU={mb:500,cd:100,td:300};_.SU=0;_.RU=_.A;_.MU={};_.bna=/<\!--m--\>\s*(.*?)\s*<\!--n--\>/;
+(0,_.Mf)(116,{init:function(a){_.VU={};_.aV=[];_.WU=[];_.YU=[];_.XU=[];_.ZU=_.$U=_.A;_.TU={mb:500,cd:100,td:300,q:""};_.RU=_.A;_.MU={};_.IU=_.IU||{};if(!a||!a.su){var b;_.VU={};b=-1;var c=(0,_.Ue)("kob");c&&(c=(0,window.decodeURIComponent)(c));for(var d=(0,_.De)("h3.r"),e=0;e<d.length;++e){var f=(0,_.Ee)("a.l",d[e]);f&&(_.VU[e]=f,f.kobi=e+1,c&&c==(0,_.Rma)(f)&&(b=e))}(new window.Image).src="/images/swxa."+(_.Oc.Bs?"png":"gif");if(a){_.aV=a.bu||[];_.WU=a.bd||[];_.YU=a.bk||[];_.MU=a.msgs||{};a.rb&& (0,_.Yg)(_.Pma,_.Wma,_.Xma,"kob");for(var g in a)_.TU[g]=a[g]}if(a=(0,_.Ee)("a.kobbs"))a.onclick=_.cna;-1!=b&&window.google.log("backbutton","kob:idx="+b+":dom="+(0,_.Uma)(b),"",a)}}});
+
+(0,_.Bc)(_.O.$(),"tng");(0,_.Fc)(_.O.$(),"tng");
+}catch(e){_._DumpException(e)}
+try{
+_.nn=function(a,b){_.on[a]||(_.on[a]=b)};
+_.pn=function(a,b,c){var d={},b="#"==b.charAt(0)?b.substring(1):b;d[a]=b;if(""==a&&_.qn&&b!==_.rn[a])for(var e in _.sn)d[_.sn[e]]="";for(var f in d)_.rn[f]=d[f];a=(0,_.tn)();c?_.un?(window.history.replaceState(a,window.document.title||"","#"+a),(0,_.vn)(a)):(c=window.location,c.replace(c.href.replace(/#.*/,"")+(a?"#"+a:""))):_.un?(window.history.pushState(a,window.document.title||"","#"+a),(0,_.vn)(a)):(c=window.location,c.hash.replace(/^#*/,"")!=a&&(c.hash=a))};
+_.tn=function(a){var b=[],c=[],d;for(d in _.rn)c.push(d);c.sort();for(d=0;d<c.length;d++){var e=c[d],f=a&&a[e]?a[e]:_.rn[e];e?f&&b.push(e+"="+f):(e=a&&a[e]?a[e]:_.rn[e])&&b.push(e)}a=b.join("&");return a=a.replace(/^#*/,"")};_.wn=function(a,b){var c={"":""},d=window.location;if(a||d.hash){for(var d=(a||d.hash).replace(/^#*/,"").split("&"),e=[],f=0;f<d.length;f++){var g=d[f],i=g.split("=")[0];_.xba[i]?c[i]=g.split("=")[1]:e.push(g)}c[""]=e.join("&")}b&&(_.rn=c);return c}; _.vn=function(a,b){_.rn=(0,_.wn)(a);for(var c in _.on)_.on[c](_.rn[c]?_.rn[c]:"",b)};_.xn=function(){(0,_.vn)()};_.yn=function(a){(0,_.vn)(a.state)};(0,_.Ec)(_.O.$(),"sy22");
+_.xba={agsa:_.l,biv:_.l,imgrc:_.l,itp:_.l,mip:_.l,mis:_.l,miuv:_.l,mkp:_.l,mldd:_.l,now:_.l,qm:_.l,sh:_.l,lmt:_.l,"":_.l};_.sn=["imgrc"];_.rn={"":""};_.on={};_.un=_.A;_.qn=_.A;
+(0,_.Mf)(164,{init:function(a){_.qn||(a=a.h5h,a=!(!window.history||!window.history.pushState)&&a,_.qn&&_.un==a||(_.un=!!a,(0,_.Ke)(window,"popstate",_.yn),(0,_.Ke)(window,"hashchange",_.xn),_.un?(0,_.Je)(window,"popstate",_.yn):("undefined"!=typeof window.onhashchange||!_.Oc.Gd&&window.hasOwnProperty("onhashchange"))&&(0,_.Je)(window,"hashchange",_.xn)),(0,_.vn)(_.k,_.l));_.qn=_.l}});
+
+(0,_.Bc)(_.O.$(),"sy22");(0,_.Fc)(_.O.$(),"sy22");
+}catch(e){_._DumpException(e)}
+try{
+(0,_.Ec)(_.O.$(),"hsm");
+(0,_.Bc)(_.O.$(),"hsm");(0,_.Fc)(_.O.$(),"hsm");
+}catch(e){_._DumpException(e)}
+try{
+_.Ul=function(a){if((a=window.document.getElementById(a))&&"none"!=(0,_.gf)(a,"display",_.l)&&"hidden"!=(0,_.gf)(a,"visibility",_.l)&&0<a.offsetHeight){var b=(0,_.gf)(a,"margin-top",_.A)||0,c=(0,_.gf)(a,"margin-bottom",_.A)||0;return a.offsetHeight+b+c}return 0};_.Vl=function(a,b,c){var d=a.t[b],e=a.t.start;if(d&&(e||c))return _.Wl&&(d=a.t[b][0]),c!=_.k?e=c:_.Wl&&(e=e[0]),_.Xl?d>e?d-e:e-d:d-e};
+_.Yl=function(a,b,c){a:{var d="";if(_.Zl&&(window[_.$l].pt&&(d+="&srt="+window[_.$l].pt,delete window[_.$l].pt),_.am))try{window.external&&window.external.tran?d+="&tran="+window.external.tran:window.gtbExternal&&window.gtbExternal.tran?d+="&tran="+window.gtbExternal.tran():window.chrome&&window.chrome.csi&&(d+="&tran="+window.chrome.csi().tran)}catch(e){}if(_.bm){var f=window.document.getElementById("csi");if(f){var g;window[_.$l]._bfr!=_.k?g=window[_.$l]._bfr:(g=f.value,window[_.$l]._bfr=g,f.value=
+1);if(_.cm){if(g){a="";break a}}else g&&(d+="&bfr=1")}}if(_.dm&&(f=window.chrome))if(f=f.loadTimes)f().wasFetchedViaSpdy&&(d+="&p=s"),f().wasNpnNegotiated&&(d+="&npn=1"),f().wasAlternateProtocolAvailable&&(d+="&apa=1");a.LT&&(d+="&"+a.LT);_.em&&window.parent!=window&&(d+="&wif=1");if("undefined"!=typeof window.navigator&&window.navigator&&window.navigator.connection){f=window.navigator.connection;g=f.type;for(var i in f)if("type"!=i&&f[i]==g){d+="&conn="+i;break}}f=a.t;g=f.start;i=[];var h=_.A;if(_.Wl)var m=
+[];for(var n in f)if("jsrt"==n&&(h=_.l),"start"!=n){if(_.Wl){if(0==n.indexOf("_"))continue;var j=f[n][1];if(j){f[j]&&m.push(n+"."+(0,_.Vl)(a,n,f[j][0]));continue}}g&&i.push(n+"."+(0,_.Vl)(a,n))}if(!h){var j=[],q=window.performance&&window.performance.timing;q&&(h=q.navigationStart,h||(h=q.fetchStart),h&&g&&j.push("wsrt."+(g-h)),q.connectEnd&&q.connectStart&&j.push("cst."+(q.connectEnd-q.connectStart)),q.domainLookupEnd&&q.domainLookupStart&&j.push("dnst."+(q.domainLookupEnd-q.domainLookupStart)),
+q.redirectEnd&&q.redirectStart&&j.push("rdxt."+(q.redirectEnd-q.redirectStart)),q.responseEnd&&q.requestStart&&j.push("rqst."+(q.responseEnd-q.requestStart)),q.responseEnd&&q.responseStart&&j.push("rspt."+(q.responseEnd-q.responseStart)));(h=j.join(","))&&i.push(h)}if((h=window.google.timers.session)&&h.t&&g)for(n in h.t)"start"!=n&&i.push(n+"."+(g-h.t[n]));delete f.start;if(b)for(var t in b)d+="&"+t+"="+b[t];(b=c)||(b="https:"==window.document.location.protocol?_.fm:_.gm);a=[b,"?v=3","&s="+(window[_.$l].sn||
+_.hm)+"&action=",a.name,_.Wl&&m.length?"&it="+m.join(","):"","",d,"&rt=",i.join(",")].join("")}if(!a)return"";var d=new window.Image,r=window[_.$l].PP++;window[_.$l].nJ[r]=d;d.onload=d.onerror=function(){delete window[_.$l].nJ[r]};d.src=a;d=_.p;return a};
+_.im=function(a,b,c){if("prerender"==window.document.webkitVisibilityState){var d=_.A,e=function(){if(!d){b?b.prerender="1":b={prerender:"1"};var f;"prerender"==window.document.webkitVisibilityState?f=_.A:((0,_.Yl)(a,b,c),f=_.l);f&&(d=_.l,window.document.removeEventListener("webkitvisibilitychange",e,_.A))}};window.document.addEventListener("webkitvisibilitychange",e,_.A);return""}return(0,_.Yl)(a,b,c)};
+_.jm=function(a,b){a===_.k&&(a=_.l);if(!a||window.google.timers.load.t&&window.google.timers.load.t.xjs&&window.google.timers.load.t.ol){b=b||window.google.kCSI;if(_.km){var c=b,d=(0,_.Ul)("tads"),e=(0,_.Ul)("mbEnd"),f=(0,_.Ul)("tadsb"),d="t:"+d+",r:"+e+",b:"+f;c&&(c.adh=d)}(0,_.im)(window.google.timers.load,b)}};_.qba=function(a){if(window[_.$l].PP<=(a||1))return _.A;for(var b in window[_.$l].nJ)return _.A;return _.l};(0,_.Ec)(_.O.$(),"sy18");
+_.Zl=_.l;_.am=_.A;_.hm="GWS";_.$l="google";_.gm="/csi";_.fm="/csi";_.km=_.A;_.bm=_.l;_.cm=_.l;_.Wl=_.A;_.Xl=_.l;_.lm=_.A;_.em=_.l;_.dm=_.l;(0,_.Mf)(38,{csi:function(a){a.csbu&&(_.fm=a.csbu);a.cbu&&(_.gm=a.cbu);a.ert&&(_.Wl=a.ert);a.esd&&(_.dm=a.esd);a.fpt&&(_.Xl=a.fpt);a.ibd&&(_.bm=a.ibd);a.ifr&&(_.lm=a.ifr);a.itpt&&(_.Zl=a.itpt);a.itptt&&(_.am=a.itptt);a.iwi&&(_.em=a.iwi);a.nsp&&(_.$l=a.nsp);a.sn&&(_.hm=a.sn);a.srb&&(_.cm=a.srb);a.acsi&&(_.km=a.acsi)}});(0,_.Rf)("csi");
+window[_.$l]&&(window[_.$l].nJ={},window[_.$l].PP=1);(0,_.ga)(_.$l+".report",_.im,_.k);(0,_.ga)(_.$l+".csiReport",_.jm,_.k);_.lm&&(0,_.ga)(_.$l+".reportDone",_.qba,_.k);
+(0,_.Bc)(_.O.$(),"sy18");(0,_.Fc)(_.O.$(),"sy18");
+}catch(e){_._DumpException(e)}
+try{
+_.vr=function(a,b){this.QC=a;b&&(this.sF=b)};_.wr=function(a){var b=_.p;try{b=window.sessionStorage||_.p}catch(c){}_.vr.call(this,b,a)};_.xr=function(a,b){this.JF=a;b&&(this.rF=b)};_.yr=function(a,b,c){b._sn=a;b._t="jesr";try{b.us=_.zr,b.ss=!!window.sessionStorage,_.zr&&(b.s="number"==typeof window.sessionStorage.remainingSpace?window.sessionStorage.remainingSpace:-1)}catch(d){}window.google.ml(c||(0,window.Error)("jesr"),_.A,b)};
+_.Ar=function(a){for(var b=(0,_.Br)(a),c=0,d;d=b[c++];)_.Cr.remove(a+d);(0,_.Dr)(a,[])};_.Er=function(){_.zr?(0,_.Ar)("s"):(_.Fr.lQ=1,(0,window.setTimeout)(_.Gr,0));_.Hr.s={}};_.Ir=function(a,b){1===_.Hr[a][b]&&(_.Hr[a][b]=_.Cr.get(a+b));return _.Hr[a][b]};_.Jr=function(a,b){delete _.Hr[a][b];if(_.zr){for(var c=(0,_.Br)(a),d=-1,e=0,f;f=c[e++];)if(f==b){d=e-1;break}if(0<=d){c.splice(d,1);try{(0,_.Dr)(a,c),_.Cr.remove(a+b)}catch(g){(0,_.yr)("RCI",{k:c?c.length:-1},g)}}}};
+_.Br=function(a){a=_.Cr.get(a);return(0,_.xa)(a)?a:[]};_.Dr=function(a,b){for(var c={},d=[],e=b.length-1;0<=e;e--)c[b[e]]||(c[b[e]]=1,d.push(b[e]));d.reverse();_.Cr.set(a,d)};_.Kr=function(a,b){_.zr&&(_.Fr.c[a]=1,b&&(_.Fr.s[b]=1));_.Fr.lQ=1;(0,window.setTimeout)(_.Gr,0)};_.Lr=function(a){var b=[],c;for(c in _.Fr[a]){var d=!_.Cr.get(a+c);_.Cr.set(a+c,(0,_.Ir)(a,c));d&&b.push(c)}0<b.length&&(c=(0,_.Br)(a),c=c.concat(b),(0,_.Dr)(a,c))};
+_.Mr=function(a){try{(0,_.Lr)(a)}catch(b){(0,_.Nr)("s");try{(0,_.Lr)(a)}catch(c){(0,_.yr)("SCSTSSAC",{p:a},c),(0,_.aa)(c)}}};_.Nr=function(a){var b=(0,_.Br)(a),c=b.splice(1,window.Math.floor(b.length*window.google.j.sc));(0,_.Dr)(a,b);for(var b=0,d;d=c[b++];)delete _.Hr[a][d],_.Cr.remove(a+d)};
+_.Gr=function(){if(_.Fr.lQ)try{if(_.zr)(0,_.Mr)("c"),(0,_.Mr)("s");else{var a={},b;for(b in _.Hr)if("c"==b){a[b]={};var c=_.Hr.c,d;for(d in c)"1"!=d&&(a[b][d]=c[d])}else if("s"==b){a[b]={};var e=_.Hr.s,f;for(f in e)"#"!=f&&(a[b][f]=e[f])}else a[b]=_.Hr[b];var g=(0,_.If)(a);if(g.length>_.Or)try{var c=b=0,i;for(i in a.s)b++;for(i in a.c)c++;window.google.ml((0,window.Error)("jesr"),_.A,{_sn:"JMCSE",_t:"jesr",_s:b,_c:c,_l:g.length})}catch(h){}window.document.getElementById("wgjc").value="("+g+")"}}catch(m){window.document.getElementById("wgjc").value=
+"({})",(0,_.yr)("SE",{},m)}finally{_.Fr={c:{},s:{}}}};_.Pr=function(){var a=_.A;(0,_.Qr)(_.l);try{if(_.zr){for(var b=(0,_.Br)("s"),c=(0,_.Br)("c"),d=0,e;e=b[d++];)_.Hr.s[e]=1;e=0;for(var f;f=c[e++];)"1"==f&&_.Hr.c[1]||(_.Hr.c[f]=1);a=0<b.length||0<c.length}else{var d=window.document.getElementById("wgjc").value,a=""!=d,g=eval(d);g&&(g.f&&"2"==g.f)&&(_.Hr=g)}}catch(i){(0,_.yr)("RC",{},i)}(0,_.Qr)();return a};
+_.Qr=function(a){if(!_.Hr||a)_.Hr={f:"2",c:{},s:{}};!("1"in _.Hr.c)&&window.google.j[1]&&(_.Hr.c["1"]=window.google.j[1])};
+_.Rr=function(a){window.google.j.mc&&(_.Or=window.google.j.mc);(0,_.Qr)();try{if(a.dss)_.zr=_.A;else{var b=new _.wr;a:{try{if(b.QC){var c=b.sF+"testkey",d=(new window.Date).getTime().toString();b.QC.setItem(c,d);var e=b.QC.getItem(c);b.QC.removeItem(c);_.zr=d==e;break a}}catch(f){}_.zr=_.A}_.Cr=new _.xr(b,"web-")}}catch(g){_.zr=_.A}if(_.zr&&(b=_.Cr.get("f"),!(0,_.ja)(b)||"2"!=b))(0,_.Ar)("s"),(0,_.Ar)("c"),_.Cr.set("f","2");_.zr&&window.google.j.bv&&(b=window.google.j.bv+"_"+(window.google.j.u||""), _.Cr.get("v")!=b&&((0,_.Ar)("s"),(0,_.Ar)("c"),_.Cr.set("v",b)));if(a.rt&&(a=a.rt+"",_.zr&&(b=_.Cr.get("rt"),!(0,_.ja)(b)||b===_.p||b&&b!=a)))(0,_.Er)(),_.Cr.set("rt",a)};(0,_.Ec)(_.O.$(),"sy35");
+_.N=_.vr.prototype;_.N.QC=_.p;_.N.sF="";_.N.set=function(a,b){this.QC.setItem(this.sF+a,b)};_.N.get=function(a){a=this.QC.getItem(this.sF+a);if((0,_.Na)(a)||a===_.p)return a;if((0,_.Na)(a.value))return a.value;(0,_.aa)("Storage mechanism: Invalid value was encountered")};_.N.remove=function(a){this.QC.removeItem(this.sF+a)};(0,_.cb)(_.wr,_.vr);
+_.N=_.xr.prototype;_.N.JF=_.p;_.N.rF="";_.N.set=function(a,b){try{(0,_.ja)(b)?this.JF.set(this.rF+a,(0,_.If)(b)):this.JF.remove(this.rF+a)}catch(c){window.google.ml(c,_.A,{op:"set",k:a,v:b})}};_.N.get=function(a){try{var b=this.JF.get(this.rF+a);return b===_.p?_.k:eval("("+b+")")}catch(c){window.google.ml(c,_.A,{op:"get",k:a,v:b?b:""})}};_.N.remove=function(a){try{this.JF.remove(this.rF+a)}catch(b){window.google.ml(b,_.A,{op:"remove",k:a})}}; _.N.Ab=function(){var a=[],b=this.get("idx");(0,_.xa)(b)&&(a=a.concat(b));return a};_.N.getData=function(a){return this.get("data"+a)};
+_.Or=4E5;_.zr=_.A;_.Cr=_.p;_.Hr={f:"2",c:{},s:{}};_.Fr={c:{},s:{}};(0,_.ga)("google.j.cl",_.Er,_.k);
+(0,_.Bc)(_.O.$(),"sy35");(0,_.Fc)(_.O.$(),"sy35");
+}catch(e){_._DumpException(e)}
+try{
+_.Sr=function(a,b){if(_.Tr[a]){var c=_.Tr[a],d=_.dca[a];if(b&&d){for(var e=[],f=0;f<c.length;f++){var g=c[f];d[g]||e.push(g)}return e}return c}return[]};_.Ur=function(a,b){for(var c={},d=(0,_.Sr)(a,_.l),e=0;e<d.length;e++){var f=d[e];(0,_.ja)(b[e])&&(c[f]=b[e])}return c};_.Vr=function(a){for(var b in a)_.Wr[b]=a[b]};_.Xr=function(){return window.location};_.Yr=function(){var a=[];if(_.Hr.c)for(var b in _.Hr.c)a.push(b);for(b=0;b<a.length;++b)if("1"!=a[b])return a[b];return"1"};
+_.Zr=function(a,b,c){b._sn=a;b._t="jesr";b._ls=_.$r;b._fr=!!_.as;b._ph=_.bs[_.cs]||0;_.ds!=window.google.j.ss&&(b._ss=window.google.j.ss+","+_.ds);try{b._wlt=typeof(0,_.Xr)().href,b._flt=typeof _.as.location.href,b._wl=(0,_.Xr)().href,b._fl=_.as.location.href}catch(d){}window.google.ml(c||(0,window.Error)("jesr"),_.A,b)};_.es=function(a,b){a.removeEventListener?(a.removeEventListener("load",b,_.A),a.removeEventListener("error",b,_.A)):(a.detachEvent("onload",b),a.detachEvent("onerror",b))};
+_.fs=function(){if("webkitVisibilityState"in window.document)return window.document.webkitHidden};
+_.gs=function(){if(_.hs&&(!(0,_.is)((0,_.Xr)().href)||window.google.isr.csi_done)&&window.google.timers&&window.google.timers.load.t&&window.google.timers.load.e){window.google.timers.load.t.iml=window.google.time();window.google.timers.load.e.imn=_.js;1<_.ks&&(window.google.timers.load.e.alm=_.ks-1);var a=window.google.timers.load.t,b=_.ls;-1==b?(a.hjsrt=a.jsrt,a.himl=a.iml,a.jsrt=a.start,a.iml=a.start):a.jsrt<b&&(a.hjsrt=a.jsrt,a.himl=a.iml,b<a.start?a.jsrt=b:(a.jsrt=a.start,a.iml=a.iml+a.start-
+b));(0,_.jm)(_.A,window.google.timers.load.e);window.google.dph&&window.google.dph();_.ks=0}};_.ms=function(a,b){if(b||window.google.j.ss==_.ds&&++_.ns==_.js)_.hs=_.l,(0,_.gs)();b||(a=a||window.event,(0,_.es)(a.target||a.srcElement,_.ms))};_.os=function(a,b){var c=a.split("#");return 1<c.length?c[0]+"#"+b(c[1]):a};
+_.ps=function(a,b,c){b=(0,_.os)(b,_.qs);try{if(window.google.j.h5h&&a==(0,_.Xr)()){window.google.j.hm&&(b=(0,_.os)(b,function(a){return(0,_.tn)((0,_.wn)(a))}));var d=b.replace(/^#/,"/"+(0,_.rs)()+"?").replace(/&fp=([^&]*)/g,"&fpz=$1");if(!((0,_.Xr)().href.replace((0,window.RegExp)(".*(?=/"+(0,_.rs)()+"\\?)"),"")==d||"#"==b&&(0,_.ss)()))_.ts[c?"replaceState":"pushState"](b,"",d)}else c||window.google.j.ahr?(0,_.us)(a,b,_.l):b.indexOf("#")||(0,_.us)(a,b)}catch(e){(0,_.Zr)("SL",{h5h:window.google.j.h5h,
+psy:1,r:c,v:b},e)}};_.vs=function(a,b,c){try{c||window.google.j.ahr?(a.replace(b),(0,_.Oe)(43,[b,c])):(a.href=b,(0,_.Oe)(43,[b]))}catch(d){(0,_.Zr)("SL",{h5h:window.google.j.h5h,psy:1,r:c,v:b},d)}};_.us=function(a,b,c){if(_.Pc.Gd&&(0,_.is)((0,_.Xr)().href))var d=window.google.time();window.google.j.hm?(0,_.pn)("",b,c):c?a.replace(a.href.replace(/#.*/,"")+b):a.hash=b;_.Pc.Gd&&d&&300<window.google.time()-d&&4<=(0,_.Br)("s").length&&(0,_.Nr)("s");(0,_.Oe)(43,[b])};
+_.eca=function(a,b,c){a[b]?a.__handler||(a.__handler=a[b],a[b]=function(b){return a.__handler(b)!=_.A&&c.call(a,b)}):a.__handler=a[b]=function(a){return c.call(this,a)}};
+_.ws=function(){for(var a=window.document.getElementsByTagName("form"),b=0,c;c=a[b++];){var d;if(!(d=_.xs.test(c.action)))a:if(d=c,window.google.j.xmi)d=_.l;else{if(_.ys&&_.ys.test(d.action)){d=d.getElementsByTagName("input");for(var e=0,f=_.k;f=d[e];++e)if("tbm"==f.name&&"isch"==f.value){d=_.l;break a}}d=_.A}d&&!/\bnj\b/.test(c.className)&&(0,_.eca)(c,"onsubmit",function(a){(0,_.Oe)(69);return(0,_.zs)(this,_.A,a)})}};_.As=function(){return _.Bs>window.google.j.ss?_.Bs:window.google.j.ss+1};
+_.Cs=function(a){return!a?0===a:a==window.google.j.ss&&window.google.j.ss>_.ds};
+_.Ds=function(a){var b=window.document.getElementById("jjsd");b||(b=window.document.createElement("div"),b.id="jjsd",(0,_.Ae)(b));var c=_.A;a.replace(/\x3cscript[\s\S]*?\x3e([\s\S]*?)\x3c\/script/ig,function(a,e){var f=window.document.createElement("script");f.text=e;b.appendChild(f);c=_.l});c&&(a=window.document.createElement("script"),a.text='(function(){try{var n=document.getElementById("jjsd");n.parentNode.removeChild(n);}catch(e){}})();',b.appendChild(a))};
+_.Es=function(){for(var a=0;a<_.Fs.length;++a)(0,_.Ds)(_.Fs[a]);_.Fs=[];_.Gs=_.p};_.fca=function(a){_.Gs&&(window.clearTimeout(_.Gs),_.Gs=window.setTimeout(_.Es,a))};_.gca=function(a){_.Gs&&(window.clearTimeout(_.Gs),(0,_.Hs)(a)==(0,_.Hs)(_.Is)&&(0,_.Es)())};_.Js=function(a,b){try{b||(0,_.Ks)("bc",[a]),window.document.body.className=a||""}catch(c){(0,_.Zr)("BC",{name:a},c)}};
+_.Ls=function(a,b,c,d,e){if((0,_.Cs)(d)){try{e||(0,_.Ks)("p",[b,c,0]);if(!(0,_.Oe)(6,[b,a]))return _.A;if(("sdb"==b||"taw"==b)&&_.Ms){window.document.body.style.height=window.document.body.offsetHeight+4+"px";try{(0,_.Ns)(_.Os)}catch(f){}window.scroll(0,0);_.Ms=_.A}var g=window.document.getElementById(b);try{if(g.innerHTML=c,(0,_.Ps)(g),_.Qs&&(0,_.Oe)(79,[])){if(d=_.Qs,-1!=c.indexOf("<script")&&(_.Is&&(a!=_.Is&&_.Gs)&&(window.clearTimeout(_.Gs),_.Gs=_.p,_.Fs=[]),_.Is=a,_.Fs||(_.Fs=[]),_.Fs.push(c),
+1==_.Fs.length&&(_.Gs=window.setTimeout(_.Es,d)),!_.Rs)){var i=(0,_.ab)(_.fca,_.p,d);(0,_.Je)(window,"keypress",i);_.Rs=_.l}}else(0,_.Ds)(c)}catch(h){var m=g.cloneNode(_.A);m.innerHTML=c;(0,_.Ps)(m);g.parentNode.replaceChild(m,g);_.Ss&&(0,_.Ds)(c)}if("main"==b){var n=(0,_.Ts)(a);if(n!=_.p&&(n=(0,_.Oe)(4,[n,_.l],n,_.p),n!=_.p))for(var a=0,j;j=_.Us[a++];)window.document[j]&&window.document[j].q.value!=n&&(window.document[j].q.value=n)}window.document.getElementById(b).style.visibility=""}catch(q){(0,_.Zr)("P",
+{id:b},q)}_.bs[_.cs]=21;if(!(0,_.Oe)(18,[b]))return _.A}};_.Vs=function(a,b){for(var c in b){var d=b[c];if(d&&"object"==typeof d){if(!a[c]||"object"!=typeof a[c])a[c]={};(0,_.Vs)(a[c],d)}else a[c]=d}};_.Ws=function(){return/#.+/.test((0,_.Xs)())?(0,_.Xs)():(0,_.Xr)().href.substr((0,_.Xr)().href.indexOf("?")).replace(/#.*/,"")};
+_.Ys=function(a,b){try{var c=(b===_.k?(0,_.Ws)():b).match("[?&#]"+a+"=(.*?)([&#]|$)");if(c)return(0,window.decodeURIComponent)(c[1].replace(/\+/g," ").replace(/[\n\r]+/g," "))}catch(d){(0,_.Zr)("GQC",{c:a},d)}return _.p};_.Ts=function(a){var b=(0,_.Ys)("dq",a);return b!=_.p?b:(0,_.Ys)("q",a)||(0,_.Ys)("as_q",a)};_.Zs=function(a,b){(0,_.Ks)("spf",[b]);window.google.j.pf=b};
+_.$s=function(a){(0,_.Oe)(83,[]);window.google.fl=_.l;if(_.at){try{if(_.bt){a=_.bt;_.bt="";_.Pc.Gd?(_.ts.back(),(0,_.vs)(window.google.j.gwtl(),a)):(0,_.vs)(window.google.j.gwtl(),a,1);return}var b=_.as.location.href;if(_.Pc.hx&&!b){(0,_.ct)(3,_.$r,2);return}var c=7>=_.dt||"complete"==_.as.document.readyState;!/\/blank\.html$/.test(b)&&!/about:blank$/.test(b)&&(!_.as.googleJavaScriptRedirect&&(!_.as.google||!_.as.google.loc)&&c)&&(0,_.vs)((0,_.Xr)(),b)}catch(d){(0,_.ct)(4,_.$r,2);return}a&&0!=(_.bs[a]||
+0)&&(0,_.ct)(8,(0,_.Ws)(),2)}};_.ct=function(a,b,c,d){var e=d||{};e._c="je";e._ce=a;8==a&&(e._ph=_.bs[_.cs]||0);var f=(0,_.Oe)(30,window.Array.prototype.slice.call(arguments,0,2),c,function(a){return 1!=a});(0,_.et)(b,e,f)};_.rs=function(){return"/images"==(0,_.Xr)().pathname||"/imghp"==(0,_.Xr)().pathname?"images":"search"};
+_.et=function(a,b,c){if(1!==c){var a="/"+(0,_.rs)()+"?"+a.substr(1).replace(/(^|&)fp\=[^&]*/g,"").replace(/(^|&)tch\=[^&]*/g,"").replace(/(^|&)escfg\=[^&]*/g,"")+"&emsg=NCSR&noj=1&ei="+window.google.kEI,d,e,f;d=e=f="(none)";try{_.as&&(_.as.document&&_.as.location)&&(d=_.as.google,e=_.as.location.href,f=_.as.document.title)}catch(g){}try{var i={_sn:"NCSR",_t:"jesr",_g:!!d,_lg:_.Bs?window.google.time()-_.Bs:"NA",_sl:_.ft,_wl:(0,_.Xr)().href,_fl:e,_it:f.substr(0,100)},h;for(h in b)b.hasOwnProperty(h)&&
+(i[h]=b[h]);window.google.ml((0,window.Error)("jesr"),_.A,i)}catch(m){}3!=c&&2==c&&(_.Pc.Gd?(_.ts.back(),(0,_.vs)(window.google.j.gwtl(),a)):(0,_.vs)(window.google.j.gwtl(),a,1))}};_.gt=function(a){var a=a.replace(/(^|&)bav\=[^&]*/g,""),b=[];if(window.gbar){var c=window.gbar.bv;c&&b.push("on."+c.n,"or."+c.r)}window.google.j.cf&&b.push("cf."+window.google.j.cf);return 0<b.length?a+"&bav="+b.join(","):a};
+_.zs=function(a,b,c,d,e,f){var g;a:if(!_.ht||!(0,_.Oe)(70,[a,b]))g=_.l;else{c="#";try{if(b)c+=a.match(/\?(.*)/)[1].replace(/#.*/,"");else{b=[];d||a.q&&a.q.blur();for(var i=0,h;h=a.elements[i++];)if(!("radio"==h.type||"submit"==h.type)||h.checked){if("btnI"==h.name){g=_.l;break a}h.name&&b.push(h.name+"="+(0,window.encodeURIComponent)(h.value).replace("%3A",":"))}c+=b.join("&").replace(/\%20/g,"+")}c=(0,_.gt)(c);c=c.replace(/\'/g,"%27");if(!(0,_.it)(c)&&!d){g=_.A;break a}var m=(0,_.Ys)("q",c);if(/(^| )cache:/.test(m)){g=
+_.l;break a}}catch(n){(0,_.Zr)("HSA",{t:a.tagName},n);g=_.l;break a}c=(0,_.Fp)("fp",c,"1"==_.Os?(0,_.Yr)():_.Os);c=(0,_.Oe)(51,[c],c)||"";!d&&!_.Oc.Bs&&(0,_.Oe)(24,[c])&&(0,_.ps)((0,_.Xr)(),c);g=(0,_.Ys)("tbm",c);h=(0,_.Ys)("tbm",_.jt);g!=h&&(0,_.Oe)(88,[h,g]);_.jt=c;d?window.google.jesrstate=c:(_.kt=_.l,(0,_.Jr)("s",(0,_.lt)(c)),(0,_.Dd)(window.document.getElementById("jjsd")),window.google._bfr=_.k,window.document.getElementById("csi").value="",(0,_.mt)(c,_.A,e,f));g=_.A}window.google.j.bo&&(g&&
+a instanceof window.Element)&&(a.target="_top");return g};_.it=function(a){if((0,_.Ys)("q",a))return _.l;a=(0,_.Ys)("tbs",a);return!!a&&(-1!=a.indexOf("simg")||-1!=a.indexOf("sbi")||-1!=a.indexOf("ppl_id")&&-1!=a.indexOf("ppl_np"))};_.ss=function(){var a=(0,_.Xr)(),b=(0,_.nt)();return(0==a.href.indexOf(_.ot)||"/search"!=a.pathname&&"/images"!=a.pathname)&&!(0,_.it)(b)};_.pt=function(){return(0,_.ss)()?"#":(0,_.Xs)()};
+_.qt=function(a,b,c){(!a||"#"==a)&&(0,_.Xr)().href.replace(/#.*/,"")!=_.ot&&!("/search"==(0,_.Xr)().pathname||"/images"==(0,_.Xr)().pathname)?(0,_.Xr)().replace((0,_.Xr)().href):(0,_.rt)(b?1:0,c,a||(0,_.pt)())};_.hca=function(a){var b=(0,_.pt)();(0,_.qt)("#"==b?"#":a&&a.state,_.A,_.A)};_.st=function(){var a=(0,_.nt)();return(0,_.it)(a)?((0,_.ps)((0,_.Xr)(),(0,_.Xr)().href.match(/#.*/)[0],_.l),_.l):_.A};_.ica=function(){(0,_.st)()&&(0,_.rt)()};_.jca=function(){(0,_.rt)()};_.kca=function(a,b){(0,_.rt)(b)};
+_.rt=function(a,b,c){a=1===a;c=c||(0,_.Xs)();!_.tt&&("#"!=c&&!(0,_.it)(c))&&((0,_.Zr)("BF",{o:a,f:b,s:c}),_.tt=_.l);if(_.ut&&c!=_.$r&&_.vt.test((0,_.Xr)().href)){_.kt=!((0,_.lt)(c)in _.Hr.s);_.Wr.shouldBlur&&(window.document.gs&&window.document.gs.q.blur(),window.document.bgs&&window.document.bgs.q.blur(),window.document.f&&window.document.f.q.blur(),window.document.gbqf&&window.document.gbqf.q.blur());try{a&&"#"!=c&&b&&(c=(0,_.wt)(c,"fp",(0,_.Yr)()),-1==c.indexOf("&fp=")&&(c+="&fp=1"),c=(0,_.gt)(c),
+-1==c.indexOf("&cad=")&&(c+="&cad=b"),-1<c.indexOf("&cad=b")&&(c+=(0,_.xt)()),(0,_.Jr)("s",(0,_.lt)(c)),(0,_.ps)((0,_.Xr)(),c,1))}catch(d){}if((0,_.Oe)(7,[c])){if(a&&(window.google.y&&window.google.y.first)&&(window.google.y.first=[],b=window.document.getElementById("gbqfw")||window.document.getElementById("searchform"),window.google.sn in _.lca)){b&&(b.style.display="none");var e;window.gbar&&(e=window.gbar.gpcr)&&e()}(0,_.mt)(c,a)}else _.$r=c}};
+_.yt=function(a,b){(0,_.rt)(a,b);window.setTimeout(_.yt,100)};
+_.mt=function(a,b,c,d){_.Bs=window.google.time();_.zt=_.At=_.Ms=_.A;window.google.timers&&(window.google.timers.load.t=_.p,window.google.timers.load.e=_.p);"#"!=a&&-1==a.indexOf("&fp=")&&(a+="&fp="+_.Os,(0,_.ps)((0,_.Xr)(),a,1));(0,_.Oe)(65,[_.$r,a]);_.$r=a;_.ft=0;try{_.ut=0;var e=a.substr(1);if((0,_.lt)(a)in _.Hr.s&&!c)window.google.j.ss=(0,_.As)(),d?window.setTimeout(function(){(0,_.Bt)(a)},d):(0,_.Bt)(a);else if("#"!=a){var f="/"+(0,_.rs)()+"?"+e;if(f=(0,_.Oe)(5,[f,c],f)){(0,_.Oe)(53);window.google.j.ss=
+(0,_.As)();_.at=_.Ms=_.l;a:{var g=f;_.Ct&&(0,_.Oe)(72,[]);var i=_.Ct.xa(g);if(!i&&(_.Dt||(_.Ct.ha(),_.Ct.M(),_.Ct.Fa()),_.Et&&!_.Ct.Ea())){_.Et.Pd(g,c);break a}d&&i&&!c?window.setTimeout(function(){_.Ct.Pd(g)},d):_.Ct.Pd(g,c)}}else _.ut=1}else(0,_.Oe)(53),(0,_.Xr)().reload()}catch(h){_.ft=1,(0,_.Zr)("GO",{o:b,s:a},h)}window.setTimeout(function(){_.ft=1},50)};
+_.Ns=function(a){try{if(_.Ft){var b=window.document.getElementById(_.Ft);b&&(b.innerHTML="")}for(var c=(0,_.Ir)("c",a),b=0,d;d=c.cc[b++];){var e=window.document.getElementById(d);e?e.style.visibility="hidden":(0,_.Zr)("C",{container:d},(0,window.Error)("Missing chrome container"))}}catch(f){(0,_.Zr)("C",{fp:a,c:d},f)}};_.Ps=function(a){_.Gt&&"#"==_.$r&&(0,_.Mb)(a.querySelectorAll('*[value^="<"]'),function(a){a.setAttribute("value",(0,window.decodeURIComponent)(a.getAttribute("value").substr(1)))})};
+_.Ht=function(a){a.setAttribute("value","<"+(0,window.encodeURIComponent)(a.getAttribute("value")))};
+_.It=function(){try{_.Jt=[];(0,_.Ks)("ad",[window.document.title,window.google.kEI,_.Os,0,0,_.l]);for(var a=(0,_.Ir)("c",_.Os),b=0,c;c=a.co[b++];){var d=window.document.getElementById(c);if(d){var e=d;_.Gt&&((0,_.Mb)(e.querySelectorAll('*[value*="<"]'),_.Ht),(0,_.Mb)(e.querySelectorAll('*[value*=">"]'),_.Ht));(0,_.Ks)("p",[c,d.innerHTML,0]);(0,_.Ps)(d)}else(0,_.Zr)("IS",{container:c},(0,window.Error)("Missing chrome container"))}if(a.bl){for(var f=a.bl[1],g=window.document.getElementById(a.bl[0]).getElementsByTagName("a"),
+a={},b=0,i;i=g[b++];)0==i.id.indexOf(f)&&(a[i.id]=i.href);(0,_.Ks)("ph",[a,0])}(0,_.Ks)("zz",[0,_.l]);(0,_.Kt)("#",_.l,_.l)}catch(h){(0,_.Zr)("IS",{},h)}};_.Kt=function(a,b,c){var a=(0,_.lt)(a),d=(0,_.Ir)("s",a);if(b||!d)_.Hr.s[a]=_.Jt,_.Jt=[];c||(0,_.Kr)(_.Os,a)};_.Ks=function(a,b){var c=(0,_.Ur)(a,b);c.n=a;_.Jt.push(c)};
+_.Lt=function(a,b){var c=a.n+"";try{if(c){for(var d=[],e=(0,_.Sr)(c,_.A),f=0;f<e.length;f++){var g=e[f];b&&(0,_.ja)(b[g])?d.push(b[g]):d.push(a[g])}window.google.j[c].apply(_.p,d)}}catch(i){c={n:c,m:a},b&&(c.g=b,c.s=b.is),(0,_.Zr)("ECF",c,i)}};_.Mt=function(a,b,c){var d=(0,_.Ir)("c",a)||{},e=d.funcs||[],c=(0,_.Ur)(b,c);c.n=b;e.push(c);d.funcs=e;_.Hr.c[a]=d};
+_.Nt=function(){_.Ot||(_.Ot=window.google.sn);window.google.sn="#"==_.$r?_.Ot:"web";window.google.timers&&!window.google.timers.load.t&&(window.google.rph&&window.google.rph(),window.google.timers.load.t={start:window.google.time()})};_.Pt=function(a,b,c,d,e,f,g){_.Os!=b&&(0,_.Cs)(f)&&(d||(_.Hr.c[b]=a),c&&(_.zt=_.At=_.l,(0,_.Nt)(),!_.Qt&&!g&&((0,_.Rf)("dispose"),(0,_.Oe)(89,[]),_.Qt=_.l),a=(0,_.Ir)("c",b),a.css&&(0,_.Rt)("gstyle",a.css,b,_.l,_.l,e,f)),_.bs[_.cs]=10)};
+_.Rt=function(a,b,c,d,e,f,g){if(_.Os!=c&&(0,_.Cs)(g)&&(e||(0,_.Mt)(c,"pcs",[a,b,c,_.l,_.l,"",0]),d&&(a=window.document.getElementById(a))))_.Pc.Gd?a.styleSheet&&(a.styleSheet.cssText=b):a.textContent=b};_.St=function(a,b,c,d,e,f,g){if(_.Os!=c&&(0,_.Cs)(g)){try{e||(0,_.Mt)(c,"pc",[a,b,c,_.l,_.l,"",0]),d&&((0,_.Ls)(_.$r,a,b,g,_.l),(0,_.Oe)(81,[a]))}catch(i){(0,_.Zr)("PC",{c:a,f:c},i)}_.bs[_.cs]=11}};
+_.Tt=function(a,b,c,d,e,f){if(_.Os!=b&&(0,_.Cs)(f)){if(!d){var d=(0,_.Ir)("c",b),g;for(g in a)d[g]=a[g]}c&&(_.Os=b,window.document.body.style.display="",window.document.body.style.visibility="");(0,_.Oe)(42,[b]);_.bs[_.cs]=12}};
+_.Bt=function(a){if((0,_.Oe)(3,[a])){(0,_.Ns)(_.Os);try{var b,c=(0,_.lt)(a);b=(0,_.Ir)("s",c);for(var d={is:a},c=0,e;e=b[c++];)(0,_.Lt)(e,d);if(_.Pc.Gd){b=["pmocntr","pmocntr2"];for(var c=0,f;f=b[c++];){var g=window.document.getElementById(f);g&&(g.style.display="none")}}}catch(i){(0,_.Zr)("DPFC",{s:a},i)}(0,_.Oe)(31,[a]);window.postMessage&&window.postMessage("jrc","*")}else _.ut=1};
+_.nt=function(){var a=(0,_.Xr)().href,b=a.indexOf("#"),a=0<=b?a.substring(b):"";return window.google.j.hm?(a=(0,_.wn)(a)||{},"#"+(a[""]?a[""]:"")):a||"#"};_.Xs=function(){var a;window.google.j.h5h?(a=(0,_.nt)().match(/[#&](as_q=|q=|tbs=sbi|tbs=simg)/),a=(0,_.Xr)().href.match(a?/#(.*)/:/\?([^#]*)/)):a=(0,_.Xr)().href.match(/#(.*)/);a=a?"#"+a[1]:"#";window.google.j.hm&&(a=(0,_.wn)(a)||{},a=a[""]?"#"+a[""]:"#");window.google.j.h5h&&(a=a.replace(/&fpz=([^&]*)/g,"&fp=$1"));return a};
+_.wt=function(a,b,c){return a.replace((0,window.RegExp)("([?&]"+b+"=).*?([&#]|$)"),"$1"+(0,window.encodeURIComponent)(c).replace(/\%20/g,"+")+"$2")};_.is=function(a){return(0,_.Up)(["isch"],a)};_.mca=function(){window.event&&"number"==typeof window.event.button&&(_.Ut=window.event.button)};
+_.nca=function(a){if(!_.ht)return _.l;a=a||window.event;if(!(0,_.Oe)(2,[a]))return a.preventDefault&&a.preventDefault(),a.cancelBubble=_.l,_.A;var b=a.target||a.srcElement;window.google.j.bo&&("input"==b.nodeName.toLowerCase()&&"submit"==b.type&&b.form)&&(b.form.target="_top");for(var c;b&&"body"!=b.nodeName.toLowerCase();){if("a"==b.nodeName.toLowerCase()){c=b;break}b=b.parentNode}if(!c)return _.l;var b=c.getAttribute("href",2),d=(0,_.Oe)(33,[b],b);b!=d&&(c.href=d);b=_.A;if(!window.google.njr){d=
+"";if(_.Vt.test(c.href)||_.Wt.test(c.href)&&/(\\?|&)adurl=/.test(c.href)&&!/(\\?|&)q=/.test(c.href))/(\\?|&)rct=j/.test(c.href)||(d+="&rct=j"),/(\\?|&)q=/.test(c.href)||(d+="&q="+(0,window.encodeURIComponent)((0,_.Ys)("q")||(0,_.Ys)("as_q")||_.Xt),d=d.substring(0,1948-c.href.length)),b=_.l;var e=_.Wr.csiSlowMarker;_.xs.test(c.href)&&(e&&2==e)&&(d+="&psj=1");d&&(e=c.href.indexOf("&ei="),c.href=0<=e?[c.href.substr(0,e),d,c.href.substr(e)].join(""):c.href+d)}if(a.altKey||a.ctrlKey||a.shiftKey||a.metaKey||
+a.button&&0!=a.button||1<_.Ut)return b&&!/(\\?|&)cad=/.test(c.href)&&(c.href+="&cad=rja"),_.l;if(c.target){if(!(0,_.Oe)(99,[a,c.href]))return _.A;b&&!/(\\?|&)cad=/.test(c.href)&&(c.href+="&cad=rjt");return _.l}b=_.xs.test(c.href)&&!/\bnj\b/.test(c.className);window.google.j.bo&&(!b&&"#"!=c.getAttribute("href"))&&(c.target="_top");if(b&&"#"!=c.getAttribute("href"))return b=(0,window.parseInt)((0,_.He)(c,"data-jatdrcr"),10),c=(0,_.zs)(c.href,_.l,_.A,_.A,_.A,b),c===_.A&&(a.preventDefault&&a.preventDefault(),
+a.cancelBubble=_.l),c;if((0,_.Oe)(57,[a,c.href])&&/&rct=j/.test(c.href)&&"_top"!=c.target)try{return _.at=_.l,_.Pc.hx&&/&sa=D/.test(c.href)?window.location=c.href:(0,_.Pe)(c.href,_.as),a.preventDefault&&a.preventDefault(),a.cancelBubble=_.l,_.A}catch(f){return _.l}};_.xt=function(){return(window.google.j.h5h?(0,_.Xr)().href!=_.ot:"#"!=(0,_.nt)())&&"/search"==(0,_.Xr)().pathname&&!_.Yt?(_.Yt=_.l,"&sei="+_.Zt):""};
+_.$t=function(a){var b=a.substring(a.indexOf("?")+1);0<a.length&&"#"==a[0]&&(b=a.substring(1));for(var a=b.split("&"),b={},c=0;c<a.length;++c){var d=a[c];d&&(d=d.split("="),b[d[0]]===_.k&&(b[d[0]]=d[1]||""))}return b};
+_.Hs=function(a,b){if(!a)return a;var c=(0,_.$t)(a);c.orq&&(c.q=c.orq,delete c.orq,c.ortbs?(c.tbs=c.ortbs,delete c.ortbs):delete c.tbs);var d=[],e;for(e in c)if(!_.au[e]&&(!b||!b[e])){var f=c[e];"q"==e?(f=(0,window.decodeURIComponent)(f.replace(/\+/g,"%20")),f=f.replace(/( |\u3000)+/g," "),d.push("q="+(0,window.encodeURIComponent)(f.toLowerCase()))):d.push(e+"="+f)}d.sort();return(0,window.decodeURIComponent)(d.join("&"))};
+_.qs=function(a,b){if(!a||!_.bu)return a;var c=(0,_.$t)(a),d=[],e;for(e in c)!_.au[e]&&(!b||!b[e])&&d.push(e+"="+c[e]);d.sort();return d.join("&")};_.lt=function(a){var b=(0,_.Hs)(a);return b?b:a};_.cu=function(a,b,c){var d=(0,_.Oe)(25,window.Array.prototype.slice.call(arguments),3,function(a){return 1!=a}),e="string"==typeof c?c.replace(/^\/search\?/,"#").replace(/^\/images\?/,"#"):_.$r;(0,_.et)(e,{_c:"te",_ce:b},d)};_.du=function(a,b){return 21==b||0==b||1==b||12==b||9==b?2:3};
+_.oca=function(a){return window.google.psy&&window.google.psy.q?_.A:_.eu?_.l:(a=(0,_.Ue)("redir",a))?(_.eu=_.l,window.location.replace((0,window.decodeURIComponent)(a)),_.l):_.A};_.pca=function(){this.ji="";this.M=this.U=this.ha=_.A;this.B=""};
+_.qca=function(a,b,c,d,e,f,g,i){if((0,_.oca)(c)||(0,_.is)(c)&&-1!=c.indexOf("&ijn="))return _.l;_.at=_.l;b=_.fu[c];g=_.A;b||(g=_.l,b=new _.pca,_.fu[c]=b);d||delete _.fu[c];b.ji+=a;a=b.ji;if(!(0,_.Oe)(1,[c,d,g,e]))return _.ut=1,!d&&'"NCSR"'==a?((0,_.ct)(7,_.$r+"&sei="+i,2,{url:c}),_.A):_.l;_.kt=_.l;window.google.j.h5h&&(_.$r="#"+c.substring(c.indexOf("?")+1));b.ha||(b.ha=_.l,window.google.j.ss=(0,_.As)(),window.google.timers&&(window.google.timers.load.t=_.p,window.google.timers.load.e=_.p));var h=
+_.p;try{_.as.window.document&&(h=_.as.window)}catch(m){return(0,_.ct)(1,_.$r,2),_.A}_.Bs=f||_.Bs;_.gu=0<c.indexOf("&pf=");for(var g=a,f=[],n=0,j=0,q=0;-1!=n&&q>=n;)n=g.indexOf("<script",q),-1!=n&&(j=g.indexOf(">",n)+1,q=g.indexOf("<\/script>",j),0<j&&q>j&&f.push(g.substring(j,q)));g=[];_.cs=c;for(n=0;n<f.length;++n){j=f[n];b.U||(b.U=_.l,j=j.replace(/location.href/gi,'"'+c+'"'));if(!b.M)if(/var je=parent.google.j;/.test(j))b.M=_.l;else if(!b.B&&(q=a.match(/jesr_eventid='(.*?)';/)))b.B=q[1];g.push(j)}0<
+g.length&&(0,_.hu)(h,g.join(";"),_.$r);if(d)c=a.lastIndexOf("<\/script>"),b.ji=0>c?a:a.substr(c+9);else{if('"NCSR"'==a)return(0,_.ct)(7,_.$r+"&sei="+i,2,{url:c}),_.A;if(!b.M)return a=b.B,(0,_.ct)(6,_.$r+(a?"&sei="+a:""),2,{url:c}),_.A;(0,_.$s)(c);window.setTimeout(function(){var a=h;a.gcscript||(a.gcscript=function(){if(a.jesrScriptTags)for(;a.jesrScriptTags.length;)(0,_.Dd)(a.jesrScriptTags.shift())});(0,_.hu)(a,"try{window.gcscript()}catch(e){}")},0);window.postMessage&&window.postMessage("jrc",
+"*");(0,_.Oe)(0,[c,e])}return _.l};_.rca=function(a){0==a.indexOf("<pre")?window.document.getElementById(_.Ft).innerHTML+=a:(0,_.Ds)(a);return _.l};_.iu=function(a){var b="/"+(0,_.rs)();a.xm(_.qca,b);a.B(_.Hs,b);_.ju&&(a.xm(_.rca,_.ju),a.B(_.Hs,_.ju))};_.hu=function(a,b,c){try{var d=a.document.createElement("script");d.text=b;a.jesrScriptTags=a.jesrScriptTags||[];a.jesrScriptTags.push(d);a.document.body.appendChild(d)}catch(e){c?(0,_.ct)(2,c,2):(0,_.Zr)("NSAIST",{},e)}};
+_.sca=function(a,b,c){b=!/&rct=j/.test(a)&&_.xs.test(a)&&!(0,_.zs)(a,_.l,_.k,_.A,c);!b&&window.google.j.bo&&((0,_.vs)(window.google.j.gwtl(),a),b=_.l);return b};
+_.ku=function(a){window.google.j.init=_.A;window.google.j.h5h=_.tca&&a.h5h;_.ju=a.dl;_.Ft=a.dlid;try{if(_.Oc.Bs&&_.as){var b=window.document.querySelector('iframe[name="wgjf"]');if(b&&"/blank.html"==b.src&&!window.google.fl){b.onload=function(){try{window.google.fl=_.l,b.onload=window.google.j.l,(0,_.ku)(window.google.j.cfg)}catch(a){(0,_.Zr)("INIT3",{},a),_.ht=_.A,window._gjp&&window._gjuc&&window._gjp()}};return}}}catch(c){(0,_.Zr)("INIT4",{},c);_.ht=_.A;window._gjp&&window._gjuc&&window._gjp();
+return}try{if(_.Pc.opera&&!_.as){var d=window.document.createElement("IFRAME");d.name="wgjf";d.style.display="none";d.src="about:blank";window.document.body.appendChild(d);_.as=d.contentWindow;_.as.addEventListener("load",window.google.j.l,_.A);_.as.addEventListener("error",window.google.j.e,_.A)}}catch(e){(0,_.Zr)("INIT5",{},e);_.ht=_.A;return}if(window.google.j.h5h&&!window.google.j.psc)window.onpopstate=function(){window.google.j.psc=_.l;(0,_.ku)(window.google.j.cfg)};else{if(_.ht=window.google.j.en&&
+window.google.j[1]&&window.encodeURIComponent&&_.as&&window.google.rein&&window.google.dstr){(0,_.Rr)(a);if(_.zr&&"/search"==(0,_.Xr)().pathname){for(var d=(0,_.Br)("bpk"),f=0;f<d.length;f++)if(d[f]==window.google.kEI){_.Yt=_.l;break}_.Yt||(d.push(window.google.kEI),_.Zt=window.google.kEI,(0,_.Dr)("bpk",d));(0,_.Yg)((0,_.E)(_.A),_.ka,_.xt)}var d=a.pi,f=a.mcr,g=a.emcrl,i=a.fdst,h=a.fitt;window.google.j.hm=!!a.hme;(0,_.Le)(25,_.du);a:{var m=_.l;try{var n=(0,_.yl)(),j,q=n.oa(_.l,f,g),t=n.U(_.l,f,g);
+if(window.google.ucp||i)j=[n.xa(_.l,f,g),t];else{j=[];var r=5,s=n.ra(r);d&&j.push(s);(!_.Pc.hx||!(0,_.is)((0,_.Xr)().href))&&!h&&j.push(q);(!_.Oc.Rx||h)&&j.push(t);d||j.push(s);_.Pc.hx&&(0,_.is)((0,_.Xr)().href)||j.push(n.ha(_.l,f,g))}_.Ct=n.M(j);_.Ct.U(_.cu);m=_.Ct.M();(0,_.iu)(_.Ct)}catch(C){_.ht=_.A;break a}try{if(!_.Ct.Ea()&&(r=1,j=[],h||j.push(q),j.push(n.ra(r)),_.Et=n.M(j)))_.Et.U(_.cu),_.Et.M()&&(0,_.iu)(_.Et)}catch(v){_.Et=_.p}_.ht=m}}if(_.ht){n=_.uca.concat((0,_.Ir)("c","1").co);for(j=0;j<
+n.length;j++)_.ht&=!!window.document.getElementById(n[j])}try{if(_.ht){_.$r="#";_.jt=(0,_.Ws)();_.Bs=window.google.time();_.Ot=window.google.sn;window.google.j.ss=_.ds=(0,_.As)();window.google.j.xmi=a.icmt;var x=(0,_.Xr)().href.match(/.*?:\/\/[^\/]*/)[0];_.vt=(0,window.RegExp)("^"+x);window.google.j.xmi?(_.ys=_.p,_.xs=(0,window.RegExp)("(^"+x+"|^)/("+(0,_.rs)()+")(\\?|$)")):(0,_.is)((0,_.Xr)().href)?(_.ys=(0,window.RegExp)("(^"+x+"|^)/("+(0,_.rs)()+")(\\?|$)"),_.xs=(0,window.RegExp)("(^"+x+"|^)/("+
+(0,_.rs)()+")\\?(.*&)?tbm=isch(&|$)")):(_.ys=_.p,_.xs=(0,window.RegExp)("(^"+x+"|^)/("+(0,_.rs)()+")(\\?|$)(?!(.*&)?tbm=isch(&|$))"));_.Wt=(0,window.RegExp)("(^"+x+"|^)/aclk\\?");_.Vt=(0,window.RegExp)("(^"+("https?://"+(0,_.Xr)().hostname+"(:\\d+)?")+"|^)/url\\?(.*&)?sa=(X|t|U)");(0,_.ws)();(0,_.Je)(window.document,"click",_.nca,_.l);_.Pc.Gd&&(0,_.Je)(window.document,"mousedown",_.mca,_.l);window.google.j.h5h&&(_.ot=a.h5l);_.Dt=a.dape;_.bu=a.tlh;(window.google.j.h5h&&(0,_.Xr)().href!=_.ot||!window.google.j.h5h&&
+"#"!=(0,_.nt)())&&(0,_.Ns)(_.Os);(_.Qs=a.cspd)&&(0,_.Le)(80,_.gca);var u=!(0,_.Pr)();window.wgji&&window.wgji();(0,_.It)();var y=_.Pc.Qz,w=_.Pc.jv;_.Oc.Rx&&window.addEventListener("pageshow",function(){var a=window.document.f||window.document.gs||window.document.gbqf;if(a&&_.Xt)a.q.value=_.Xt},_.A);(y||w)&&window.addEventListener("pagehide",function(){var a=window.document.f||window.document.gs||window.document.gbqf;if(a){a.q.setAttribute("value",a.q.value);(a=window.document.getElementById("grey"))&&
+a.setAttribute("value",a.value)}},_.A);var F=window.document.getElementById("ecs");if(F){var L=F.getAttribute("data-url");if(L){a=L;0<=a.indexOf("?")&&(a=a.substr(0,a.indexOf("?")+1));var H=a.substr(a.lastIndexOf("/")+1);if(!(H.substr(0,H.indexOf("."))in _.Hr.c)){var da=window.document.createElement("script");da.src=L;(window.document.getElementById("xjsd")||window.document.body).appendChild(da)}}}(0,_.Le)(32,_.sca);if((0,_.fs)()){var z=function(){if(!(0,_.fs)()){_.ls=window.google.time();(0,_.Ke)(window.document,
+"webkitvisibilitychange",z)}};_.ls=-1;(0,_.Je)(window.document,"webkitvisibilitychange",z)}window.google.j.h5h?((0,_.st)(),(0,_.qt)(_.k,_.l,u),window.onpopstate=_.hca,window.onhashchange=_.ica):"undefined"!=typeof window.onhashchange||!_.Oc.Gd&&window.hasOwnProperty("onhashchange")?window.google.j.hm?((0,_.wn)("",_.l),(0,_.rt)(1,u),(0,_.nn)("",_.kca)):((0,_.rt)(1,u),window.onhashchange=_.jca):(0,_.yt)(1,u);"#"==_.$r&&(window.document.body.style.display="",window.document.body.style.visibility="",
+_.lu=_.l);if(8<=_.dt)for(var G=window.document.getElementsByTagName("iframe"),u=0,U=G.length;u<U;u++)if(G[u].contentWindow==_.as){var K=window.document.createElement("div");K.style.display="none";G[u].parentNode.insertBefore(K,G[u]);break}window.google.j.init=_.l;(0,_.Rf)("jesrLoaded")}else 0!=window.google.j.en&&(0,_.Zr)("INIT1",{}),window._gjp&&window._gjuc&&window._gjp()}catch(W){(0,_.Zr)("INIT2",{},W),_.ht=_.A,window._gjp&&window._gjuc&&window._gjp()}}};(0,_.Ec)(_.O.$(),"sy37");
+_.Tr={ac:"c fp r sc is ss sd".split(" "),ad:"is t e fp ss csi ir".split(" "),bc:["bc","sc"],bvch:["u","e"],p:["is","i","h","ss","sc"],pa:["is","i","h","ss"],pah:["is","lp","ss"],pc:"i h fp r sc is ss".split(" "),pcs:"i css fp r sc is ss".split(" "),ph:["is","lu","ss","ig"],phf:["is","hf","ss"],sa:["is","i","a","ss"],slp:["is","op","ss"],spf:["is","ip"],zz:["is","ss","ir","ie"],zc:"c fp r sc is ss".split(" ")}; _.dca={ad:{is:_.l},p:{is:_.l},pa:{is:_.l},pah:{is:_.l},ph:{is:_.l},phf:{is:_.l},sa:{is:_.l},slp:{is:_.l},spf:{is:_.l},zz:{is:_.l}};
+_.vca="undefined"!=typeof window.TEST_MODE&&window.TEST_MODE;_.Us=["gs","bgs","f","gbqf"];_.tca=!(!window.history.pushState||!(_.Pc.Lv||_.Pc.hx&&8<=(0,window.parseInt)(_.Qc,10)));_.Ss=!(!_.Pc.Gd&&!_.Pc.opera&&!(_.Oc.Bs||_.Pc.Lv&&0<=(0,_.Sc)(_.Qc.replace(/b\d*$/,""),"4")));_.lca={webhp:1,imghp:1,mobilewebhp:1};_.at=_.A;_.dt=0;_.Pc.Gd&&(window.document.documentMode?_.dt=window.document.documentMode:(_.dt=(0,window.parseInt)(_.Qc,10),(0,window.isNaN)(_.dt)&&(_.dt=0)));_.as=window.frames.wgjf;
+_.Wr={csiSlowMarker:0,shouldBlur:_.l};_.cs="";_.ts=window.history;_.$r="";window.google.j.ss=1;_.mu=_.A;_.tt=_.A;_.Os="1";_.lu=_.A;_.bs={};_.Jt=[];_.hs=_.A;_.ks=0;_.eu=_.A;_.ls=0;_.Ms=_.A;_.kt=_.A;_.At=_.A;_.zt=_.A;_.Ot="";_.gu=_.A;_.Yt=window.google.j.hm=_.A;_.ut=1;_.uca=["wgjc"];_.ft=1;_.Qt=window.google.j.b;_.Gt=_.Oc.opera&&(0,_.Uc)("10.5");
+_.au={aqs:1,ac:1,bih:1,biw:1,bs:1,btnG:1,client:1,cp:1,dc:1,ds:1,ech:1,extab:1,gs_id:1,gs_is:1,gs_l:1,gs_mss:1,gs_nf:1,hs:1,inm:1,ion:1,mvs:1,npsic:1,oq:1,output:1,p_deb:1,pbx:1,pdl:1,pf:1,pkc:1,pnp:1,pq:1,prmdo:1,psi:1,qe:1,qesig:1,redir:1,rlz:1,sclient:1,se:1,site:1,source:1,sqi:1,sugexp:1,tbo:1,tch:1,tok:1,wrapid:1,xhr:1};_.fu={};(0,_.ga)("google.j.ac",_.Pt,_.k);
+(0,_.ga)("google.j.ad",function(a,b,c,d,e,f,g){var i=_.A;_.mu=_.A;if((0,_.Cs)(e)){_.Jt=[];(0,_.Ks)("ad",[b,c,d,0,0,_.l]);g||(0,_.Nt)();if(_.Qt)_.Qt=_.A;else{(0,_.Rf)("dispose");(0,_.Oe)(89,[])}if(_.lu){if(window.google.y.x)window.google.x=window.google.y.x;for(i=0;i<window.google.dstr.length;i++)if(e=window.google.dstr[i])try{e()}catch(h){(0,_.Zr)("DEJS",{i:i+1},h)}}b=(0,_.Oe)(21,[b],b,"");try{if(b){_.as.document.title=window.document.title=b;_.Oc.Bs&&(0,_.Oe)(24,[_.$r])&&(0,_.ps)((0,_.Xr)(),_.$r)}}catch(m){}window.google.kEI=
+c;if(f)window.google.kCSI=f;if(_.Os!=d)if(b=(0,_.Ir)("c",d)){(0,_.Pt)({},d,_.l,_.l,_.$r,0,_.l);_.zt=_.A;b.main&&(0,_.St)("main",b.main,d,_.l,_.l,_.$r,0);if(b=b.funcs)for(c=0;f=b[c++];)(0,_.Lt)(f);(0,_.Tt)({},d,_.l,_.l,_.$r,0);d=_.l}else{d=(0,_.Ys)("fp",a)||"1";(0,_.Zr)("CM",{fp:d});d!="1"?(0,_.mt)((0,_.wt)(a,"fp","1")):(0,_.ct)(0,a,2);d=_.A}else d=_.l;i=d;_.Xt=(d=(0,_.Ys)("q",a))?d:(0,_.it)(a)?"":_.Xt;(0,_.Js)("",_.l);(0,_.Zs)(a,_.gu);_.bs[_.cs]=20}return i},_.k);(0,_.ga)("google.j.api",_.Lt,_.k);
+(0,_.ga)("google.j.bc",_.Js,_.k);(0,_.ga)("google.j.bvch",function(a,b){if((0,_.Oe)(26)){var c=a.indexOf("?")+1;c>=1&&(a=a.substr(0,c)+a.substr(c).replace(/(^|&|#)(fp|bav|escfg)\=[^&]*/g,"")+"&cad=cbv&sei="+b);window.google.j.ss=(0,_.As)();_.ds=window.google.j.ss;_.bt=a;_.as.location.replace("about:blank")}else{window.google.j.ss=(0,_.As)();_.ds=window.google.j.ss}},_.k);(0,_.ga)("google.j.ckc",_.Hs,_.k);(0,_.ga)("google.j.clr",function(){(0,_.Ns)(_.Os)},_.k);(0,_.ga)("google.j.du",_.qs,_.k);
+(0,_.ga)("google.j.e",function(a){window.google.fl=_.l;(0,_.Zr)("IFE",{},a||window.event)},_.k);(0,_.ga)("google.j.gjh",_.nt,_.k);(0,_.ga)("google.j.go",_.mt,_.k);(0,_.ga)("google.j.gt",function(){return _.Ct},_.k);(0,_.ga)("google.j.gwtl",function(){return window.top.location},_.k);(0,_.ga)("google.j.h5s",_.pt,_.k);(0,_.ga)("google.j.is",_.It,_.k);(0,_.ga)("google.j.l",_.$s,_.k);(0,_.ga)("google.j.mscr",_.gs,_.k);(0,_.ga)("google.j.p",_.Ls,_.k);
+(0,_.ga)("google.j.pa",function(a,b,c,d){if((0,_.Cs)(d)){try{(0,_.Ks)("pa",[b,c,0]);var e=window.document.getElementById(b),f=window.document.createElement("div");f.innerHTML=c;(0,_.Ps)(f);for(var g;g=f.firstChild;)e.appendChild(g);_.Ss&&(0,_.Ds)(c)}catch(i){(0,_.Zr)("PA",{id:b},i)}_.bs[_.cs]=22}},_.k);
+(0,_.ga)("google.j.pah",function(a,b,c){if((0,_.Cs)(c)){var d,e;try{(0,_.Ks)("pah",[b,0]);for(d in b){e=b[d];var f=window.document.getElementById(d);if(f){if(!f.orighref){var g=f.href.indexOf("?");f.orighref=g>=0?f.href.substr(0,g+1):f.href}f.href=f.orighref+e}}}catch(i){(0,_.Zr)("PAH",{id:d,suffix:e},i)}}},_.k);(0,_.ga)("google.j.pc",_.St,_.k);(0,_.ga)("google.j.pcs",_.Rt,_.k);
+(0,_.ga)("google.j.ph",function(a,b,c,d){if((0,_.Cs)(c)){var e,f,g;try{(0,_.Ks)("ph",[b,0,d]);for(e in b)if((f=window.document.getElementById(e))||!d){g=b[e];f.href=g}}catch(i){(0,_.Zr)("PH",{id:e,href:g},i)}}},_.k);
+(0,_.ga)("google.j.phf",function(a,b,c){if((0,_.Cs)(c))try{var d=b.tbs;d&&d.indexOf("ppl_id")>=0&&(b.tbs=d.replace(/\+/g," "));(0,_.Ks)("phf",[b,0]);if(window.document.getElementById("gbqf")){var e;window.gbar&&(e=window.gbar.qfhi)&&e(b)}else if(window.document.getElementById("tophf")){var d=[],f;for(f in b)d.push('<input type=hidden name="',f,'" value="',b[f],'">');(0,_.Ls)(a,"tophf",d.join(""),c,_.l)}}catch(g){(0,_.Zr)("PHF",{fields:b},g)}},_.k);
+(0,_.ga)("google.j.sa",function(a,b,c,d){if((0,_.Cs)(d))try{(0,_.Ks)("sa",[b,c,0]);var e=window.document.getElementById(b);(0,_.Vs)(e,c)}catch(f){(0,_.Zr)("SA",{id:b,elt:e,attbs:(0,_.If)(c)},f)}},_.k);(0,_.ga)("google.j.sl",_.vs,_.k);(0,_.ga)("google.j.slp",function(a,b,c){if((0,_.Cs)(c))try{(0,_.Ks)("slp",[b,0]);var d;window.gbar&&(d=window.gbar.slp)&&d(b)}catch(e){(0,_.Zr)("SLP",{id:b},e)}},_.k);(0,_.ga)("google.j.spf",_.Zs,_.k);(0,_.ga)("google.j.te",_.du,_.k);(0,_.ga)("google.j.ujs",_.ps,_.k);
+(0,_.ga)("google.j.xi",function(){if(window.google.y.first){for(var a=0,b;b=window.google.y.first[a];++a)b();window.google.y.first=[]}window.google.x=function(a,b){b&&b.apply(a);return _.A};window.google.pageState=_.$r;for(a=0;a<window.google.rein.length;a++)if(b=window.google.rein[a])try{b(_.$r=="#",_.At)}catch(c){(0,_.Zr)("INJS",{i:a+1},c)}_.lu=_.l},_.k);(0,_.ga)("google.j.xmi",_.A,_.k);
+(0,_.ga)("google.j.xx",function(a,b,c){if((0,_.Cs)(c))try{_.mu=_.l;(0,_.Ns)(_.Os);(0,_.Ls)(_.$r,"sdb","",window.google.j.ss);(0,_.Ls)(_.$r,(0,_.rs)(),b,window.google.j.ss)}catch(d){(0,_.Zr)("_xx",{},d)}},_.k);(0,_.ga)("google.j.zc",_.Tt,_.k);
+(0,_.ga)("google.j.zz",function(a,b,c){if((0,_.Cs)(b)){(0,_.Ks)("zz",[0,_.l,_.mu]);window.document.body.style.height="";c||window.google.timers&&window.google.timers.load.t&&(window.google.timers.load.t.prt=window.google.time());a=(0,_.Oe)(19,[_.$r],_.$r);a:{try{var d=(0,_.Ts)();d==_.p&&(d=_.Xt);if(d==_.p)break a;d=(0,_.Oe)(4,[d],d,_.p);if(d==_.p)break a;for(var b=0,e;e=_.Us[b++];)if(window.document[e]&&window.document[e].q.value!=d)window.document[e].q.value=d}catch(f){(0,_.Zr)("PQ",{},f)}(0,_.ws)()}c||
+window.google.timers&&window.google.timers.load.t&&(window.google.timers.load.t.pprt=window.google.time());c||(0,_.Kt)(a);_.ut=1;_.ds=window.google.j.ss;if(!_.mu&&!c&&window.google.timers&&window.google.timers.load.t){window.google.timers.load.t.ol=window.google.time();window.google.timers.load.t.jsrt=_.Bs;if(_.kt)try{++_.ks;var g=window.document.getElementsByTagName("img");_.js=g.length;_.ns=0;_.hs=_.A;for(var i=0,h;i<_.js;++i){h=g[i];(0,_.es)(h,_.ms);if(h.complete||typeof h.src!="string"||!h.src)++_.ns;
+else if(h.addEventListener){h.addEventListener("load",_.ms,_.A);h.addEventListener("error",_.ms,_.A)}else{h.attachEvent("onload",_.ms);h.attachEvent("onerror",_.ms)}}d="n";_.zt?d="r":_.At&&(d="c");window.google.timers.load.e={ei:window.google.kEI,e:window.google.kEXPI,cr:d,imp:_.js-_.ns};_.gu&&(window.google.timers.load.e.pf=1);var m=_.Ct.mm();if(m){d=function(a){var b=_.Wr.csiSlowMarker;return"n."+a[0]+",ttfc."+window.Math.round(a[1])+",ttlc."+window.Math.round(a[2])+",cbt."+window.Math.round(a[3])+
+(b?",slow."+b:"")};window.google.timers.load.e.pfa=d(m[0]);window.google.timers.load.e.pfm=d(m[1]);if(m.length>=3){for(g=e=d=0;g<m[2].length;++g){var n=m[2][g];n>e&&(e=n);d=d+n}d=window.Math.round(d/m[2].length);window.google.timers.load.e.pmd="max."+e+",avg."+d+","+m[2].join(",")}}_.ns==_.js&&(0,_.ms)(_.p,_.l)}catch(j){(0,_.Zr)("SCSI",{n:_.js,i:i,s:h?typeof h.src=="string"?h.src.substr(0,40):1:0,c:h?h.complete:0},j)}}if(!c)_.as.src="about:blank"}_.kt=_.mu=_.A;_.bs[_.cs]=0},_.k);!_.vca&&(0,_.ku)(window.google.j.cfg);
+
+(0,_.Bc)(_.O.$(),"sy37");(0,_.Fc)(_.O.$(),"sy37");
+}catch(e){_._DumpException(e)}
+try{
+(0,_.Ec)(_.O.$(),"j");
+(0,_.Bc)(_.O.$(),"j");(0,_.Fc)(_.O.$(),"j");
+}catch(e){_._DumpException(e)}
+try{
+_.AW=function(a,b){this.M=a;this.U=b;this.B={}};_.Coa=function(a){return{a:(0,_.ab)(a.WJ,a),b:(0,_.ab)(a.vI,a)}};(0,_.Ec)(_.O.$(),"sy69");_.AW.prototype.WJ=function(a,b){for(var c in this.B)if((0,_.Up)([c],b))return this.B[c];return this.U};_.AW.prototype.vI=function(a){this.M&&this.M(a)};
+(0,_.Bc)(_.O.$(),"sy69");(0,_.Fc)(_.O.$(),"sy69");
+}catch(e){_._DumpException(e)}
+try{
+_.IW=function(){_.ht=_.A;window.google.j.init=_.A};
+_.Xoa=function(a,b,c){_.JW&&(window.clearTimeout(_.JW),_.JW=_.p);var d=b,e={subform_ctrl:1,pocs:1,beta:-1};e.leftnav=_.KW?-0.768:-1;(0,_.Up)(["mbl"],c)||(e.rhs=-1);if((0,_.LW)()&&0!=d)var f=window.document.getElementById("gbqfw"),d=d-(window.document.getElementById("gbq").offsetHeight-f.offsetTop-f.offsetHeight);var f={},g;for(g in e)f[g]=e[g]*d;(0,_.MW)()&&(f.pocs=0);if(_.Pc.jv||_.Pc.Gx)e=15,(g=window.document.getElementById("hdtb"))&&(e+=g.offsetHeight),f.center_col=d<=e?0:d-e;(0,_.LW)()&&(f.center_col+=
+18);var d={},i;for(i in f)if(e=window.document.getElementById(i)){g=e.offsetTop;var h=f[i]+"px";d[i]=e.style.marginTop;if(e.style.marginTop!=h&&(e.style.marginTop=h,"leftnav"==i&&(e.style.minHeight=b+"px",0==b&&_.KW&&(e.style.marginTop="19px")),_.Pc.Gd&&!a&&d[i]!=e.style.marginTop&&g+f[i]!=e.offsetTop)){for(i in d)if(a=window.document.getElementById(i))a.style.marginTop=d[i];_.JW=(0,_.NW)((0,_.E)(_.l),function(){(0,_.Xoa)(_.l,b,c)},0);return}}(0,_.Oe)(52,[b])};
+_.Yoa=function(){(0,_.Dd)(window.document.getElementById("p_chrome"));(0,_.OW)(_.A);var a=window.document.getElementById("oPocsC");a&&(a.appendChild(window.document.getElementById("pocs")),(0,_.Dd)(window.document.getElementById("pocsC")))};_.PW=function(a,b){var c=window.document.createElement("input");c.type="hidden";c.name=a;c.value=b;var d=(0,_.QW)();d&&d.appendChild(c)};
+_.RW=function(a,b,c,d){return(a=b.match("[&?#]"+a+"=([^&#]*)"))&&a[1]!=_.k?(c=(0,window.decodeURIComponent)(c?a[1].replace(/\+/g," "):a[1]),d?c.toLowerCase():c):_.p};_.SW=function(a,b){if(a()){var c=_.Dp.Tu();(0,_.Oe)(41,[c])&&(0,_.Xoa)(_.A,c,b)}};
+_.TW=function(a){if(!a||"#"==a)return"";a=(0,_.UW)(a);a.orq&&(a.q=a.orq,a.ortbs?a.tbs=a.ortbs:delete a.tbs);var b=[],c;for(c in _.Zoa){var d=_.Zoa[c],e=a[c];"q"==c&&e&&(e=(0,window.decodeURIComponent)(e.replace(/\+/g,"%20")),e=_.VW?e.replace(_.VW,""):e,e=e.replace(/( |\u3000)+/g," "),e=(0,window.encodeURIComponent)(e.toLowerCase()));e===_.k&&d!=_.p&&(e=d);e!==_.k&&b.push(c+"="+e)}b.sort();return"#"+b.join("&")};
+_.WW=function(a){if(!a)return a;var b=(0,_.UW)((0,_.XW)()),c;for(c in b)_.$oa[c]&&(a=(0,_.Fp)(c,a,b[c]));return a};_.apa=function(){var a=_.Dp.Fb();return a?_.P.xv(a):_.p};_.YW=function(){var a;a=window.google.j.h5h?window.google.j.h5s():(a=window.google.j.gjh())?a.substr(a.indexOf("#")):"";return(0,_.ZW)(a)};_.UW=function(a){if(!a)return{};for(var a=a.substr(window.Math.max(a.indexOf("?"),a.indexOf("#"))+1).split("&"),b={},c=0;c<a.length;++c){var d=a[c];d&&(d=d.split("="),b[d[0]]=d[1]||"")}return b};
+_.XW=function(){return window.location.search||""};_.$W=function(a){return!a?"":(0,_.RW)("q",a,_.l,_.l)||""};_.ZW=function(a){if(a&&"#"!=a)return a;a=(0,_.XW)();return(0,_.aX)()&&a?window.google.j.h5h?window.google.j.h5s():"#"+a.substr(1):""};_.bX=function(a){return!!a&&(0,_.Up)(["isch"],a)};_.bpa=function(a,b){return 0==a.indexOf("search")||0==a.indexOf("main")&&(0,_.aX)()&&!(0,_.$W)(b)};_.cX=function(){_.Dp.nv()};
+_.aX=function(){var a=window.document.getElementById(_.dX);return!!a&&((0,_.lf)(a,"jsrp")||(0,_.lf)(a,"gbqfr"))};_.MW=function(){return _.Pc.Vy||_.Pc.Mz};_.LW=function(){return!!window.document.getElementById("gbqfw")};
+_.cpa=function(){if((window.performance&&window.performance.navigation?2==window.performance.navigation.type:"1"==window.google._bfr)&&!_.dpa)_.dpa=_.l;else{var a=window.document.getElementById("lpu");a?a.innerHTML="":(a=window.document.createElement("div"),a.id="lpu",(0,_.Ae)(a));for(var b=0;b<_.eX.length;++b){var c=(0,_.Be)("link");c.rel=_.epa?"prerender":"prefetch";c.href=_.eX[b];c.dataset&&(c.dataset.IT=window.google.time());a.appendChild(c)}}};
+_.fpa=function(){var a=window.document.gs||window.document.f||window.document.gbqf,b=a.q.value;(0,_.NW)(function(){return b==a.q.value},function(){_.Dp.Wt();a.q.focus()},0)};_.gpa=function(){_.eX&&_.eX.length&&("complete"==window.document.readyState?(0,_.cpa)():(0,_.Je)(window,"load",_.cpa))};
+_.hpa=function(a,b){if(!b)return _.l;var c=(0,_.ipa)(b),d=window.document.getElementById("lpu");if(d)for(var e=d.childNodes.length-1;0<=e;--e){var f=d.childNodes[e],g=f.dataset?f.dataset.IT:-1;((0,_.ipa)(f.href)!=c||3E4<window.google.time()-g)&&(0,_.Dd)(f)}return _.l};_.ipa=function(a){if(!a)return _.p;var b=window.location;return 0==a.indexOf("/url?")||0==a.indexOf("//"+b.host+"/url?")||0==a.indexOf(b.protocol+"//"+b.host+"/url?")?(0,_.RW)("url",a):a};
+_.OW=function(a){var b=window.document.getElementById("mgmhppd")||window.document.getElementById("pushdown"),c=window.document.getElementById(_.dX),d=b&&""==b.style.display;if("webhp"==window.google.sn||"mobilewebhp"==window.google.sn)window.google.sn="web",d&&c&&(c.style.top=c.offsetTop-b.offsetHeight+"px",b.style.display="none");var e=(0,_.Ee)(".tsf-p",c);e&&(0,_.nf)(e,"tsf-hp");for(var b=b&&d?b.offsetHeight:0,f=_.fX+b,b=_.gX+b,d="als cpf cpBackgroundImg cpFooter footer hplogo prm prt ssleh swml".split(" "),
+e=0,g;g=d[e++];)(0,_.hX)(g,_.A);(0,_.iX)(".jsb",_.A);c&&((_.jX&&(0,_.nf)(c,"jhp"),(0,_.LW)())?((0,_.Oe)(67),(0,_.jpa)(_.A),(0,_.kX)()):(d=c.offsetTop,d==b||!a&&d!=f)?((0,_.Oe)(67),!window.document.gs&&!window.document.gbqf&&(window.document.f.name="gs"),e=(b=(0,_.Ee)("table.gssb_c"))?(0,_.ne)(b):0,g=e-(d-f),a)?(a=[[c,"top",d,f,_.Kg]],b&&!(0,_.MW)()&&a.push([b,"top",e,g,_.Kg]),(0,_.Lg)(_.kpa,a,function(){(0,_.lpa)(f)})):(c.style.top=f+"px",b&&!(0,_.MW)()&&(b.style.top=g+"px"),(0,_.lpa)(f)):(0,_.kX)())};
+_.lpa=function(a){(0,_.kX)();(0,_.Oe)(58);window.scrollY>a&&window.scroll(0,a);_.Dp&&_.Dp.Bl()};_.mpa=function(a){return!!a&&(100<a.length||_.npa.test(a))};_.lX=function(a,b,c){return b.replace((0,window.RegExp)("([#?&]"+a+"=)[^&#]*"),"$1"+(c?(0,window.encodeURIComponent)(c):""))};_.opa=function(a){for(var b=window.document.gs||window.document.f||window.document.gbqf,c=0,d;d=a[c++];)(0,_.Dd)(b[d])};_.ppa=function(){(0,_.opa)(["prmdo","tbo","tbm","tbs"])};
+_.qpa=function(){(0,_.Yoa)();window.google.sn=(0,_.MW)()?"mobilewebhp":"webhp";var a=window.document.getElementById(_.dX);if(a){_.jX&&(0,_.mf)(a,"jhp");if((0,_.LW)())(0,_.jpa)(_.l);else{var b=window.document.getElementById("mgmhppd")||window.document.getElementById("pushdown");a.style.top=_.gX+(b&&""==b.style.display?b.offsetHeight:0)+"px"}(a=(0,_.Ee)(".tsf-p",a))&&(0,_.mf)(a,"tsf-hp")}(0,_.iX)(".jsb",_.l);(0,_.iX)(".nojsb",_.A);(0,_.rpa)(".nojsv",_.A);_.Dp.Wt();_.Dp.Ri("#")};
+_.mX=function(a,b){var c=window.document.getElementById(a);c&&(c.style.display=b?"":"none")};_.hX=function(a,b){var c=window.document.getElementById(a);c&&(c.style.visibility=b?"visible":"hidden")};_.jpa=function(a){a?window.gbar.gpca&&window.gbar.gpca():window.gbar.gpcr&&window.gbar.gpcr()};_.iX=function(a,b){(0,_.spa)(a,"display",b?"block":"none")};_.rpa=function(a,b){(0,_.spa)(a,"visibility",b?"visible":"hidden")};
+_.spa=function(a,b,c){for(var a=(0,_.De)(a,window.document.getElementById(_.dX)),d=0,e;e=a[d++];)e.style[b]=c};_.kX=function(){(0,_.iX)(".jsb",_.A);(0,_.iX)(".nojsb",_.l);(0,_.rpa)(".nojsv",_.l)};
+_.tpa=function(){(0,_.mX)("po-on-message",_.A);(0,_.mX)("po-off-message",_.A);(0,_.mX)("po-off-sc-message",_.l);(0,_.mX)("po-sc-lm",_.l);var a=window.document.getElementById("po-on");(0,_.nf)(a,"po-selected");(0,_.mf)(a,"po-unselected");a=window.document.getElementById("po-off");(0,_.nf)(a,"po-unselected");(0,_.mf)(a,"po-selected")};_.NW=function(a,b,c){return window.setTimeout(function(){a()&&b()},c)};
+_.nX=function(){var a=(0,_.QW)();if(a)if(_.upa&&!_.vpa&&((0,_.PW)("pbx","1"),_.vpa=_.l),_.oX)_.pX||((0,_.PW)("psj","1"),_.pX=_.l);else if(_.pX){var b=a.psj;b&&(a.removeChild(b),_.pX=_.A)}};_.QW=function(){return window.gbar&&window.gbar.qfgf&&window.gbar.qfgf()||window.document.getElementById("tsf")};_.wpa=function(){var a=window.document.getElementById("rcnt");(0,_.Fe)(a,"opacity","","webkitTransform","","webkitTransition","");(0,_.Ke)(a,"webkitTransitionEnd",_.wpa)};
+_.xpa=function(){this.M={RR:new _.qX(2,0,1,2),zR:new _.qX(2,0,2,2),aS:new _.qX(2,0,3,2),JR:new _.qX(2,0,6,2),jG:new _.qX(0,100,5),slowConnection:new _.qX(1,50,0)};var a=window.document.getElementById("pocs");this.B={Bg:a,tR:a?a.getElementsByTagName("div"):[]};this.ha=this.U=_.p};_.rX=function(a){var b=_.p,c;for(c in a.M){var d=a.M[c];if(d.M&&(!b||d.Ye>b.Ye))b=d}return b};
+_.sX=function(a,b,c){var d=(0,_.rX)(a);b.M=_.l;b.U||(b.B=c);b=(0,_.rX)(a);a.U&&a.U.finish();if(a.B.Bg){for(var c=a.B.Bg.id+b.oa,e=0,f;f=a.B.tR[e++];)f.style.display=f.id==c?"":"none";a.B.Bg.className=2==b.B?"sft":"";(0,_.hX)("subform_ctrl",_.A);(0,_.hX)("sbfrm_l",_.A);(0,_.mX)("sflinks",_.A);b!=d&&window.google.log("1",["1&rsm=",b.ha].join(""),"",a.B.Bg);(0,_.ypa)(a);a.B.Bg.style.display=""}};
+_.ypa=function(a){if(a.B.Bg){var b=_.Dp.Tu();if(_.tX)(0,_.ff)()?a.B.Bg.style.right="120px":a.B.Bg.style.left="120px",a.B.Bg.style.top=b+"px";else if((0,_.LW)()){if((0,_.LW)()&&(a.B.Bg.style.zIndex=986,!a.B.Bg.parentNode.style.top)){var c=(0,_.QW)(),d=(0,_.ne)(c)+(0,_.hf)(c),e=(0,_.me)(c);(0,_.ff)()?(c=(0,_.jf)(window.document.body)-(e+(0,_.jf)(c)),a.B.Bg.style.right=c+"px"):a.B.Bg.style.left=e+"px";a.B.Bg.style.top=d+b+"px"}}else(0,_.MW)()||(a.B.Bg.style.marginTop=b+"px")}};
+_.uX=function(a,b,c){b.M=_.A;if(b=(0,_.rX)(a))(0,_.sX)(a,b,b.B);else{for(var d in a.M)a.M[d].M=_.A;a.B.Bg&&(a.B.Bg.style.display="none");c&&((0,_.hX)("subform_ctrl",_.l),(0,_.hX)("sbfrm_l",_.l));"webhp"==window.google.sn&&(0,_.mX)("sflinks",_.l);a.U&&a.U.finish()}};
+_.vX=function(a,b,c){a.ha&&(window.clearTimeout(a.ha),a.ha=_.p);(0,_.sX)(a,b,1);a.ha=(0,_.NW)(function(){return b==(0,_.rX)(c)},function(){var a=(0,_.rX)(c);if(c.Qb()&&a&&!(a.U||a.B==2)){var e=c.B.Bg;c.U&&c.U.finish();c.U=(0,_.Lg)(150,[[e,"backgroundColor","#fff1a8","#ffffff"]],function(){e.style.backgroundColor=""});e.className="sft";a.B=2}b.U=_.l;b.B=2},1E4)};_.qX=function(a,b,c,d){this.M=_.A;this.oa=a;this.Ye=b;this.ha=c;this.U=!!d;this.B=d||_.p};_.wX=function(){(0,_.zpa)();(0,_.Dd)(window.document.getElementById("knavm"))};
+_.Apa=function(a,b,c){if(("A"==b.nodeName||(0,_.Ee)("a",b))&&(!c||c(b))&&!(0,_.lf)(b,"noknav"))(0,_.mf)(b,"knavi"),a.push(b)};_.xX=function(a){if(a)for(;(a=a.parentNode)&&!(0,_.lf)(a,"knavi"););return a};_.zpa=function(){var a=(0,_.xX)(window.document.getElementById("knavm"));a&&(0,_.nf)((0,_.Ee)("a.noline",a),"noline")};
+_.yX=function(a,b){var c=window.document.getElementById("center_col");if(!c||!(0,_.lf)(c.parentNode,"fade")){for(var d=[],c=window.document.getElementById("topstuff"),e=window.document.getElementById("rtr"),c=[["li.ta\\w",window.document.getElementById("tadsto")],["li.ta\\w",window.document.getElementById("tads")],["p.ssp",c],["div.e",c],["li.(g|ta\\w|bkgi)",window.document.getElementById("res"),function(a){return!(0,_.Ge)(a,e,4)}],["li.ta\\w",window.document.getElementById("tadsb")],["a.pn",window.document.getElementById("nav")],
+["li",window.document.getElementById("rhs_block")]],f=0,g;g=c[f++];)if(g[1])for(var i=(0,_.De)(g[0],g[1]),h=0,m;m=i[h++];){(0,_.Apa)(d,m,g[2]);m=(0,_.De)("div."+("lclbox"==m.id?"intrlu":"sld"),m);for(var n=0,j;j=m[n++];)(0,_.Apa)(d,j)}g=d.length;c=(0,_.xX)((0,_.Td)(window.document))||(0,_.xX)(window.document.getElementById("knavm"));i=0;h=a?1:-1;if(c)for(m=0;f=d[m];++m)if(f==c){i=m+h;break}for(;0<=i&&i<g&&0>=d[i].offsetHeight;)i+=h;if(0<=i&&i<g){d=f=d[i];(0,_.zpa)();g=window.document.getElementById("knavm");
+g||(g=(0,_.ff)()?"&#9668;":"&#9658;",g=(0,_.Be)("span",g),g.id="knavm",g.title=_.zX.kntt||"");d.style.position||(d.style.position="relative");d.appendChild(g);g.style.paddingTop=(0,_.gf)(d,"padding-top",_.l);if(b&&(g=window.document.body.scrollTop||window.document.documentElement.scrollTop,i=window.document.documentElement.clientHeight,h=(0,_.ne)(d),m=d.offsetHeight,n=h+m>g+i,h<g||n))i=window.Math.min(h,h-(i-m)/2),window.scrollBy(0,i-g);g=d;"A"!=g.nodeName&&(g=(0,_.De)("a.l",d),g=1==g.length?g[0]:
+(0,_.Ee)("a",d));(0,_.mf)(g,"noline");try{g.focus()}catch(q){}c&&(0,_.Oe)(35,[f])}}};_.AX=function(a,b){return!a&&!b?_.l:!!a&&!!b&&a.toLowerCase()==b.toLowerCase()};_.BX=function(a,b,c){c&&(a=a.toLowerCase(),b=b.toLowerCase());return b.length<=a.length&&a.substring(0,b.length)==b};_.CX=function(a){return a.replace(/^[\s\u3000]+|[\s\u3000]+$/g,"").replace(/[\s\u3000]+/g," ")};
+_.Bpa=function(a){if(!/[\uFF00-\uFF5F\u3000]/.test(a))return a;for(var b=[],c=0,d;d=a[c++];){var e=d.charCodeAt(0);65280<=e&&65375>e?b.push(window.String.fromCharCode(e-65248)):12288==e?b.push(" "):b.push(d)}return b.join("")};_.DX=function(){this.Bg=new _.xpa;this.Ag=new _.Cpa;this.results=new _.EX(this.Ag);this.ha=new _.FX;this.M=_.l;this.U=0;this.B=_.p;this.ra=this.oa=_.A};_.Dpa=function(a){return!a?"Google":a+" - "+(_.zX.gs||"Google Search")};
+_.GX=function(a){var b=a.lastIndexOf(" ");return-1!=b?a.substr(0,b):a};_.HX=function(){return!!(_.IX.results.B&&"#"!=_.IX.results.B||_.IX.results.M)&&!_.tX};_.Epa=function(a){a.results.clear();_.Dp.Wt();(0,_.qpa)();_.IX.isEnabled()||(0,_.fpa)();window.google.j.go("#");(a=(0,_.YW)())&&"#"!=a&&(0,_.Pe)("#");window.document.title=(0,_.Dpa)("");_.Fpa&&_.Dp.focus()};
+_.Gpa=function(a){a.oa||(a.oa=_.l,window.google.tick("session","kpr"),(a=window.performance)&&a.timing&&window.google.tick("session","bpl",a.timing.navigationStart))};_.JX=function(a,b,c){(0,_.Gpa)(a);!(window.google.sn in _.KX)||(0,_.OW)(_.l);b||a.clear();c?(0,_.LX)(a.results,b):a.results.zr=0};
+_.MX=function(a,b){var c=!(b&&"#"!=b&&_.NX&&(0,_.Up)(_.NX,b)),d=(0,_.OX)(b),e=!_.PX,d=d&&e&&!_.QX;(c=c&&!d)&&!a.M?(_.Ne.apply(_.p,_.RX),_.Le.apply(_.p,_.SX),a.M=_.l,(0,_.TX)(a.results,b||"#"),_.oX=_.A,(0,_.nX)(),_.Dp.Rb(),(0,_.Oe)(62,[_.l])):!c&&a.M&&((0,_.UX)(a),_.Dp.Rb());(0,_.mX)("po-bar",c||(0,_.OX)(b));(0,_.uX)(a.Bg,a.Bg.M.slowConnection,!!_.IX.results.B)};
+_.UX=function(a){_.Ne.apply(_.p,_.SX);_.Le.apply(_.p,_.RX);a.M=_.A;a.clear();a=a.results;_.VX?((0,_.WX)(a,_.l),(0,_.XX)(a,"flyr-c")):(0,_.YX)(a,"");(0,_.Oe)(37,[_.A]);(0,_.Oe)(62,[_.A])};
+_.OX=function(a){if(_.ZX&&((0,_.MW)()||(0,_.bX)(a)))return _.A;var b=(0,_.bX)(a);!a&&_.IX&&(b=!!_.IX.results.M&&(0,_.Up)(["isch"],_.IX.results.M));var c,d,e=!_.Hpa&&!_.tX,f="web-psy-sc",g="web-psy-stp";try{if(!window.localStorage)return _.A;c=window.localStorage.getItem(f);b&&!c&&(f="img-psy-sc",g="img-psy-stp",c=window.localStorage.getItem(f));d=window.localStorage.getItem(g)}catch(i){}if(!c)return(0,_.Ipa)(a);"string"==typeof c.value&&(c=c.value,d=d?d.value:_.p);b=(0,window.parseInt)(c,10);c=window.google.time();
+if(0<b&&c-b<_.Jpa)return e;if(0<b&&d&&(d=(0,window.parseInt)(d,10),d+1<_.Kpa))return window.localStorage[g]=d+1+"",window.localStorage[f]=window.google.time()+"",e;window.google.log("psjoff","");try{window.localStorage.removeItem(f),window.localStorage.removeItem(g)}catch(h){}return(0,_.Ipa)(a)};_.Ipa=function(a){a=(0,_.bX)(a);try{if(!window.localStorage)return _.A}catch(b){return _.A}return!a||!_.$X?_.A:(0,_.Lpa)()<=_.Mpa};
+_.Lpa=function(){var a=0;try{a=window.localStorage.getItem("img-psy-gs")}catch(b){}a&&"string"==typeof a.value&&(a=a.value);return a||0};_.Npa=function(a){if(_.$X&&!a.ra){var b=(0,_.Lpa)()+1;try{window.localStorage["img-psy-gs"]=b+""}catch(c){}a.ra=_.l}};_.Opa=function(a,b){if(!b||!(-1!=b.indexOf("/complete/search?")&&_.aY&&a.Ag.ev===_.k)){var c=_.IX;6<++a.U?(0,_.vX)(c.Bg,c.Bg.M.jG,c.Bg):a.B||(a.B=(0,_.NW)(function(){return 0<c.U},function(){(0,_.vX)(c.Bg,c.Bg.M.jG,c.Bg)},4E3))}};
+_.Ppa=function(){var a=!!_.IX.results.M&&(0,_.Up)(["isch"],_.IX.results.M),b=a?"img-psy-sc":"web-psy-sc",a=a?"img-psy-stp":"web-psy-stp";try{window.localStorage&&(window.localStorage[b]=window.google.time()+"",window.localStorage[a]="0",window.localStorage.removeItem("img-psy-gs"))}catch(c){}};
+_.EX=function(a){this.M=this.B=_.p;this.zr=0;this.xa="";this.od=this.oa=this.ha=0;this.Ta="1";this.Fa=this.fb=this.Sa=this.Ea=_.p;this.U=a;this.xb=this.Oa=this.ra=_.p;this.Ee=(0,_.bY)();this.Jc=_.A;this.Vb=!(0,_.bY)()};_.cY=function(a,b){return 1!=a.zr&&0!=a.oa?_.A:a.M==_.p||(0,_.dY)(a,(0,_.TW)(b),a.M)};_.Qpa=function(a,b,c){if(1!=a.zr){var d=a.M;c?0==a.zr&&((0,_.eY)(a,b),b=(0,_.dY)(a,a.M,d),d=(0,_.dY)(a,a.M,(0,_.TW)(a.B)),b&&d&&_.Dp.vv()):(b=a.U.YH)&&0==a.U.length&&(0,_.LX)(a,b);(0,_.fY)(a);return c}return _.A};
+_.Rpa=function(a,b,c){return 1!=a.zr?(a.U.setSuggestions(b),(0,_.Qpa)(a,a.U.ye(),c)):_.A};_.gY=function(a){1!=a.zr&&a.M==_.p&&(a.M="")};_.Spa=function(a,b){a.U.ev&&a.U.ev.Mb();a.Ta=(0,_.RW)("fp",b)||"1";(0,_.OW)(_.A);a.B=(0,_.Tpa)(a,b);a.U.ev===_.k&&(0,_.$W)(a.B);0!=a.zr||_.Dp.vv();var c=1==a.zr;a.ha=c?2:0;(0,_.Upa)(a);c&&(0,_.hY)(a);(0,_.Oe)(37,[_.A])};
+_.Tpa=function(a,b){var c=_.Dp.Ma();if(/[A-Z]/.test(c)){var d=(0,_.$W)(b);if((0,_.BX)(d,c,_.l))return c=(0,_.lX)("q",b,c+d.substr(c.length)),-1==b.indexOf("%20")&&-1!=c.indexOf("%20")&&(c=c.replace(/%20/g,"+")),c}return b};_.Vpa=function(a,b){if(!a.B)return!b||"#"==b;var c=window.google.j.ckc(a.B.substr(1)),d=window.google.j.ckc(b.substr(1));return c==d};_.eY=function(a,b){a.U.eG&&(b=(0,_.GX)(b));a.zr=0;if((0,_.iY)(a,(0,_.jY)(a,b))){var c=(0,_.jY)(a,b);_.kY.xa(c)&&_.kY.Pd(c);return _.l}return _.A};
+_.TX=function(a,b,c){a.zr=1;var d;a.ra&&(0,_.cY)(a,b)?((0,_.Pe)(a.ra),d=_.l):d=_.A;if(d)return _.A;(0,_.SW)(_.HX,(0,_.lY)(_.IX.results));c=(0,_.iY)(a,b,c);!c&&2!=a.ha&&((0,_.mY)(a,3),a.ha=2,(0,_.hY)(a),(0,_.fY)(a));_.Dp.Ri(b);_.Wpa&&(a=(0,_.$W)(b))&&_.Dp.uj(a);(0,_.Oe)(80,[b]);return c};
+_.LX=function(a,b,c){a.zr=2;if((0,_.iY)(a,(0,_.jY)(a,b))){b=(0,_.jY)(a,b);if(!b)return _.A;if(_.kY.xa(b))_.kY.Pd(b);else{var d=a.M;if(d){var e=(0,_.jY)(a,(0,_.$W)(d)),a=c?0:300,f=c||a;(0,_.NW)(function(){var a=_.IX.results,b=(0,_.dY)(a,a.M,d),c=!(0,_.dY)(a,d,(0,_.TW)(a.B)),a=2==a.zr;return b&&c&&a},function(){(0,_.Xpa)(_.IX.results,e,f)},a)}}return _.l}return _.A};
+_.Ypa=function(a){window.google.j.clr();_.VX?((0,_.WX)(a,_.l),(0,_.XX)(a,"flyr-c")):(0,_.YX)(a,"");(0,_.WX)(a,_.A);(0,_.aX)()&&(0,_.nY)(a,_.A)};_.oY=function(a){a.fb!=_.p&&(window.clearTimeout(a.fb),a.fb=_.p)};_.Zpa=function(a,b){a.Fa!=_.p&&(a.Fa=_.p,b&&b(a.M));(0,_.Dd)((0,_.Ee)("#wflyr"))};_.pY=function(a){return 2!=a.ha?(a.ha=2,(0,_.hY)(a),_.l):_.A};
+_.fY=function(a){if(!_.ZX){var b=a.U,c=(0,_.$W)(a.B),d=_.Dp.Ma(),e=c==(0,_.GX)(d.replace(/ +$/,"")),f=b.eG&&e,g=(0,_.$W)(a.M);if(!(d==g&&d!=c&&e)){var e=_.qY&&b.BF,i;if(!(i=f))f=_.Dp.Ma(),f=(0,_.CX)(f),f=f.replace(_.$pa,""),f=(0,_.Bpa)(f),g=b.ye(),!_.rY&&(!_.sY&&b.BF)&&(g=b.YH),g=(0,_.CX)(g),g=g.replace(_.$pa,""),g=(0,_.Bpa)(g),(0,_.AX)(g,f)?f=_.A:(i=b.ev&&b.ev.getId()||"",f=/[sxl]/.test(i)&&-1==i.indexOf("d")||/[grm]/.test(b.ev&&b.ev.getId()||"")?_.l:!(0,_.BX)(g,f,_.l)),i=f||b.IG;var b=a.B,f=c,g=
+d,c=_.zX,d=_.aqa,a=1!=a.zr,h=window.document.getElementById("msg_box"),m=_.A;if(i&&!e&&f&&!(0,_.AX)(f,g)||d&&a)if((e=window.document.getElementById("topstuff"))&&"hidden"!=e.style.visibility){e=e.getElementsByTagName("p");i=0;for(var n;n=e[i];++i)if(/\bsp_cnt\b/.test(n.className)||/\bssp\b/.test(n.className)){m=_.l;break}}else m=_.l;else m=_.l;if(m)h&&(h.style.display="none");else if(e=g,g=(0,_.of)(g),f=(0,_.of)(f),(0,_.CX)(g),(g=_.Dp.Le())&&(f=g.replace(_.bqa,"<b><i>$1</i></b>")),i=b,b=window.document.getElementById("msg_box"),
+g=(0,_.of)(e),b?(c=window.document.getElementById("msg_box_entered"),c.innerHTML=g,c.href=c.href.replace(_.cqa,"$1"+(0,window.encodeURIComponent)(e)),window.document.getElementById("msg_box_rendered").innerHTML=f,b.style.display="block"):i&&(i=(0,_.TW)(i).replace(/^#/,"/search?"),i=(0,_.WW)(i),h=i+"&spell=1",e=i.replace(_.cqa,"$1"+(0,window.encodeURIComponent)(e)+"&nfpr=1&ei="+window.google.kEI+"&sqi=2"),b=(0,_.Be)("div"),b.id="msg_box",b.innerHTML=['<p style="margin-top:0"><span class="spell">',
+c.srf,' </span><a href="',h,'" class="spell" id="msg_box_rendered" onclick="return google.psy.h(event)">',f,'</a><br><span class="spell_orig">',c.sif,' </span><a href="',e,'" class="spell_orig" id="msg_box_entered" onclick="return google.psy.r(event)">',g,"</a><br></p>"].join(""),c=window.document.getElementById("topstuff"),c.firstChild?(0,_.Bd)(b,c.firstChild):c.appendChild(b)),d){d=window.document.getElementById("msg_box_entered");d=[d,d.previousSibling,d.nextSibling];for(c=0;c<d.length;++c)d[c]&&
+(d[c].style.display=a?"none":"")}}}};_.lY=function(a){return(a=a.B)?a.replace(/^.*\?/,""):"#"};_.tY=function(a,b){var c=(0,_.RW)("fp",b);c&&("1"!=a.Ta&&a.Ta!=c)&&(b=(0,_.lX)("fp",b,a.Ta));return b};_.dqa=function(a,b,c){a=(0,_.YW)();""!=a&&(a=a.substring(1));b&&"#"==b.charAt(0)&&(b=b.substring(1));a=window.google.j.ckc(a,c);b=window.google.j.ckc(b,c);return a==b};_.uY=function(a,b){return(0,_.dqa)(a,b,{fp:1})};
+_.dY=function(a,b,c){return(0,window.decodeURIComponent)(b||"")==(0,window.decodeURIComponent)(c||"")};
+_.iY=function(a,b,c){a.M=(0,_.TW)(b);if(1==a.zr||2!=a.oa)a.oa=0;a.od=0;if(!(0,_.it)(a.M))return _.A;var d=(0,_.TW)(a.B);if((0,_.dY)(a,d,a.M))return(0,_.Upa)(a),!_.kY.xa(b)||!!c;a.ra=_.p;a.Oa=_.p;(0,_.vY)(a);(0,_.oY)(a);var e=a.B;e&&(0!=a.zr?(0,_.eqa)(_.IX.results):a.fb=(0,_.NW)(function(){var a=_.IX.results;return e==a.B&&!(0,_.dY)(a,a.M,(0,_.TW)(e))},function(){(0,_.eqa)(_.IX.results)},_.fqa));1!=a.zr&&(0<_.wY&&(0,_.gqa)(a,b,_.wY),(0,_.Oe)(46,[(0,_.$W)(a.M)]));return _.l};
+_.mY=function(a,b,c){var d=_.IX.results,e=d.B;e&&-1!=e.indexOf("&pf=")&&(a=(0,_.$W)(a.B),(0,_.Oe)(47,[b,a]),0<=e.indexOf("&pf=k")&&(b=10),b=["1&sqi=",b,"&q=",(0,window.encodeURIComponent)(a)],d.Oa&&b.push("&pjf="+d.Oa),c&&("&"!=c.charAt(0)&&b.push("&"),b.push(c)),b.push("&"+_.Dp.Ke(_.P.yv,10)),_.Dp.Xb(),window.google.log("1",b.join("")))};_.WX=function(a,b){(0,_.hX)("center_col",b);b&&(0,_.mX)("er",_.A);(0,_.hX)("subform_ctrl",b)};
+_.YX=function(a,b){var c=window.document.getElementById("center_col");c&&(c.parentNode.className!=b&&(c.parentNode.className=b),b||(0,_.WX)(a,_.l))};_.XX=function(a,b,c,d){a=window.document.getElementById(c||"flyr");if(!a&&"flyr-c"!=b&&(d=window.document.getElementById(d||"rcnt")))a=window.document.createElement("div"),a.id=c||"flyr",d.parentNode.appendChild(a);a&&(a.className=b)};_.Upa=function(a){_.VX?((0,_.WX)(a,_.l),(0,_.XX)(a,"flyr-c")):(0,_.YX)(a,"");0==a.ha&&(0,_.hqa)(a);(0,_.oY)(a)};
+_.eqa=function(a){_.ZX||((0,_.xY)(a),(0,_.oY)(a),(0,_.Oe)(44,[a.B,a.M])&&(_.VX?(0,_.iqa)(a):(0,_.YX)(a,(0,_.yY)(a)?"fade fade-hidden":"fade"),(0,_.wX)()))};_.iqa=function(a,b,c,d){var e=window.document.getElementById(d||"rcnt");if(e&&(b?(0,_.XX)(a,b,c,d):(0,_.XX)(a,(0,_.yY)(a)?"flyr-h":"flyr-o"),a=window.document.getElementById(c||"flyr")))a.style.cssText=["width:",e.offsetWidth,"px;height:",e.offsetHeight,"px;top:",e.offsetTop,"px"].join("")};
+_.hY=function(a){if(a.B&&"#"!=a.B){var b=(0,_.Dpa)((0,_.$W)(a.B));window.document.title!=b&&(window.document.title=b);window.setTimeout(function(){(0,_.uY)(_.IX.results,(0,_.lY)(_.IX.results))&&(0,_.gpa)()},0);if((0,_.uY)(a,a.B)){if(!(0,_.dqa)(a,a.B,{}))return window.google.j.ujs(window.location,a.B,_.l),_.l}else return b=a.Ee&&a.Jc&&!(0,_.YW)(),window.google.j.ujs(window.location,a.B,!!b),_.l}return _.A};
+_.jqa=function(a){(0,_.hY)(a)&&(_.Pc.hx&&7>(0,window.parseInt)(_.Qc,10)&&window.history.pushState)&&window.history.pushState({},window.document.title)};
+_.hqa=function(a){a.Ea!=_.p&&(0,_.xY)(a);var b=a.B,c;if(c=b)c=(0,_.yY)(a),c==_.k?c=_.A:(a.xb&&(0,_.Ke)(window.document,"webkitvisibilitychange",a.xb),a.xb=function(){var a=_.IX.results;(0,_.yY)(a)||(a.Vb=_.l);a.B==b&&((0,_.yY)(a)?(0,_.xY)(a):(0,_.hqa)(a));(0,_.yY)(a)==_.A&&(0,_.cY)(a,(0,_.lY)(a))&&(0,_.nY)(a,_.l)},(0,_.Je)(window.document,"webkitvisibilitychange",a.xb)),c=!c;c&&(a.Ea=(0,_.NW)(function(){var a=_.IX.results;return b==a.B&&0==a.ha},function(){var a=_.IX.results;(0,_.hY)(a);if(!(0,_.MW)()&&
+-1<a.B.indexOf("&pf=")){var b=window.document.getElementById("msg_box");(0,_.mY)(a,1,b&&"none"!=b.style.display?"&p_fprl=1":"")}a.ha=1},3E3))};_.zY=function(a){a.Sa&&(window.clearTimeout(a.Sa),a.Sa=_.p)};
+_.gqa=function(a,b,c){if(!(a.Sa!=_.p||_.ZX||_.IX.Ag.B)){var d=(0,_.TW)(b);if(b&&(0,_.$W)(b)){"#"==b[0]&&(b="/search?"+b.substr(1));var e=(0,_.tY)(a,b);a.Sa=(0,_.NW)(function(){var a=_.IX.results,b=(0,_.dY)(a,d,a.M),c=!(0,_.dY)(a,(0,_.TW)(e),(0,_.TW)(a.B)),h=0==a.oa,a=!a.Fa;return b&&c&&h&&a&&!(0,_.mpa)((0,_.$W)(d))},function(){(0,_.Oe)(61,[e])&&(0,_.Xpa)(_.IX.results,e,c)},c)}}};
+_.jY=function(a,b){(0,_.zs)(a.U.bm(),_.A,_.A,_.l);var c=window.google.jesrstate;if(!c)return"";c=(0,_.lX)("q",c,b);c=(0,_.WW)(c);return(0,_.tY)(a,"/search?"+c.substr(1))};_.vY=function(a){(0,_.zY)(a);(0,_.xY)(a);(0,_.oY)(a)};_.xY=function(a){a.Ea&&(window.clearTimeout(a.Ea),a.Ea=_.p)};
+_.Xpa=function(a,b,c){if(a=_.Dp.Ok("gs_ssp")){var d=b,b=d.indexOf("?"),e=d.indexOf("#"),f=-1<b?(0,_.UW)(-1<e?d.substr(0,e):d):{},b=-1<b?d.substr(0,b+1):d+"?",e=-1<e?d.substr(e):"";a===_.p?delete f.gs_ssp:f.gs_ssp=a?(0,window.encodeURIComponent)(a):"";var a=[],g;for(g in f)a.push(g+"="+f[g]);b=[b,a.join("&"),e].join("")}_.kY.Pd(b+"&pf="+(_.ZX?"i":"p")+"&pdl="+c)};_.bY=function(){return window.document.webkitHidden};_.yY=function(a){return!("webkitVisibilityState"in window.document)||!a.Jc?_.k:(0,_.bY)()};
+_.nY=function(a,b){(0,_.WX)(a,b);for(var c="top_nav appbar leftnav rhs foot bfoot".split(" "),d=0,e;e=c[d++];)(0,_.hX)(e,b)};_.Cpa=function(){var a=window.document.gbqf||window.document.gs||window.document.f;this.ha={bS:a,xb:a.q};this.M=0;this.BF=this.eG=this.B=_.A;this.YH="";this.U=_.p;this.IG=_.A};_.AY=function(a){var b=_.IX;a.B=_.A;a=!!b.results.B;(0,_.uX)(b.Bg,b.Bg.M.RR,a);(0,_.uX)(b.Bg,b.Bg.M.zR,a);(0,_.uX)(b.Bg,b.Bg.M.aS,a)};
+_.BY=function(a){var b=_.IX;a.B=_.A;(0,_.uX)(b.Bg,b.Bg.M.JR,!!b.results.B);(0,_.Oe)(92,[_.A])};_.kqa=function(a,b){(0,_.AX)(b,_.Dp.Ma())||(_.Dp.Bc(b),_.IX.results.xa=b,(0,_.cX)());b||a.clear()};_.lqa=function(a){a.U&&(window.clearTimeout(a.U),a.U=_.p)};_.FX=function(){this.B=0;this.Iz=_.A};_.mqa=function(a){a.B=1;(0,_.mX)("espsm",_.A);(0,_.mX)("esps",_.l)};_.nqa=function(){var a=window.google.cideb;return a||window.navigator&&(a=window.navigator.searchBox)?a:(a=window.chrome)&&a.searchBox};
+_.oqa=function(a,b){var c=window.document.getElementById("p_chrome");c?c.className="dep":b&&(c=window.document.createElement("style"),c.type="text/css",c.id="p_chrome",c.className="dep",(0,_.Ae)(c));b&&(c=_.IX.results,(0,_.yY)(c)==_.A&&(0,_.cY)(c,(0,_.lY)(c))&&(0,_.nY)(c,_.l),(0,_.vY)(_.IX.results));(0,_.NW)(function(){var a=window.document.getElementById("p_chrome");return a&&a.className=="dep"},function(){window.google.j.bo=_.A;if(!_.pqa){(0,_.Yoa)();_.Dp.wv(_.l)}var c=_.IX;if(c&&c.isEnabled()){c.Ag.clear();
+if(b){(0,_.kqa)(c.Ag,a);(c=(0,_.jY)(c.results,a))&&(0,_.Pe)(c);_.Dp.mv()}else _.Dp.Ti(a);_.Dp.blur();if(_.CY)if(_.DY){_.EY=_.l;(0,_.wX)()}else{(0,_.wX)();(0,_.yX)(_.l,_.A)}}},b?0:500)};_.qqa=function(a,b){if(window.document.createEvent){var c=window.document.createEvent("HTMLEvents");c.initEvent(b,_.l,_.l);a.dispatchEvent(c)}else c=window.document.createEventObject(),a.fireEvent("on"+b,c)};_.rqa=function(){return"1"==window.google._bfr?_.A:"1"==(0,_.RW)("mhpf",window.location.href)};
+_.sqa=function(){var a=_.FY;if(a){(0,_.rqa)()&&(!_.tqa&&!window.document.webkitHidden)&&(window.document.webkitHidden=_.l,window.document.webkitVisibilityState="hidden",(0,_.qqa)(window.document,"webkitvisibilitychange"));var b=a.value,a=a.verbatim?46:0,c=_.IX;c&&c.isEnabled()&&(_.Dp.wv(_.A),(0,_.gY)(c.results),c.results.Jc=_.l,(0,_.JX)(c,b,46==a),_.Dp.Ti(b))}};
+_.uqa=function(){var a=_.FY;a&&((0,_.rqa)()&&!_.tqa&&((0,_.hX)("center_col",_.A),window.document.webkitHidden=_.A,window.document.webkitVisibilityState="visible",(0,_.qqa)(window.document,"webkitvisibilitychange")),(0,_.oqa)(a.value,_.l))};_.vqa=function(){var a=_.FY;a&&(0,_.oqa)(a.value,_.A)};
+_.wqa=function(){var a=_.FY;if(a){var b=a.x,c=a.y,a=a.height;window.google.j.bo=_.l;var d=a+c,e=window.document.getElementById("p_chrome");(0,_.Dd)(e);e=window.document.createElement("style");e.type="text/css";e.id="p_chrome";var f="";(0,_.OW)(_.A);f="#appbar,#resultStats,#gbqf,#gbv{display:none}#cnt{padding-top: 0;}";_.Pc.hx&&!a&&(f="");d=window.Math.max(d-100,0);f=["#tsf,.lsd{visibility:hidden}",f,"#cnt{position:relative;top:",d,"px}"].join("");_.Oc.Gd?e.styleSheet.cssText=f:e.appendChild(window.document.createTextNode(f));
+(0,_.Ae)(e);if(d=window.document.getElementById("pocs")){e=window.document.getElementById("pocsC");if(!d.parentNode||"pocsC"!=d.parentNode.id)e||(e=(0,_.Be)("DIV"),e.id="pocsC",(0,_.Ae)(e)),f=window.document.getElementById("oPocsC"),f||(f=(0,_.Be)("DIV"),f.id="oPocsC",d.parentNode.insertBefore(f,d)),d.style.position="relative",e.appendChild(d);(0,_.Fe)(e,"position","absolute","top",window.Math.max(a+c,100)+"px","left",b+"px")}}};
+_.xqa=function(a){var b=_.IX.ha;if(1==a)b.Iz=_.A,2==b.B&&(0,_.mqa)(b);else if(2==a){if(b.Iz=_.l,1==b.B||3==b.B)b.B=2,(0,_.mX)("espsm",_.l),(0,_.mX)("esps",_.l)}else 3==a&&(b.Iz=_.A,(1==b.B||2==b.B||3==b.B)&&b.show());return 3==b.B};_.yqa=function(a){var b=_.IX.ha;a&&3!=b.B&&2!=b.B?(0,_.mqa)(b):a||b.hide();return 3==b.B};
+_.zqa=function(a,b,c){(0,_.zs)(_.IX.Ag.bm(),_.A,_.A,_.l);var d=window.google.jesrstate;if(!d)return b;var d=d.substring(1),b=[a,"pf="+(_.ZX?"i":"p")],a=(0,_.UW)(a),e=(0,_.UW)(d),f=(0,_.Ue)("safe");f&&(0,_.RW)("safe",d)==_.p&&(e.safe=f);for(var g in e)"pq"!=g&&a[g]===_.k&&b.push(g+"="+e[g]);c&&b.push("bs=1");return b.join("&")};_.GY=function(){var a=(0,_.Td)(window.document);return(0,window.Boolean)(a&&!/^(?:INPUT|TEXTAREA|SELECT)$/.test(a.nodeName))};
+_.HY=function(){_.DY?(_.EY=_.l,(0,_.wX)()):((0,_.wX)(),(0,_.yX)(_.l,_.A))};_.Aqa=function(a){a=a||window.event;a.persisted||_.Dp.Wt()};_.Bqa=function(){if(_.IX.isEnabled()){var a=(0,_.IY)();100<window.pageYOffset&&a&&(a=_.IX.results,(0,_.pY)(a)&&(0,_.mY)(a,4),(0,_.MW)()&&(0,_.cX)())}};
+_.Cqa=function(a){a=a||window.event;if(!(0,_.Oe)(94,[a]))return _.l;var b=a.keyCode,c=_.Dqa[b],d=_.JY[b];if(a.altKey||a.ctrlKey||a.metaKey||!_.KY[b]&&!c&&!d){if(13==b){for(a=a.target||a.srcElement;a&&"A"!=a.nodeName;)a=a.parentNode;if(a){if(a.onmousedown)a.onmousedown();c=a.href;if(/\/(url|aclk)\?/.test(c)&&(0,_.RW)("kb",c)==_.p&&((0,_.RW)("usg",c)!=_.p||(0,_.RW)("sig",c)!=_.p))a.href+="&kb=1"}}return _.l}if((0,_.GY)())if(d)if(9==b||!_.LY&&_.EY){if(_.EY)return window.google.log("aknv",["&ei=",window.google.kEI,
+"&kc=",b].join("")),_.EY=_.A,(0,_.wX)(),(0,_.yX)(_.l,_.A),(0,_.MY)(a);(0,_.wX)()}else{if(_.EY)return _.l;if(40==b||74==b)(0,_.yX)(_.l,_.l);else if(38==b||75==b)(0,_.yX)(_.A,_.l);else{if(c=37==b||39==b)c=window.document.getElementById("knavm"),c=!(c&&(0,_.Oe)(34,[c.parentNode,39==b],_.A));if(c)return _.l}return(0,_.MY)(a)}else{if(27==b)return _.Dp.tj(),(0,_.MY)(a);d=function(){(0,_.NW)((0,_.E)(_.l),function(){27!=b&&window.google.log("fif",["&ei=",window.google.kEI,"&psi=",(0,_.RW)("psi",window.location.href),
+"&kc=",b].join(""))},0)};if(_.LY)(0,_.wX)(),a=_.Dp.Ma(),c&&a&&_.Dp.Ti(a+" "),_.Dp.focus(),d();else if(191==b)return(0,_.wX)(),_.Dp.focus(),d(),(0,_.MY)(a)}return _.l};_.NY=function(a){return function(b,c,d,e,f){if(e)return _.l;try{c&&(b=c()),"string"==typeof b&&(b=eval("("+b+")")),a(b,d)}catch(g){window.google.ml(g,_.A,{_response:b,_url:d,_isPartial:e,_opt_fromCache:f})}return _.l}};
+_.Eqa=function(a){var b=_.IX;_.Dp.Me(a)&&(a=_.Dp.sj(a),a=_.P.xv(a).La(),b=b.results,b.U.ev===_.k&&(a=(a=(a=a&&a.length?a[0]:_.p)?a.va():_.p)?a:_.Dp.Ma(),(0,_.eY)(b,a)))};_.Fqa=function(a,b){var c=a.fpr;if(c){var d=(0,_.$W)(b);var e=_.IX.results;c&&d==_.Dp.Ma()&&(e.U.IG=_.l,(0,_.Qpa)(e,c,_.l))}};
+_.Gqa=function(a,b){var c=_.IX.results;a.redir?c.ra=a.redir:a.pnp&&c.suppress(b,1,_.A,2);var d=(0,_.RW)("q",b,_.l,_.A),d=a.snp&&""!=d&&d==_.Dp.nb()&&!(0,_.cY)(c,(0,_.lY)(c));if(!_.ZX)if(0<_.OY)if(d){var e=_.PY;c.Fa||((0,_.iqa)(c,"flyr-w","wflyr","cnt"),(d=(0,_.Ee)("#wflyr"))?c.Fa=(0,_.Lg)(_.OY,[[d,"opacity",0,1,_.p,""]],(0,_.ab)(function(){(0,_.Zpa)(this,e)},c)):e(b))}else(0,_.Hqa)();else d&&(0,_.PY)(b);a.pjf&&(c.Oa=a.pjf)};
+_.PY=function(a){var b=_.IX.results;""!=(0,_.$W)(a)&&!(0,_.cY)(b,(0,_.lY)(b))&&b.suppress(a,6,_.l,1)};_.Iqa=function(a){for(var b=(0,_.QW)().childNodes,c=0,d;d=b[c++];)if(d.name==a){(0,_.Dd)(d);break}};_.MY=function(a){a.preventDefault&&a.preventDefault();return a.returnValue=_.A};_.Jqa=function(){var a,b=(0,_.apa)();(b=b?b.La():_.p)&&b[0]&&(a=b[0].va());return a||""};_.Kqa=function(a){!_.IX||!_.IX.isEnabled()?(0,_.Lqa)(a):window.gbar&&window.gbar.qsi&&window.gbar.qsi(a)};
+_.IY=function(){return _.IX?(0,_.$W)((0,_.lY)(_.IX.results)):""};_.Mqa=function(){var a;a=_.IX;var b=(0,_.OX)();(0,_.Ppa)();_.QX||_.PX||b?a=_.A:((0,_.UX)(a),(0,_.sX)(a.Bg,a.Bg.M.slowConnection,1),(0,_.tpa)(),window.google.j.bZ&&window.google.j.bZ({csiSlowMarker:2}),_.oX=_.l,(0,_.nX)(),a=_.l);a&&(_.kY.ha(),_.kY.M(),_.kY.Fa(),window.google.j.bo&&(0,_.IW)())};
+_.Nqa=function(a){_.Dp||(_.Dp=_.Oqa.translate(window.google.ac.gs()));_.ZX=!!a.ig;window.google.j&&window.google.j.pm&&(window.google.j.pm=_.ZX?"i":"p");a.dlen!==_.k&&(_.Jpa=36E5*a.dlen);a.dper!==_.k&&(_.Kpa=a.dper);try{(0,_.LW)()&&(_.dX="gbqfw");_.eX=a.lpu;_.epa=a.lpe;var b=a.aph;if(b&&!_.QY){var c=new window.Image;c.style.display="none";var d=function(){_.QY=b;(0,_.Dd)(c)};c.onerror=d;c.onload=d;c.src="//"+b+"/generate_204";window.document.body.appendChild(c)}var e=a.rpt,d=_.A;e&&(_.fX&&e!=_.fX)&&
+(d=_.l,_.fX=e);if(_.Pqa)(0,_.SW)(_.HX,(0,_.lY)(_.IX.results)),d&&!(window.google.sn in _.KX)&&(0,_.OW)(_.A);else if((0,_.Je)(window.document,"webkitvisibilitychange",function(){var a=_.IX;if(a&&a.results){a=a.results;if(!a.Vb&&!(0,_.yY)(a))a.Vb=_.l}}),_.Pc.hx&&(0,_.Le)(57,_.hpa),a.hiue&&(_.jX=_.l),(0,_.mX)(_.dX,_.l),window.google.j&&window.google.j.en&&window.google.j.init){a.hpt&&(_.gX=a.hpt);var f=a.tct;f&&(_.VW=(0,window.RegExp)("["+f+"]+$"));a.mds&&(_.NX=a.mds.split(","));_.npa=(0,window.RegExp)("\\b(?:(?:(?:cache"+
+(a.odef?"":"|define")+"):)|\\d+\\.{3}\\d+\\b)");_.CY=a.kn;_.DY=a.knrt;_.Wpa=a.pq;_.KW=a.mtss;_.Qqa=a.sc;_.Fpa=a.fbh;_.Hpa=a.iscm;_.tX=a.csui;_.RY=a.cstt;_.zX=a.msg;_.QX=a.optIn;_.Rqa=a.afrn;var g=(0,_.YW)();(0,_.$W)(g)?(0,_.OW)(_.A):window.google.sn=(0,_.MW)()?"mobilewebhp":"webhp";var i=!_.QX&&(0,_.OX)(),h;if(h=!i){var m;if(m=!_.QX){var n=a.maxXjsls;if(n)try{var j=window.google.timers.load.t;m=j.xjsls-j.start>n}catch(q){m=_.A}else m=_.A}h=m}h&&((0,_.Ppa)(),i=_.l);_.kY=(0,_.yl)().B(_.Ct);var e=function(b){return a[b]||
+0},t=new _.AW(_.Mqa,[[e("avgTtfc"),e("avgTtlc"),e("avgCbt")],[e("maxTtfc"),e("maxTtlc"),e("maxCbt")]]);t.B.isch=[[e("iavgTtfc"),e("iavgTtlc"),e("iavgCbt")],[e("imaxTtfc"),e("imaxTtlc"),e("imaxCbt")]];_.Mpa=a.gisbe;_.$X=a.uist;_.kY.xb((0,_.Coa)(t));_.kY.Sa(a.pmt||0);if(_.aY=!window.google.ucp&&(_.kY.oa()||_.kY.ra()))_.kY.xm((0,_.NY)(_.Eqa),"/s"),_.kY.Oa("/s");_.kY.Oa("/search");"brba"in a&&_.kY.xL(a.brba);_.IX=new _.DX;_.SX=_.Sqa;_.RX=_.Tqa;if(!_.ZX&&(a.optOut||i)||a.fdis||!window.google.ac){var r=
+!(g&&"#"!=g&&_.NX&&(0,_.Up)(_.NX,g));(0,_.mX)("po-bar",r);r&&i&&(0,_.tpa)();_.oX=i;if(a.optOut||i)(0,_.Vr)({csiSlowMarker:a.optOut?1:2});_.Le.apply(_.p,_.Tqa);(0,_.nX)();(0,_.UX)(_.IX);window.google.j.bo&&(0,_.IW)()}else{"focus"in a&&(_.LY=a.focus);"tdur"in a&&(_.kpa=a.tdur);"fd"in a&&(_.fqa=a.fd);"fbdu"in a&&(_.wY=a.fbdu);"fbdc"in a&&(_.SY=a.fbdc);"ime"in a&&(_.rY=!a.ime);"imes"in a&&(_.sY=!a.imes);"gpsj"in a&&(_.PX=a.gpsj);"sfcs"in a&&(_.TY=a.sfcs);"spmo"in a&&(_.UY=(0,_.of)(a.spmo));"khh"in a&&
+(_.pqa=a.khh);a.nprr&&(_.Uqa=a.nprr);"sfime"in a&&(_.qY=a.sfime);"asfpr"in a&&(_.aqa=a.asfpr);"sras"in a&&(_.Vqa=a.sras);"sgcif"in a&&(_.Wqa=a.sgcif);_.Le.apply(_.p,_.Sqa);(0,_.Ne)(25,window.google.j.te);_.Le.apply(_.p,_.Xqa);_.Le.apply(_.p,_.Yqa);_.upa=_.l;_.oX=i;(0,_.nX)();(0,_.Vr)({shouldBlur:_.A});if(_.kY){var s=_.kY.fb("/s");_.kY.xm((0,_.NY)(_.Fqa),"/completedata");_.kY.B(s,"/completedata");_.kY.xm((0,_.NY)(_.Gqa),"/searchdata");_.kY.B(s,"/searchdata")}(0,_.MX)(_.IX,g);_.IX.isEnabled()&&(0,_.it)(g)&&
+((0,_.TX)(_.IX.results,g),(0,_.Spa)(_.IX.results,g),_.CY&&(0,_.HY)());(0,_.Je)(_.Pc.Lv?window:window.document.body,"keydown",_.Cqa);a.ophe&&(_.Pc.Qz&&!_.Pc.Gx&&"onpagehide"in window)&&(0,_.Je)(window,"pagehide",_.Aqa);(0,_.MW)()&&(0,_.Je)(window,"scroll",_.Bqa);if(a.focus){_.KY[8]=_.KY[27]=_.KY[63]=1;for(var g=[[48,57],[65,90],[96,111],[186,221]],i=0,C;C=g[i++];)for(var v=C[0];v<=C[1];++v)_.Dqa[v]=1}else _.KY[191]=1;_.CY&&(_.JY[9]=1,_.LY?_.JY[37]=_.JY[39]=_.JY[38]=_.JY[40]=1:_.JY[74]=_.JY[75]=1);
+_.Pqa=_.l;"ocb"in a&&(_.Zqa=a.ocb);a.ufl&&(_.VX=_.l);a.ftwd&&(_.OY=a.ftwd);if(_.tX)_.RY&&((0,_.Le)(22,function(){(0,_.mX)("hdtb",_.A)}),(0,_.Le)(11,function(){(0,_.mX)("hdtb",_.l)})),(0,_.Le)(18,function(a){if(a=="search"){a=(0,_.jd)("main");if(_.Dp.uv()){_.RY&&(0,_.mX)("hdtb",_.A);(0,_.mX)("esp_logo",_.l);(0,_.mX)("tnv_logo",_.A);(0,_.nf)(a,"main-abs")}else{(0,_.mX)("esp_logo",_.A);(0,_.mX)("tnv_logo",_.l);(0,_.mf)(a,"main-abs")}}return _.l}),(0,_.Le)(97,_.xqa),(0,_.Le)(100,_.yqa);else{var x=_.FY=
+(0,_.nqa)();x&&(x.onsubmit=_.uqa,x.onchange=_.sqa,x.oncancel=_.vqa,x.onresize=_.wqa,x.value&&window.setTimeout(function(){(0,_.wqa)();(0,_.sqa)()},0),x.setSuggestions&&(0,_.Le)(39,function(a,b,c){for(var a={query:c,complete_behavior:_.Zqa},c=a.suggestions=[],d=0,e;e=b[d++];){var f=e.O(),s=e.getId().replace(/^\d*/g,""),f={type:f+s,value:e.va(),htmlValue:e.Mb()};e=e.Fd();e.length&&(f.renderingInfo=e);c.push(f)}x.setSuggestions(a)}))}_.ZX||(0,_.Oe)(62,[_.l])}}}catch(u){(0,_.IW)(),(0,_.aa)(u)}}; _.Hqa=function(){var a=_.IX;a&&a.isEnabled()&&(0,_.Zpa)(a.results,_.PY)};_.kY=_.p;(0,_.Ec)(_.O.$(),"p");
+_.upa=_.A;_.oX=_.A;_.KW=_.A;_.QY="";_.LY=_.l;_.tX=_.A;_.CY=_.l;_.rY=_.l;_.sY=_.l;_.PX=_.A;_.$X=_.A;_.Mpa=3;_.ZX=_.A;_.Fpa=_.l;_.tqa="webkitVisibilityState"in window.document;_.aY=_.A;_.jX=_.A;_.DY=_.A;_.dpa=_.A;_.eX=[];_.epa=_.A;_.zX={};_.Zqa="";_.SY=500;_.wY=3E3;_.npa=_.p;_.Qqa="";_.kpa=50;_.dX="searchform";_.gX=250;_.fX=41;_.Wqa=_.A;_.Wpa=_.A;_.Jpa=864E5;_.Kpa=1;_.UY="";_.fqa=1E3;_.NX=_.p;_.VW=_.p;_.pqa=_.A;_.TY=_.l;_.Hpa=_.A;_.QX=_.A;_.VX=_.A;_.Uqa=5;_.OY=0;_.RY=_.A;_.qY=_.A;_.aqa=_.A;_.Rqa=_.A; _.Vqa=_.A;
+_.vpa=_.A;_.pX=_.A;_.JW=_.p;_.Zoa={deb:_.p,dontrender:_.p,filter:_.p,gs_ssp:_.p,lr:_.p,nfpr:_.p,q:_.p,start:0,tbm:_.p,tbs:_.p};_.$oa={e:1,expflags:1,expid:1,ion:1,ix:1,espv:1};_.KX={webhp:1,imghp:1,mobilewebhp:1};_.xpa.prototype.Qb=function(){return this.B.Bg&&""==this.B.Bg.style.display};_.EY=_.A;_.bqa=/<sc>(.*?)<\/sc>/g;_.$pa=/^\+/;_.cqa=/([#&\?]q=)[^&#]*/g;_.IX=_.p;_.SX=[];_.RX=[];_.DX.prototype.isEnabled=(0,_.fa)("M");_.DX.prototype.clear=function(){this.Ag.clear();!(this.results.B&&"#"!=this.results.B||this.results.M)||this.results.clear()};_.EX.prototype.clear=function(){(0,_.vY)(this);(0,_.Ypa)(this);(0,_.mX)("er",_.l);this.B=_.p;this.M="";this.oa=this.ha=this.zr=this.od=0;this.Oa=this.ra=_.p;this.oa=0;(0,_.uX)(_.IX.Bg,_.IX.Bg.M.slowConnection,!!_.IX.results.B);(0,_.Oe)(37,[_.l])};
+_.EX.prototype.suppress=function(a,b,c,d){if((c||(0,_.cY)(this,a))&&!_.ZX)if((0,_.oY)(this),(0,_.zY)(this),this.oa=d==_.k?1:d,(0,_.Ypa)(this),this.B=_.p,_.Dp.mv(),!(1==b&&"+"==(0,_.$W)(a).charAt(0))&&(6==b&&(0,_.Oe)(92,[_.l]),!this.Ee||!(0,_.yY)(this)))for(var e in _.IX.Bg.M)if(a=_.IX.Bg.M[e],a.ha==b){(0,_.sX)(_.IX.Bg,a,2);break}};_.N=_.Cpa.prototype;_.N.bm=function(){return this.ha.bS};_.N.clear=function(){this.ev!==_.k&&(this.ev=_.p);this.M=0;(0,_.AY)(this);(0,_.cX)();(0,_.lqa)(this);this.IG=_.A};
+_.N.ye=function(){return this.ev&&this.ev.va()||""||_.Dp.Ma()};_.N.setSuggestions=function(a){this.M=0;this.ev=_.p;this.IG=_.A;a&&a.length&&(this.M=a.length,this.ev=a&&a.length?a[0]:_.p)};_.N.If=function(){_.Dp.focus()};_.FX.prototype.hide=function(){this.B=0;(0,_.mX)("esps",_.A);(0,_.mX)("espsm",_.l)};_.FX.prototype.show=function(){this.B=3;(0,_.mX)("esps",_.A);(0,_.mX)("espsm",_.A)};
+_.FY=_.p;_.Pqa=_.A;_.Oqa=_.P.Uk();_.VY=_.A;_.KY={};_.Dqa={};_.JY={};if(window.gbar&&window.gbar.qs){_.Lqa=window.gbar.qs;window.gbar.qs=_.Kqa}
+_.Sqa=[76,function(){return 1!=_.IX.results.zr},82,function(a,b){if(-1==a.indexOf("/s?"))return _.l;var c=_.IX,d=c.Ag.ye();c.Ag.eG&&(d=(0,_.GX)(d));return(_.TY?0:(0,_.IY)()!=d)?(_.kY.Pd(a,_.A,_.l,b),_.A):_.l},18,function(a){(0==a.indexOf("leftnavc")||0==a.indexOf("rhscol")||0==a.indexOf("sbfrm_l"))&&(0,_.SW)(_.HX,(0,_.lY)(_.IX.results));0==a.indexOf("search")&&((0,_.fY)(_.IX.results),a="",_.UY&&(a=_.UY),(0,_.Oe)(84,[_.A,a]));a=_.IX;a.B&&(window.clearTimeout(a.B),a.B=_.p);(0,_.uX)(_.IX.Bg,_.IX.Bg.M.jG,
+!!_.IX.results.B);a.U=0;return _.l},26,function(){var a=_.IX,b=1==_.IX.results.zr;(0,_.UX)(a);b||(0,_.vX)(a.Bg,a.Bg.M.jG,a.Bg);return b},1,function(a,b,c,d){c&&d&&(c=a.replace("/search","/searchdata"),d=_.kY,d.xa(c)&&d.Pd(c));c=_.IX.results;!c.Vb&&(0,_.yY)(c)&&(0,_.nY)(c,_.A);c=_.IX.results;(0,_.cY)(c,a)&&1==c.zr&&c.ra?((0,_.Pe)(c.ra),c=_.l):c=_.A;if(c)return _.A;if(_.IX.Ag.B)return _.IX.results.suppress(a,2),_.A;if(!(0,_.cY)(_.IX.results,a))return _.A;(0,_.AY)(_.IX.Ag);(0,_.BY)(_.IX.Ag);(0,_.oY)(_.IX.results);
+if(b&&!_.ZX)a:{b=_.IX.results;if((0,_.cY)(b,a)&&((0,_.oY)(b),0==++b.od%_.Uqa)){a=_.l;break a}a=_.A}else a=!_.ZX||1==_.IX.results.zr;return a},24,function(a){return!(0,_.uY)(_.IX.results,a)},19,function(){return(0,_.lY)(_.IX.results).replace(/\%20/g,"+")},51,function(a){a=(0,_.tY)(_.IX.results,a);return(0,_.WW)(a)},42,function(a){_.IX.results.Ta=a},2,function(a){if(a=a.target||a.srcElement){for(var b;!(b="A"==a.nodeName)&&(a=a.parentNode););if(b){if("logo"==a.id&&!(0,_.aX)()&&(0,_.RW)("tbm",(0,_.XW)())==
+_.p)return a=_.IX,(0,_.ppa)(),(0,_.Epa)(a),_.A;b=(0,_.RW)("sqi",a.href);a=-1!=a.href.indexOf("/url?")||-1!=a.href.indexOf("/aclk?");b||a?(a=_.IX.results,2!=a.ha&&(a.ha=2,(0,_.jqa)(a))):(a=_.IX.results,(0,_.pY)(a)&&(0,_.mY)(a,2))}}return _.l},3,function(a){a=(0,_.ZW)(a);if((0,_.cY)(_.IX.results,a)){(0,_.oY)(_.IX.results);if((0,_.$W)(a))return(0,_.OW)(_.A),(0,_.TX)(_.IX.results,a);_.Dp.Bc("");_.IX.results.xa=""}return _.l},4,function(a,b){if(!b){var c=_.IX.results;if(1==c.zr||c.M==_.p)a!=_.Dp.Ma()&&
+c.U.clear(),(0,_.kqa)(c.U,a),(0,_.fY)(c);(0,_.ws)()}return _.p},21,function(a){return!_.Dp.Ma()||0!=_.IX.results.zr?a:_.p},30,function(a,b){var c=_.IX;if(1==a||3==a||4==a)return(0,_.UX)(c),2;if(0==a||2==a||7==a||6==a||8==a){if((0,_.cY)(c.results,b)&&0!=c.results.zr)return(0,_.UX)(c),2;(0,_.Opa)(c);return 3}return 1},6,function(a,b){var c=_.IX.results;c.B=(0,_.Tpa)(c,b);if(_.Rqa&&"taw"==a&&(c=window.document.getElementById("search"),!c||!c.innerHTML||"hidden"==c.style.visibility)){var d=window.document.getElementById("rcnt");
+(0,_.Je)(d,"webkitTransitionEnd",_.wpa);(0,_.Fe)(d,"opacity",0,"webkitTransform","translate3d(0, -5px, 0)");(0,window.setTimeout)(function(){(0,_.Fe)(d,"webkitTransition","all 150ms linear","opacity",1,"webkitTransform","translate3d(0, 0, 0)")},0)}(0,_.bpa)(a,b)&&(b=(0,_.ZW)(b),(0,_.Spa)(_.IX.results,b),(0,_.bX)(b)&&(0,_.Npa)(_.IX),(0,_.Oe)(40,[(0,_.$W)(b)]));return _.l},79,function(){return 1!=_.IX.results.zr},63,function(){_.Dp.uv()&&(_.Dp.cj(),(0,_.cX)())},45,function(){(0,_.SW)(_.HX,(0,_.lY)(_.IX.results))},
+9,function(a,b,c,d,e,f){var g=_.IX,i=_.Dp,h=_.A,m=_.P.Rv(b);!d&&m.length&&i.hj(m[0].va())&&(d=h=_.l);d?g.Ag.B=_.l:2==g.results.oa||(0,_.AY)(g.Ag);g.Ag.eG=!!f&&a.lastIndexOf(" ")!=a.length-1;f=g.results;(0,_.gY)(f);if(e===_.A)return _.A;e=_.A;if(d)c=g.results,f=h,(0,_.vY)(c),c.suppress((0,_.jY)(c,a),2,_.l),f||(0,_.cX)();else{h=g.Ag.YH&&0==b.length;h=g.Ag.BF&&(h||!_.sY);b=0<a.length?a.charAt(a.length-1):"";b=_.Vqa&&(" "==b||"\u3000"==b);h=!(!_.rY&&(h||b));if(c){if((c=(0,_.Rpa)(f,m,h))&&_.TY)(0,_.zY)(f),
+h=f.U.ye(),f.U.eG&&(h=(0,_.GX)(h)),0<_.SY&&(0,_.gqa)(f,(0,_.jY)(f,h),_.SY)}else c=(0,_.Rpa)(f,m,h);e=c}40==(g.Ag.ev&&g.Ag.ev.O()||_.p)&&!_.VY?((0,_.PW)("inm","vs"),_.VY=_.l):_.VY&&((0,_.Iqa)("inm"),_.VY=_.A);(0,_.Oe)(39,[g.Ag.ye(),m,a]);return e},23,function(a,b){var c=_.IX.Ag;!_.tX&&(b!=a||a!=c.ye())&&c.clear()},50,function(a){(0,_.JX)(_.IX,a,_.l)},11,function(){(0,_.ypa)(_.IX.Bg);var a=(0,_.lY)(_.IX.results);_.JW&&window.clearTimeout(_.JW);_.JW=(0,_.NW)((0,_.E)(_.l),function(){(0,_.SW)(_.HX,a)},
+0)},12,function(a){var b=_.IX;_.Dp.hj(a)?(b=b.results,(0,_.vY)(b),b.suppress((0,_.jY)(b,a),2,_.l)):(b.results.xa=a,(0,_.JX)(b,a,_.l))},49,function(a){var b=_.IX;(0,_.wf)(a)?(_.Wqa&&window.google.log("cif","&tbm="+((0,_.Ue)("tbm")||"")),(0,_.gY)(_.IX.results),!_.Dp.ob()&&!_.ZX&&b.clear(),(0,_.BY)(_.IX.Ag)):((0,_.$W)(b.results.M)==a&&0!=b.results.zr||(b.results.zr=0),_.VY&&((0,_.Iqa)("inm"),_.VY=_.A),(0,_.JX)(b,a,_.A))},66,function(a){_.IX.results.xa=a;a=(0,_.Jqa)();(0,_.eY)(_.IX.results,a)},22,function(){(0,_.SW)(_.HX,
+(0,_.lY)(_.IX.results));!(window.google.sn in _.KX)||(0,_.OW)(_.l)},15,function(a,b){var c=_.IX;(0,_.AY)(c.Ag);(0,_.cX)();_.Dp.blur();b?(0,_.jqa)(c.results):_.CY&&(0,_.NW)((0,_.E)(_.l),_.HY,0);return b||(0,_.TX)(c.results,(0,_.jY)(c.results,a))},16,function(a,b,c){var d=_.IX,b=d.results.xa.length>c.length;d.results.xa=c;var e=a;if((0,_.mpa)(c))return(0,_.eY)(d.results,c),d.results.suppress((0,_.zqa)(a,e,b),3),(0,_.cX)(),"";var a=_.ZX?a.replace(/([&\?])client=([^&]*)/,"$1sclient=$2"):a.replace(/([&\?])client=[^&]*&?/,
+"$1"),a=a.replace("/complete/search","/s"),a=(0,_.zqa)(a,e,b),f=a.replace("/s","/completedata"),g=_.kY;g.xa(f)&&g.xa(a)&&window.setTimeout(function(){g.Pd(f)},0);var d=d.Ag,i=_.IX;(0,_.lqa)(d);if(a&&!(0>=_.wY)){var h=(0,_.$W)(a);d.U=(0,_.NW)(function(){if(_.Dp.rj())return _.A;var a=(0,_.apa)(),a=a?a.Aa():"",b=i.Ag.ev&&i.Ag.ev.va()||"";return(!_.aY||i.Ag.ev!==_.k)&&0==i.results.zr&&a.toLowerCase()!=h.toLowerCase()&&(!b||!(0,_.BX)(b,h,_.l))},function(){(0,_.Oe)(68,[h])&&((0,_.LX)(i.results,h,_.wY),
+(0,_.cX)())},_.wY)}return _.aY?(g.Pd(a),e+"&sclient="+_.Qqa):_.QY?"//"+_.QY+a:a},74,function(){_.IX.Ag.BF=_.l;var a=_.Dp.Ma(),a=(0,_.CX)(a);_.IX.Ag.YH=a},75,function(){_.IX.Ag.BF=_.A;0==_.IX.Ag.M?(0,_.eY)(_.IX.results,_.Dp.Ma()):_.sY?_.qY&&(0,_.fY)(_.IX.results):(0,_.eY)(_.IX.results,_.IX.Ag.ye())},27,(0,_.E)(_.A),28,(0,_.ca)(),29,(0,_.ca)()];
+_.Xqa=[31,function(){_.CY&&(0,_.GY)()&&(0,_.HY)()},0,function(a,b){if(_.IX.isEnabled()&&b&&(0,_.RW)("pf",a)){var c=_.IX.results;1==c.zr&&((0,_.mY)(c,3),c.ha=2)}_.CY&&(0,_.GY)()&&(0,_.HY)();window.setTimeout(function(){(0,_.uY)(_.IX.results,(0,_.lY)(_.IX.results))&&(0,_.gpa)()},0);return _.l},7,function(a){a=(0,_.ZW)(a);(0,_.MX)(_.IX,a);if((!a||"#"==a)&&!(0,_.aX)()){if((0,_.RW)("tbm",(0,_.XW)())!=_.p){var a=_.IX,b=["prmdo","tbo","tbs"],c=(0,_.RW)("tbm",(0,_.XW)());c?(window.document.gs||window.document.f||
+window.document.gbqf).tbm=c:b.push("tbm");(0,_.opa)(b)}else a=_.IX,(0,_.ppa)();(0,_.Epa)(a);return _.A}if(!_.IX.isEnabled())return(0,_.OW)(_.A),_.l;if((0,_.Vpa)(_.IX.results,a))return _.A;_.IX.Ag.clear();(0,_.TX)(_.IX.results,a);return _.l},25,function(a,b,c){if(21==b||0==b||1==b||12==b||9==b){if(!_.IX.isEnabled()||(0,_.cY)(_.IX.results,c)&&0!=_.IX.results.zr)return(0,_.UX)(_.IX),2;(0,_.Opa)(_.IX,c);return 3}return 1}];
+_.Yqa=[5,function(a,b){var c=_.IX;(0,_.MX)(c,a);(0,_.BY)(c.Ag);(0,_.AY)(c.Ag);return c.isEnabled()&&!(0,_.TX)(c.results,a,b)&&(0,_.Vpa)(c.results,a)?_.p:a},100];_.Tqa=[7,function(a){a=(0,_.ZW)(a);"#"==a||!a?((0,_.qpa)(),(!_.IX.state||!_.IX.isEnabled())&&(0,_.fpa)()):(0,_.OW)(_.A);return _.l},49,function(){(0,_.Gpa)(_.IX)},5,function(a){(0,_.OW)(_.A);return a},6,function(a,b){(0,_.bX)(b)&&(0,_.bpa)(a,b)&&(0,_.Npa)(_.IX);return _.l}];
+(0,_.ga)("google.psy.h",function(a){a=a||window.event;if(a.ctrlKey||a.metaKey)return _.l;(0,_.mX)("msg_box",_.A);var b=(0,_.Jqa)();b&&(_.Dp.Ti(b),(0,_.TX)(_.IX.results,(0,_.jY)(_.IX.results,b)),(0,_.cX)(),(0,_.Oe)(98,[b]));b=_.IX.results;(0,_.pY)(b)&&(0,_.mY)(b,2);if(a=a||window.event)a.stopPropagation&&a.stopPropagation(),a.cancelBubble=a.cancel=_.l,(0,_.MY)(a);return _.A},_.k);(0,_.ga)("google.psy.m",function(a){var b=_.IX.results;0==b.ha&&((0,_.xY)(b),(0,_.pY)(b)&&(0,_.mY)(b,a))},_.k);
+(0,_.ga)("google.psy.pf",function(a,b,c){if(!_.IX||!_.kY||!_.IX.isEnabled())return _.A;a=(0,_.gt)(a);(0,_.RW)("fp",a)!=_.p||(a+="&fp=1");a=(0,_.tY)(_.IX.results,a);c||(c=_.ZX?"i":"p");a=(0,_.RW)("pf",a)!=_.p?(0,_.lX)("pf",a,c):a+"&pf="+c;return!_.kY.xa(a)?(_.kY.Pd(a,_.A,_.A,function(){var c=_.kY.Ta(a,600);b&&b(c)}),_.l):_.A},_.k);(0,_.ga)("google.psy.q",_.IY,_.k);
+(0,_.ga)("google.psy.qs",function(a){var b=(0,_.rf)(a);if(b){for(;b&&b!=window.document.body&&!(0,_.lf)(b,"qs");)b=b.parentNode;b&&(b!=window.document.body&&(0,_.lf)(b,"qs"))&&(b.href=(0,_.lX)("site",b.href,""))}(!_.IX||!_.IX.isEnabled())&&(0,_.Ff)(a)},_.k);(0,_.ga)("google.psy.r",function(a){a=a||window.event;!a.ctrlKey&&!a.metaKey&&((0,_.pY)(_.IX.results),(0,_.cX)())},_.k);(0,_.Mf)(92,{init:_.Nqa,jesrLoaded:_.Nqa,dispose:_.Hqa});
+
+(0,_.Bc)(_.O.$(),"p");(0,_.Fc)(_.O.$(),"p");
+}catch(e){_._DumpException(e)}
+try{
+(0,_.Ec)(_.O.$(),"pcc");if(window.google.y.first){for(_.zW=0,_.Boa;_.Boa=window.google.y.first[_.zW];++_.zW)(0,_.Boa)();delete window.google.y.first}for(_.zW in window.google.y)window.google.y[_.zW][1]?window.google.y[_.zW][1].apply(window.google.y[_.zW][0]):window.google.y[_.zW][0].go();(0,_.ga)("google.y.x",window.google.x,_.k);window.google.y.first=[];(0,_.ga)("google.x",function(a,b){b&&b.apply(a);return _.A},_.k);window.google.pml=1;
+
+(0,_.Bc)(_.O.$(),"pcc");(0,_.Fc)(_.O.$(),"pcc");
+}catch(e){_._DumpException(e)}
+try{
+(0,_.Ec)(_.O.$(),"csi");if(window.google.timers&&window.google.timers.load.t){window.google.timers.load.t.xjsee=window.google.time();_.rba=window.google.sn;window.setTimeout(function(){if(window.google.timers.load.t){var a=window.google.sn;window.google.sn=_.rba;window.google.timers.load.t.xjs=window.google.time();for(var b="ist_rc ist_rn ist_nr ist_cdts ist_dp ist_rrx ist_rxr ist_rs ist_sr".split(" "),c=0,d;d=b[c++];){var e;a:{try{var f=window.external[d];if(f!=_.k){window.google.kCSI[d]=f;e=_.l;break a}}catch(g){}e=_.A}if(e=== _.A)break}(0,_.jm)();window.google.sn=a}},0)};
+
+(0,_.Bc)(_.O.$(),"csi");(0,_.Fc)(_.O.$(),"csi");
+}catch(e){_._DumpException(e)}
+})(_);
+
+// Copyright 2002-2012 Google Inc.
