
    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_2ed97acd2ce30af092cf3d0f.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;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_919d35986a8adf02be4a0d2c.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.172852;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_262c8102e37b42c9672aa677.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284180;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_a965e8d6232a286600088a5a.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.741211;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_36ab027275f05691441b3de3.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.311035;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_18884edac3dfaab26dbb618e.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.938965;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_4359427de1db7b482414df10.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.435059;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_1b1fe3264e22a20b6145c7d4.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.921387;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_6f72ce925b7546045f3c37cf.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.040039;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_58985701b4c755d552b4c977.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.910156;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_3547767cd731ebc3cb850f9e.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_359d01edf130577d36b3965b.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.035156;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;}
.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:-73.440000px;}
.v3{vertical-align:-23.760000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:23.760000px;}
.ls9{letter-spacing:-2.700000px;}
.ls8{letter-spacing:-2.520000px;}
.lsa{letter-spacing:-1.980000px;}
.ls19{letter-spacing:-0.972000px;}
.ls6{letter-spacing:-0.720000px;}
.lse{letter-spacing:-0.360000px;}
.ls4{letter-spacing:-0.269400px;}
.ls18{letter-spacing:-0.216000px;}
.lsc{letter-spacing:-0.126000px;}
.ls3{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.018000px;}
.lsb{letter-spacing:0.108000px;}
.ls1{letter-spacing:0.180000px;}
.ls12{letter-spacing:0.216000px;}
.ls5{letter-spacing:0.256200px;}
.ls2{letter-spacing:0.360000px;}
.ls16{letter-spacing:0.714000px;}
.ls17{letter-spacing:0.738000px;}
.lsf{letter-spacing:0.900000px;}
.lsd{letter-spacing:8.069760px;}
.ls1a{letter-spacing:25.308000px;}
.ls11{letter-spacing:44.748000px;}
.ls14{letter-spacing:49.068000px;}
.ls10{letter-spacing:52.668000px;}
.ls13{letter-spacing:64.908000px;}
.ls15{letter-spacing:65.052000px;}
.ls0{letter-spacing:1064.460000px;}
.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;}
}
.ws10{word-spacing:-54.000000px;}
.ws3{word-spacing:-15.226440px;}
.ws0{word-spacing:-14.970240px;}
.ws6{word-spacing:-13.860000px;}
.wsf{word-spacing:-13.716000px;}
.ws7{word-spacing:-13.608000px;}
.ws8{word-spacing:-13.518000px;}
.ws1{word-spacing:-13.500000px;}
.ws9{word-spacing:-13.374000px;}
.ws11{word-spacing:-13.284000px;}
.wse{word-spacing:-13.140000px;}
.ws12{word-spacing:-12.528000px;}
.wsd{word-spacing:-12.420000px;}
.wsc{word-spacing:-12.060000px;}
.ws2{word-spacing:-11.790600px;}
.wsb{word-spacing:-11.700000px;}
.ws5{word-spacing:-10.980000px;}
.ws4{word-spacing:-9.000000px;}
.wsa{word-spacing:0.000000px;}
._4{margin-left:-3.307680px;}
._5{margin-left:-2.205600px;}
._1{margin-left:-1.192320px;}
._0{width:1.254960px;}
._e{width:2.646000px;}
._d{width:3.893280px;}
._6{width:5.184000px;}
._7{width:6.786000px;}
._8{width:8.012160px;}
._10{width:9.882000px;}
._c{width:11.070000px;}
._f{width:12.150000px;}
._15{width:14.520240px;}
._12{width:16.416000px;}
._11{width:17.820000px;}
._9{width:19.170000px;}
._a{width:20.577360px;}
._14{width:21.654000px;}
._b{width:22.680000px;}
._13{width:24.678000px;}
._1d{width:25.948080px;}
._1f{width:26.963040px;}
._27{width:28.242000px;}
._28{width:29.430000px;}
._31{width:30.438720px;}
._1c{width:31.590000px;}
._1b{width:33.264000px;}
._1e{width:34.560000px;}
._23{width:36.342000px;}
._2e{width:37.346400px;}
._21{width:38.398320px;}
._20{width:39.420000px;}
._2c{width:40.435920px;}
._2a{width:41.580000px;}
._29{width:42.732000px;}
._32{width:43.740000px;}
._18{width:45.090000px;}
._2b{width:46.386000px;}
._16{width:47.412000px;}
._17{width:49.140000px;}
._30{width:50.760000px;}
._25{width:51.818640px;}
._24{width:53.028000px;}
._19{width:57.078000px;}
._1a{width:58.158000px;}
._2f{width:60.035040px;}
._2d{width:63.450000px;}
._26{width:74.412000px;}
._22{width:80.784000px;}
._34{width:90.558000px;}
._37{width:111.510000px;}
._39{width:138.888000px;}
._3a{width:144.126000px;}
._33{width:150.120000px;}
._38{width:206.658000px;}
._3{width:229.774320px;}
._36{width:261.462000px;}
._35{width:262.818000px;}
._3b{width:314.064000px;}
._2{width:391.163760px;}
.fc5{color:transparent;}
.fc4{color:rgb(31,72,124);}
.fc3{color:rgb(0,32,96);}
.fc1{color:rgb(0,0,255);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:5.760000px;}
.fs7{font-size:18.000000px;}
.fs6{font-size:36.000000px;}
.fs3{font-size:48.240000px;}
.fs2{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs4{font-size:66.384000px;}
.fs8{font-size:72.000000px;}
.fs5{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y16a{bottom:5.220000px;}
.y47{bottom:5.580000px;}
.y1f6{bottom:5.760000px;}
.y1a9{bottom:10.620000px;}
.y153{bottom:10.965000px;}
.y15b{bottom:10.980000px;}
.y1ac{bottom:11.160000px;}
.y158{bottom:11.700000px;}
.y84{bottom:13.320000px;}
.y16e{bottom:13.860000px;}
.y155{bottom:19.605000px;}
.y150{bottom:19.965000px;}
.y16b{bottom:21.600000px;}
.y46{bottom:23.400000px;}
.y5a{bottom:23.445000px;}
.y1a8{bottom:28.440000px;}
.y1b2{bottom:28.470000px;}
.y1ad{bottom:28.620000px;}
.y152{bottom:28.785000px;}
.y15a{bottom:28.800000px;}
.y1b1{bottom:28.830000px;}
.y1ab{bottom:28.980000px;}
.y157{bottom:29.520000px;}
.y16d{bottom:31.860000px;}
.y14f{bottom:37.785000px;}
.y45{bottom:41.220000px;}
.y5c{bottom:41.400000px;}
.y1a7{bottom:46.440000px;}
.y1b4{bottom:46.800000px;}
.y59{bottom:50.265000px;}
.y4b{bottom:58.500000px;}
.y44{bottom:68.040000px;}
.y58{bottom:68.085000px;}
.y4{bottom:76.860000px;}
.y4a{bottom:77.220000px;}
.y43{bottom:86.040000px;}
.y57{bottom:86.085000px;}
.yd{bottom:93.240000px;}
.y234{bottom:99.000000px;}
.y85{bottom:102.960000px;}
.y42{bottom:103.860000px;}
.y56{bottom:103.905000px;}
.y217{bottom:104.940000px;}
.y6{bottom:105.120000px;}
.yec{bottom:105.660000px;}
.y182{bottom:107.460000px;}
.ybe{bottom:108.360000px;}
.y1cb{bottom:109.440000px;}
.y11b{bottom:109.980000px;}
.y127{bottom:110.160000px;}
.y159{bottom:110.340000px;}
.y233{bottom:116.820000px;}
.y41{bottom:121.710000px;}
.y55{bottom:121.725000px;}
.y216{bottom:122.760000px;}
.y1e4{bottom:124.020000px;}
.y196{bottom:124.740000px;}
.y83{bottom:124.920000px;}
.y181{bottom:125.280000px;}
.y1ca{bottom:127.260000px;}
.y126{bottom:127.980000px;}
.yeb{bottom:132.840000px;}
.y232{bottom:134.640000px;}
.ybd{bottom:135.360000px;}
.y11a{bottom:136.800000px;}
.y40{bottom:139.530000px;}
.y54{bottom:139.545000px;}
.y195{bottom:142.560000px;}
.y180{bottom:143.100000px;}
.y125{bottom:145.980000px;}
.y215{bottom:146.520000px;}
.y25e{bottom:147.780000px;}
.y1e3{bottom:148.320000px;}
.y1c9{bottom:150.660000px;}
.yea{bottom:150.840000px;}
.y231{bottom:152.640000px;}
.y119{bottom:154.620000px;}
.y3f{bottom:157.350000px;}
.y287{bottom:159.840000px;}
.y194{bottom:160.380000px;}
.ybc{bottom:162.540000px;}
.y156{bottom:163.080000px;}
.y124{bottom:163.800000px;}
.y214{bottom:164.520000px;}
.y25d{bottom:165.600000px;}
.y1e2{bottom:166.140000px;}
.y53{bottom:166.365000px;}
.ye9{bottom:168.660000px;}
.y17f{bottom:169.920000px;}
.y3e{bottom:175.170000px;}
.y230{bottom:176.400000px;}
.y286{bottom:177.660000px;}
.y193{bottom:178.380000px;}
.ybb{bottom:180.360000px;}
.y118{bottom:181.440000px;}
.y123{bottom:181.620000px;}
.y213{bottom:182.340000px;}
.y25c{bottom:183.420000px;}
.y1e1{bottom:183.960000px;}
.y52{bottom:184.365000px;}
.ye8{bottom:186.480000px;}
.y17e{bottom:187.920000px;}
.y1c8{bottom:192.780000px;}
.y3d{bottom:193.170000px;}
.y22f{bottom:194.220000px;}
.y285{bottom:195.480000px;}
.y192{bottom:197.100000px;}
.yba{bottom:198.180000px;}
.y117{bottom:199.260000px;}
.y212{bottom:200.160000px;}
.y25b{bottom:201.420000px;}
.y1e0{bottom:201.780000px;}
.y51{bottom:202.185000px;}
.ye7{bottom:204.300000px;}
.y122{bottom:208.470000px;}
.y1c7{bottom:210.630000px;}
.y3c{bottom:210.990000px;}
.y22e{bottom:212.250000px;}
.y284{bottom:213.330000px;}
.y17d{bottom:214.770000px;}
.y191{bottom:214.950000px;}
.yb9{bottom:216.030000px;}
.y154{bottom:216.405000px;}
.y116{bottom:217.110000px;}
.y211{bottom:218.010000px;}
.y25a{bottom:219.270000px;}
.y1df{bottom:219.630000px;}
.y50{bottom:220.005000px;}
.ye6{bottom:222.150000px;}
.y121{bottom:226.290000px;}
.y1c6{bottom:228.450000px;}
.y190{bottom:230.790000px;}
.y283{bottom:232.770000px;}
.yb8{bottom:234.030000px;}
.y210{bottom:235.830000px;}
.y22d{bottom:236.010000px;}
.y1de{bottom:237.450000px;}
.y3b{bottom:237.810000px;}
.y4f{bottom:237.825000px;}
.y259{bottom:238.530000px;}
.ye5{bottom:239.970000px;}
.y17c{bottom:241.590000px;}
.y115{bottom:244.110000px;}
.y18f{bottom:244.470000px;}
.y1c5{bottom:246.450000px;}
.y282{bottom:250.590000px;}
.yb7{bottom:251.850000px;}
.y20f{bottom:253.830000px;}
.y1dd{bottom:255.450000px;}
.y3a{bottom:255.630000px;}
.y4e{bottom:255.675000px;}
.y258{bottom:256.530000px;}
.ye4{bottom:257.970000px;}
.y17b{bottom:259.410000px;}
.y151{bottom:259.785000px;}
.y114{bottom:261.930000px;}
.y120{bottom:262.110000px;}
.y18e{bottom:262.290000px;}
.y1c4{bottom:264.270000px;}
.y281{bottom:268.410000px;}
.yb6{bottom:269.670000px;}
.y20e{bottom:271.650000px;}
.y1dc{bottom:273.270000px;}
.y39{bottom:273.450000px;}
.y4d{bottom:273.495000px;}
.y257{bottom:274.350000px;}
.ye3{bottom:275.790000px;}
.y17a{bottom:277.230000px;}
.y113{bottom:279.750000px;}
.y11f{bottom:279.930000px;}
.y18d{bottom:280.470000px;}
.y1c3{bottom:282.090000px;}
.y280{bottom:286.230000px;}
.yb5{bottom:287.490000px;}
.y20d{bottom:289.470000px;}
.y1db{bottom:291.090000px;}
.y38{bottom:291.450000px;}
.y256{bottom:292.170000px;}
.ye2{bottom:293.610000px;}
.y179{bottom:295.230000px;}
.y11e{bottom:297.750000px;}
.y18c{bottom:298.290000px;}
.y1c2{bottom:299.910000px;}
.y27f{bottom:304.050000px;}
.yb4{bottom:305.310000px;}
.y112{bottom:306.210000px;}
.y22c{bottom:307.470000px;}
.y1da{bottom:308.910000px;}
.y37{bottom:309.270000px;}
.ye1{bottom:311.430000px;}
.y14e{bottom:312.345000px;}
.y20c{bottom:313.230000px;}
.y11d{bottom:315.570000px;}
.y18b{bottom:316.110000px;}
.y1c1{bottom:317.730000px;}
.y27e{bottom:321.870000px;}
.y178{bottom:322.050000px;}
.yb3{bottom:323.130000px;}
.y111{bottom:324.030000px;}
.y22b{bottom:325.290000px;}
.y1d9{bottom:326.730000px;}
.y36{bottom:327.090000px;}
.ye0{bottom:329.250000px;}
.y255{bottom:329.430000px;}
.y20b{bottom:331.230000px;}
.y11c{bottom:333.390000px;}
.y18a{bottom:333.930000px;}
.y1c0{bottom:335.730000px;}
.y177{bottom:339.870000px;}
.yb2{bottom:341.130000px;}
.y22a{bottom:343.110000px;}
.y1d8{bottom:344.730000px;}
.ydf{bottom:347.070000px;}
.y254{bottom:347.250000px;}
.y20a{bottom:349.050000px;}
.y189{bottom:351.930000px;}
.y1bf{bottom:353.550000px;}
.y35{bottom:353.955000px;}
.y110{bottom:356.790000px;}
.y176{bottom:357.690000px;}
.yb1{bottom:358.950000px;}
.y27d{bottom:359.130000px;}
.y229{bottom:360.930000px;}
.yde{bottom:365.070000px;}
.y209{bottom:366.870000px;}
.y1d7{bottom:368.490000px;}
.y188{bottom:369.750000px;}
.y1be{bottom:371.370000px;}
.y34{bottom:371.775000px;}
.y175{bottom:375.510000px;}
.yb0{bottom:376.770000px;}
.y27c{bottom:376.950000px;}
.y228{bottom:378.750000px;}
.ydd{bottom:382.890000px;}
.y82{bottom:383.790000px;}
.y253{bottom:384.330000px;}
.y208{bottom:384.690000px;}
.y1d6{bottom:386.310000px;}
.y187{bottom:387.570000px;}
.y10f{bottom:389.010000px;}
.y1bd{bottom:389.190000px;}
.y33{bottom:389.595000px;}
.y174{bottom:393.330000px;}
.yaf{bottom:394.590000px;}
.y27b{bottom:394.950000px;}
.y227{bottom:396.750000px;}
.ydc{bottom:400.710000px;}
.y252{bottom:402.330000px;}
.y74{bottom:402.510000px;}
.y1d5{bottom:404.130000px;}
.y186{bottom:405.390000px;}
.y1bc{bottom:407.010000px;}
.y32{bottom:407.595000px;}
.y173{bottom:411.330000px;}
.yae{bottom:412.410000px;}
.y27a{bottom:412.770000px;}
.y226{bottom:414.570000px;}
.ydb{bottom:418.530000px;}
.y14d{bottom:418.710000px;}
.y251{bottom:420.150000px;}
.y73{bottom:420.510000px;}
.y1d4{bottom:422.130000px;}
.y185{bottom:423.210000px;}
.y1bb{bottom:424.830000px;}
.y31{bottom:425.415000px;}
.y140{bottom:428.250000px;}
.y172{bottom:429.150000px;}
.y81{bottom:429.510000px;}
.yad{bottom:430.410000px;}
.y279{bottom:430.590000px;}
.y225{bottom:432.390000px;}
.yda{bottom:436.350000px;}
.y14c{bottom:436.530000px;}
.y72{bottom:438.330000px;}
.y1d3{bottom:439.950000px;}
.y184{bottom:441.075000px;}
.y13f{bottom:442.875000px;}
.y30{bottom:443.235000px;}
.y171{bottom:447.195000px;}
.y80{bottom:447.375000px;}
.yac{bottom:448.275000px;}
.y278{bottom:449.895000px;}
.yd9{bottom:454.395000px;}
.y71{bottom:456.195000px;}
.y1d2{bottom:457.815000px;}
.y183{bottom:459.075000px;}
.y1ba{bottom:460.695000px;}
.y2f{bottom:461.055000px;}
.y207{bottom:463.755000px;}
.y7f{bottom:465.195000px;}
.yab{bottom:466.095000px;}
.y277{bottom:467.895000px;}
.y250{bottom:469.335000px;}
.y170{bottom:472.035000px;}
.yd8{bottom:472.215000px;}
.y14b{bottom:472.395000px;}
.y70{bottom:474.015000px;}
.y224{bottom:474.195000px;}
.y1d1{bottom:475.635000px;}
.y1b9{bottom:478.515000px;}
.y7e{bottom:483.015000px;}
.yaa{bottom:483.915000px;}
.y276{bottom:485.715000px;}
.y24f{bottom:487.155000px;}
.y2e{bottom:487.875000px;}
.yd7{bottom:490.035000px;}
.y14a{bottom:490.215000px;}
.y6f{bottom:491.835000px;}
.y206{bottom:492.015000px;}
.y1d0{bottom:493.455000px;}
.y1b8{bottom:496.335000px;}
.y7d{bottom:500.835000px;}
.ya9{bottom:501.735000px;}
.y24e{bottom:504.975000px;}
.y2d{bottom:505.875000px;}
.yd6{bottom:507.855000px;}
.y149{bottom:508.035000px;}
.y205{bottom:509.835000px;}
.y1cf{bottom:511.275000px;}
.y1b7{bottom:514.335000px;}
.y16f{bottom:517.395000px;}
.y6e{bottom:518.835000px;}
.ya8{bottom:519.555000px;}
.y24d{bottom:522.795000px;}
.y2c{bottom:523.695000px;}
.y10e{bottom:524.595000px;}
.yd5{bottom:525.675000px;}
.y148{bottom:525.855000px;}
.y204{bottom:527.655000px;}
.y1ce{bottom:529.275000px;}
.y6d{bottom:536.655000px;}
.ya7{bottom:537.555000px;}
.y1b6{bottom:537.735000px;}
.y24c{bottom:540.795000px;}
.y2b{bottom:541.515000px;}
.yd4{bottom:543.495000px;}
.y147{bottom:543.675000px;}
.y203{bottom:545.475000px;}
.yf5{bottom:546.375000px;}
.y1cd{bottom:547.095000px;}
.y6c{bottom:554.475000px;}
.ya6{bottom:555.375000px;}
.y1b5{bottom:555.555000px;}
.y24b{bottom:558.615000px;}
.y2a{bottom:559.335000px;}
.y16c{bottom:560.955000px;}
.y10d{bottom:561.315000px;}
.yd3{bottom:561.495000px;}
.y202{bottom:563.475000px;}
.yf4{bottom:564.195000px;}
.y1cc{bottom:564.915000px;}
.y6b{bottom:572.295000px;}
.ya5{bottom:573.195000px;}
.y24a{bottom:576.435000px;}
.y1b3{bottom:577.875000px;}
.y10c{bottom:579.135000px;}
.yd2{bottom:579.315000px;}
.y146{bottom:579.495000px;}
.y201{bottom:581.295000px;}
.yf3{bottom:582.015000px;}
.y29{bottom:586.185000px;}
.y6a{bottom:590.115000px;}
.ya4{bottom:591.015000px;}
.y249{bottom:594.255000px;}
.y275{bottom:595.695000px;}
.y10b{bottom:596.955000px;}
.yd1{bottom:597.135000px;}
.y145{bottom:597.315000px;}
.y200{bottom:599.115000px;}
.y28{bottom:604.005000px;}
.y223{bottom:605.055000px;}
.y69{bottom:607.935000px;}
.yf2{bottom:608.475000px;}
.ya3{bottom:608.835000px;}
.y248{bottom:612.075000px;}
.y274{bottom:613.695000px;}
.y10a{bottom:614.775000px;}
.yd0{bottom:614.955000px;}
.y144{bottom:615.135000px;}
.y1ff{bottom:616.935000px;}
.y27{bottom:622.005000px;}
.y222{bottom:622.875000px;}
.y68{bottom:625.935000px;}
.yf1{bottom:626.295000px;}
.ya2{bottom:626.655000px;}
.y247{bottom:630.075000px;}
.y273{bottom:631.515000px;}
.ycf{bottom:632.775000px;}
.y143{bottom:632.955000px;}
.y1fe{bottom:634.755000px;}
.y26{bottom:639.825000px;}
.y221{bottom:640.875000px;}
.y67{bottom:643.755000px;}
.ya1{bottom:644.655000px;}
.y246{bottom:647.895000px;}
.y1b0{bottom:648.435000px;}
.y272{bottom:649.335000px;}
.y109{bottom:650.595000px;}
.yce{bottom:650.775000px;}
.y1fd{bottom:652.575000px;}
.yf0{bottom:653.655000px;}
.y25{bottom:657.645000px;}
.y169{bottom:658.335000px;}
.y66{bottom:661.575000px;}
.ya0{bottom:662.475000px;}
.y220{bottom:664.635000px;}
.y245{bottom:665.715000px;}
.y271{bottom:667.335000px;}
.y108{bottom:668.415000px;}
.y142{bottom:668.775000px;}
.y7c{bottom:670.575000px;}
.y24{bottom:675.465000px;}
.ycd{bottom:677.265000px;}
.y65{bottom:679.425000px;}
.yef{bottom:680.505000px;}
.y21f{bottom:682.485000px;}
.y244{bottom:683.565000px;}
.y141{bottom:686.625000px;}
.y7b{bottom:688.425000px;}
.y9f{bottom:688.965000px;}
.y13e{bottom:689.145000px;}
.y23{bottom:693.285000px;}
.y107{bottom:695.265000px;}
.y64{bottom:697.245000px;}
.yee{bottom:698.325000px;}
.y21e{bottom:700.305000px;}
.y1af{bottom:701.025000px;}
.y243{bottom:701.385000px;}
.ycc{bottom:704.445000px;}
.y7a{bottom:706.245000px;}
.y168{bottom:706.605000px;}
.y13d{bottom:706.965000px;}
.y22{bottom:711.285000px;}
.y106{bottom:713.085000px;}
.y63{bottom:715.245000px;}
.y9e{bottom:716.145000px;}
.y21d{bottom:718.305000px;}
.y242{bottom:719.205000px;}
.ycb{bottom:722.265000px;}
.y1fc{bottom:724.065000px;}
.y79{bottom:724.245000px;}
.y15e{bottom:724.425000px;}
.y13c{bottom:724.965000px;}
.y105{bottom:730.905000px;}
.y62{bottom:733.065000px;}
.y9d{bottom:733.965000px;}
.y21c{bottom:736.125000px;}
.y241{bottom:737.205000px;}
.y21{bottom:738.105000px;}
.yca{bottom:740.085000px;}
.y1fb{bottom:741.885000px;}
.y78{bottom:742.065000px;}
.y13b{bottom:742.785000px;}
.y15{bottom:744.585000px;}
.y104{bottom:748.905000px;}
.y61{bottom:750.885000px;}
.y15d{bottom:751.245000px;}
.y9c{bottom:751.965000px;}
.y1ae{bottom:753.765000px;}
.y21b{bottom:753.945000px;}
.y20{bottom:755.925000px;}
.yc9{bottom:757.905000px;}
.y270{bottom:758.085000px;}
.y1fa{bottom:759.705000px;}
.y77{bottom:759.885000px;}
.y240{bottom:760.965000px;}
.y15c{bottom:766.005000px;}
.y103{bottom:766.725000px;}
.y60{bottom:768.705000px;}
.y13a{bottom:769.245000px;}
.y9b{bottom:769.785000px;}
.y14{bottom:771.405000px;}
.y21a{bottom:771.765000px;}
.y1f{bottom:773.745000px;}
.yc8{bottom:775.905000px;}
.y26f{bottom:777.345000px;}
.y76{bottom:777.705000px;}
.y23f{bottom:778.785000px;}
.y102{bottom:784.545000px;}
.y5f{bottom:786.525000px;}
.y139{bottom:787.065000px;}
.y9a{bottom:787.605000px;}
.y219{bottom:789.585000px;}
.y1e{bottom:791.565000px;}
.yc7{bottom:793.725000px;}
.y26e{bottom:795.165000px;}
.y75{bottom:795.525000px;}
.y23e{bottom:796.605000px;}
.y13{bottom:798.225000px;}
.y1f9{bottom:801.285000px;}
.y101{bottom:802.365000px;}
.y99{bottom:805.425000px;}
.y1aa{bottom:806.325000px;}
.y218{bottom:807.585000px;}
.y5e{bottom:808.305000px;}
.y1d{bottom:809.385000px;}
.yc6{bottom:811.545000px;}
.y26d{bottom:812.985000px;}
.y5d{bottom:813.705000px;}
.y138{bottom:814.245000px;}
.y23d{bottom:814.605000px;}
.y100{bottom:820.185000px;}
.y1f8{bottom:820.545000px;}
.y98{bottom:823.245000px;}
.y12{bottom:824.910000px;}
.y1c{bottom:827.430000px;}
.yc5{bottom:829.365000px;}
.y26c{bottom:830.985000px;}
.y137{bottom:832.065000px;}
.y23c{bottom:832.425000px;}
.yed{bottom:833.685000px;}
.y5b{bottom:839.985000px;}
.y97{bottom:841.065000px;}
.y1f7{bottom:845.025000px;}
.y1b{bottom:845.250000px;}
.yc4{bottom:847.185000px;}
.y26b{bottom:848.805000px;}
.y136{bottom:850.065000px;}
.y23b{bottom:850.245000px;}
.y11{bottom:852.090000px;}
.y96{bottom:859.065000px;}
.y1a{bottom:863.070000px;}
.yff{bottom:865.005000px;}
.yc3{bottom:865.185000px;}
.y26a{bottom:866.625000px;}
.y135{bottom:867.885000px;}
.y23a{bottom:868.065000px;}
.y1f5{bottom:869.685000px;}
.y95{bottom:876.885000px;}
.y10{bottom:878.910000px;}
.y19{bottom:880.890000px;}
.yc2{bottom:883.005000px;}
.y134{bottom:885.705000px;}
.y239{bottom:885.885000px;}
.yfe{bottom:891.465000px;}
.y1f4{bottom:894.345000px;}
.y18{bottom:898.710000px;}
.yc1{bottom:900.825000px;}
.y4c{bottom:903.345000px;}
.y133{bottom:903.525000px;}
.y238{bottom:903.885000px;}
.y94{bottom:905.145000px;}
.yfd{bottom:909.285000px;}
.yf{bottom:910.770000px;}
.y17{bottom:916.530000px;}
.yc0{bottom:918.690000px;}
.y132{bottom:921.390000px;}
.y237{bottom:921.750000px;}
.y1f3{bottom:933.630000px;}
.ye{bottom:934.170000px;}
.y16{bottom:934.530000px;}
.y93{bottom:936.510000px;}
.y131{bottom:939.390000px;}
.y269{bottom:939.570000px;}
.y1a6{bottom:944.250000px;}
.y236{bottom:945.510000px;}
.y92{bottom:954.330000px;}
.y130{bottom:957.210000px;}
.y1ee{bottom:957.390000px;}
.y1a5{bottom:960.630000px;}
.y235{bottom:963.330000px;}
.y19e{bottom:970.350000px;}
.y91{bottom:972.330000px;}
.y1ed{bottom:975.210000px;}
.y268{bottom:976.830000px;}
.y1f2{bottom:981.330000px;}
.y12f{bottom:985.470000px;}
.y19d{bottom:988.170000px;}
.y90{bottom:990.150000px;}
.y1ec{bottom:993.030000px;}
.y267{bottom:994.650000px;}
.y167{bottom:998.970000px;}
.y1f1{bottom:999.150000px;}
.y19c{bottom:1005.990000px;}
.y8f{bottom:1007.970000px;}
.y1a4{bottom:1010.850000px;}
.y1eb{bottom:1011.030000px;}
.y266{bottom:1012.470000px;}
.y12e{bottom:1016.790000px;}
.y1f0{bottom:1016.970000px;}
.y8e{bottom:1025.790000px;}
.y1a3{bottom:1028.670000px;}
.y1ea{bottom:1028.850000px;}
.y265{bottom:1030.290000px;}
.y19b{bottom:1032.810000px;}
.y12d{bottom:1034.610000px;}
.y1ef{bottom:1034.790000px;}
.y8d{bottom:1043.610000px;}
.y1a2{bottom:1046.490000px;}
.y1e9{bottom:1046.670000px;}
.y166{bottom:1046.850000px;}
.y264{bottom:1048.290000px;}
.y19a{bottom:1050.810000px;}
.y12c{bottom:1052.610000px;}
.yc{bottom:1061.250000px;}
.y8c{bottom:1061.610000px;}
.y1a1{bottom:1064.490000px;}
.y263{bottom:1067.550000px;}
.y199{bottom:1068.630000px;}
.y165{bottom:1069.530000px;}
.y12b{bottom:1070.430000px;}
.yfc{bottom:1070.610000px;}
.y8b{bottom:1079.430000px;}
.yb{bottom:1081.770000px;}
.y1a0{bottom:1082.310000px;}
.y262{bottom:1085.370000px;}
.y198{bottom:1086.450000px;}
.y164{bottom:1087.350000px;}
.y12a{bottom:1088.250000px;}
.yfb{bottom:1088.430000px;}
.y8a{bottom:1097.250000px;}
.y1e8{bottom:1100.310000px;}
.y261{bottom:1103.370000px;}
.y197{bottom:1104.270000px;}
.y163{bottom:1105.170000px;}
.y129{bottom:1106.070000px;}
.yfa{bottom:1106.250000px;}
.ya{bottom:1108.050000px;}
.y19f{bottom:1110.570000px;}
.y5{bottom:1112.940000px;}
.y89{bottom:1115.070000px;}
.y1e7{bottom:1118.130000px;}
.y260{bottom:1122.630000px;}
.y162{bottom:1123.170000px;}
.yf9{bottom:1124.070000px;}
.y9{bottom:1132.350000px;}
.y128{bottom:1132.530000px;}
.y88{bottom:1132.890000px;}
.y1e6{bottom:1135.950000px;}
.y25f{bottom:1140.450000px;}
.y161{bottom:1140.990000px;}
.yf8{bottom:1141.890000px;}
.y87{bottom:1150.740000px;}
.y160{bottom:1158.840000px;}
.y1e5{bottom:1159.380000px;}
.yf7{bottom:1159.740000px;}
.y8{bottom:1164.420000px;}
.y3{bottom:1166.040000px;}
.y86{bottom:1168.740000px;}
.y15f{bottom:1176.840000px;}
.ybf{bottom:1177.380000px;}
.yf6{bottom:1177.740000px;}
.y2{bottom:1181.520000px;}
.y49{bottom:1191.060000px;}
.y7{bottom:1191.240000px;}
.y1{bottom:1196.820000px;}
.y48{bottom:1198.080000px;}
.h15{height:5.805000px;}
.h10{height:17.666016px;}
.h18{height:17.903320px;}
.h28{height:18.430664px;}
.h30{height:23.760000px;}
.h2e{height:23.782500px;}
.h2f{height:23.940000px;}
.h22{height:26.850000px;}
.hb{height:35.332031px;}
.h26{height:36.281250px;}
.h12{height:39.049805px;}
.h1d{height:42.645000px;}
.h23{height:42.825000px;}
.h27{height:44.507812px;}
.h25{height:44.625000px;}
.h5{height:47.344922px;}
.hf{height:47.980898px;}
.h7{height:48.256875px;}
.h8{height:48.361781px;}
.h1c{height:51.825000px;}
.h1f{height:51.838500px;}
.h2b{height:51.840000px;}
.h2c{height:51.870000px;}
.h2a{height:52.020000px;}
.h1e{height:52.596000px;}
.h1a{height:52.971680px;}
.he{height:52.998047px;}
.h24{height:53.085000px;}
.hd{height:54.421875px;}
.h20{height:55.503491px;}
.h19{height:56.214844px;}
.h2{height:58.651172px;}
.ha{height:60.041250px;}
.h1b{height:61.185000px;}
.h13{height:62.640000px;}
.h4{height:65.010937px;}
.h3{height:65.884219px;}
.h2d{height:69.825000px;}
.h29{height:69.862500px;}
.h31{height:70.664062px;}
.h17{height:71.613281px;}
.h14{height:72.562500px;}
.h21{height:73.722656px;}
.h9{height:84.898125px;}
.h6{height:149.940000px;}
.h16{height:256.350000px;}
.h11{height:285.735000px;}
.hc{height:955.753500px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:-79.560000px;}
.w17{width:56.014500px;}
.w11{width:59.940000px;}
.w12{width:62.640000px;}
.w14{width:62.805000px;}
.w15{width:67.701000px;}
.wd{width:72.936000px;}
.w10{width:83.181000px;}
.w8{width:93.801000px;}
.wf{width:97.234500px;}
.w13{width:118.656000px;}
.wb{width:156.589500px;}
.w7{width:160.909500px;}
.w16{width:163.650000px;}
.wc{width:175.515000px;}
.w9{width:192.450000px;}
.w3{width:210.133500px;}
.w19{width:252.420000px;}
.wa{width:266.280000px;}
.we{width:276.315000px;}
.w18{width:469.504500px;}
.w4{width:536.505000px;}
.w6{width:546.390000px;}
.w5{width:747.358500px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xb{left:8.098500px;}
.x3{left:12.090000px;}
.x1{left:54.000000px;}
.x36{left:56.881500px;}
.x6{left:58.860000px;}
.x1b{left:68.220000px;}
.xa{left:72.901500px;}
.x2b{left:81.000000px;}
.x2e{left:86.041500px;}
.x21{left:88.786500px;}
.xf{left:95.256000px;}
.x28{left:104.806500px;}
.x2c{left:108.036000px;}
.x37{left:113.626500px;}
.x17{left:114.876000px;}
.x12{left:173.385000px;}
.x2f{left:184.005000px;}
.x8{left:186.870000px;}
.x22{left:250.425000px;}
.x29{left:262.125000px;}
.x30{left:267.915000px;}
.x20{left:273.855000px;}
.x14{left:278.715000px;}
.xc{left:283.755000px;}
.x2d{left:293.835000px;}
.x16{left:295.815000px;}
.x35{left:303.915000px;}
.x31{left:328.575000px;}
.x27{left:330.915000px;}
.x23{left:344.955000px;}
.x7{left:364.035000px;}
.x9{left:366.915000px;}
.x32{left:392.115000px;}
.x24{left:407.235000px;}
.x1a{left:416.775000px;}
.xe{left:438.195000px;}
.x10{left:473.505000px;}
.x1c{left:486.105000px;}
.x1e{left:488.985000px;}
.x25{left:500.505000px;}
.x2a{left:512.040000px;}
.x11{left:514.725000px;}
.x1f{left:515.985000px;}
.x26{left:527.505000px;}
.x18{left:534.345000px;}
.x13{left:538.665000px;}
.x19{left:561.345000px;}
.x33{left:575.040000px;}
.x38{left:583.860000px;}
.x1d{left:590.685000px;}
.x34{left:643.650000px;}
.xd{left:668.490000px;}
.x15{left:785.130000px;}
.x2{left:972.540000px;}
.x4{left:997.050000px;}
.x5{left:1004.070000px;}
@media print{
.v1{vertical-align:-65.280000pt;}
.v3{vertical-align:-21.120000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:21.120000pt;}
.ls9{letter-spacing:-2.400000pt;}
.ls8{letter-spacing:-2.240000pt;}
.lsa{letter-spacing:-1.760000pt;}
.ls19{letter-spacing:-0.864000pt;}
.ls6{letter-spacing:-0.640000pt;}
.lse{letter-spacing:-0.320000pt;}
.ls4{letter-spacing:-0.239467pt;}
.ls18{letter-spacing:-0.192000pt;}
.lsc{letter-spacing:-0.112000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.016000pt;}
.lsb{letter-spacing:0.096000pt;}
.ls1{letter-spacing:0.160000pt;}
.ls12{letter-spacing:0.192000pt;}
.ls5{letter-spacing:0.227733pt;}
.ls2{letter-spacing:0.320000pt;}
.ls16{letter-spacing:0.634667pt;}
.ls17{letter-spacing:0.656000pt;}
.lsf{letter-spacing:0.800000pt;}
.lsd{letter-spacing:7.173120pt;}
.ls1a{letter-spacing:22.496000pt;}
.ls11{letter-spacing:39.776000pt;}
.ls14{letter-spacing:43.616000pt;}
.ls10{letter-spacing:46.816000pt;}
.ls13{letter-spacing:57.696000pt;}
.ls15{letter-spacing:57.824000pt;}
.ls0{letter-spacing:946.186667pt;}
.ws10{word-spacing:-48.000000pt;}
.ws3{word-spacing:-13.534613pt;}
.ws0{word-spacing:-13.306880pt;}
.ws6{word-spacing:-12.320000pt;}
.wsf{word-spacing:-12.192000pt;}
.ws7{word-spacing:-12.096000pt;}
.ws8{word-spacing:-12.016000pt;}
.ws1{word-spacing:-12.000000pt;}
.ws9{word-spacing:-11.888000pt;}
.ws11{word-spacing:-11.808000pt;}
.wse{word-spacing:-11.680000pt;}
.ws12{word-spacing:-11.136000pt;}
.wsd{word-spacing:-11.040000pt;}
.wsc{word-spacing:-10.720000pt;}
.ws2{word-spacing:-10.480533pt;}
.wsb{word-spacing:-10.400000pt;}
.ws5{word-spacing:-9.760000pt;}
.ws4{word-spacing:-8.000000pt;}
.wsa{word-spacing:0.000000pt;}
._4{margin-left:-2.940160pt;}
._5{margin-left:-1.960533pt;}
._1{margin-left:-1.059840pt;}
._0{width:1.115520pt;}
._e{width:2.352000pt;}
._d{width:3.460693pt;}
._6{width:4.608000pt;}
._7{width:6.032000pt;}
._8{width:7.121920pt;}
._10{width:8.784000pt;}
._c{width:9.840000pt;}
._f{width:10.800000pt;}
._15{width:12.906880pt;}
._12{width:14.592000pt;}
._11{width:15.840000pt;}
._9{width:17.040000pt;}
._a{width:18.290987pt;}
._14{width:19.248000pt;}
._b{width:20.160000pt;}
._13{width:21.936000pt;}
._1d{width:23.064960pt;}
._1f{width:23.967147pt;}
._27{width:25.104000pt;}
._28{width:26.160000pt;}
._31{width:27.056640pt;}
._1c{width:28.080000pt;}
._1b{width:29.568000pt;}
._1e{width:30.720000pt;}
._23{width:32.304000pt;}
._2e{width:33.196800pt;}
._21{width:34.131840pt;}
._20{width:35.040000pt;}
._2c{width:35.943040pt;}
._2a{width:36.960000pt;}
._29{width:37.984000pt;}
._32{width:38.880000pt;}
._18{width:40.080000pt;}
._2b{width:41.232000pt;}
._16{width:42.144000pt;}
._17{width:43.680000pt;}
._30{width:45.120000pt;}
._25{width:46.061013pt;}
._24{width:47.136000pt;}
._19{width:50.736000pt;}
._1a{width:51.696000pt;}
._2f{width:53.364480pt;}
._2d{width:56.400000pt;}
._26{width:66.144000pt;}
._22{width:71.808000pt;}
._34{width:80.496000pt;}
._37{width:99.120000pt;}
._39{width:123.456000pt;}
._3a{width:128.112000pt;}
._33{width:133.440000pt;}
._38{width:183.696000pt;}
._3{width:204.243840pt;}
._36{width:232.410667pt;}
._35{width:233.616000pt;}
._3b{width:279.168000pt;}
._2{width:347.701120pt;}
.fs9{font-size:5.120000pt;}
.fs7{font-size:16.000000pt;}
.fs6{font-size:32.000000pt;}
.fs3{font-size:42.880000pt;}
.fs2{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs4{font-size:59.008000pt;}
.fs8{font-size:64.000000pt;}
.fs5{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y16a{bottom:4.640000pt;}
.y47{bottom:4.960000pt;}
.y1f6{bottom:5.120000pt;}
.y1a9{bottom:9.440000pt;}
.y153{bottom:9.746667pt;}
.y15b{bottom:9.760000pt;}
.y1ac{bottom:9.920000pt;}
.y158{bottom:10.400000pt;}
.y84{bottom:11.840000pt;}
.y16e{bottom:12.320000pt;}
.y155{bottom:17.426667pt;}
.y150{bottom:17.746667pt;}
.y16b{bottom:19.200000pt;}
.y46{bottom:20.800000pt;}
.y5a{bottom:20.840000pt;}
.y1a8{bottom:25.280000pt;}
.y1b2{bottom:25.306667pt;}
.y1ad{bottom:25.440000pt;}
.y152{bottom:25.586667pt;}
.y15a{bottom:25.600000pt;}
.y1b1{bottom:25.626667pt;}
.y1ab{bottom:25.760000pt;}
.y157{bottom:26.240000pt;}
.y16d{bottom:28.320000pt;}
.y14f{bottom:33.586667pt;}
.y45{bottom:36.640000pt;}
.y5c{bottom:36.800000pt;}
.y1a7{bottom:41.280000pt;}
.y1b4{bottom:41.600000pt;}
.y59{bottom:44.680000pt;}
.y4b{bottom:52.000000pt;}
.y44{bottom:60.480000pt;}
.y58{bottom:60.520000pt;}
.y4{bottom:68.320000pt;}
.y4a{bottom:68.640000pt;}
.y43{bottom:76.480000pt;}
.y57{bottom:76.520000pt;}
.yd{bottom:82.880000pt;}
.y234{bottom:88.000000pt;}
.y85{bottom:91.520000pt;}
.y42{bottom:92.320000pt;}
.y56{bottom:92.360000pt;}
.y217{bottom:93.280000pt;}
.y6{bottom:93.440000pt;}
.yec{bottom:93.920000pt;}
.y182{bottom:95.520000pt;}
.ybe{bottom:96.320000pt;}
.y1cb{bottom:97.280000pt;}
.y11b{bottom:97.760000pt;}
.y127{bottom:97.920000pt;}
.y159{bottom:98.080000pt;}
.y233{bottom:103.840000pt;}
.y41{bottom:108.186667pt;}
.y55{bottom:108.200000pt;}
.y216{bottom:109.120000pt;}
.y1e4{bottom:110.240000pt;}
.y196{bottom:110.880000pt;}
.y83{bottom:111.040000pt;}
.y181{bottom:111.360000pt;}
.y1ca{bottom:113.120000pt;}
.y126{bottom:113.760000pt;}
.yeb{bottom:118.080000pt;}
.y232{bottom:119.680000pt;}
.ybd{bottom:120.320000pt;}
.y11a{bottom:121.600000pt;}
.y40{bottom:124.026667pt;}
.y54{bottom:124.040000pt;}
.y195{bottom:126.720000pt;}
.y180{bottom:127.200000pt;}
.y125{bottom:129.760000pt;}
.y215{bottom:130.240000pt;}
.y25e{bottom:131.360000pt;}
.y1e3{bottom:131.840000pt;}
.y1c9{bottom:133.920000pt;}
.yea{bottom:134.080000pt;}
.y231{bottom:135.680000pt;}
.y119{bottom:137.440000pt;}
.y3f{bottom:139.866667pt;}
.y287{bottom:142.080000pt;}
.y194{bottom:142.560000pt;}
.ybc{bottom:144.480000pt;}
.y156{bottom:144.960000pt;}
.y124{bottom:145.600000pt;}
.y214{bottom:146.240000pt;}
.y25d{bottom:147.200000pt;}
.y1e2{bottom:147.680000pt;}
.y53{bottom:147.880000pt;}
.ye9{bottom:149.920000pt;}
.y17f{bottom:151.040000pt;}
.y3e{bottom:155.706667pt;}
.y230{bottom:156.800000pt;}
.y286{bottom:157.920000pt;}
.y193{bottom:158.560000pt;}
.ybb{bottom:160.320000pt;}
.y118{bottom:161.280000pt;}
.y123{bottom:161.440000pt;}
.y213{bottom:162.080000pt;}
.y25c{bottom:163.040000pt;}
.y1e1{bottom:163.520000pt;}
.y52{bottom:163.880000pt;}
.ye8{bottom:165.760000pt;}
.y17e{bottom:167.040000pt;}
.y1c8{bottom:171.360000pt;}
.y3d{bottom:171.706667pt;}
.y22f{bottom:172.640000pt;}
.y285{bottom:173.760000pt;}
.y192{bottom:175.200000pt;}
.yba{bottom:176.160000pt;}
.y117{bottom:177.120000pt;}
.y212{bottom:177.920000pt;}
.y25b{bottom:179.040000pt;}
.y1e0{bottom:179.360000pt;}
.y51{bottom:179.720000pt;}
.ye7{bottom:181.600000pt;}
.y122{bottom:185.306667pt;}
.y1c7{bottom:187.226667pt;}
.y3c{bottom:187.546667pt;}
.y22e{bottom:188.666667pt;}
.y284{bottom:189.626667pt;}
.y17d{bottom:190.906667pt;}
.y191{bottom:191.066667pt;}
.yb9{bottom:192.026667pt;}
.y154{bottom:192.360000pt;}
.y116{bottom:192.986667pt;}
.y211{bottom:193.786667pt;}
.y25a{bottom:194.906667pt;}
.y1df{bottom:195.226667pt;}
.y50{bottom:195.560000pt;}
.ye6{bottom:197.466667pt;}
.y121{bottom:201.146667pt;}
.y1c6{bottom:203.066667pt;}
.y190{bottom:205.146667pt;}
.y283{bottom:206.906667pt;}
.yb8{bottom:208.026667pt;}
.y210{bottom:209.626667pt;}
.y22d{bottom:209.786667pt;}
.y1de{bottom:211.066667pt;}
.y3b{bottom:211.386667pt;}
.y4f{bottom:211.400000pt;}
.y259{bottom:212.026667pt;}
.ye5{bottom:213.306667pt;}
.y17c{bottom:214.746667pt;}
.y115{bottom:216.986667pt;}
.y18f{bottom:217.306667pt;}
.y1c5{bottom:219.066667pt;}
.y282{bottom:222.746667pt;}
.yb7{bottom:223.866667pt;}
.y20f{bottom:225.626667pt;}
.y1dd{bottom:227.066667pt;}
.y3a{bottom:227.226667pt;}
.y4e{bottom:227.266667pt;}
.y258{bottom:228.026667pt;}
.ye4{bottom:229.306667pt;}
.y17b{bottom:230.586667pt;}
.y151{bottom:230.920000pt;}
.y114{bottom:232.826667pt;}
.y120{bottom:232.986667pt;}
.y18e{bottom:233.146667pt;}
.y1c4{bottom:234.906667pt;}
.y281{bottom:238.586667pt;}
.yb6{bottom:239.706667pt;}
.y20e{bottom:241.466667pt;}
.y1dc{bottom:242.906667pt;}
.y39{bottom:243.066667pt;}
.y4d{bottom:243.106667pt;}
.y257{bottom:243.866667pt;}
.ye3{bottom:245.146667pt;}
.y17a{bottom:246.426667pt;}
.y113{bottom:248.666667pt;}
.y11f{bottom:248.826667pt;}
.y18d{bottom:249.306667pt;}
.y1c3{bottom:250.746667pt;}
.y280{bottom:254.426667pt;}
.yb5{bottom:255.546667pt;}
.y20d{bottom:257.306667pt;}
.y1db{bottom:258.746667pt;}
.y38{bottom:259.066667pt;}
.y256{bottom:259.706667pt;}
.ye2{bottom:260.986667pt;}
.y179{bottom:262.426667pt;}
.y11e{bottom:264.666667pt;}
.y18c{bottom:265.146667pt;}
.y1c2{bottom:266.586667pt;}
.y27f{bottom:270.266667pt;}
.yb4{bottom:271.386667pt;}
.y112{bottom:272.186667pt;}
.y22c{bottom:273.306667pt;}
.y1da{bottom:274.586667pt;}
.y37{bottom:274.906667pt;}
.ye1{bottom:276.826667pt;}
.y14e{bottom:277.640000pt;}
.y20c{bottom:278.426667pt;}
.y11d{bottom:280.506667pt;}
.y18b{bottom:280.986667pt;}
.y1c1{bottom:282.426667pt;}
.y27e{bottom:286.106667pt;}
.y178{bottom:286.266667pt;}
.yb3{bottom:287.226667pt;}
.y111{bottom:288.026667pt;}
.y22b{bottom:289.146667pt;}
.y1d9{bottom:290.426667pt;}
.y36{bottom:290.746667pt;}
.ye0{bottom:292.666667pt;}
.y255{bottom:292.826667pt;}
.y20b{bottom:294.426667pt;}
.y11c{bottom:296.346667pt;}
.y18a{bottom:296.826667pt;}
.y1c0{bottom:298.426667pt;}
.y177{bottom:302.106667pt;}
.yb2{bottom:303.226667pt;}
.y22a{bottom:304.986667pt;}
.y1d8{bottom:306.426667pt;}
.ydf{bottom:308.506667pt;}
.y254{bottom:308.666667pt;}
.y20a{bottom:310.266667pt;}
.y189{bottom:312.826667pt;}
.y1bf{bottom:314.266667pt;}
.y35{bottom:314.626667pt;}
.y110{bottom:317.146667pt;}
.y176{bottom:317.946667pt;}
.yb1{bottom:319.066667pt;}
.y27d{bottom:319.226667pt;}
.y229{bottom:320.826667pt;}
.yde{bottom:324.506667pt;}
.y209{bottom:326.106667pt;}
.y1d7{bottom:327.546667pt;}
.y188{bottom:328.666667pt;}
.y1be{bottom:330.106667pt;}
.y34{bottom:330.466667pt;}
.y175{bottom:333.786667pt;}
.yb0{bottom:334.906667pt;}
.y27c{bottom:335.066667pt;}
.y228{bottom:336.666667pt;}
.ydd{bottom:340.346667pt;}
.y82{bottom:341.146667pt;}
.y253{bottom:341.626667pt;}
.y208{bottom:341.946667pt;}
.y1d6{bottom:343.386667pt;}
.y187{bottom:344.506667pt;}
.y10f{bottom:345.786667pt;}
.y1bd{bottom:345.946667pt;}
.y33{bottom:346.306667pt;}
.y174{bottom:349.626667pt;}
.yaf{bottom:350.746667pt;}
.y27b{bottom:351.066667pt;}
.y227{bottom:352.666667pt;}
.ydc{bottom:356.186667pt;}
.y252{bottom:357.626667pt;}
.y74{bottom:357.786667pt;}
.y1d5{bottom:359.226667pt;}
.y186{bottom:360.346667pt;}
.y1bc{bottom:361.786667pt;}
.y32{bottom:362.306667pt;}
.y173{bottom:365.626667pt;}
.yae{bottom:366.586667pt;}
.y27a{bottom:366.906667pt;}
.y226{bottom:368.506667pt;}
.ydb{bottom:372.026667pt;}
.y14d{bottom:372.186667pt;}
.y251{bottom:373.466667pt;}
.y73{bottom:373.786667pt;}
.y1d4{bottom:375.226667pt;}
.y185{bottom:376.186667pt;}
.y1bb{bottom:377.626667pt;}
.y31{bottom:378.146667pt;}
.y140{bottom:380.666667pt;}
.y172{bottom:381.466667pt;}
.y81{bottom:381.786667pt;}
.yad{bottom:382.586667pt;}
.y279{bottom:382.746667pt;}
.y225{bottom:384.346667pt;}
.yda{bottom:387.866667pt;}
.y14c{bottom:388.026667pt;}
.y72{bottom:389.626667pt;}
.y1d3{bottom:391.066667pt;}
.y184{bottom:392.066667pt;}
.y13f{bottom:393.666667pt;}
.y30{bottom:393.986667pt;}
.y171{bottom:397.506667pt;}
.y80{bottom:397.666667pt;}
.yac{bottom:398.466667pt;}
.y278{bottom:399.906667pt;}
.yd9{bottom:403.906667pt;}
.y71{bottom:405.506667pt;}
.y1d2{bottom:406.946667pt;}
.y183{bottom:408.066667pt;}
.y1ba{bottom:409.506667pt;}
.y2f{bottom:409.826667pt;}
.y207{bottom:412.226667pt;}
.y7f{bottom:413.506667pt;}
.yab{bottom:414.306667pt;}
.y277{bottom:415.906667pt;}
.y250{bottom:417.186667pt;}
.y170{bottom:419.586667pt;}
.yd8{bottom:419.746667pt;}
.y14b{bottom:419.906667pt;}
.y70{bottom:421.346667pt;}
.y224{bottom:421.506667pt;}
.y1d1{bottom:422.786667pt;}
.y1b9{bottom:425.346667pt;}
.y7e{bottom:429.346667pt;}
.yaa{bottom:430.146667pt;}
.y276{bottom:431.746667pt;}
.y24f{bottom:433.026667pt;}
.y2e{bottom:433.666667pt;}
.yd7{bottom:435.586667pt;}
.y14a{bottom:435.746667pt;}
.y6f{bottom:437.186667pt;}
.y206{bottom:437.346667pt;}
.y1d0{bottom:438.626667pt;}
.y1b8{bottom:441.186667pt;}
.y7d{bottom:445.186667pt;}
.ya9{bottom:445.986667pt;}
.y24e{bottom:448.866667pt;}
.y2d{bottom:449.666667pt;}
.yd6{bottom:451.426667pt;}
.y149{bottom:451.586667pt;}
.y205{bottom:453.186667pt;}
.y1cf{bottom:454.466667pt;}
.y1b7{bottom:457.186667pt;}
.y16f{bottom:459.906667pt;}
.y6e{bottom:461.186667pt;}
.ya8{bottom:461.826667pt;}
.y24d{bottom:464.706667pt;}
.y2c{bottom:465.506667pt;}
.y10e{bottom:466.306667pt;}
.yd5{bottom:467.266667pt;}
.y148{bottom:467.426667pt;}
.y204{bottom:469.026667pt;}
.y1ce{bottom:470.466667pt;}
.y6d{bottom:477.026667pt;}
.ya7{bottom:477.826667pt;}
.y1b6{bottom:477.986667pt;}
.y24c{bottom:480.706667pt;}
.y2b{bottom:481.346667pt;}
.yd4{bottom:483.106667pt;}
.y147{bottom:483.266667pt;}
.y203{bottom:484.866667pt;}
.yf5{bottom:485.666667pt;}
.y1cd{bottom:486.306667pt;}
.y6c{bottom:492.866667pt;}
.ya6{bottom:493.666667pt;}
.y1b5{bottom:493.826667pt;}
.y24b{bottom:496.546667pt;}
.y2a{bottom:497.186667pt;}
.y16c{bottom:498.626667pt;}
.y10d{bottom:498.946667pt;}
.yd3{bottom:499.106667pt;}
.y202{bottom:500.866667pt;}
.yf4{bottom:501.506667pt;}
.y1cc{bottom:502.146667pt;}
.y6b{bottom:508.706667pt;}
.ya5{bottom:509.506667pt;}
.y24a{bottom:512.386667pt;}
.y1b3{bottom:513.666667pt;}
.y10c{bottom:514.786667pt;}
.yd2{bottom:514.946667pt;}
.y146{bottom:515.106667pt;}
.y201{bottom:516.706667pt;}
.yf3{bottom:517.346667pt;}
.y29{bottom:521.053333pt;}
.y6a{bottom:524.546667pt;}
.ya4{bottom:525.346667pt;}
.y249{bottom:528.226667pt;}
.y275{bottom:529.506667pt;}
.y10b{bottom:530.626667pt;}
.yd1{bottom:530.786667pt;}
.y145{bottom:530.946667pt;}
.y200{bottom:532.546667pt;}
.y28{bottom:536.893333pt;}
.y223{bottom:537.826667pt;}
.y69{bottom:540.386667pt;}
.yf2{bottom:540.866667pt;}
.ya3{bottom:541.186667pt;}
.y248{bottom:544.066667pt;}
.y274{bottom:545.506667pt;}
.y10a{bottom:546.466667pt;}
.yd0{bottom:546.626667pt;}
.y144{bottom:546.786667pt;}
.y1ff{bottom:548.386667pt;}
.y27{bottom:552.893333pt;}
.y222{bottom:553.666667pt;}
.y68{bottom:556.386667pt;}
.yf1{bottom:556.706667pt;}
.ya2{bottom:557.026667pt;}
.y247{bottom:560.066667pt;}
.y273{bottom:561.346667pt;}
.ycf{bottom:562.466667pt;}
.y143{bottom:562.626667pt;}
.y1fe{bottom:564.226667pt;}
.y26{bottom:568.733333pt;}
.y221{bottom:569.666667pt;}
.y67{bottom:572.226667pt;}
.ya1{bottom:573.026667pt;}
.y246{bottom:575.906667pt;}
.y1b0{bottom:576.386667pt;}
.y272{bottom:577.186667pt;}
.y109{bottom:578.306667pt;}
.yce{bottom:578.466667pt;}
.y1fd{bottom:580.066667pt;}
.yf0{bottom:581.026667pt;}
.y25{bottom:584.573333pt;}
.y169{bottom:585.186667pt;}
.y66{bottom:588.066667pt;}
.ya0{bottom:588.866667pt;}
.y220{bottom:590.786667pt;}
.y245{bottom:591.746667pt;}
.y271{bottom:593.186667pt;}
.y108{bottom:594.146667pt;}
.y142{bottom:594.466667pt;}
.y7c{bottom:596.066667pt;}
.y24{bottom:600.413333pt;}
.ycd{bottom:602.013333pt;}
.y65{bottom:603.933333pt;}
.yef{bottom:604.893333pt;}
.y21f{bottom:606.653333pt;}
.y244{bottom:607.613333pt;}
.y141{bottom:610.333333pt;}
.y7b{bottom:611.933333pt;}
.y9f{bottom:612.413333pt;}
.y13e{bottom:612.573333pt;}
.y23{bottom:616.253333pt;}
.y107{bottom:618.013333pt;}
.y64{bottom:619.773333pt;}
.yee{bottom:620.733333pt;}
.y21e{bottom:622.493333pt;}
.y1af{bottom:623.133333pt;}
.y243{bottom:623.453333pt;}
.ycc{bottom:626.173333pt;}
.y7a{bottom:627.773333pt;}
.y168{bottom:628.093333pt;}
.y13d{bottom:628.413333pt;}
.y22{bottom:632.253333pt;}
.y106{bottom:633.853333pt;}
.y63{bottom:635.773333pt;}
.y9e{bottom:636.573333pt;}
.y21d{bottom:638.493333pt;}
.y242{bottom:639.293333pt;}
.ycb{bottom:642.013333pt;}
.y1fc{bottom:643.613333pt;}
.y79{bottom:643.773333pt;}
.y15e{bottom:643.933333pt;}
.y13c{bottom:644.413333pt;}
.y105{bottom:649.693333pt;}
.y62{bottom:651.613333pt;}
.y9d{bottom:652.413333pt;}
.y21c{bottom:654.333333pt;}
.y241{bottom:655.293333pt;}
.y21{bottom:656.093333pt;}
.yca{bottom:657.853333pt;}
.y1fb{bottom:659.453333pt;}
.y78{bottom:659.613333pt;}
.y13b{bottom:660.253333pt;}
.y15{bottom:661.853333pt;}
.y104{bottom:665.693333pt;}
.y61{bottom:667.453333pt;}
.y15d{bottom:667.773333pt;}
.y9c{bottom:668.413333pt;}
.y1ae{bottom:670.013333pt;}
.y21b{bottom:670.173333pt;}
.y20{bottom:671.933333pt;}
.yc9{bottom:673.693333pt;}
.y270{bottom:673.853333pt;}
.y1fa{bottom:675.293333pt;}
.y77{bottom:675.453333pt;}
.y240{bottom:676.413333pt;}
.y15c{bottom:680.893333pt;}
.y103{bottom:681.533333pt;}
.y60{bottom:683.293333pt;}
.y13a{bottom:683.773333pt;}
.y9b{bottom:684.253333pt;}
.y14{bottom:685.693333pt;}
.y21a{bottom:686.013333pt;}
.y1f{bottom:687.773333pt;}
.yc8{bottom:689.693333pt;}
.y26f{bottom:690.973333pt;}
.y76{bottom:691.293333pt;}
.y23f{bottom:692.253333pt;}
.y102{bottom:697.373333pt;}
.y5f{bottom:699.133333pt;}
.y139{bottom:699.613333pt;}
.y9a{bottom:700.093333pt;}
.y219{bottom:701.853333pt;}
.y1e{bottom:703.613333pt;}
.yc7{bottom:705.533333pt;}
.y26e{bottom:706.813333pt;}
.y75{bottom:707.133333pt;}
.y23e{bottom:708.093333pt;}
.y13{bottom:709.533333pt;}
.y1f9{bottom:712.253333pt;}
.y101{bottom:713.213333pt;}
.y99{bottom:715.933333pt;}
.y1aa{bottom:716.733333pt;}
.y218{bottom:717.853333pt;}
.y5e{bottom:718.493333pt;}
.y1d{bottom:719.453333pt;}
.yc6{bottom:721.373333pt;}
.y26d{bottom:722.653333pt;}
.y5d{bottom:723.293333pt;}
.y138{bottom:723.773333pt;}
.y23d{bottom:724.093333pt;}
.y100{bottom:729.053333pt;}
.y1f8{bottom:729.373333pt;}
.y98{bottom:731.773333pt;}
.y12{bottom:733.253333pt;}
.y1c{bottom:735.493333pt;}
.yc5{bottom:737.213333pt;}
.y26c{bottom:738.653333pt;}
.y137{bottom:739.613333pt;}
.y23c{bottom:739.933333pt;}
.yed{bottom:741.053333pt;}
.y5b{bottom:746.653333pt;}
.y97{bottom:747.613333pt;}
.y1f7{bottom:751.133333pt;}
.y1b{bottom:751.333333pt;}
.yc4{bottom:753.053333pt;}
.y26b{bottom:754.493333pt;}
.y136{bottom:755.613333pt;}
.y23b{bottom:755.773333pt;}
.y11{bottom:757.413333pt;}
.y96{bottom:763.613333pt;}
.y1a{bottom:767.173333pt;}
.yff{bottom:768.893333pt;}
.yc3{bottom:769.053333pt;}
.y26a{bottom:770.333333pt;}
.y135{bottom:771.453333pt;}
.y23a{bottom:771.613333pt;}
.y1f5{bottom:773.053333pt;}
.y95{bottom:779.453333pt;}
.y10{bottom:781.253333pt;}
.y19{bottom:783.013333pt;}
.yc2{bottom:784.893333pt;}
.y134{bottom:787.293333pt;}
.y239{bottom:787.453333pt;}
.yfe{bottom:792.413333pt;}
.y1f4{bottom:794.973333pt;}
.y18{bottom:798.853333pt;}
.yc1{bottom:800.733333pt;}
.y4c{bottom:802.973333pt;}
.y133{bottom:803.133333pt;}
.y238{bottom:803.453333pt;}
.y94{bottom:804.573333pt;}
.yfd{bottom:808.253333pt;}
.yf{bottom:809.573333pt;}
.y17{bottom:814.693333pt;}
.yc0{bottom:816.613333pt;}
.y132{bottom:819.013333pt;}
.y237{bottom:819.333333pt;}
.y1f3{bottom:829.893333pt;}
.ye{bottom:830.373333pt;}
.y16{bottom:830.693333pt;}
.y93{bottom:832.453333pt;}
.y131{bottom:835.013333pt;}
.y269{bottom:835.173333pt;}
.y1a6{bottom:839.333333pt;}
.y236{bottom:840.453333pt;}
.y92{bottom:848.293333pt;}
.y130{bottom:850.853333pt;}
.y1ee{bottom:851.013333pt;}
.y1a5{bottom:853.893333pt;}
.y235{bottom:856.293333pt;}
.y19e{bottom:862.533333pt;}
.y91{bottom:864.293333pt;}
.y1ed{bottom:866.853333pt;}
.y268{bottom:868.293333pt;}
.y1f2{bottom:872.293333pt;}
.y12f{bottom:875.973333pt;}
.y19d{bottom:878.373333pt;}
.y90{bottom:880.133333pt;}
.y1ec{bottom:882.693333pt;}
.y267{bottom:884.133333pt;}
.y167{bottom:887.973333pt;}
.y1f1{bottom:888.133333pt;}
.y19c{bottom:894.213333pt;}
.y8f{bottom:895.973333pt;}
.y1a4{bottom:898.533333pt;}
.y1eb{bottom:898.693333pt;}
.y266{bottom:899.973333pt;}
.y12e{bottom:903.813333pt;}
.y1f0{bottom:903.973333pt;}
.y8e{bottom:911.813333pt;}
.y1a3{bottom:914.373333pt;}
.y1ea{bottom:914.533333pt;}
.y265{bottom:915.813333pt;}
.y19b{bottom:918.053333pt;}
.y12d{bottom:919.653333pt;}
.y1ef{bottom:919.813333pt;}
.y8d{bottom:927.653333pt;}
.y1a2{bottom:930.213333pt;}
.y1e9{bottom:930.373333pt;}
.y166{bottom:930.533333pt;}
.y264{bottom:931.813333pt;}
.y19a{bottom:934.053333pt;}
.y12c{bottom:935.653333pt;}
.yc{bottom:943.333333pt;}
.y8c{bottom:943.653333pt;}
.y1a1{bottom:946.213333pt;}
.y263{bottom:948.933333pt;}
.y199{bottom:949.893333pt;}
.y165{bottom:950.693333pt;}
.y12b{bottom:951.493333pt;}
.yfc{bottom:951.653333pt;}
.y8b{bottom:959.493333pt;}
.yb{bottom:961.573333pt;}
.y1a0{bottom:962.053333pt;}
.y262{bottom:964.773333pt;}
.y198{bottom:965.733333pt;}
.y164{bottom:966.533333pt;}
.y12a{bottom:967.333333pt;}
.yfb{bottom:967.493333pt;}
.y8a{bottom:975.333333pt;}
.y1e8{bottom:978.053333pt;}
.y261{bottom:980.773333pt;}
.y197{bottom:981.573333pt;}
.y163{bottom:982.373333pt;}
.y129{bottom:983.173333pt;}
.yfa{bottom:983.333333pt;}
.ya{bottom:984.933333pt;}
.y19f{bottom:987.173333pt;}
.y5{bottom:989.280000pt;}
.y89{bottom:991.173333pt;}
.y1e7{bottom:993.893333pt;}
.y260{bottom:997.893333pt;}
.y162{bottom:998.373333pt;}
.yf9{bottom:999.173333pt;}
.y9{bottom:1006.533333pt;}
.y128{bottom:1006.693333pt;}
.y88{bottom:1007.013333pt;}
.y1e6{bottom:1009.733333pt;}
.y25f{bottom:1013.733333pt;}
.y161{bottom:1014.213333pt;}
.yf8{bottom:1015.013333pt;}
.y87{bottom:1022.880000pt;}
.y160{bottom:1030.080000pt;}
.y1e5{bottom:1030.560000pt;}
.yf7{bottom:1030.880000pt;}
.y8{bottom:1035.040000pt;}
.y3{bottom:1036.480000pt;}
.y86{bottom:1038.880000pt;}
.y15f{bottom:1046.080000pt;}
.ybf{bottom:1046.560000pt;}
.yf6{bottom:1046.880000pt;}
.y2{bottom:1050.240000pt;}
.y49{bottom:1058.720000pt;}
.y7{bottom:1058.880000pt;}
.y1{bottom:1063.840000pt;}
.y48{bottom:1064.960000pt;}
.h15{height:5.160000pt;}
.h10{height:15.703125pt;}
.h18{height:15.914062pt;}
.h28{height:16.382812pt;}
.h30{height:21.120000pt;}
.h2e{height:21.140000pt;}
.h2f{height:21.280000pt;}
.h22{height:23.866667pt;}
.hb{height:31.406250pt;}
.h26{height:32.250000pt;}
.h12{height:34.710938pt;}
.h1d{height:37.906667pt;}
.h23{height:38.066667pt;}
.h27{height:39.562500pt;}
.h25{height:39.666667pt;}
.h5{height:42.084375pt;}
.hf{height:42.649687pt;}
.h7{height:42.895000pt;}
.h8{height:42.988250pt;}
.h1c{height:46.066667pt;}
.h1f{height:46.078667pt;}
.h2b{height:46.080000pt;}
.h2c{height:46.106667pt;}
.h2a{height:46.240000pt;}
.h1e{height:46.752000pt;}
.h1a{height:47.085938pt;}
.he{height:47.109375pt;}
.h24{height:47.186667pt;}
.hd{height:48.375000pt;}
.h20{height:49.336436pt;}
.h19{height:49.968750pt;}
.h2{height:52.134375pt;}
.ha{height:53.370000pt;}
.h1b{height:54.386667pt;}
.h13{height:55.680000pt;}
.h4{height:57.787500pt;}
.h3{height:58.563750pt;}
.h2d{height:62.066667pt;}
.h29{height:62.100000pt;}
.h31{height:62.812500pt;}
.h17{height:63.656250pt;}
.h14{height:64.500000pt;}
.h21{height:65.531250pt;}
.h9{height:75.465000pt;}
.h6{height:133.280000pt;}
.h16{height:227.866667pt;}
.h11{height:253.986667pt;}
.hc{height:849.558667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:-70.720000pt;}
.w17{width:49.790667pt;}
.w11{width:53.280000pt;}
.w12{width:55.680000pt;}
.w14{width:55.826667pt;}
.w15{width:60.178667pt;}
.wd{width:64.832000pt;}
.w10{width:73.938667pt;}
.w8{width:83.378667pt;}
.wf{width:86.430667pt;}
.w13{width:105.472000pt;}
.wb{width:139.190667pt;}
.w7{width:143.030667pt;}
.w16{width:145.466667pt;}
.wc{width:156.013333pt;}
.w9{width:171.066667pt;}
.w3{width:186.785333pt;}
.w19{width:224.373333pt;}
.wa{width:236.693333pt;}
.we{width:245.613333pt;}
.w18{width:417.337333pt;}
.w4{width:476.893333pt;}
.w6{width:485.680000pt;}
.w5{width:664.318667pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xb{left:7.198667pt;}
.x3{left:10.746667pt;}
.x1{left:48.000000pt;}
.x36{left:50.561333pt;}
.x6{left:52.320000pt;}
.x1b{left:60.640000pt;}
.xa{left:64.801333pt;}
.x2b{left:72.000000pt;}
.x2e{left:76.481333pt;}
.x21{left:78.921333pt;}
.xf{left:84.672000pt;}
.x28{left:93.161333pt;}
.x2c{left:96.032000pt;}
.x37{left:101.001333pt;}
.x17{left:102.112000pt;}
.x12{left:154.120000pt;}
.x2f{left:163.560000pt;}
.x8{left:166.106667pt;}
.x22{left:222.600000pt;}
.x29{left:233.000000pt;}
.x30{left:238.146667pt;}
.x20{left:243.426667pt;}
.x14{left:247.746667pt;}
.xc{left:252.226667pt;}
.x2d{left:261.186667pt;}
.x16{left:262.946667pt;}
.x35{left:270.146667pt;}
.x31{left:292.066667pt;}
.x27{left:294.146667pt;}
.x23{left:306.626667pt;}
.x7{left:323.586667pt;}
.x9{left:326.146667pt;}
.x32{left:348.546667pt;}
.x24{left:361.986667pt;}
.x1a{left:370.466667pt;}
.xe{left:389.506667pt;}
.x10{left:420.893333pt;}
.x1c{left:432.093333pt;}
.x1e{left:434.653333pt;}
.x25{left:444.893333pt;}
.x2a{left:455.146667pt;}
.x11{left:457.533333pt;}
.x1f{left:458.653333pt;}
.x26{left:468.893333pt;}
.x18{left:474.973333pt;}
.x13{left:478.813333pt;}
.x19{left:498.973333pt;}
.x33{left:511.146667pt;}
.x38{left:518.986667pt;}
.x1d{left:525.053333pt;}
.x34{left:572.133333pt;}
.xd{left:594.213333pt;}
.x15{left:697.893333pt;}
.x2{left:864.480000pt;}
.x4{left:886.266667pt;}
.x5{left:892.506667pt;}
}




    .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; }
  