
    body { margin: 0; background: #f3f4f6; overflow-x: hidden; }
    #page-container { position: relative; margin: 0 auto; padding: 0; overflow: visible; max-width: 100%; }
    .scieee-lazy-chunk { display: block; width: 100%; max-width: 100%; margin: 0 auto 24px auto; overflow-x: hidden; overflow-y: visible; box-sizing: border-box; }
    .scieee-lazy-chunk-content { width: 100%; max-width: 100%; overflow-x: hidden; box-sizing: border-box; }
    .scieee-lazy-chunk style { display: none !important; }
    .scieee-lazy-placeholder { width: 100%; max-width: 900px; margin: 12px auto; padding: 18px; box-sizing: border-box; background: #fff; color: #6b7280; border: 1px solid #e5e7eb; font: 13px system-ui, sans-serif; text-align: center; }
    .scieee-lazy-chunk.is-loaded { min-height: 0 !important; }
    .scieee-lazy-chunk.is-loaded > .scieee-lazy-placeholder { display: none; }
    .pf { margin-left: auto !important; margin-right: auto !important; }
  



/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator {
    display:none;
  }
  .loading-indicator.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname" -> "#page-container .classname")
 */
.pf { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc {overflow:visible;}
  }
}
.c { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t:after { /* webkit #35443 */
  content: '';
}
.t:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
._ { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi { /* info for Javascript */
  display:none;
}
.l { /* annotation links */
}
/* transparent color - WebKit */
.d { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1;src:url('chunks/assets/font_68a2b57735f89aba3e2b95fd.woff')format("woff");}.ff1{font-family:ff1;line-height:0.919434;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_a2532a1d5b74a2806fa2f47d.woff')format("woff");}.ff2{font-family:ff2;line-height:0.706543;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_54995d7d32676a925a635093.woff')format("woff");}.ff3{font-family:ff3;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_f7fc4042356de95df2aff1ec.woff')format("woff");}.ff4{font-family:ff4;line-height:0.912598;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_ba02a2181321ee13cad292dd.woff')format("woff");}.ff5{font-family:ff5;line-height:0.674316;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_98f8f6f89bdc27a86eafdc35.woff')format("woff");}.ff6{font-family:ff6;line-height:0.706543;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_5f68350c6210cc9f6f3a6037.woff')format("woff");}.ff7{font-family:ff7;line-height:0.919434;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_bccfc21215517f9e03484721.woff')format("woff");}.ff8{font-family:ff8;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_afc4779acf077e6420c6222a.woff')format("woff");}.ff9{font-family:ff9;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_3cedfda89c2c346defa13e52.woff')format("woff");}.ffa{font-family:ffa;line-height:1.091797;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_fc03d4e414aa3172e40386d7.woff')format("woff");}.ffb{font-family:ffb;line-height:1.087891;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_73b0804a9fcb5f134069875d.woff')format("woff");}.ffc{font-family:ffc;line-height:1.244141;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_79e6d458a229b52532ff1e43.woff')format("woff");}.ffd{font-family:ffd;line-height:1.384277;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_8bcf99a57e8a78098bfeba7b.woff')format("woff");}.ffe{font-family:ffe;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-131.040000px;}
.v5{vertical-align:-61.920000px;}
.v4{vertical-align:-51.840000px;}
.v3{vertical-align:-12.240000px;}
.v6{vertical-align:-8.640000px;}
.vf{vertical-align:-7.200000px;}
.vb{vertical-align:-4.320000px;}
.vd{vertical-align:-2.880000px;}
.v9{vertical-align:-1.440000px;}
.v0{vertical-align:0.000000px;}
.v8{vertical-align:1.440000px;}
.v10{vertical-align:2.880000px;}
.va{vertical-align:4.320000px;}
.vc{vertical-align:7.200000px;}
.v7{vertical-align:8.640000px;}
.ve{vertical-align:10.080000px;}
.v2{vertical-align:18.000000px;}
.ls25{letter-spacing:-36.120000px;}
.ls32{letter-spacing:-1.002000px;}
.ls30{letter-spacing:-0.840000px;}
.lsf{letter-spacing:-0.720000px;}
.ls21{letter-spacing:-0.535800px;}
.ls2f{letter-spacing:-0.397200px;}
.ls23{letter-spacing:-0.360000px;}
.ls1b{letter-spacing:-0.288000px;}
.ls15{letter-spacing:-0.282000px;}
.lsb{letter-spacing:-0.270000px;}
.ls34{letter-spacing:-0.250800px;}
.ls1c{letter-spacing:-0.244800px;}
.ls1f{letter-spacing:-0.129600px;}
.ls14{letter-spacing:-0.118200px;}
.ls13{letter-spacing:-0.115200px;}
.ls9{letter-spacing:-0.090000px;}
.ls10{letter-spacing:-0.069000px;}
.ls1d{letter-spacing:-0.060600px;}
.ls31{letter-spacing:-0.034560px;}
.ls16{letter-spacing:-0.031680px;}
.ls19{letter-spacing:-0.002880px;}
.ls7{letter-spacing:0.000000px;}
.ls24{letter-spacing:0.002880px;}
.ls33{letter-spacing:0.008640px;}
.lse{letter-spacing:0.040320px;}
.ls8{letter-spacing:0.054000px;}
.ls0{letter-spacing:0.072000px;}
.lsa{letter-spacing:0.108000px;}
.ls2{letter-spacing:0.180000px;}
.ls12{letter-spacing:0.184200px;}
.ls22{letter-spacing:0.213000px;}
.ls5{letter-spacing:0.216000px;}
.ls6{letter-spacing:0.288000px;}
.ls36{letter-spacing:0.291000px;}
.ls1e{letter-spacing:0.322800px;}
.ls1{letter-spacing:0.324000px;}
.ls1a{letter-spacing:0.360000px;}
.ls2d{letter-spacing:0.432000px;}
.ls20{letter-spacing:0.438000px;}
.ls35{letter-spacing:0.469200px;}
.ls2c{letter-spacing:0.600000px;}
.ls27{letter-spacing:0.606000px;}
.ls28{letter-spacing:0.648000px;}
.ls11{letter-spacing:1.320000px;}
.ls17{letter-spacing:2.760000px;}
.ls29{letter-spacing:3.480000px;}
.ls2a{letter-spacing:4.200000px;}
.ls2e{letter-spacing:4.920000px;}
.ls18{letter-spacing:5.640000px;}
.ls2b{letter-spacing:6.360000px;}
.ls26{letter-spacing:7.080000px;}
.ls4{letter-spacing:420.660000px;}
.ls3{letter-spacing:1518.960000px;}
.lsc{letter-spacing:2891.281920px;}
.lsd{letter-spacing:3075.547200px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws12{word-spacing:-66.240000px;}
.ws1{word-spacing:-54.324000px;}
.ws9{word-spacing:-54.288000px;}
.ws2{word-spacing:-54.000000px;}
.ws3{word-spacing:-48.240000px;}
.ws4{word-spacing:-36.000000px;}
.ws23{word-spacing:-21.646080px;}
.ws22{word-spacing:-21.604080px;}
.ws2a{word-spacing:-21.467280px;}
.ws1d{word-spacing:-21.436080px;}
.ws25{word-spacing:-21.430080px;}
.ws17{word-spacing:-21.358080px;}
.ws1b{word-spacing:-21.320880px;}
.ws2c{word-spacing:-21.289080px;}
.ws1f{word-spacing:-21.211080px;}
.wse{word-spacing:-21.182280px;}
.ws14{word-spacing:-21.038400px;}
.ws2b{word-spacing:-21.006720px;}
.ws21{word-spacing:-21.000960px;}
.ws10{word-spacing:-20.998080px;}
.ws15{word-spacing:-20.995200px;}
.ws13{word-spacing:-20.966400px;}
.ws27{word-spacing:-20.963520px;}
.ws1a{word-spacing:-20.937480px;}
.wsd{word-spacing:-20.929080px;}
.wsf{word-spacing:-20.882880px;}
.ws1c{word-spacing:-20.868480px;}
.ws19{word-spacing:-20.753280px;}
.ws29{word-spacing:-20.747280px;}
.ws11{word-spacing:-20.716080px;}
.ws18{word-spacing:-20.710080px;}
.ws20{word-spacing:-20.638080px;}
.ws26{word-spacing:-20.600880px;}
.ws1e{word-spacing:-20.462280px;}
.ws16{word-spacing:-20.278080px;}
.ws28{word-spacing:-19.996080px;}
.ws5{word-spacing:-19.710000px;}
.wsb{word-spacing:-18.943920px;}
.wsc{word-spacing:-16.560000px;}
.ws8{word-spacing:-15.228000px;}
.ws7{word-spacing:-15.120000px;}
.ws6{word-spacing:-15.012000px;}
.ws24{word-spacing:-14.572800px;}
.ws0{word-spacing:-11.880000px;}
.wsa{word-spacing:0.000000px;}
._22{margin-left:-3086.139840px;}
._2a{margin-left:-3082.973280px;}
._21{margin-left:-2962.347120px;}
._29{margin-left:-2900.199120px;}
._26{margin-left:-2863.043520px;}
._25{margin-left:-2815.008000px;}
._1a{margin-left:-2698.224000px;}
._28{margin-left:-2543.718000px;}
._b{margin-left:-1431.756000px;}
._2b{margin-left:-1364.922240px;}
._da{margin-left:-996.867840px;}
._13{margin-left:-734.410080px;}
._16{margin-left:-732.970080px;}
._d9{margin-left:-720.407520px;}
._ca{margin-left:-661.124160px;}
._d5{margin-left:-651.147000px;}
._dc{margin-left:-474.489840px;}
._11{margin-left:-460.450560px;}
._12{margin-left:-457.059840px;}
._e{margin-left:-447.580800px;}
._c9{margin-left:-396.602520px;}
._c{margin-left:-392.883840px;}
._15{margin-left:-379.946880px;}
._17{margin-left:-352.696320px;}
._d6{margin-left:-347.833440px;}
._cb{margin-left:-344.316960px;}
._14{margin-left:-330.376320px;}
._cc{margin-left:-329.293440px;}
._3d{margin-left:-319.147200px;}
._f{margin-left:-286.522560px;}
._b0{margin-left:-277.861680px;}
._dd{margin-left:-274.633320px;}
._d4{margin-left:-272.967360px;}
._10{margin-left:-271.465920px;}
._a3{margin-left:-268.880640px;}
._af{margin-left:-267.120600px;}
._d8{margin-left:-265.872840px;}
._58{margin-left:-263.650800px;}
._57{margin-left:-262.198080px;}
._ce{margin-left:-257.602440px;}
._a6{margin-left:-253.795440px;}
._c1{margin-left:-251.877240px;}
._c7{margin-left:-250.620720px;}
._a5{margin-left:-248.936520px;}
._4e{margin-left:-247.928640px;}
._c6{margin-left:-246.414240px;}
._a0{margin-left:-245.163360px;}
._9a{margin-left:-242.873760px;}
._a4{margin-left:-240.782160px;}
._d3{margin-left:-239.659680px;}
._d{margin-left:-238.570560px;}
._cd{margin-left:-235.772640px;}
._b6{margin-left:-234.604440px;}
._75{margin-left:-233.379120px;}
._74{margin-left:-231.836400px;}
._bb{margin-left:-230.630520px;}
._be{margin-left:-228.703440px;}
._b5{margin-left:-227.169360px;}
._b9{margin-left:-226.100760px;}
._8d{margin-left:-224.703840px;}
._24{margin-left:-222.905520px;}
._51{margin-left:-221.158080px;}
._cf{margin-left:-220.114440px;}
._bf{margin-left:-218.858280px;}
._9b{margin-left:-217.534080px;}
._83{margin-left:-216.282240px;}
._ba{margin-left:-214.933440px;}
._77{margin-left:-213.071040px;}
._76{margin-left:-211.978080px;}
._9c{margin-left:-210.458880px;}
._4c{margin-left:-209.030400px;}
._4b{margin-left:-207.478080px;}
._a2{margin-left:-205.763640px;}
._c2{margin-left:-204.718440px;}
._b1{margin-left:-203.471040px;}
._b8{margin-left:-202.452360px;}
._4d{margin-left:-200.998080px;}
._50{margin-left:-198.880320px;}
._4f{margin-left:-197.623680px;}
._6a{margin-left:-196.033440px;}
._18{margin-left:-194.120640px;}
._aa{margin-left:-192.299520px;}
._5a{margin-left:-191.099520px;}
._ac{margin-left:-189.986640px;}
._59{margin-left:-188.734080px;}
._69{margin-left:-187.444800px;}
._27{margin-left:-186.142320px;}
._43{margin-left:-184.438080px;}
._ad{margin-left:-182.701200px;}
._6b{margin-left:-181.692720px;}
._79{margin-left:-179.659440px;}
._68{margin-left:-178.059120px;}
._8b{margin-left:-176.543040px;}
._70{margin-left:-175.463040px;}
._5c{margin-left:-174.254400px;}
._5b{margin-left:-172.918080px;}
._84{margin-left:-171.512400px;}
._a8{margin-left:-170.506680px;}
._48{margin-left:-168.776640px;}
._47{margin-left:-167.502480px;}
._b4{margin-left:-166.305840px;}
._8e{margin-left:-165.083520px;}
._62{margin-left:-163.707840px;}
._99{margin-left:-162.125280px;}
._96{margin-left:-160.917120px;}
._66{margin-left:-159.058560px;}
._60{margin-left:-157.731840px;}
._72{margin-left:-156.712440px;}
._c0{margin-left:-155.693160px;}
._82{margin-left:-154.637040px;}
._b3{margin-left:-153.477720px;}
._6c{margin-left:-152.395440px;}
._c5{margin-left:-151.327440px;}
._7b{margin-left:-150.318960px;}
._88{margin-left:-148.639560px;}
._ae{margin-left:-147.490800px;}
._93{margin-left:-146.487960px;}
._81{margin-left:-144.838080px;}
._ab{margin-left:-143.785080px;}
._61{margin-left:-142.678080px;}
._65{margin-left:-140.886240px;}
._87{margin-left:-139.292400px;}
._63{margin-left:-137.652240px;}
._86{margin-left:-136.600080px;}
._92{margin-left:-134.946840px;}
._71{margin-left:-133.911240px;}
._4a{margin-left:-132.079680px;}
._49{margin-left:-130.438080px;}
._c8{margin-left:-129.371400px;}
._5f{margin-left:-128.278080px;}
._7e{margin-left:-126.298080px;}
._8f{margin-left:-124.422720px;}
._78{margin-left:-122.927280px;}
._7a{margin-left:-121.507200px;}
._19{margin-left:-119.853120px;}
._b2{margin-left:-118.724160px;}
._64{margin-left:-116.994240px;}
._95{margin-left:-115.283760px;}
._9f{margin-left:-113.756160px;}
._8c{margin-left:-112.272000px;}
._56{margin-left:-110.617920px;}
._55{margin-left:-108.838080px;}
._90{margin-left:-107.343360px;}
._5d{margin-left:-105.382080px;}
._7c{margin-left:-103.530000px;}
._44{margin-left:-102.248400px;}
._46{margin-left:-100.918080px;}
._8a{margin-left:-99.538560px;}
._80{margin-left:-97.682880px;}
._89{margin-left:-96.598080px;}
._7f{margin-left:-95.014080px;}
._42{margin-left:-93.056040px;}
._a7{margin-left:-91.931640px;}
._45{margin-left:-90.711120px;}
._67{margin-left:-89.398080px;}
._9e{margin-left:-87.853200px;}
._73{margin-left:-86.544000px;}
._94{margin-left:-85.335240px;}
._6d{margin-left:-83.911440px;}
._39{margin-left:-81.959040px;}
._54{margin-left:-79.996320px;}
._53{margin-left:-78.525120px;}
._7d{margin-left:-77.354640px;}
._b7{margin-left:-76.296600px;}
._91{margin-left:-75.056040px;}
._d2{margin-left:-73.420200px;}
._38{margin-left:-72.322560px;}
._a9{margin-left:-71.162040px;}
._97{margin-left:-69.338880px;}
._a1{margin-left:-68.277720px;}
._41{margin-left:-67.089600px;}
._3c{margin-left:-65.491200px;}
._6f{margin-left:-64.474800px;}
._5e{margin-left:-62.937840px;}
._c3{margin-left:-61.916640px;}
._33{margin-left:-60.759360px;}
._d0{margin-left:-59.556000px;}
._34{margin-left:-58.353120px;}
._2c{margin-left:-56.278080px;}
._c4{margin-left:-55.195200px;}
._40{margin-left:-53.982720px;}
._d1{margin-left:-52.698000px;}
._2d{margin-left:-50.227200px;}
._3e{margin-left:-48.798720px;}
._30{margin-left:-45.720000px;}
._3f{margin-left:-44.501760px;}
._9d{margin-left:-43.481280px;}
._2f{margin-left:-42.289920px;}
._32{margin-left:-41.011200px;}
._3b{margin-left:-39.948480px;}
._3a{margin-left:-38.131200px;}
._31{margin-left:-36.558720px;}
._35{margin-left:-34.678080px;}
._bc{margin-left:-33.442560px;}
._2e{margin-left:-31.075200px;}
._37{margin-left:-29.551680px;}
._36{margin-left:-27.391680px;}
._bd{margin-left:-23.629440px;}
._98{margin-left:-17.732520px;}
._52{margin-left:-16.493760px;}
._85{margin-left:-15.426480px;}
._1f{margin-left:-14.134320px;}
._6e{margin-left:-12.594240px;}
._1b{margin-left:-11.593440px;}
._20{margin-left:-9.983760px;}
._1e{margin-left:-8.784720px;}
._23{margin-left:-6.527040px;}
._1d{margin-left:-4.815840px;}
._1c{margin-left:-3.525840px;}
._1{margin-left:-1.080000px;}
._0{width:1.038000px;}
._4{width:2.202000px;}
._6{width:3.618000px;}
._a{width:4.860000px;}
._5{width:6.156000px;}
._9{width:7.992000px;}
._8{width:9.234000px;}
._7{width:10.260000px;}
._d7{width:11.933520px;}
._db{width:12.983400px;}
._2{width:15.066000px;}
._3{width:16.092000px;}
.fc6{color:rgb(255,0,0);}
.fc4{color:transparent;}
.fc2{color:rgb(0,0,255);}
.fc5{color:rgb(64,64,64);}
.fc3{color:rgb(34,34,34);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(79,129,189);}
.fsa{font-size:5.760000px;}
.fs7{font-size:30.240000px;}
.fs6{font-size:36.000000px;}
.fs5{font-size:48.240000px;}
.fs0{font-size:54.000000px;}
.fs2{font-size:59.760000px;}
.fs8{font-size:66.240000px;}
.fsb{font-size:69.822393px;}
.fs1{font-size:72.000000px;}
.fs9{font-size:90.000000px;}
.fsc{font-size:95.760000px;}
.fs4{font-size:102.240000px;}
.fs3{font-size:108.000000px;}
.y46{bottom:-16.200000px;}
.y0{bottom:0.000000px;}
.y64{bottom:3.240000px;}
.y45{bottom:16.020000px;}
.y44{bottom:17.820000px;}
.y63{bottom:19.080000px;}
.y54{bottom:19.110000px;}
.y43{bottom:19.440000px;}
.y42{bottom:22.860000px;}
.y41{bottom:34.380000px;}
.y62{bottom:34.920000px;}
.y53{bottom:35.130000px;}
.y61{bottom:50.760000px;}
.y52{bottom:50.970000px;}
.ya{bottom:55.980000px;}
.y67{bottom:56.520000px;}
.y40{bottom:60.840000px;}
.y60{bottom:66.630000px;}
.y51{bottom:66.810000px;}
.y9{bottom:71.856000px;}
.y50{bottom:79.590000px;}
.y5f{bottom:82.470000px;}
.y10a{bottom:83.916000px;}
.y3f{bottom:85.680000px;}
.y8{bottom:87.696000px;}
.y89{bottom:96.696000px;}
.y4f{bottom:98.310000px;}
.y7{bottom:103.536000px;}
.y3e{bottom:104.610000px;}
.yde{bottom:110.016000px;}
.y123{bottom:110.736000px;}
.y109{bottom:111.276000px;}
.y4e{bottom:114.150000px;}
.y6{bottom:119.376000px;}
.yef{bottom:119.916000px;}
.yc4{bottom:120.096000px;}
.yab{bottom:128.376000px;}
.y5e{bottom:129.810000px;}
.y4d{bottom:129.990000px;}
.y5{bottom:135.216000px;}
.y108{bottom:138.636000px;}
.y88{bottom:142.236000px;}
.y5d{bottom:145.650000px;}
.y4c{bottom:145.830000px;}
.y4{bottom:151.050000px;}
.ydd{bottom:155.550000px;}
.y122{bottom:156.090000px;}
.y138{bottom:156.810000px;}
.y4b{bottom:158.610000px;}
.y5c{bottom:161.490000px;}
.yc2{bottom:165.450000px;}
.yc3{bottom:165.810000px;}
.y3{bottom:166.890000px;}
.y4a{bottom:169.050000px;}
.y87{bottom:169.410000px;}
.yaa{bottom:173.730000px;}
.y5b{bottom:177.330000px;}
.y49{bottom:179.490000px;}
.y137{bottom:180.930000px;}
.y136{bottom:183.450000px;}
.y106{bottom:183.810000px;}
.y107{bottom:184.170000px;}
.yee{bottom:192.810000px;}
.y5a{bottom:193.170000px;}
.y48{bottom:196.950000px;}
.ydc{bottom:200.910000px;}
.ya8{bottom:201.090000px;}
.y121{bottom:201.450000px;}
.ya9{bottom:201.810000px;}
.y3c{bottom:202.170000px;}
.y135{bottom:208.290000px;}
.y59{bottom:209.010000px;}
.yc1{bottom:210.810000px;}
.y86{bottom:214.950000px;}
.y3b{bottom:221.430000px;}
.y58{bottom:221.790000px;}
.y120{bottom:228.810000px;}
.y105{bottom:229.170000px;}
.y57{bottom:232.230000px;}
.yed{bottom:238.170000px;}
.y3a{bottom:240.690000px;}
.y85{bottom:242.310000px;}
.y56{bottom:242.490000px;}
.ya7{bottom:246.450000px;}
.y11f{bottom:256.170000px;}
.yc0{bottom:256.350000px;}
.y104{bottom:256.530000px;}
.y39{bottom:260.130000px;}
.y84{bottom:269.670000px;}
.ya5{bottom:273.810000px;}
.ya6{bottom:274.170000px;}
.y38{bottom:279.390000px;}
.y11e{bottom:283.530000px;}
.ybf{bottom:283.710000px;}
.yda{bottom:291.810000px;}
.ydb{bottom:292.530000px;}
.y83{bottom:297.030000px;}
.y37{bottom:298.830000px;}
.y103{bottom:301.890000px;}
.y11d{bottom:310.890000px;}
.yec{bottom:311.070000px;}
.y134{bottom:311.610000px;}
.y36{bottom:318.135000px;}
.ya4{bottom:319.035000px;}
.yd9{bottom:319.215000px;}
.y82{bottom:324.435000px;}
.ybe{bottom:328.935000px;}
.y102{bottom:329.295000px;}
.y35{bottom:337.575000px;}
.y133{bottom:338.295000px;}
.yd8{bottom:346.575000px;}
.y81{bottom:351.795000px;}
.yeb{bottom:356.295000px;}
.y11c{bottom:356.655000px;}
.y34{bottom:356.835000px;}
.ya2{bottom:364.575000px;}
.ya3{bottom:365.295000px;}
.yd7{bottom:373.935000px;}
.ybd{bottom:374.475000px;}
.y101{bottom:374.655000px;}
.y33{bottom:376.275000px;}
.y80{bottom:379.155000px;}
.y132{bottom:383.475000px;}
.y11a{bottom:383.655000px;}
.y11b{bottom:384.375000px;}
.ya0{bottom:391.935000px;}
.ya1{bottom:392.655000px;}
.y32{bottom:395.535000px;}
.yd6{bottom:401.295000px;}
.ybc{bottom:401.835000px;}
.y31{bottom:414.975000px;}
.y9f{bottom:419.295000px;}
.yff{bottom:420.195000px;}
.y100{bottom:420.915000px;}
.y7f{bottom:424.515000px;}
.yd5{bottom:428.655000px;}
.y119{bottom:429.015000px;}
.ybb{bottom:429.195000px;}
.yea{bottom:429.915000px;}
.y30{bottom:434.235000px;}
.yfd{bottom:447.555000px;}
.yfe{bottom:448.275000px;}
.y7e{bottom:450.075000px;}
.y7d{bottom:451.875000px;}
.y2f{bottom:453.675000px;}
.yd4{bottom:456.015000px;}
.ye9{bottom:456.375000px;}
.y9e{bottom:464.655000px;}
.y2e{bottom:472.935000px;}
.yba{bottom:474.375000px;}
.yd3{bottom:483.375000px;}
.y12f{bottom:483.735000px;}
.y130{bottom:484.095000px;}
.y131{bottom:484.455000px;}
.y2d{bottom:488.775000px;}
.yfc{bottom:492.915000px;}
.y7c{bottom:497.235000px;}
.y118{bottom:501.735000px;}
.ye8{bottom:501.915000px;}
.y55{bottom:503.895000px;}
.y2c{bottom:509.655000px;}
.y9d{bottom:510.195000px;}
.yd2{bottom:510.735000px;}
.y2b{bottom:518.475000px;}
.yb9{bottom:519.915000px;}
.y2a{bottom:527.295000px;}
.y117{bottom:528.915000px;}
.y12e{bottom:529.095000px;}
.ye7{bottom:529.275000px;}
.y29{bottom:536.115000px;}
.yd1{bottom:538.095000px;}
.yfb{bottom:538.275000px;}
.y7b{bottom:542.595000px;}
.y28{bottom:544.935000px;}
.y27{bottom:553.755000px;}
.y9c{bottom:555.375000px;}
.y116{bottom:556.275000px;}
.y12d{bottom:556.455000px;}
.ye6{bottom:556.635000px;}
.y26{bottom:562.395000px;}
.y14a{bottom:563.835000px;}
.yb8{bottom:565.275000px;}
.yd0{bottom:565.455000px;}
.y47{bottom:566.895000px;}
.y7a{bottom:569.985000px;}
.y25{bottom:571.245000px;}
.y24{bottom:582.405000px;}
.yfa{bottom:583.485000px;}
.y12c{bottom:583.845000px;}
.yce{bottom:592.845000px;}
.ycf{bottom:594.105000px;}
.y9b{bottom:600.945000px;}
.y149{bottom:601.305000px;}
.y115{bottom:601.665000px;}
.ye5{bottom:602.025000px;}
.y1f{bottom:602.745000px;}
.y23{bottom:606.885000px;}
.y79{bottom:610.845000px;}
.y12b{bottom:611.205000px;}
.yb7{bottom:611.565000px;}
.ycd{bottom:620.205000px;}
.y1e{bottom:620.385000px;}
.y22{bottom:628.125000px;}
.y9a{bottom:628.305000px;}
.yf9{bottom:628.845000px;}
.y114{bottom:629.025000px;}
.y1d{bottom:638.025000px;}
.yb6{bottom:638.205000px;}
.y148{bottom:638.565000px;}
.y78{bottom:645.225000px;}
.ye4{bottom:647.385000px;}
.y21{bottom:649.185000px;}
.y1c{bottom:655.485000px;}
.y99{bottom:655.665000px;}
.y12a{bottom:656.385000px;}
.y147{bottom:662.325000px;}
.ycb{bottom:665.565000px;}
.ycc{bottom:666.285000px;}
.y20{bottom:670.245000px;}
.y77{bottom:672.405000px;}
.y1b{bottom:673.125000px;}
.yf7{bottom:674.205000px;}
.y113{bottom:674.385000px;}
.yf8{bottom:674.565000px;}
.y98{bottom:683.025000px;}
.yb4{bottom:683.385000px;}
.yb5{bottom:684.645000px;}
.y1a{bottom:690.765000px;}
.ye3{bottom:692.745000px;}
.y129{bottom:701.745000px;}
.y146{bottom:707.685000px;}
.y19{bottom:708.225000px;}
.y97{bottom:710.385000px;}
.yca{bottom:710.745000px;}
.y76{bottom:717.045000px;}
.yf6{bottom:719.565000px;}
.y112{bottom:719.745000px;}
.y18{bottom:725.865000px;}
.yb3{bottom:728.925000px;}
.y96{bottom:737.745000px;}
.ye2{bottom:738.105000px;}
.y75{bottom:742.065000px;}
.y17{bottom:743.505000px;}
.y111{bottom:747.105000px;}
.y128{bottom:747.285000px;}
.y145{bottom:748.545000px;}
.yb2{bottom:756.285000px;}
.y95{bottom:765.105000px;}
.y74{bottom:766.905000px;}
.y144{bottom:772.305000px;}
.y16{bottom:775.905000px;}
.yb1{bottom:783.645000px;}
.y73{bottom:791.745000px;}
.y94{bottom:792.465000px;}
.y127{bottom:792.645000px;}
.y15{bottom:799.485000px;}
.y143{bottom:799.665000px;}
.yc9{bottom:811.005000px;}
.y14{bottom:815.325000px;}
.y72{bottom:816.585000px;}
.y93{bottom:819.870000px;}
.y142{bottom:822.750000px;}
.yb0{bottom:828.870000px;}
.y126{bottom:838.230000px;}
.y71{bottom:841.470000px;}
.y141{bottom:846.510000px;}
.y13{bottom:847.050000px;}
.y92{bottom:847.230000px;}
.ye1{bottom:856.230000px;}
.yc7{bottom:856.410000px;}
.yc8{bottom:856.770000px;}
.y110{bottom:865.230000px;}
.y140{bottom:873.870000px;}
.yaf{bottom:874.410000px;}
.y91{bottom:874.590000px;}
.y70{bottom:878.190000px;}
.y125{bottom:883.590000px;}
.y12{bottom:887.910000px;}
.y10e{bottom:892.590000px;}
.y10f{bottom:892.950000px;}
.y13f{bottom:901.230000px;}
.yae{bottom:901.770000px;}
.y90{bottom:901.950000px;}
.yc6{bottom:902.130000px;}
.y6f{bottom:908.790000px;}
.y11{bottom:918.510000px;}
.yf5{bottom:919.950000px;}
.y6e{bottom:925.350000px;}
.y13d{bottom:928.590000px;}
.ye0{bottom:929.130000px;}
.y13e{bottom:929.850000px;}
.y10d{bottom:937.950000px;}
.y6d{bottom:944.430000px;}
.y8f{bottom:947.130000px;}
.yf3{bottom:947.310000px;}
.yf4{bottom:948.030000px;}
.y13c{bottom:955.950000px;}
.y6c{bottom:963.330000px;}
.y3d{bottom:973.050000px;}
.ydf{bottom:974.310000px;}
.y124{bottom:974.490000px;}
.y6b{bottom:981.870000px;}
.y10{bottom:982.410000px;}
.y10c{bottom:983.310000px;}
.yad{bottom:992.490000px;}
.y8e{bottom:992.670000px;}
.yc5{bottom:993.210000px;}
.y6a{bottom:1000.950000px;}
.yf{bottom:1004.010000px;}
.y13b{bottom:1010.490000px;}
.y10b{bottom:1010.670000px;}
.y69{bottom:1019.850000px;}
.y8c{bottom:1020.030000px;}
.y8d{bottom:1020.750000px;}
.ye{bottom:1025.790000px;}
.y139{bottom:1037.850000px;}
.yf1{bottom:1038.030000px;}
.y13a{bottom:1038.210000px;}
.yf2{bottom:1038.750000px;}
.yd{bottom:1047.570000px;}
.y68{bottom:1060.170000px;}
.yac{bottom:1065.210000px;}
.y8a{bottom:1065.390000px;}
.yf0{bottom:1065.750000px;}
.y8b{bottom:1066.110000px;}
.yc{bottom:1069.350000px;}
.y66{bottom:1089.180000px;}
.yb{bottom:1091.160000px;}
.y65{bottom:1112.220000px;}
.y2{bottom:1112.400000px;}
.y1{bottom:1128.060000px;}
.h10{height:3.839063px;}
.h11{height:4.480313px;}
.hf{height:20.155078px;}
.ha{height:21.203437px;}
.h7{height:25.623281px;}
.h8{height:37.757812px;}
.h1{height:37.863281px;}
.h9{height:41.902031px;}
.hb{height:46.316250px;}
.hd{height:46.445625px;}
.h2{height:50.484375px;}
.h6{height:50.529023px;}
.h15{height:55.503491px;}
.h19{height:57.798281px;}
.h17{height:58.024687px;}
.h18{height:58.283437px;}
.h1d{height:60.924129px;}
.h3{height:61.423863px;}
.h1a{height:61.481602px;}
.h1b{height:62.921602px;}
.he{height:63.105469px;}
.h1c{height:65.801602px;}
.h1e{height:68.148281px;}
.h20{height:69.086250px;}
.h5{height:71.687812px;}
.h12{height:74.004654px;}
.h1f{height:75.348281px;}
.h21{height:78.228281px;}
.h16{height:95.027344px;}
.h22{height:99.874688px;}
.h4{height:111.006981px;}
.hc{height:117.210000px;}
.h13{height:211.170000px;}
.h14{height:274.350000px;}
.h0{height:1188.000000px;}
.w2{width:230.115000px;}
.w3{width:526.200000px;}
.w1{width:544.230000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.xa{left:10.785000px;}
.xb{left:65.704500px;}
.x16{left:70.380000px;}
.x1{left:75.600000px;}
.x59{left:86.220000px;}
.x5a{left:93.060000px;}
.x8{left:98.985000px;}
.x9{left:110.370000px;}
.x2b{left:118.476000px;}
.x6{left:122.970000px;}
.x2{left:128.736000px;}
.x1a{left:140.400000px;}
.x5{left:180.225000px;}
.x15{left:203.250000px;}
.xc{left:219.445500px;}
.x2a{left:234.750000px;}
.x35{left:236.730000px;}
.x1c{left:239.430000px;}
.x63{left:243.390000px;}
.x4e{left:265.890000px;}
.x7{left:272.010000px;}
.x29{left:290.235000px;}
.xf{left:299.595000px;}
.x61{left:322.635000px;}
.xd{left:328.395000px;}
.x4b{left:336.855000px;}
.x4{left:340.815000px;}
.x42{left:356.115000px;}
.x2f{left:373.575000px;}
.x65{left:411.555000px;}
.x44{left:443.955000px;}
.x32{left:447.015000px;}
.x12{left:454.935000px;}
.x10{left:465.375000px;}
.x11{left:475.635000px;}
.x31{left:504.825000px;}
.x1d{left:510.405000px;}
.xe{left:515.415000px;}
.x55{left:542.985000px;}
.x62{left:559.365000px;}
.x46{left:564.765000px;}
.x14{left:570.165000px;}
.x4a{left:576.645000px;}
.x13{left:584.025000px;}
.x4f{left:595.905000px;}
.x5d{left:599.685000px;}
.x3f{left:606.165000px;}
.x40{left:613.005000px;}
.x4c{left:618.045000px;}
.x60{left:620.205000px;}
.x45{left:628.485000px;}
.x56{left:655.845000px;}
.x57{left:662.685000px;}
.x28{left:668.445000px;}
.x18{left:679.110000px;}
.x4d{left:686.670000px;}
.x5b{left:688.110000px;}
.x5c{left:694.950000px;}
.x66{left:702.330000px;}
.x34{left:709.710000px;}
.x3a{left:716.190000px;}
.x1f{left:740.310000px;}
.x1e{left:745.530000px;}
.x52{left:747.150000px;}
.x39{left:758.850000px;}
.x5e{left:769.830000px;}
.x50{left:771.270000px;}
.x51{left:778.110000px;}
.x3d{left:785.130000px;}
.x64{left:786.570000px;}
.x53{left:789.990000px;}
.x19{left:791.430000px;}
.x5f{left:792.690000px;}
.x2c{left:795.390000px;}
.x27{left:798.630000px;}
.x3c{left:799.710000px;}
.x48{left:800.970000px;}
.x1b{left:802.950000px;}
.x37{left:804.750000px;}
.x43{left:806.190000px;}
.x58{left:807.630000px;}
.x23{left:808.710000px;}
.x30{left:810.150000px;}
.x33{left:812.850000px;}
.x49{left:814.650000px;}
.x41{left:815.910000px;}
.x17{left:816.990000px;}
.x3b{left:818.790000px;}
.x54{left:820.050000px;}
.x25{left:821.490000px;}
.x2d{left:822.750000px;}
.x3e{left:824.010000px;}
.x21{left:825.090000px;}
.x24{left:827.070000px;}
.x22{left:828.150000px;}
.x38{left:829.230000px;}
.x47{left:830.670000px;}
.x2e{left:833.370000px;}
.x26{left:835.170000px;}
.x36{left:837.330000px;}
.x20{left:839.130000px;}
.x3{left:842.550000px;}
@media print{
.v1{vertical-align:-116.480000pt;}
.v5{vertical-align:-55.040000pt;}
.v4{vertical-align:-46.080000pt;}
.v3{vertical-align:-10.880000pt;}
.v6{vertical-align:-7.680000pt;}
.vf{vertical-align:-6.400000pt;}
.vb{vertical-align:-3.840000pt;}
.vd{vertical-align:-2.560000pt;}
.v9{vertical-align:-1.280000pt;}
.v0{vertical-align:0.000000pt;}
.v8{vertical-align:1.280000pt;}
.v10{vertical-align:2.560000pt;}
.va{vertical-align:3.840000pt;}
.vc{vertical-align:6.400000pt;}
.v7{vertical-align:7.680000pt;}
.ve{vertical-align:8.960000pt;}
.v2{vertical-align:16.000000pt;}
.ls25{letter-spacing:-32.106667pt;}
.ls32{letter-spacing:-0.890667pt;}
.ls30{letter-spacing:-0.746667pt;}
.lsf{letter-spacing:-0.640000pt;}
.ls21{letter-spacing:-0.476267pt;}
.ls2f{letter-spacing:-0.353067pt;}
.ls23{letter-spacing:-0.320000pt;}
.ls1b{letter-spacing:-0.256000pt;}
.ls15{letter-spacing:-0.250667pt;}
.lsb{letter-spacing:-0.240000pt;}
.ls34{letter-spacing:-0.222933pt;}
.ls1c{letter-spacing:-0.217600pt;}
.ls1f{letter-spacing:-0.115200pt;}
.ls14{letter-spacing:-0.105067pt;}
.ls13{letter-spacing:-0.102400pt;}
.ls9{letter-spacing:-0.080000pt;}
.ls10{letter-spacing:-0.061333pt;}
.ls1d{letter-spacing:-0.053867pt;}
.ls31{letter-spacing:-0.030720pt;}
.ls16{letter-spacing:-0.028160pt;}
.ls19{letter-spacing:-0.002560pt;}
.ls7{letter-spacing:0.000000pt;}
.ls24{letter-spacing:0.002560pt;}
.ls33{letter-spacing:0.007680pt;}
.lse{letter-spacing:0.035840pt;}
.ls8{letter-spacing:0.048000pt;}
.ls0{letter-spacing:0.064000pt;}
.lsa{letter-spacing:0.096000pt;}
.ls2{letter-spacing:0.160000pt;}
.ls12{letter-spacing:0.163733pt;}
.ls22{letter-spacing:0.189333pt;}
.ls5{letter-spacing:0.192000pt;}
.ls6{letter-spacing:0.256000pt;}
.ls36{letter-spacing:0.258667pt;}
.ls1e{letter-spacing:0.286933pt;}
.ls1{letter-spacing:0.288000pt;}
.ls1a{letter-spacing:0.320000pt;}
.ls2d{letter-spacing:0.384000pt;}
.ls20{letter-spacing:0.389333pt;}
.ls35{letter-spacing:0.417067pt;}
.ls2c{letter-spacing:0.533333pt;}
.ls27{letter-spacing:0.538667pt;}
.ls28{letter-spacing:0.576000pt;}
.ls11{letter-spacing:1.173333pt;}
.ls17{letter-spacing:2.453333pt;}
.ls29{letter-spacing:3.093333pt;}
.ls2a{letter-spacing:3.733333pt;}
.ls2e{letter-spacing:4.373333pt;}
.ls18{letter-spacing:5.013333pt;}
.ls2b{letter-spacing:5.653333pt;}
.ls26{letter-spacing:6.293333pt;}
.ls4{letter-spacing:373.920000pt;}
.ls3{letter-spacing:1350.186667pt;}
.lsc{letter-spacing:2570.028373pt;}
.lsd{letter-spacing:2733.819733pt;}
.ws12{word-spacing:-58.880000pt;}
.ws1{word-spacing:-48.288000pt;}
.ws9{word-spacing:-48.256000pt;}
.ws2{word-spacing:-48.000000pt;}
.ws3{word-spacing:-42.880000pt;}
.ws4{word-spacing:-32.000000pt;}
.ws23{word-spacing:-19.240960pt;}
.ws22{word-spacing:-19.203627pt;}
.ws2a{word-spacing:-19.082027pt;}
.ws1d{word-spacing:-19.054293pt;}
.ws25{word-spacing:-19.048960pt;}
.ws17{word-spacing:-18.984960pt;}
.ws1b{word-spacing:-18.951893pt;}
.ws2c{word-spacing:-18.923627pt;}
.ws1f{word-spacing:-18.854293pt;}
.wse{word-spacing:-18.828693pt;}
.ws14{word-spacing:-18.700800pt;}
.ws2b{word-spacing:-18.672640pt;}
.ws21{word-spacing:-18.667520pt;}
.ws10{word-spacing:-18.664960pt;}
.ws15{word-spacing:-18.662400pt;}
.ws13{word-spacing:-18.636800pt;}
.ws27{word-spacing:-18.634240pt;}
.ws1a{word-spacing:-18.611093pt;}
.wsd{word-spacing:-18.603627pt;}
.wsf{word-spacing:-18.562560pt;}
.ws1c{word-spacing:-18.549760pt;}
.ws19{word-spacing:-18.447360pt;}
.ws29{word-spacing:-18.442027pt;}
.ws11{word-spacing:-18.414293pt;}
.ws18{word-spacing:-18.408960pt;}
.ws20{word-spacing:-18.344960pt;}
.ws26{word-spacing:-18.311893pt;}
.ws1e{word-spacing:-18.188693pt;}
.ws16{word-spacing:-18.024960pt;}
.ws28{word-spacing:-17.774293pt;}
.ws5{word-spacing:-17.520000pt;}
.wsb{word-spacing:-16.839040pt;}
.wsc{word-spacing:-14.720000pt;}
.ws8{word-spacing:-13.536000pt;}
.ws7{word-spacing:-13.440000pt;}
.ws6{word-spacing:-13.344000pt;}
.ws24{word-spacing:-12.953600pt;}
.ws0{word-spacing:-10.560000pt;}
.wsa{word-spacing:0.000000pt;}
._22{margin-left:-2743.235413pt;}
._2a{margin-left:-2740.420693pt;}
._21{margin-left:-2633.197440pt;}
._29{margin-left:-2577.954773pt;}
._26{margin-left:-2544.927573pt;}
._25{margin-left:-2502.229333pt;}
._1a{margin-left:-2398.421333pt;}
._28{margin-left:-2261.082667pt;}
._b{margin-left:-1272.672000pt;}
._2b{margin-left:-1213.264213pt;}
._da{margin-left:-886.104747pt;}
._13{margin-left:-652.808960pt;}
._16{margin-left:-651.528960pt;}
._d9{margin-left:-640.362240pt;}
._ca{margin-left:-587.665920pt;}
._d5{margin-left:-578.797333pt;}
._dc{margin-left:-421.768747pt;}
._11{margin-left:-409.289387pt;}
._12{margin-left:-406.275413pt;}
._e{margin-left:-397.849600pt;}
._c9{margin-left:-352.535573pt;}
._c{margin-left:-349.230080pt;}
._15{margin-left:-337.730560pt;}
._17{margin-left:-313.507840pt;}
._d6{margin-left:-309.185280pt;}
._cb{margin-left:-306.059520pt;}
._14{margin-left:-293.667840pt;}
._cc{margin-left:-292.705280pt;}
._3d{margin-left:-283.686400pt;}
._f{margin-left:-254.686720pt;}
._b0{margin-left:-246.988160pt;}
._dd{margin-left:-244.118507pt;}
._d4{margin-left:-242.637653pt;}
._10{margin-left:-241.303040pt;}
._a3{margin-left:-239.005013pt;}
._af{margin-left:-237.440533pt;}
._d8{margin-left:-236.331413pt;}
._58{margin-left:-234.356267pt;}
._57{margin-left:-233.064960pt;}
._ce{margin-left:-228.979947pt;}
._a6{margin-left:-225.595947pt;}
._c1{margin-left:-223.890880pt;}
._c7{margin-left:-222.773973pt;}
._a5{margin-left:-221.276907pt;}
._4e{margin-left:-220.381013pt;}
._c6{margin-left:-219.034880pt;}
._a0{margin-left:-217.922987pt;}
._9a{margin-left:-215.887787pt;}
._a4{margin-left:-214.028587pt;}
._d3{margin-left:-213.030827pt;}
._d{margin-left:-212.062720pt;}
._cd{margin-left:-209.575680pt;}
._b6{margin-left:-208.537280pt;}
._75{margin-left:-207.448107pt;}
._74{margin-left:-206.076800pt;}
._bb{margin-left:-205.004907pt;}
._be{margin-left:-203.291947pt;}
._b5{margin-left:-201.928320pt;}
._b9{margin-left:-200.978453pt;}
._8d{margin-left:-199.736747pt;}
._24{margin-left:-198.138240pt;}
._51{margin-left:-196.584960pt;}
._cf{margin-left:-195.657280pt;}
._bf{margin-left:-194.540693pt;}
._9b{margin-left:-193.363627pt;}
._83{margin-left:-192.250880pt;}
._ba{margin-left:-191.051947pt;}
._77{margin-left:-189.396480pt;}
._76{margin-left:-188.424960pt;}
._9c{margin-left:-187.074560pt;}
._4c{margin-left:-185.804800pt;}
._4b{margin-left:-184.424960pt;}
._a2{margin-left:-182.901013pt;}
._c2{margin-left:-181.971947pt;}
._b1{margin-left:-180.863147pt;}
._b8{margin-left:-179.957653pt;}
._4d{margin-left:-178.664960pt;}
._50{margin-left:-176.782507pt;}
._4f{margin-left:-175.665493pt;}
._6a{margin-left:-174.251947pt;}
._18{margin-left:-172.551680pt;}
._aa{margin-left:-170.932907pt;}
._5a{margin-left:-169.866240pt;}
._ac{margin-left:-168.877013pt;}
._59{margin-left:-167.763627pt;}
._69{margin-left:-166.617600pt;}
._27{margin-left:-165.459840pt;}
._43{margin-left:-163.944960pt;}
._ad{margin-left:-162.401067pt;}
._6b{margin-left:-161.504640pt;}
._79{margin-left:-159.697280pt;}
._68{margin-left:-158.274773pt;}
._8b{margin-left:-156.927147pt;}
._70{margin-left:-155.967147pt;}
._5c{margin-left:-154.892800pt;}
._5b{margin-left:-153.704960pt;}
._84{margin-left:-152.455467pt;}
._a8{margin-left:-151.561493pt;}
._48{margin-left:-150.023680pt;}
._47{margin-left:-148.891093pt;}
._b4{margin-left:-147.827413pt;}
._8e{margin-left:-146.740907pt;}
._62{margin-left:-145.518080pt;}
._99{margin-left:-144.111360pt;}
._96{margin-left:-143.037440pt;}
._66{margin-left:-141.385387pt;}
._60{margin-left:-140.206080pt;}
._72{margin-left:-139.299947pt;}
._c0{margin-left:-138.393920pt;}
._82{margin-left:-137.455147pt;}
._b3{margin-left:-136.424640pt;}
._6c{margin-left:-135.462613pt;}
._c5{margin-left:-134.513280pt;}
._7b{margin-left:-133.616853pt;}
._88{margin-left:-132.124053pt;}
._ae{margin-left:-131.102933pt;}
._93{margin-left:-130.211520pt;}
._81{margin-left:-128.744960pt;}
._ab{margin-left:-127.808960pt;}
._61{margin-left:-126.824960pt;}
._65{margin-left:-125.232213pt;}
._87{margin-left:-123.815467pt;}
._63{margin-left:-122.357547pt;}
._86{margin-left:-121.422293pt;}
._92{margin-left:-119.952747pt;}
._71{margin-left:-119.032213pt;}
._4a{margin-left:-117.404160pt;}
._49{margin-left:-115.944960pt;}
._c8{margin-left:-114.996800pt;}
._5f{margin-left:-114.024960pt;}
._7e{margin-left:-112.264960pt;}
._8f{margin-left:-110.597973pt;}
._78{margin-left:-109.268693pt;}
._7a{margin-left:-108.006400pt;}
._19{margin-left:-106.536107pt;}
._b2{margin-left:-105.532587pt;}
._64{margin-left:-103.994880pt;}
._95{margin-left:-102.474453pt;}
._9f{margin-left:-101.116587pt;}
._8c{margin-left:-99.797333pt;}
._56{margin-left:-98.327040pt;}
._55{margin-left:-96.744960pt;}
._90{margin-left:-95.416320pt;}
._5d{margin-left:-93.672960pt;}
._7c{margin-left:-92.026667pt;}
._44{margin-left:-90.887467pt;}
._46{margin-left:-89.704960pt;}
._8a{margin-left:-88.478720pt;}
._80{margin-left:-86.829227pt;}
._89{margin-left:-85.864960pt;}
._7f{margin-left:-84.456960pt;}
._42{margin-left:-82.716480pt;}
._a7{margin-left:-81.717013pt;}
._45{margin-left:-80.632107pt;}
._67{margin-left:-79.464960pt;}
._9e{margin-left:-78.091733pt;}
._73{margin-left:-76.928000pt;}
._94{margin-left:-75.853547pt;}
._6d{margin-left:-74.587947pt;}
._39{margin-left:-72.852480pt;}
._54{margin-left:-71.107840pt;}
._53{margin-left:-69.800107pt;}
._7d{margin-left:-68.759680pt;}
._b7{margin-left:-67.819200pt;}
._91{margin-left:-66.716480pt;}
._d2{margin-left:-65.262400pt;}
._38{margin-left:-64.286720pt;}
._a9{margin-left:-63.255147pt;}
._97{margin-left:-61.634560pt;}
._a1{margin-left:-60.691307pt;}
._41{margin-left:-59.635200pt;}
._3c{margin-left:-58.214400pt;}
._6f{margin-left:-57.310933pt;}
._5e{margin-left:-55.944747pt;}
._c3{margin-left:-55.037013pt;}
._33{margin-left:-54.008320pt;}
._d0{margin-left:-52.938667pt;}
._34{margin-left:-51.869440pt;}
._2c{margin-left:-50.024960pt;}
._c4{margin-left:-49.062400pt;}
._40{margin-left:-47.984640pt;}
._d1{margin-left:-46.842667pt;}
._2d{margin-left:-44.646400pt;}
._3e{margin-left:-43.376640pt;}
._30{margin-left:-40.640000pt;}
._3f{margin-left:-39.557120pt;}
._9d{margin-left:-38.650027pt;}
._2f{margin-left:-37.591040pt;}
._32{margin-left:-36.454400pt;}
._3b{margin-left:-35.509760pt;}
._3a{margin-left:-33.894400pt;}
._31{margin-left:-32.496640pt;}
._35{margin-left:-30.824960pt;}
._bc{margin-left:-29.726720pt;}
._2e{margin-left:-27.622400pt;}
._37{margin-left:-26.268160pt;}
._36{margin-left:-24.348160pt;}
._bd{margin-left:-21.003947pt;}
._98{margin-left:-15.762240pt;}
._52{margin-left:-14.661120pt;}
._85{margin-left:-13.712427pt;}
._1f{margin-left:-12.563840pt;}
._6e{margin-left:-11.194880pt;}
._1b{margin-left:-10.305280pt;}
._20{margin-left:-8.874453pt;}
._1e{margin-left:-7.808640pt;}
._23{margin-left:-5.801813pt;}
._1d{margin-left:-4.280747pt;}
._1c{margin-left:-3.134080pt;}
._1{margin-left:-0.960000pt;}
._0{width:0.922667pt;}
._4{width:1.957333pt;}
._6{width:3.216000pt;}
._a{width:4.320000pt;}
._5{width:5.472000pt;}
._9{width:7.104000pt;}
._8{width:8.208000pt;}
._7{width:9.120000pt;}
._d7{width:10.607573pt;}
._db{width:11.540800pt;}
._2{width:13.392000pt;}
._3{width:14.304000pt;}
.fsa{font-size:5.120000pt;}
.fs7{font-size:26.880000pt;}
.fs6{font-size:32.000000pt;}
.fs5{font-size:42.880000pt;}
.fs0{font-size:48.000000pt;}
.fs2{font-size:53.120000pt;}
.fs8{font-size:58.880000pt;}
.fsb{font-size:62.064349pt;}
.fs1{font-size:64.000000pt;}
.fs9{font-size:80.000000pt;}
.fsc{font-size:85.120000pt;}
.fs4{font-size:90.880000pt;}
.fs3{font-size:96.000000pt;}
.y46{bottom:-14.400000pt;}
.y0{bottom:0.000000pt;}
.y64{bottom:2.880000pt;}
.y45{bottom:14.240000pt;}
.y44{bottom:15.840000pt;}
.y63{bottom:16.960000pt;}
.y54{bottom:16.986667pt;}
.y43{bottom:17.280000pt;}
.y42{bottom:20.320000pt;}
.y41{bottom:30.560000pt;}
.y62{bottom:31.040000pt;}
.y53{bottom:31.226667pt;}
.y61{bottom:45.120000pt;}
.y52{bottom:45.306667pt;}
.ya{bottom:49.760000pt;}
.y67{bottom:50.240000pt;}
.y40{bottom:54.080000pt;}
.y60{bottom:59.226667pt;}
.y51{bottom:59.386667pt;}
.y9{bottom:63.872000pt;}
.y50{bottom:70.746667pt;}
.y5f{bottom:73.306667pt;}
.y10a{bottom:74.592000pt;}
.y3f{bottom:76.160000pt;}
.y8{bottom:77.952000pt;}
.y89{bottom:85.952000pt;}
.y4f{bottom:87.386667pt;}
.y7{bottom:92.032000pt;}
.y3e{bottom:92.986667pt;}
.yde{bottom:97.792000pt;}
.y123{bottom:98.432000pt;}
.y109{bottom:98.912000pt;}
.y4e{bottom:101.466667pt;}
.y6{bottom:106.112000pt;}
.yef{bottom:106.592000pt;}
.yc4{bottom:106.752000pt;}
.yab{bottom:114.112000pt;}
.y5e{bottom:115.386667pt;}
.y4d{bottom:115.546667pt;}
.y5{bottom:120.192000pt;}
.y108{bottom:123.232000pt;}
.y88{bottom:126.432000pt;}
.y5d{bottom:129.466667pt;}
.y4c{bottom:129.626667pt;}
.y4{bottom:134.266667pt;}
.ydd{bottom:138.266667pt;}
.y122{bottom:138.746667pt;}
.y138{bottom:139.386667pt;}
.y4b{bottom:140.986667pt;}
.y5c{bottom:143.546667pt;}
.yc2{bottom:147.066667pt;}
.yc3{bottom:147.386667pt;}
.y3{bottom:148.346667pt;}
.y4a{bottom:150.266667pt;}
.y87{bottom:150.586667pt;}
.yaa{bottom:154.426667pt;}
.y5b{bottom:157.626667pt;}
.y49{bottom:159.546667pt;}
.y137{bottom:160.826667pt;}
.y136{bottom:163.066667pt;}
.y106{bottom:163.386667pt;}
.y107{bottom:163.706667pt;}
.yee{bottom:171.386667pt;}
.y5a{bottom:171.706667pt;}
.y48{bottom:175.066667pt;}
.ydc{bottom:178.586667pt;}
.ya8{bottom:178.746667pt;}
.y121{bottom:179.066667pt;}
.ya9{bottom:179.386667pt;}
.y3c{bottom:179.706667pt;}
.y135{bottom:185.146667pt;}
.y59{bottom:185.786667pt;}
.yc1{bottom:187.386667pt;}
.y86{bottom:191.066667pt;}
.y3b{bottom:196.826667pt;}
.y58{bottom:197.146667pt;}
.y120{bottom:203.386667pt;}
.y105{bottom:203.706667pt;}
.y57{bottom:206.426667pt;}
.yed{bottom:211.706667pt;}
.y3a{bottom:213.946667pt;}
.y85{bottom:215.386667pt;}
.y56{bottom:215.546667pt;}
.ya7{bottom:219.066667pt;}
.y11f{bottom:227.706667pt;}
.yc0{bottom:227.866667pt;}
.y104{bottom:228.026667pt;}
.y39{bottom:231.226667pt;}
.y84{bottom:239.706667pt;}
.ya5{bottom:243.386667pt;}
.ya6{bottom:243.706667pt;}
.y38{bottom:248.346667pt;}
.y11e{bottom:252.026667pt;}
.ybf{bottom:252.186667pt;}
.yda{bottom:259.386667pt;}
.ydb{bottom:260.026667pt;}
.y83{bottom:264.026667pt;}
.y37{bottom:265.626667pt;}
.y103{bottom:268.346667pt;}
.y11d{bottom:276.346667pt;}
.yec{bottom:276.506667pt;}
.y134{bottom:276.986667pt;}
.y36{bottom:282.786667pt;}
.ya4{bottom:283.586667pt;}
.yd9{bottom:283.746667pt;}
.y82{bottom:288.386667pt;}
.ybe{bottom:292.386667pt;}
.y102{bottom:292.706667pt;}
.y35{bottom:300.066667pt;}
.y133{bottom:300.706667pt;}
.yd8{bottom:308.066667pt;}
.y81{bottom:312.706667pt;}
.yeb{bottom:316.706667pt;}
.y11c{bottom:317.026667pt;}
.y34{bottom:317.186667pt;}
.ya2{bottom:324.066667pt;}
.ya3{bottom:324.706667pt;}
.yd7{bottom:332.386667pt;}
.ybd{bottom:332.866667pt;}
.y101{bottom:333.026667pt;}
.y33{bottom:334.466667pt;}
.y80{bottom:337.026667pt;}
.y132{bottom:340.866667pt;}
.y11a{bottom:341.026667pt;}
.y11b{bottom:341.666667pt;}
.ya0{bottom:348.386667pt;}
.ya1{bottom:349.026667pt;}
.y32{bottom:351.586667pt;}
.yd6{bottom:356.706667pt;}
.ybc{bottom:357.186667pt;}
.y31{bottom:368.866667pt;}
.y9f{bottom:372.706667pt;}
.yff{bottom:373.506667pt;}
.y100{bottom:374.146667pt;}
.y7f{bottom:377.346667pt;}
.yd5{bottom:381.026667pt;}
.y119{bottom:381.346667pt;}
.ybb{bottom:381.506667pt;}
.yea{bottom:382.146667pt;}
.y30{bottom:385.986667pt;}
.yfd{bottom:397.826667pt;}
.yfe{bottom:398.466667pt;}
.y7e{bottom:400.066667pt;}
.y7d{bottom:401.666667pt;}
.y2f{bottom:403.266667pt;}
.yd4{bottom:405.346667pt;}
.ye9{bottom:405.666667pt;}
.y9e{bottom:413.026667pt;}
.y2e{bottom:420.386667pt;}
.yba{bottom:421.666667pt;}
.yd3{bottom:429.666667pt;}
.y12f{bottom:429.986667pt;}
.y130{bottom:430.306667pt;}
.y131{bottom:430.626667pt;}
.y2d{bottom:434.466667pt;}
.yfc{bottom:438.146667pt;}
.y7c{bottom:441.986667pt;}
.y118{bottom:445.986667pt;}
.ye8{bottom:446.146667pt;}
.y55{bottom:447.906667pt;}
.y2c{bottom:453.026667pt;}
.y9d{bottom:453.506667pt;}
.yd2{bottom:453.986667pt;}
.y2b{bottom:460.866667pt;}
.yb9{bottom:462.146667pt;}
.y2a{bottom:468.706667pt;}
.y117{bottom:470.146667pt;}
.y12e{bottom:470.306667pt;}
.ye7{bottom:470.466667pt;}
.y29{bottom:476.546667pt;}
.yd1{bottom:478.306667pt;}
.yfb{bottom:478.466667pt;}
.y7b{bottom:482.306667pt;}
.y28{bottom:484.386667pt;}
.y27{bottom:492.226667pt;}
.y9c{bottom:493.666667pt;}
.y116{bottom:494.466667pt;}
.y12d{bottom:494.626667pt;}
.ye6{bottom:494.786667pt;}
.y26{bottom:499.906667pt;}
.y14a{bottom:501.186667pt;}
.yb8{bottom:502.466667pt;}
.yd0{bottom:502.626667pt;}
.y47{bottom:503.906667pt;}
.y7a{bottom:506.653333pt;}
.y25{bottom:507.773333pt;}
.y24{bottom:517.693333pt;}
.yfa{bottom:518.653333pt;}
.y12c{bottom:518.973333pt;}
.yce{bottom:526.973333pt;}
.ycf{bottom:528.093333pt;}
.y9b{bottom:534.173333pt;}
.y149{bottom:534.493333pt;}
.y115{bottom:534.813333pt;}
.ye5{bottom:535.133333pt;}
.y1f{bottom:535.773333pt;}
.y23{bottom:539.453333pt;}
.y79{bottom:542.973333pt;}
.y12b{bottom:543.293333pt;}
.yb7{bottom:543.613333pt;}
.ycd{bottom:551.293333pt;}
.y1e{bottom:551.453333pt;}
.y22{bottom:558.333333pt;}
.y9a{bottom:558.493333pt;}
.yf9{bottom:558.973333pt;}
.y114{bottom:559.133333pt;}
.y1d{bottom:567.133333pt;}
.yb6{bottom:567.293333pt;}
.y148{bottom:567.613333pt;}
.y78{bottom:573.533333pt;}
.ye4{bottom:575.453333pt;}
.y21{bottom:577.053333pt;}
.y1c{bottom:582.653333pt;}
.y99{bottom:582.813333pt;}
.y12a{bottom:583.453333pt;}
.y147{bottom:588.733333pt;}
.ycb{bottom:591.613333pt;}
.ycc{bottom:592.253333pt;}
.y20{bottom:595.773333pt;}
.y77{bottom:597.693333pt;}
.y1b{bottom:598.333333pt;}
.yf7{bottom:599.293333pt;}
.y113{bottom:599.453333pt;}
.yf8{bottom:599.613333pt;}
.y98{bottom:607.133333pt;}
.yb4{bottom:607.453333pt;}
.yb5{bottom:608.573333pt;}
.y1a{bottom:614.013333pt;}
.ye3{bottom:615.773333pt;}
.y129{bottom:623.773333pt;}
.y146{bottom:629.053333pt;}
.y19{bottom:629.533333pt;}
.y97{bottom:631.453333pt;}
.yca{bottom:631.773333pt;}
.y76{bottom:637.373333pt;}
.yf6{bottom:639.613333pt;}
.y112{bottom:639.773333pt;}
.y18{bottom:645.213333pt;}
.yb3{bottom:647.933333pt;}
.y96{bottom:655.773333pt;}
.ye2{bottom:656.093333pt;}
.y75{bottom:659.613333pt;}
.y17{bottom:660.893333pt;}
.y111{bottom:664.093333pt;}
.y128{bottom:664.253333pt;}
.y145{bottom:665.373333pt;}
.yb2{bottom:672.253333pt;}
.y95{bottom:680.093333pt;}
.y74{bottom:681.693333pt;}
.y144{bottom:686.493333pt;}
.y16{bottom:689.693333pt;}
.yb1{bottom:696.573333pt;}
.y73{bottom:703.773333pt;}
.y94{bottom:704.413333pt;}
.y127{bottom:704.573333pt;}
.y15{bottom:710.653333pt;}
.y143{bottom:710.813333pt;}
.yc9{bottom:720.893333pt;}
.y14{bottom:724.733333pt;}
.y72{bottom:725.853333pt;}
.y93{bottom:728.773333pt;}
.y142{bottom:731.333333pt;}
.yb0{bottom:736.773333pt;}
.y126{bottom:745.093333pt;}
.y71{bottom:747.973333pt;}
.y141{bottom:752.453333pt;}
.y13{bottom:752.933333pt;}
.y92{bottom:753.093333pt;}
.ye1{bottom:761.093333pt;}
.yc7{bottom:761.253333pt;}
.yc8{bottom:761.573333pt;}
.y110{bottom:769.093333pt;}
.y140{bottom:776.773333pt;}
.yaf{bottom:777.253333pt;}
.y91{bottom:777.413333pt;}
.y70{bottom:780.613333pt;}
.y125{bottom:785.413333pt;}
.y12{bottom:789.253333pt;}
.y10e{bottom:793.413333pt;}
.y10f{bottom:793.733333pt;}
.y13f{bottom:801.093333pt;}
.yae{bottom:801.573333pt;}
.y90{bottom:801.733333pt;}
.yc6{bottom:801.893333pt;}
.y6f{bottom:807.813333pt;}
.y11{bottom:816.453333pt;}
.yf5{bottom:817.733333pt;}
.y6e{bottom:822.533333pt;}
.y13d{bottom:825.413333pt;}
.ye0{bottom:825.893333pt;}
.y13e{bottom:826.533333pt;}
.y10d{bottom:833.733333pt;}
.y6d{bottom:839.493333pt;}
.y8f{bottom:841.893333pt;}
.yf3{bottom:842.053333pt;}
.yf4{bottom:842.693333pt;}
.y13c{bottom:849.733333pt;}
.y6c{bottom:856.293333pt;}
.y3d{bottom:864.933333pt;}
.ydf{bottom:866.053333pt;}
.y124{bottom:866.213333pt;}
.y6b{bottom:872.773333pt;}
.y10{bottom:873.253333pt;}
.y10c{bottom:874.053333pt;}
.yad{bottom:882.213333pt;}
.y8e{bottom:882.373333pt;}
.yc5{bottom:882.853333pt;}
.y6a{bottom:889.733333pt;}
.yf{bottom:892.453333pt;}
.y13b{bottom:898.213333pt;}
.y10b{bottom:898.373333pt;}
.y69{bottom:906.533333pt;}
.y8c{bottom:906.693333pt;}
.y8d{bottom:907.333333pt;}
.ye{bottom:911.813333pt;}
.y139{bottom:922.533333pt;}
.yf1{bottom:922.693333pt;}
.y13a{bottom:922.853333pt;}
.yf2{bottom:923.333333pt;}
.yd{bottom:931.173333pt;}
.y68{bottom:942.373333pt;}
.yac{bottom:946.853333pt;}
.y8a{bottom:947.013333pt;}
.yf0{bottom:947.333333pt;}
.y8b{bottom:947.653333pt;}
.yc{bottom:950.533333pt;}
.y66{bottom:968.160000pt;}
.yb{bottom:969.920000pt;}
.y65{bottom:988.640000pt;}
.y2{bottom:988.800000pt;}
.y1{bottom:1002.720000pt;}
.h10{height:3.412500pt;}
.h11{height:3.982500pt;}
.hf{height:17.915625pt;}
.ha{height:18.847500pt;}
.h7{height:22.776250pt;}
.h8{height:33.562500pt;}
.h1{height:33.656250pt;}
.h9{height:37.246250pt;}
.hb{height:41.170000pt;}
.hd{height:41.285000pt;}
.h2{height:44.875000pt;}
.h6{height:44.914687pt;}
.h15{height:49.336436pt;}
.h19{height:51.376250pt;}
.h17{height:51.577500pt;}
.h18{height:51.807500pt;}
.h1d{height:54.154781pt;}
.h3{height:54.598989pt;}
.h1a{height:54.650312pt;}
.h1b{height:55.930313pt;}
.he{height:56.093750pt;}
.h1c{height:58.490313pt;}
.h1e{height:60.576250pt;}
.h20{height:61.410000pt;}
.h5{height:63.722500pt;}
.h12{height:65.781915pt;}
.h1f{height:66.976250pt;}
.h21{height:69.536250pt;}
.h16{height:84.468750pt;}
.h22{height:88.777500pt;}
.h4{height:98.672872pt;}
.hc{height:104.186667pt;}
.h13{height:187.706667pt;}
.h14{height:243.866667pt;}
.h0{height:1056.000000pt;}
.w2{width:204.546667pt;}
.w3{width:467.733333pt;}
.w1{width:483.760000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.xa{left:9.586667pt;}
.xb{left:58.404000pt;}
.x16{left:62.560000pt;}
.x1{left:67.200000pt;}
.x59{left:76.640000pt;}
.x5a{left:82.720000pt;}
.x8{left:87.986667pt;}
.x9{left:98.106667pt;}
.x2b{left:105.312000pt;}
.x6{left:109.306667pt;}
.x2{left:114.432000pt;}
.x1a{left:124.800000pt;}
.x5{left:160.200000pt;}
.x15{left:180.666667pt;}
.xc{left:195.062667pt;}
.x2a{left:208.666667pt;}
.x35{left:210.426667pt;}
.x1c{left:212.826667pt;}
.x63{left:216.346667pt;}
.x4e{left:236.346667pt;}
.x7{left:241.786667pt;}
.x29{left:257.986667pt;}
.xf{left:266.306667pt;}
.x61{left:286.786667pt;}
.xd{left:291.906667pt;}
.x4b{left:299.426667pt;}
.x4{left:302.946667pt;}
.x42{left:316.546667pt;}
.x2f{left:332.066667pt;}
.x65{left:365.826667pt;}
.x44{left:394.626667pt;}
.x32{left:397.346667pt;}
.x12{left:404.386667pt;}
.x10{left:413.666667pt;}
.x11{left:422.786667pt;}
.x31{left:448.733333pt;}
.x1d{left:453.693333pt;}
.xe{left:458.146667pt;}
.x55{left:482.653333pt;}
.x62{left:497.213333pt;}
.x46{left:502.013333pt;}
.x14{left:506.813333pt;}
.x4a{left:512.573333pt;}
.x13{left:519.133333pt;}
.x4f{left:529.693333pt;}
.x5d{left:533.053333pt;}
.x3f{left:538.813333pt;}
.x40{left:544.893333pt;}
.x4c{left:549.373333pt;}
.x60{left:551.293333pt;}
.x45{left:558.653333pt;}
.x56{left:582.973333pt;}
.x57{left:589.053333pt;}
.x28{left:594.173333pt;}
.x18{left:603.653333pt;}
.x4d{left:610.373333pt;}
.x5b{left:611.653333pt;}
.x5c{left:617.733333pt;}
.x66{left:624.293333pt;}
.x34{left:630.853333pt;}
.x3a{left:636.613333pt;}
.x1f{left:658.053333pt;}
.x1e{left:662.693333pt;}
.x52{left:664.133333pt;}
.x39{left:674.533333pt;}
.x5e{left:684.293333pt;}
.x50{left:685.573333pt;}
.x51{left:691.653333pt;}
.x3d{left:697.893333pt;}
.x64{left:699.173333pt;}
.x53{left:702.213333pt;}
.x19{left:703.493333pt;}
.x5f{left:704.613333pt;}
.x2c{left:707.013333pt;}
.x27{left:709.893333pt;}
.x3c{left:710.853333pt;}
.x48{left:711.973333pt;}
.x1b{left:713.733333pt;}
.x37{left:715.333333pt;}
.x43{left:716.613333pt;}
.x58{left:717.893333pt;}
.x23{left:718.853333pt;}
.x30{left:720.133333pt;}
.x33{left:722.533333pt;}
.x49{left:724.133333pt;}
.x41{left:725.253333pt;}
.x17{left:726.213333pt;}
.x3b{left:727.813333pt;}
.x54{left:728.933333pt;}
.x25{left:730.213333pt;}
.x2d{left:731.333333pt;}
.x3e{left:732.453333pt;}
.x21{left:733.413333pt;}
.x24{left:735.173333pt;}
.x22{left:736.133333pt;}
.x38{left:737.093333pt;}
.x47{left:738.373333pt;}
.x2e{left:740.773333pt;}
.x26{left:742.373333pt;}
.x36{left:744.293333pt;}
.x20{left:745.893333pt;}
.x3{left:748.933333pt;}
}




    .paper-inline-ad { box-sizing: border-box; margin: 13px auto; max-width: 100%; min-height: 120px; background: #fff; border: 1px solid #e5e7eb; overflow: hidden; }
    .paper-inline-ad-label { padding: 6px 10px 0 10px; font: 10px system-ui, sans-serif; color: #9ca3af; text-transform: uppercase; letter-spacing: .04em; }
    .paper-inline-ad-slot { min-height: 100px; }
    .paper-inline-ad--internal { padding: 0; }
    .paper-internal-promo { padding: 14px 16px 16px 16px; font: 13px system-ui, sans-serif; line-height: 1.45; color: #374151; }
    .paper-internal-promo-title { font-size: 17px; font-weight: 800; color: #111827; margin-bottom: 7px; }
    .paper-internal-promo-body { margin-bottom: 12px; }
    .paper-internal-promo-actions { display: flex; flex-wrap: wrap; gap: 8px; }
    .paper-internal-promo-actions a { display: inline-block; padding: 7px 10px; border: 1px solid #d1d5db; border-radius: 8px; text-decoration: none; color: #111827; background: #f9fafb; font-weight: 700; }
  