
    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_c288197ffb6a6334139a6d33.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_92431ab728b0c5453d7dc18a.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.675781;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_5d417f5568850c87193cf814.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_3164b761aa8cd46eabc7d3ff.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.976562;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_b97477166172c6295a186d83.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.084961;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_72ac0ad67feb9335944c36fe.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.084961;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_b5fb2a1f7b5ae5e885a99523.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_b831dac6aa4df67d3335e3cd.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.675781;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_853ada1841cb9fa7e7ae9256.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.675781;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_dfa5af9d04977a3dc8869c5d.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.758789;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_cd230a6cde3005287187f447.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.675781;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_ae48621fcdf4d107ba59ef26.woff2')format("woff");}.ffc{font-family:ffc;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;}
.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);}
.v0{vertical-align:0.000000px;}
.ls1d{letter-spacing:-1.800000px;}
.ls1f{letter-spacing:-1.080000px;}
.ls25{letter-spacing:-0.990000px;}
.ls23{letter-spacing:-0.774000px;}
.ls1b{letter-spacing:-0.702000px;}
.ls6{letter-spacing:-0.594000px;}
.ls9{letter-spacing:-0.540000px;}
.ls24{letter-spacing:-0.538800px;}
.ls15{letter-spacing:-0.460200px;}
.ls19{letter-spacing:-0.370200px;}
.ls5{letter-spacing:-0.360000px;}
.ls18{letter-spacing:-0.349800px;}
.ls4{letter-spacing:-0.269400px;}
.lsf{letter-spacing:-0.259800px;}
.lsb{letter-spacing:-0.206400px;}
.ls13{letter-spacing:-0.181200px;}
.ls16{letter-spacing:-0.108000px;}
.ls8{letter-spacing:-0.053400px;}
.ls17{letter-spacing:-0.020400px;}
.ls2{letter-spacing:0.000000px;}
.ls1a{letter-spacing:0.015000px;}
.ls7{letter-spacing:0.018000px;}
.lsd{letter-spacing:0.053400px;}
.ls12{letter-spacing:0.106800px;}
.ls3{letter-spacing:0.180000px;}
.lsa{letter-spacing:0.223800px;}
.lse{letter-spacing:0.259800px;}
.lsc{letter-spacing:0.259920px;}
.ls0{letter-spacing:0.360000px;}
.ls1{letter-spacing:0.386640px;}
.ls14{letter-spacing:0.450600px;}
.ls10{letter-spacing:0.480000px;}
.ls1e{letter-spacing:0.513600px;}
.ls1c{letter-spacing:5.940000px;}
.ls22{letter-spacing:48.142080px;}
.ls11{letter-spacing:50.659920px;}
.ls21{letter-spacing:51.109920px;}
.ls20{letter-spacing:51.253920px;}
.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;}
}
.ws20{word-spacing:-15.453600px;}
.wsf{word-spacing:-15.300000px;}
.ws11{word-spacing:-15.199800px;}
.ws25{word-spacing:-14.993400px;}
.ws0{word-spacing:-14.940000px;}
.ws26{word-spacing:-14.886600px;}
.ws17{word-spacing:-14.733600px;}
.wsd{word-spacing:-14.580000px;}
.ws1a{word-spacing:-14.479800px;}
.ws6{word-spacing:-13.860000px;}
.ws5{word-spacing:-13.500000px;}
.ws1b{word-spacing:-13.392000px;}
.ws1f{word-spacing:-13.140000px;}
.ws4{word-spacing:-12.906000px;}
.ws19{word-spacing:-12.510600px;}
.ws14{word-spacing:-12.420000px;}
.ws7{word-spacing:-12.283800px;}
.ws2{word-spacing:-12.240000px;}
.ws1{word-spacing:-12.060000px;}
.ws18{word-spacing:-11.878800px;}
.ws8{word-spacing:-11.790600px;}
.ws3{word-spacing:-11.700000px;}
.ws12{word-spacing:-11.340000px;}
.ws1c{word-spacing:-11.319600px;}
.ws1d{word-spacing:-10.990200px;}
.ws1e{word-spacing:-10.969800px;}
.wsa{word-spacing:0.000000px;}
.ws21{word-spacing:0.298800px;}
.wsc{word-spacing:0.540000px;}
.ws16{word-spacing:1.468080px;}
.wsb{word-spacing:2.064000px;}
.ws15{word-spacing:2.533080px;}
.ws10{word-spacing:2.557080px;}
.ws22{word-spacing:5.293080px;}
.ws24{word-spacing:5.437080px;}
.ws13{word-spacing:6.759480px;}
.ws9{word-spacing:7.972560px;}
.wse{word-spacing:9.388320px;}
.ws23{word-spacing:24.639480px;}
.ws28{word-spacing:55.967999px;}
.ws27{word-spacing:78.960000px;}
._2a{margin-left:-6.035999px;}
._6{margin-left:-2.692648px;}
._1{margin-left:-1.640305px;}
._0{width:1.588182px;}
._2{width:3.087649px;}
._9{width:4.192169px;}
._5{width:6.048000px;}
._17{width:7.338000px;}
._4{width:8.580000px;}
._3{width:10.152000px;}
._a{width:11.286000px;}
._10{width:12.322551px;}
._1f{width:13.361935px;}
._b{width:15.282000px;}
._e{width:16.888609px;}
._8{width:18.414000px;}
._7{width:19.710000px;}
._23{width:20.772689px;}
._18{width:21.834528px;}
._16{width:23.382000px;}
._15{width:25.110000px;}
._c{width:27.072000px;}
._d{width:28.363818px;}
._1b{width:29.978538px;}
._2b{width:31.339817px;}
._1c{width:32.927999px;}
._19{width:34.009296px;}
._1a{width:35.552928px;}
._2c{width:36.631181px;}
._34{width:37.913417px;}
._f{width:39.420000px;}
._14{width:40.602000px;}
._1d{width:41.618418px;}
._1e{width:43.206600px;}
._31{width:44.593795px;}
._12{width:45.660000px;}
._11{width:47.304000px;}
._20{width:48.968958px;}
._2e{width:50.018941px;}
._2d{width:51.512941px;}
._30{width:52.708141px;}
._32{width:57.104409px;}
._25{width:58.623544px;}
._24{width:59.999339px;}
._2f{width:61.911539px;}
._22{width:62.914800px;}
._13{width:64.692000px;}
._29{width:66.731859px;}
._26{width:67.767568px;}
._27{width:69.317878px;}
._35{width:70.756139px;}
._21{width:72.633559px;}
._38{width:101.532539px;}
._37{width:103.205341px;}
._36{width:125.581158px;}
._28{width:127.523665px;}
._33{width:167.532499px;}
._39{width:422.246880px;}
.fc5{color:transparent;}
.fc4{color:rgb(192,0,0);}
.fc2{color:rgb(0,0,204);}
.fc1{color:rgb(0,0,255);}
.fc3{color:rgb(13,13,13);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:45.360000px;}
.fs1{font-size:48.240000px;}
.fs2{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs5{font-size:66.240000px;}
.fs3{font-size:120.240000px;}
.fs4{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.yc{bottom:2.340000px;}
.y7f{bottom:2.520000px;}
.y14e{bottom:2.700000px;}
.y155{bottom:2.880000px;}
.y14c{bottom:3.060000px;}
.y188{bottom:3.105000px;}
.y110{bottom:3.960000px;}
.y112{bottom:4.320000px;}
.y114{bottom:4.500000px;}
.ybc{bottom:6.120000px;}
.y7{bottom:6.480000px;}
.y180{bottom:8.820000px;}
.y183{bottom:9.000000px;}
.y136{bottom:9.360000px;}
.y186{bottom:9.405000px;}
.y138{bottom:9.540000px;}
.ybb{bottom:9.720000px;}
.y118{bottom:13.140000px;}
.y4{bottom:13.860000px;}
.y181{bottom:15.300000px;}
.yd7{bottom:15.480000px;}
.y8{bottom:15.840000px;}
.y187{bottom:15.885000px;}
.y17e{bottom:16.020000px;}
.yb{bottom:16.200000px;}
.y7e{bottom:16.380000px;}
.y14b{bottom:16.920000px;}
.y132{bottom:17.820000px;}
.y3{bottom:19.260000px;}
.y6{bottom:20.340000px;}
.y7c{bottom:21.420000px;}
.y1e3{bottom:21.780000px;}
.y1e1{bottom:21.960000px;}
.y1b8{bottom:23.220000px;}
.y192{bottom:28.260000px;}
.yd6{bottom:28.440000px;}
.ya{bottom:30.060000px;}
.y1cb{bottom:30.105000px;}
.y1cd{bottom:30.240000px;}
.y5{bottom:34.200000px;}
.yd5{bottom:41.400000px;}
.y9{bottom:43.740000px;}
.y7d{bottom:43.920000px;}
.y1c1{bottom:43.950000px;}
.yea{bottom:47.880000px;}
.yd4{bottom:54.360000px;}
.y1bc{bottom:57.600000px;}
.y1c4{bottom:57.630000px;}
.ye9{bottom:60.660000px;}
.y7b{bottom:62.640000px;}
.yd3{bottom:67.140000px;}
.y1c3{bottom:71.490000px;}
.y1bb{bottom:71.505000px;}
.ye8{bottom:73.620000px;}
.y1ab{bottom:79.236000px;}
.yd2{bottom:80.100000px;}
.yb9{bottom:84.636000px;}
.y1c2{bottom:85.170000px;}
.y1ba{bottom:85.185000px;}
.y78{bottom:87.696000px;}
.y1f7{bottom:89.496000px;}
.y144{bottom:90.756000px;}
.y1d3{bottom:92.556000px;}
.yd1{bottom:93.060000px;}
.y22a{bottom:93.636000px;}
.y287{bottom:95.256000px;}
.y1aa{bottom:96.516000px;}
.y24d{bottom:98.856000px;}
.ye7{bottom:99.540000px;}
.y45{bottom:102.096000px;}
.yb8{bottom:102.816000px;}
.y10c{bottom:103.896000px;}
.y7a{bottom:104.070000px;}
.y77{bottom:105.876000px;}
.y1f6{bottom:107.676000px;}
.y286{bottom:109.116000px;}
.y143{bottom:110.556000px;}
.y1d2{bottom:110.736000px;}
.y229{bottom:111.636000px;}
.ye6{bottom:112.545000px;}
.y1a9{bottom:113.796000px;}
.y44{bottom:115.776000px;}
.y24c{bottom:116.856000px;}
.yd0{bottom:119.025000px;}
.yb7{bottom:120.816000px;}
.y285{bottom:122.796000px;}
.y10b{bottom:123.696000px;}
.y76{bottom:123.876000px;}
.ye5{bottom:125.505000px;}
.y1f5{bottom:125.676000px;}
.y1d1{bottom:128.736000px;}
.y177{bottom:129.456000px;}
.y43{bottom:129.636000px;}
.y228{bottom:129.816000px;}
.y142{bottom:130.356000px;}
.y1a8{bottom:130.896000px;}
.ycf{bottom:131.805000px;}
.y24b{bottom:135.036000px;}
.y284{bottom:136.656000px;}
.y75{bottom:142.056000px;}
.yb6{bottom:142.596000px;}
.y10a{bottom:143.496000px;}
.y1f4{bottom:143.856000px;}
.yce{bottom:144.765000px;}
.y227{bottom:147.816000px;}
.y1a7{bottom:148.176000px;}
.y176{bottom:149.256000px;}
.y141{bottom:150.150000px;}
.y283{bottom:150.510000px;}
.ye4{bottom:151.245000px;}
.y24a{bottom:153.030000px;}
.y1d0{bottom:154.470000px;}
.y42{bottom:157.170000px;}
.ycd{bottom:157.725000px;}
.y74{bottom:160.050000px;}
.y1f3{bottom:161.850000px;}
.y109{bottom:163.290000px;}
.y282{bottom:164.190000px;}
.ye3{bottom:164.205000px;}
.y1a6{bottom:165.450000px;}
.y226{bottom:165.990000px;}
.y1cf{bottom:168.870000px;}
.y175{bottom:169.050000px;}
.yb5{bottom:169.770000px;}
.y140{bottom:169.950000px;}
.ycc{bottom:170.685000px;}
.y41{bottom:171.030000px;}
.y249{bottom:171.210000px;}
.ye2{bottom:177.165000px;}
.y281{bottom:178.050000px;}
.y73{bottom:178.230000px;}
.y1f2{bottom:180.030000px;}
.y1a5{bottom:182.730000px;}
.y108{bottom:183.090000px;}
.ycb{bottom:183.645000px;}
.y225{bottom:183.990000px;}
.y40{bottom:185.430000px;}
.yb4{bottom:187.770000px;}
.y174{bottom:188.850000px;}
.y13f{bottom:189.750000px;}
.ye1{bottom:190.125000px;}
.y280{bottom:191.730000px;}
.y72{bottom:196.410000px;}
.yca{bottom:196.425000px;}
.y248{bottom:197.490000px;}
.y1f1{bottom:198.030000px;}
.y1a4{bottom:199.830000px;}
.y3f{bottom:201.990000px;}
.y224{bottom:202.170000px;}
.y107{bottom:203.070000px;}
.y27f{bottom:205.590000px;}
.yb3{bottom:205.950000px;}
.y173{bottom:208.830000px;}
.yc9{bottom:209.385000px;}
.y13e{bottom:209.730000px;}
.y1ce{bottom:210.990000px;}
.y71{bottom:214.410000px;}
.ye0{bottom:215.865000px;}
.y3e{bottom:216.210000px;}
.y1a3{bottom:217.110000px;}
.y27e{bottom:219.450000px;}
.y223{bottom:220.170000px;}
.yc8{bottom:222.345000px;}
.y106{bottom:222.870000px;}
.yb2{bottom:223.950000px;}
.y172{bottom:228.630000px;}
.ydf{bottom:228.825000px;}
.y13d{bottom:229.530000px;}
.y3d{bottom:231.690000px;}
.y70{bottom:232.590000px;}
.y247{bottom:232.770000px;}
.y27d{bottom:233.130000px;}
.y1a2{bottom:234.390000px;}
.yc7{bottom:235.305000px;}
.y222{bottom:238.350000px;}
.yde{bottom:241.785000px;}
.yb1{bottom:242.130000px;}
.y105{bottom:242.670000px;}
.y27c{bottom:246.990000px;}
.y3c{bottom:247.170000px;}
.y171{bottom:248.430000px;}
.y246{bottom:249.870000px;}
.y6f{bottom:250.590000px;}
.y13c{bottom:251.130000px;}
.y1a1{bottom:251.670000px;}
.y1f0{bottom:252.390000px;}
.y1cc{bottom:253.110000px;}
.ydd{bottom:254.745000px;}
.y221{bottom:256.530000px;}
.yb0{bottom:260.130000px;}
.y27b{bottom:260.850000px;}
.yc6{bottom:261.225000px;}
.y104{bottom:262.470000px;}
.y3b{bottom:262.650000px;}
.y13b{bottom:265.710000px;}
.y245{bottom:267.150000px;}
.y170{bottom:268.230000px;}
.y6e{bottom:268.770000px;}
.y1ef{bottom:270.570000px;}
.yc5{bottom:274.005000px;}
.y220{bottom:274.530000px;}
.y3a{bottom:278.310000px;}
.y13a{bottom:280.290000px;}
.ydc{bottom:280.485000px;}
.y103{bottom:282.270000px;}
.y244{bottom:284.430000px;}
.y1a0{bottom:286.050000px;}
.y16f{bottom:286.590000px;}
.y6d{bottom:286.770000px;}
.yc4{bottom:286.965000px;}
.y27a{bottom:288.390000px;}
.y1ee{bottom:288.570000px;}
.y21f{bottom:292.710000px;}
.ydb{bottom:293.445000px;}
.yaf{bottom:296.490000px;}
.yc3{bottom:299.925000px;}
.y243{bottom:301.710000px;}
.y102{bottom:302.070000px;}
.y279{bottom:302.250000px;}
.y19f{bottom:303.330000px;}
.y6c{bottom:304.950000px;}
.yda{bottom:306.405000px;}
.y1ed{bottom:306.750000px;}
.y139{bottom:308.550000px;}
.y1ca{bottom:309.090000px;}
.y21e{bottom:310.710000px;}
.yc2{bottom:312.885000px;}
.yae{bottom:314.490000px;}
.y16e{bottom:314.850000px;}
.y278{bottom:315.930000px;}
.y242{bottom:318.810000px;}
.yd9{bottom:319.365000px;}
.y19e{bottom:320.610000px;}
.y101{bottom:321.870000px;}
.y6b{bottom:322.950000px;}
.y39{bottom:323.310000px;}
.y1ec{bottom:324.750000px;}
.yc1{bottom:325.845000px;}
.y21d{bottom:328.890000px;}
.y277{bottom:329.790000px;}
.yd8{bottom:332.325000px;}
.yad{bottom:332.670000px;}
.y241{bottom:336.090000px;}
.y137{bottom:336.855000px;}
.y19d{bottom:337.755000px;}
.yc0{bottom:338.625000px;}
.y38{bottom:340.635000px;}
.y6a{bottom:341.175000px;}
.y100{bottom:341.715000px;}
.y1eb{bottom:342.975000px;}
.y16d{bottom:343.335000px;}
.y276{bottom:343.695000px;}
.y21c{bottom:346.935000px;}
.yac{bottom:350.715000px;}
.y1c9{bottom:351.255000px;}
.ybf{bottom:351.585000px;}
.y240{bottom:353.415000px;}
.y19c{bottom:355.035000px;}
.y275{bottom:357.375000px;}
.y37{bottom:357.555000px;}
.y69{bottom:359.175000px;}
.y1ea{bottom:360.975000px;}
.yff{bottom:363.495000px;}
.ybe{bottom:364.545000px;}
.y21b{bottom:365.115000px;}
.y135{bottom:365.295000px;}
.y2b5{bottom:366.915000px;}
.yab{bottom:368.895000px;}
.y23f{bottom:370.695000px;}
.y274{bottom:371.235000px;}
.y16c{bottom:371.595000px;}
.y19b{bottom:372.315000px;}
.y36{bottom:373.035000px;}
.y68{bottom:377.355000px;}
.y1e9{bottom:379.155000px;}
.y21a{bottom:383.115000px;}
.y2b4{bottom:384.195000px;}
.y273{bottom:385.095000px;}
.yaa{bottom:386.895000px;}
.yfe{bottom:387.255000px;}
.y23e{bottom:387.795000px;}
.y35{bottom:388.515000px;}
.y19a{bottom:389.595000px;}
.y1c8{bottom:393.375000px;}
.y134{bottom:393.555000px;}
.y67{bottom:395.355000px;}
.y1e8{bottom:397.155000px;}
.y272{bottom:398.775000px;}
.y219{bottom:401.295000px;}
.y2b3{bottom:401.475000px;}
.yfd{bottom:401.835000px;}
.y34{bottom:404.175000px;}
.ya9{bottom:405.075000px;}
.y199{bottom:406.695000px;}
.y131{bottom:408.135000px;}
.y271{bottom:412.635000px;}
.y66{bottom:413.535000px;}
.y1e7{bottom:415.335000px;}
.yfc{bottom:416.415000px;}
.y2b2{bottom:418.575000px;}
.y218{bottom:419.295000px;}
.y33{bottom:419.655000px;}
.y16b{bottom:421.275000px;}
.y23d{bottom:422.355000px;}
.ya8{bottom:423.075000px;}
.y198{bottom:423.975000px;}
.y133{bottom:424.875000px;}
.y270{bottom:426.495000px;}
.yfb{bottom:430.995000px;}
.y65{bottom:431.715000px;}
.y1e6{bottom:433.335000px;}
.y32{bottom:435.135000px;}
.y1c7{bottom:435.495000px;}
.y2b1{bottom:435.855000px;}
.y217{bottom:437.475000px;}
.y23c{bottom:439.635000px;}
.y26f{bottom:440.175000px;}
.y16a{bottom:441.075000px;}
.ya7{bottom:441.255000px;}
.yfa{bottom:445.395000px;}
.y130{bottom:448.635000px;}
.y64{bottom:449.715000px;}
.y31{bottom:450.975000px;}
.y1e5{bottom:451.515000px;}
.y2b0{bottom:453.135000px;}
.y26e{bottom:454.035000px;}
.y216{bottom:455.475000px;}
.y23b{bottom:456.735000px;}
.ya6{bottom:459.255000px;}
.y169{bottom:460.875000px;}
.y197{bottom:462.855000px;}
.y12f{bottom:465.915000px;}
.y26d{bottom:467.715000px;}
.y63{bottom:467.895000px;}
.yf9{bottom:469.335000px;}
.y2af{bottom:470.415000px;}
.y215{bottom:473.655000px;}
.y30{bottom:473.835000px;}
.y23a{bottom:474.015000px;}
.y196{bottom:476.535000px;}
.y1e4{bottom:476.715000px;}
.ya5{bottom:477.435000px;}
.y1c6{bottom:477.615000px;}
.y168{bottom:480.675000px;}
.y26c{bottom:481.575000px;}
.y62{bottom:485.895000px;}
.y2ae{bottom:487.515000px;}
.y2f{bottom:489.315000px;}
.y195{bottom:490.215000px;}
.y239{bottom:491.295000px;}
.y214{bottom:491.655000px;}
.yf8{bottom:493.275000px;}
.ya4{bottom:495.435000px;}
.y167{bottom:500.475000px;}
.y1e2{bottom:503.355000px;}
.y61{bottom:504.075000px;}
.y2e{bottom:504.795000px;}
.y12e{bottom:508.035000px;}
.y238{bottom:508.575000px;}
.y26b{bottom:509.115000px;}
.y213{bottom:509.835000px;}
.yf7{bottom:511.455000px;}
.ya3{bottom:513.615000px;}
.y194{bottom:517.755000px;}
.y1c5{bottom:519.735000px;}
.y166{bottom:520.275000px;}
.y60{bottom:522.075000px;}
.y26a{bottom:522.975000px;}
.y237{bottom:525.675000px;}
.y12d{bottom:526.215000px;}
.y2d{bottom:526.395000px;}
.y212{bottom:528.015000px;}
.yf6{bottom:529.455000px;}
.ya2{bottom:531.795000px;}
.y2ad{bottom:535.035000px;}
.y269{bottom:536.835000px;}
.y165{bottom:540.075000px;}
.y5f{bottom:540.255000px;}
.y2c{bottom:541.875000px;}
.y1e0{bottom:542.775000px;}
.y236{bottom:542.955000px;}
.y12c{bottom:544.215000px;}
.y193{bottom:545.295000px;}
.y211{bottom:546.015000px;}
.yf5{bottom:547.635000px;}
.y2ac{bottom:548.895000px;}
.ya1{bottom:549.795000px;}
.y268{bottom:550.515000px;}
.y2b{bottom:557.355000px;}
.y5e{bottom:558.255000px;}
.y164{bottom:559.875000px;}
.y235{bottom:560.235000px;}
.y1c0{bottom:561.855000px;}
.y2ab{bottom:562.755000px;}
.y210{bottom:564.195000px;}
.y267{bottom:564.375000px;}
.yf4{bottom:565.635000px;}
.y12b{bottom:565.995000px;}
.ya0{bottom:567.975000px;}
.y191{bottom:571.935000px;}
.y2a{bottom:573.015000px;}
.y5d{bottom:576.435000px;}
.y234{bottom:577.515000px;}
.y266{bottom:578.235000px;}
.y163{bottom:579.675000px;}
.y1df{bottom:582.375000px;}
.yf3{bottom:583.815000px;}
.y9f{bottom:585.975000px;}
.y29{bottom:588.495000px;}
.y20f{bottom:590.295000px;}
.y265{bottom:591.915000px;}
.y5c{bottom:594.435000px;}
.y233{bottom:594.615000px;}
.y12a{bottom:594.795000px;}
.y162{bottom:599.655000px;}
.yf2{bottom:601.815000px;}
.y28{bottom:604.005000px;}
.y9e{bottom:604.185000px;}
.y264{bottom:605.805000px;}
.y190{bottom:611.385000px;}
.y232{bottom:611.925000px;}
.y5b{bottom:612.645000px;}
.y129{bottom:614.625000px;}
.y1de{bottom:617.685000px;}
.y2aa{bottom:617.865000px;}
.y27{bottom:619.485000px;}
.y263{bottom:619.665000px;}
.yf1{bottom:620.025000px;}
.y9d{bottom:622.185000px;}
.y20e{bottom:626.505000px;}
.y231{bottom:629.205000px;}
.y5a{bottom:630.645000px;}
.y2a9{bottom:631.725000px;}
.y262{bottom:633.345000px;}
.y1dd{bottom:633.525000px;}
.y128{bottom:634.425000px;}
.y26{bottom:634.965000px;}
.yf0{bottom:638.025000px;}
.y9c{bottom:640.365000px;}
.y161{bottom:641.085000px;}
.y20d{bottom:644.505000px;}
.y2a8{bottom:645.405000px;}
.y230{bottom:646.485000px;}
.y261{bottom:647.205000px;}
.y59{bottom:648.825000px;}
.y1dc{bottom:649.005000px;}
.y25{bottom:650.625000px;}
.y127{bottom:654.225000px;}
.yef{bottom:656.205000px;}
.y9b{bottom:658.365000px;}
.y1bf{bottom:659.085000px;}
.y2a7{bottom:659.265000px;}
.y260{bottom:661.065000px;}
.y20c{bottom:662.685000px;}
.y22f{bottom:663.585000px;}
.y1db{bottom:664.485000px;}
.y18f{bottom:664.665000px;}
.y24{bottom:666.105000px;}
.y58{bottom:666.825000px;}
.y160{bottom:670.065000px;}
.y2a6{bottom:672.945000px;}
.yee{bottom:674.205000px;}
.y25f{bottom:674.745000px;}
.y9a{bottom:676.545000px;}
.y1da{bottom:679.965000px;}
.y20b{bottom:680.865000px;}
.y23{bottom:681.585000px;}
.y57{bottom:684.105000px;}
.y2a5{bottom:686.805000px;}
.y25e{bottom:688.605000px;}
.y15f{bottom:689.865000px;}
.y18e{bottom:692.205000px;}
.yed{bottom:692.385000px;}
.y126{bottom:694.005000px;}
.y99{bottom:694.545000px;}
.y22{bottom:697.065000px;}
.y22e{bottom:698.145000px;}
.y20a{bottom:698.865000px;}
.y1be{bottom:701.205000px;}
.y56{bottom:701.385000px;}
.y25d{bottom:702.465000px;}
.y1d9{bottom:702.645000px;}
.y15e{bottom:709.665000px;}
.y21{bottom:712.545000px;}
.y98{bottom:712.725000px;}
.y125{bottom:713.805000px;}
.yec{bottom:714.165000px;}
.y22d{bottom:715.425000px;}
.y25c{bottom:716.145000px;}
.y209{bottom:717.045000px;}
.y2a4{bottom:717.765000px;}
.y55{bottom:718.665000px;}
.y18d{bottom:719.745000px;}
.y1d8{bottom:720.825000px;}
.y20{bottom:728.025000px;}
.y15d{bottom:729.465000px;}
.y25b{bottom:730.005000px;}
.y97{bottom:730.725000px;}
.y2a3{bottom:731.625000px;}
.y22c{bottom:732.525000px;}
.y124{bottom:733.605000px;}
.y208{bottom:735.045000px;}
.y54{bottom:735.945000px;}
.y1d7{bottom:738.825000px;}
.y1f{bottom:743.685000px;}
.y25a{bottom:743.865000px;}
.y2a2{bottom:745.485000px;}
.yeb{bottom:746.385000px;}
.y96{bottom:748.905000px;}
.y15c{bottom:749.265000px;}
.y22b{bottom:749.805000px;}
.y53{bottom:753.045000px;}
.y207{bottom:753.225000px;}
.y123{bottom:753.405000px;}
.y1d6{bottom:757.005000px;}
.y1bd{bottom:757.185000px;}
.y259{bottom:757.545000px;}
.y1e{bottom:759.165000px;}
.ybd{bottom:767.085000px;}
.y15b{bottom:769.065000px;}
.y52{bottom:770.325000px;}
.y206{bottom:771.225000px;}
.y258{bottom:771.405000px;}
.y2a1{bottom:773.025000px;}
.y122{bottom:773.205000px;}
.y18c{bottom:773.745000px;}
.y1d{bottom:774.645000px;}
.y1d5{bottom:775.005000px;}
.y95{bottom:775.185000px;}
.y257{bottom:785.265000px;}
.y2a0{bottom:786.705000px;}
.y18b{bottom:787.425000px;}
.y51{bottom:787.605000px;}
.y15a{bottom:788.865000px;}
.y205{bottom:789.405000px;}
.y1c{bottom:790.125000px;}
.y121{bottom:793.005000px;}
.y1d4{bottom:793.185000px;}
.y256{bottom:798.945000px;}
.y1b9{bottom:799.305000px;}
.y29f{bottom:800.565000px;}
.y50{bottom:804.885000px;}
.y1b{bottom:805.605000px;}
.y204{bottom:807.405000px;}
.y159{bottom:808.665000px;}
.y94{bottom:811.185000px;}
.y120{bottom:812.805000px;}
.y29e{bottom:814.425000px;}
.y18a{bottom:814.965000px;}
.y1a{bottom:821.085000px;}
.y4f{bottom:821.985000px;}
.y203{bottom:825.585000px;}
.y255{bottom:826.665000px;}
.y29d{bottom:828.105000px;}
.y158{bottom:828.465000px;}
.y93{bottom:829.365000px;}
.y11f{bottom:832.605000px;}
.y19{bottom:836.745000px;}
.y4e{bottom:839.265000px;}
.y254{bottom:840.345000px;}
.y189{bottom:841.605000px;}
.y29c{bottom:841.965000px;}
.y202{bottom:843.585000px;}
.y92{bottom:847.365000px;}
.y157{bottom:848.445000px;}
.y18{bottom:852.225000px;}
.y11e{bottom:852.585000px;}
.y253{bottom:854.205000px;}
.y4d{bottom:856.545000px;}
.y201{bottom:861.765000px;}
.y29b{bottom:865.365000px;}
.y91{bottom:865.545000px;}
.y17{bottom:867.705000px;}
.y252{bottom:868.065000px;}
.y156{bottom:868.245000px;}
.y11d{bottom:872.430000px;}
.y4c{bottom:873.870000px;}
.y200{bottom:879.810000px;}
.y251{bottom:881.790000px;}
.y16{bottom:883.230000px;}
.y90{bottom:883.590000px;}
.y4b{bottom:890.970000px;}
.y11c{bottom:892.230000px;}
.y154{bottom:893.310000px;}
.y250{bottom:895.650000px;}
.y185{bottom:895.830000px;}
.y1b7{bottom:896.550000px;}
.y1ff{bottom:897.990000px;}
.y15{bottom:898.710000px;}
.y29a{bottom:899.970000px;}
.y8f{bottom:901.770000px;}
.y4a{bottom:908.250000px;}
.y153{bottom:908.430000px;}
.y11b{bottom:912.030000px;}
.y299{bottom:913.830000px;}
.y14{bottom:914.370000px;}
.y1fe{bottom:916.170000px;}
.y24f{bottom:919.050000px;}
.y8e{bottom:919.770000px;}
.y184{bottom:923.370000px;}
.y49{bottom:925.530000px;}
.y298{bottom:927.510000px;}
.y13{bottom:929.850000px;}
.y11a{bottom:931.830000px;}
.y1fd{bottom:934.170000px;}
.y152{bottom:936.690000px;}
.y182{bottom:937.050000px;}
.y8d{bottom:937.950000px;}
.y297{bottom:941.370000px;}
.y48{bottom:942.810000px;}
.y12{bottom:945.330000px;}
.y119{bottom:951.630000px;}
.y1b6{bottom:952.530000px;}
.y1fc{bottom:954.150000px;}
.y24e{bottom:955.230000px;}
.y8c{bottom:956.130000px;}
.y11{bottom:960.810000px;}
.y47{bottom:963.330000px;}
.y17f{bottom:963.690000px;}
.y151{bottom:965.130000px;}
.y296{bottom:968.910000px;}
.y117{bottom:973.410000px;}
.y8b{bottom:974.130000px;}
.y1b5{bottom:976.110000px;}
.y10{bottom:976.290000px;}
.y150{bottom:980.070000px;}
.y1fb{bottom:982.410000px;}
.y295{bottom:982.770000px;}
.y17d{bottom:990.150000px;}
.yf{bottom:991.770000px;}
.y8a{bottom:992.310000px;}
.y1b4{bottom:993.570000px;}
.y294{bottom:996.630000px;}
.y46{bottom:1003.470000px;}
.ye{bottom:1007.430000px;}
.y14f{bottom:1008.510000px;}
.y116{bottom:1009.050000px;}
.y89{bottom:1010.310000px;}
.y1fa{bottom:1010.850000px;}
.y1b3{bottom:1017.510000px;}
.y17c{bottom:1017.690000px;}
.yd{bottom:1022.910000px;}
.y14a{bottom:1023.630000px;}
.y293{bottom:1024.170000px;}
.y115{bottom:1027.410000px;}
.y88{bottom:1028.490000px;}
.y1b2{bottom:1035.690000px;}
.y292{bottom:1038.030000px;}
.y14d{bottom:1038.570000px;}
.y1f9{bottom:1039.110000px;}
.y113{bottom:1045.770000px;}
.y87{bottom:1046.490000px;}
.y79{bottom:1049.550000px;}
.y291{bottom:1051.710000px;}
.y1b1{bottom:1053.690000px;}
.y17b{bottom:1057.290000px;}
.y149{bottom:1062.330000px;}
.y111{bottom:1064.310000px;}
.y86{bottom:1064.670000px;}
.y290{bottom:1065.570000px;}
.y1b0{bottom:1071.870000px;}
.y1f8{bottom:1076.730000px;}
.y28f{bottom:1079.430000px;}
.y148{bottom:1079.610000px;}
.y85{bottom:1082.670000px;}
.y1af{bottom:1089.870000px;}
.y28e{bottom:1093.110000px;}
.y17a{bottom:1096.890000px;}
.y10f{bottom:1097.070000px;}
.y84{bottom:1100.850000px;}
.y28d{bottom:1106.970000px;}
.y147{bottom:1107.330000px;}
.y1ae{bottom:1108.050000px;}
.y83{bottom:1118.850000px;}
.y28c{bottom:1120.830000px;}
.y10e{bottom:1123.710000px;}
.y179{bottom:1124.250000px;}
.y146{bottom:1124.610000px;}
.y1ad{bottom:1129.830000px;}
.y28b{bottom:1134.510000px;}
.y82{bottom:1137.030000px;}
.y10d{bottom:1141.020000px;}
.yba{bottom:1142.820000px;}
.y178{bottom:1146.780000px;}
.y28a{bottom:1148.400000px;}
.y145{bottom:1153.440000px;}
.y81{bottom:1155.060000px;}
.y1ac{bottom:1156.140000px;}
.y289{bottom:1162.260000px;}
.y80{bottom:1173.240000px;}
.y288{bottom:1175.940000px;}
.y2{bottom:1217.700000px;}
.y1{bottom:1234.800000px;}
.h23{height:12.960000px;}
.h16{height:13.680000px;}
.h14{height:13.860000px;}
.h20{height:14.220000px;}
.h21{height:14.400000px;}
.h1a{height:16.560000px;}
.h17{height:16.740000px;}
.h18{height:17.460000px;}
.h19{height:17.640000px;}
.h11{height:20.160000px;}
.h29{height:25.740000px;}
.h2b{height:25.920000px;}
.h32{height:25.956000px;}
.h25{height:26.640000px;}
.h28{height:26.820000px;}
.h2a{height:26.856000px;}
.h1d{height:27.540000px;}
.h1e{height:27.720000px;}
.h22{height:27.756000px;}
.h1f{height:28.800000px;}
.h1c{height:30.600000px;}
.h24{height:32.004492px;}
.h12{height:32.801836px;}
.h15{height:34.036523px;}
.hb{height:34.884492px;}
.h1b{height:34.920000px;}
.h5{height:36.698203px;}
.ha{height:38.100586px;}
.h26{height:38.700000px;}
.h2c{height:38.736000px;}
.h27{height:38.880000px;}
.h9{height:39.049805px;}
.h2e{height:41.220000px;}
.h30{height:41.400000px;}
.h31{height:41.436000px;}
.h2{height:42.164648px;}
.h3{height:43.215117px;}
.h7{height:43.822266px;}
.h33{height:44.265586px;}
.h4{height:45.360000px;}
.hf{height:46.736719px;}
.h8{height:48.496641px;}
.h34{height:49.065469px;}
.h10{height:55.080000px;}
.h6{height:55.116000px;}
.h2f{height:55.260000px;}
.hc{height:86.950898px;}
.h2d{height:96.516000px;}
.he{height:104.132812px;}
.hd{height:137.736000px;}
.h13{height:375.015000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w19{width:27.540000px;}
.w2d{width:28.836000px;}
.w32{width:31.176000px;}
.w1b{width:31.716000px;}
.w31{width:32.040000px;}
.w2a{width:35.100000px;}
.w2b{width:37.980000px;}
.w1d{width:38.340000px;}
.wf{width:39.600000px;}
.w11{width:39.636000px;}
.w22{width:40.500000px;}
.w30{width:41.760000px;}
.w23{width:42.336000px;}
.w1a{width:42.480000px;}
.w27{width:43.416000px;}
.w24{width:44.460000px;}
.w13{width:44.820000px;}
.w14{width:47.880000px;}
.w12{width:48.060000px;}
.w1e{width:48.780000px;}
.w1c{width:48.960000px;}
.w36{width:49.356000px;}
.w3a{width:50.256000px;}
.w26{width:50.940000px;}
.wa{width:51.300000px;}
.w10{width:54.900000px;}
.w37{width:55.440000px;}
.w3c{width:60.480000px;}
.w9{width:63.000000px;}
.w35{width:66.780000px;}
.w16{width:66.960000px;}
.w2c{width:67.320000px;}
.w3b{width:67.860000px;}
.wb{width:71.496000px;}
.w38{width:76.860000px;}
.w17{width:81.396000px;}
.w20{width:83.700000px;}
.w34{width:84.276000px;}
.wd{width:88.416000px;}
.w21{width:91.116000px;}
.w18{width:91.800000px;}
.w1f{width:92.376000px;}
.we{width:93.420000px;}
.wc{width:95.220000px;}
.w7{width:103.860000px;}
.w25{width:108.720000px;}
.w15{width:114.516000px;}
.w39{width:126.936000px;}
.w28{width:135.540000px;}
.w6{width:138.636000px;}
.w2e{width:188.130000px;}
.w3{width:193.350000px;}
.w5{width:193.395000px;}
.w8{width:196.410000px;}
.w29{width:217.695000px;}
.w33{width:230.070000px;}
.w2f{width:262.155000px;}
.w2{width:274.935000px;}
.w4{width:708.585000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1a{left:3.780000px;}
.x19{left:7.740000px;}
.x24{left:9.360000px;}
.x5{left:10.800000px;}
.x20{left:12.600000px;}
.x25{left:14.400000px;}
.x3c{left:15.480000px;}
.x28{left:16.560000px;}
.x32{left:18.360000px;}
.x22{left:19.440000px;}
.x36{left:20.880000px;}
.x27{left:22.500000px;}
.x23{left:25.560000px;}
.x46{left:26.865000px;}
.x18{left:28.440000px;}
.x33{left:29.736000px;}
.xd{left:30.780000px;}
.x31{left:32.940000px;}
.x2e{left:34.554000px;}
.x4a{left:36.390000px;}
.x4f{left:39.600000px;}
.x16{left:43.380000px;}
.xe{left:50.220000px;}
.x4{left:56.880000px;}
.x14{left:61.950000px;}
.x1e{left:65.340000px;}
.x8{left:70.200000px;}
.x50{left:72.720000px;}
.x2a{left:74.160000px;}
.x2c{left:77.580000px;}
.x7{left:80.820000px;}
.x26{left:84.420000px;}
.x9{left:85.500000px;}
.xc{left:92.376000px;}
.x5c{left:94.500000px;}
.x38{left:97.776000px;}
.x54{left:102.276000px;}
.x57{left:104.610000px;}
.x5d{left:106.596000px;}
.x29{left:140.436000px;}
.x12{left:142.596000px;}
.x5f{left:147.636000px;}
.x2d{left:149.976000px;}
.x39{left:154.110000px;}
.x5e{left:155.370000px;}
.x10{left:164.010000px;}
.x68{left:168.690000px;}
.x69{left:174.450000px;}
.x2b{left:178.770000px;}
.x34{left:190.290000px;}
.x60{left:192.810000px;}
.x3d{left:218.010000px;}
.x2f{left:245.910000px;}
.x3a{left:257.430000px;}
.x3e{left:261.210000px;}
.xf{left:270.759000px;}
.x35{left:286.275000px;}
.x51{left:291.315000px;}
.x3f{left:293.655000px;}
.x61{left:310.395000px;}
.x52{left:327.135000px;}
.x30{left:335.055000px;}
.x3b{left:339.555000px;}
.x40{left:343.335000px;}
.x53{left:365.835000px;}
.x37{left:380.595000px;}
.x41{left:382.575000px;}
.x1{left:426.079500px;}
.x2{left:430.392000px;}
.x3{left:442.695000px;}
.x13{left:448.815000px;}
.x56{left:450.075000px;}
.xb{left:457.275000px;}
.x42{left:459.435000px;}
.x11{left:465.195000px;}
.x6{left:467.745000px;}
.x4b{left:469.725000px;}
.x5b{left:482.145000px;}
.x1d{left:483.945000px;}
.x55{left:490.065000px;}
.x1b{left:518.505000px;}
.x1c{left:523.185000px;}
.x62{left:547.665000px;}
.x44{left:551.625000px;}
.xa{left:572.325000px;}
.x67{left:577.185000px;}
.x4c{left:579.165000px;}
.x63{left:586.005000px;}
.x43{left:587.085000px;}
.x15{left:588.165000px;}
.x47{left:592.845000px;}
.x4d{left:630.825000px;}
.x45{left:636.045000px;}
.x64{left:642.165000px;}
.x4e{left:674.970000px;}
.x48{left:679.110000px;}
.x1f{left:681.090000px;}
.x65{left:693.150000px;}
.x58{left:712.950000px;}
.x17{left:727.530000px;}
.x21{left:744.990000px;}
.x59{left:755.430000px;}
.x66{left:761.730000px;}
.x49{left:773.250000px;}
.x5a{left:798.090000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1d{letter-spacing:-1.600000pt;}
.ls1f{letter-spacing:-0.960000pt;}
.ls25{letter-spacing:-0.880000pt;}
.ls23{letter-spacing:-0.688000pt;}
.ls1b{letter-spacing:-0.624000pt;}
.ls6{letter-spacing:-0.528000pt;}
.ls9{letter-spacing:-0.480000pt;}
.ls24{letter-spacing:-0.478933pt;}
.ls15{letter-spacing:-0.409067pt;}
.ls19{letter-spacing:-0.329067pt;}
.ls5{letter-spacing:-0.320000pt;}
.ls18{letter-spacing:-0.310933pt;}
.ls4{letter-spacing:-0.239467pt;}
.lsf{letter-spacing:-0.230933pt;}
.lsb{letter-spacing:-0.183467pt;}
.ls13{letter-spacing:-0.161067pt;}
.ls16{letter-spacing:-0.096000pt;}
.ls8{letter-spacing:-0.047467pt;}
.ls17{letter-spacing:-0.018133pt;}
.ls2{letter-spacing:0.000000pt;}
.ls1a{letter-spacing:0.013333pt;}
.ls7{letter-spacing:0.016000pt;}
.lsd{letter-spacing:0.047467pt;}
.ls12{letter-spacing:0.094933pt;}
.ls3{letter-spacing:0.160000pt;}
.lsa{letter-spacing:0.198933pt;}
.lse{letter-spacing:0.230933pt;}
.lsc{letter-spacing:0.231040pt;}
.ls0{letter-spacing:0.320000pt;}
.ls1{letter-spacing:0.343680pt;}
.ls14{letter-spacing:0.400533pt;}
.ls10{letter-spacing:0.426667pt;}
.ls1e{letter-spacing:0.456533pt;}
.ls1c{letter-spacing:5.280000pt;}
.ls22{letter-spacing:42.792960pt;}
.ls11{letter-spacing:45.031040pt;}
.ls21{letter-spacing:45.431040pt;}
.ls20{letter-spacing:45.559040pt;}
.ws20{word-spacing:-13.736533pt;}
.wsf{word-spacing:-13.600000pt;}
.ws11{word-spacing:-13.510933pt;}
.ws25{word-spacing:-13.327467pt;}
.ws0{word-spacing:-13.280000pt;}
.ws26{word-spacing:-13.232533pt;}
.ws17{word-spacing:-13.096533pt;}
.wsd{word-spacing:-12.960000pt;}
.ws1a{word-spacing:-12.870933pt;}
.ws6{word-spacing:-12.320000pt;}
.ws5{word-spacing:-12.000000pt;}
.ws1b{word-spacing:-11.904000pt;}
.ws1f{word-spacing:-11.680000pt;}
.ws4{word-spacing:-11.472000pt;}
.ws19{word-spacing:-11.120533pt;}
.ws14{word-spacing:-11.040000pt;}
.ws7{word-spacing:-10.918933pt;}
.ws2{word-spacing:-10.880000pt;}
.ws1{word-spacing:-10.720000pt;}
.ws18{word-spacing:-10.558933pt;}
.ws8{word-spacing:-10.480533pt;}
.ws3{word-spacing:-10.400000pt;}
.ws12{word-spacing:-10.080000pt;}
.ws1c{word-spacing:-10.061867pt;}
.ws1d{word-spacing:-9.769067pt;}
.ws1e{word-spacing:-9.750933pt;}
.wsa{word-spacing:0.000000pt;}
.ws21{word-spacing:0.265600pt;}
.wsc{word-spacing:0.480000pt;}
.ws16{word-spacing:1.304960pt;}
.wsb{word-spacing:1.834667pt;}
.ws15{word-spacing:2.251627pt;}
.ws10{word-spacing:2.272960pt;}
.ws22{word-spacing:4.704960pt;}
.ws24{word-spacing:4.832960pt;}
.ws13{word-spacing:6.008427pt;}
.ws9{word-spacing:7.086720pt;}
.wse{word-spacing:8.345173pt;}
.ws23{word-spacing:21.901760pt;}
.ws28{word-spacing:49.749332pt;}
.ws27{word-spacing:70.186667pt;}
._2a{margin-left:-5.365332pt;}
._6{margin-left:-2.393465pt;}
._1{margin-left:-1.458049pt;}
._0{width:1.411717pt;}
._2{width:2.744577pt;}
._9{width:3.726372pt;}
._5{width:5.376000pt;}
._17{width:6.522667pt;}
._4{width:7.626667pt;}
._3{width:9.024000pt;}
._a{width:10.032000pt;}
._10{width:10.953378pt;}
._1f{width:11.877275pt;}
._b{width:13.584000pt;}
._e{width:15.012097pt;}
._8{width:16.368000pt;}
._7{width:17.520000pt;}
._23{width:18.464612pt;}
._18{width:19.408470pt;}
._16{width:20.784000pt;}
._15{width:22.320000pt;}
._c{width:24.064000pt;}
._d{width:25.212283pt;}
._1b{width:26.647590pt;}
._2b{width:27.857615pt;}
._1c{width:29.269332pt;}
._19{width:30.230486pt;}
._1a{width:31.602603pt;}
._2c{width:32.561049pt;}
._34{width:33.700815pt;}
._f{width:35.040000pt;}
._14{width:36.090667pt;}
._1d{width:36.994149pt;}
._1e{width:38.405866pt;}
._31{width:39.638929pt;}
._12{width:40.586667pt;}
._11{width:42.048000pt;}
._20{width:43.527962pt;}
._2e{width:44.461281pt;}
._2d{width:45.789281pt;}
._30{width:46.851681pt;}
._32{width:50.759475pt;}
._25{width:52.109817pt;}
._24{width:53.332746pt;}
._2f{width:55.032479pt;}
._22{width:55.924267pt;}
._13{width:57.504000pt;}
._29{width:59.317208pt;}
._26{width:60.237838pt;}
._27{width:61.615892pt;}
._35{width:62.894346pt;}
._21{width:64.563164pt;}
._38{width:90.251146pt;}
._37{width:91.738081pt;}
._36{width:111.627696pt;}
._28{width:113.354369pt;}
._33{width:148.917777pt;}
._39{width:375.330560pt;}
.fs6{font-size:40.320000pt;}
.fs1{font-size:42.880000pt;}
.fs2{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs5{font-size:58.880000pt;}
.fs3{font-size:106.880000pt;}
.fs4{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.yc{bottom:2.080000pt;}
.y7f{bottom:2.240000pt;}
.y14e{bottom:2.400000pt;}
.y155{bottom:2.560000pt;}
.y14c{bottom:2.720000pt;}
.y188{bottom:2.760000pt;}
.y110{bottom:3.520000pt;}
.y112{bottom:3.840000pt;}
.y114{bottom:4.000000pt;}
.ybc{bottom:5.440000pt;}
.y7{bottom:5.760000pt;}
.y180{bottom:7.840000pt;}
.y183{bottom:8.000000pt;}
.y136{bottom:8.320000pt;}
.y186{bottom:8.360000pt;}
.y138{bottom:8.480000pt;}
.ybb{bottom:8.640000pt;}
.y118{bottom:11.680000pt;}
.y4{bottom:12.320000pt;}
.y181{bottom:13.600000pt;}
.yd7{bottom:13.760000pt;}
.y8{bottom:14.080000pt;}
.y187{bottom:14.120000pt;}
.y17e{bottom:14.240000pt;}
.yb{bottom:14.400000pt;}
.y7e{bottom:14.560000pt;}
.y14b{bottom:15.040000pt;}
.y132{bottom:15.840000pt;}
.y3{bottom:17.120000pt;}
.y6{bottom:18.080000pt;}
.y7c{bottom:19.040000pt;}
.y1e3{bottom:19.360000pt;}
.y1e1{bottom:19.520000pt;}
.y1b8{bottom:20.640000pt;}
.y192{bottom:25.120000pt;}
.yd6{bottom:25.280000pt;}
.ya{bottom:26.720000pt;}
.y1cb{bottom:26.760000pt;}
.y1cd{bottom:26.880000pt;}
.y5{bottom:30.400000pt;}
.yd5{bottom:36.800000pt;}
.y9{bottom:38.880000pt;}
.y7d{bottom:39.040000pt;}
.y1c1{bottom:39.066667pt;}
.yea{bottom:42.560000pt;}
.yd4{bottom:48.320000pt;}
.y1bc{bottom:51.200000pt;}
.y1c4{bottom:51.226667pt;}
.ye9{bottom:53.920000pt;}
.y7b{bottom:55.680000pt;}
.yd3{bottom:59.680000pt;}
.y1c3{bottom:63.546667pt;}
.y1bb{bottom:63.560000pt;}
.ye8{bottom:65.440000pt;}
.y1ab{bottom:70.432000pt;}
.yd2{bottom:71.200000pt;}
.yb9{bottom:75.232000pt;}
.y1c2{bottom:75.706667pt;}
.y1ba{bottom:75.720000pt;}
.y78{bottom:77.952000pt;}
.y1f7{bottom:79.552000pt;}
.y144{bottom:80.672000pt;}
.y1d3{bottom:82.272000pt;}
.yd1{bottom:82.720000pt;}
.y22a{bottom:83.232000pt;}
.y287{bottom:84.672000pt;}
.y1aa{bottom:85.792000pt;}
.y24d{bottom:87.872000pt;}
.ye7{bottom:88.480000pt;}
.y45{bottom:90.752000pt;}
.yb8{bottom:91.392000pt;}
.y10c{bottom:92.352000pt;}
.y7a{bottom:92.506667pt;}
.y77{bottom:94.112000pt;}
.y1f6{bottom:95.712000pt;}
.y286{bottom:96.992000pt;}
.y143{bottom:98.272000pt;}
.y1d2{bottom:98.432000pt;}
.y229{bottom:99.232000pt;}
.ye6{bottom:100.040000pt;}
.y1a9{bottom:101.152000pt;}
.y44{bottom:102.912000pt;}
.y24c{bottom:103.872000pt;}
.yd0{bottom:105.800000pt;}
.yb7{bottom:107.392000pt;}
.y285{bottom:109.152000pt;}
.y10b{bottom:109.952000pt;}
.y76{bottom:110.112000pt;}
.ye5{bottom:111.560000pt;}
.y1f5{bottom:111.712000pt;}
.y1d1{bottom:114.432000pt;}
.y177{bottom:115.072000pt;}
.y43{bottom:115.232000pt;}
.y228{bottom:115.392000pt;}
.y142{bottom:115.872000pt;}
.y1a8{bottom:116.352000pt;}
.ycf{bottom:117.160000pt;}
.y24b{bottom:120.032000pt;}
.y284{bottom:121.472000pt;}
.y75{bottom:126.272000pt;}
.yb6{bottom:126.752000pt;}
.y10a{bottom:127.552000pt;}
.y1f4{bottom:127.872000pt;}
.yce{bottom:128.680000pt;}
.y227{bottom:131.392000pt;}
.y1a7{bottom:131.712000pt;}
.y176{bottom:132.672000pt;}
.y141{bottom:133.466667pt;}
.y283{bottom:133.786667pt;}
.ye4{bottom:134.440000pt;}
.y24a{bottom:136.026667pt;}
.y1d0{bottom:137.306667pt;}
.y42{bottom:139.706667pt;}
.ycd{bottom:140.200000pt;}
.y74{bottom:142.266667pt;}
.y1f3{bottom:143.866667pt;}
.y109{bottom:145.146667pt;}
.y282{bottom:145.946667pt;}
.ye3{bottom:145.960000pt;}
.y1a6{bottom:147.066667pt;}
.y226{bottom:147.546667pt;}
.y1cf{bottom:150.106667pt;}
.y175{bottom:150.266667pt;}
.yb5{bottom:150.906667pt;}
.y140{bottom:151.066667pt;}
.ycc{bottom:151.720000pt;}
.y41{bottom:152.026667pt;}
.y249{bottom:152.186667pt;}
.ye2{bottom:157.480000pt;}
.y281{bottom:158.266667pt;}
.y73{bottom:158.426667pt;}
.y1f2{bottom:160.026667pt;}
.y1a5{bottom:162.426667pt;}
.y108{bottom:162.746667pt;}
.ycb{bottom:163.240000pt;}
.y225{bottom:163.546667pt;}
.y40{bottom:164.826667pt;}
.yb4{bottom:166.906667pt;}
.y174{bottom:167.866667pt;}
.y13f{bottom:168.666667pt;}
.ye1{bottom:169.000000pt;}
.y280{bottom:170.426667pt;}
.y72{bottom:174.586667pt;}
.yca{bottom:174.600000pt;}
.y248{bottom:175.546667pt;}
.y1f1{bottom:176.026667pt;}
.y1a4{bottom:177.626667pt;}
.y3f{bottom:179.546667pt;}
.y224{bottom:179.706667pt;}
.y107{bottom:180.506667pt;}
.y27f{bottom:182.746667pt;}
.yb3{bottom:183.066667pt;}
.y173{bottom:185.626667pt;}
.yc9{bottom:186.120000pt;}
.y13e{bottom:186.426667pt;}
.y1ce{bottom:187.546667pt;}
.y71{bottom:190.586667pt;}
.ye0{bottom:191.880000pt;}
.y3e{bottom:192.186667pt;}
.y1a3{bottom:192.986667pt;}
.y27e{bottom:195.066667pt;}
.y223{bottom:195.706667pt;}
.yc8{bottom:197.640000pt;}
.y106{bottom:198.106667pt;}
.yb2{bottom:199.066667pt;}
.y172{bottom:203.226667pt;}
.ydf{bottom:203.400000pt;}
.y13d{bottom:204.026667pt;}
.y3d{bottom:205.946667pt;}
.y70{bottom:206.746667pt;}
.y247{bottom:206.906667pt;}
.y27d{bottom:207.226667pt;}
.y1a2{bottom:208.346667pt;}
.yc7{bottom:209.160000pt;}
.y222{bottom:211.866667pt;}
.yde{bottom:214.920000pt;}
.yb1{bottom:215.226667pt;}
.y105{bottom:215.706667pt;}
.y27c{bottom:219.546667pt;}
.y3c{bottom:219.706667pt;}
.y171{bottom:220.826667pt;}
.y246{bottom:222.106667pt;}
.y6f{bottom:222.746667pt;}
.y13c{bottom:223.226667pt;}
.y1a1{bottom:223.706667pt;}
.y1f0{bottom:224.346667pt;}
.y1cc{bottom:224.986667pt;}
.ydd{bottom:226.440000pt;}
.y221{bottom:228.026667pt;}
.yb0{bottom:231.226667pt;}
.y27b{bottom:231.866667pt;}
.yc6{bottom:232.200000pt;}
.y104{bottom:233.306667pt;}
.y3b{bottom:233.466667pt;}
.y13b{bottom:236.186667pt;}
.y245{bottom:237.466667pt;}
.y170{bottom:238.426667pt;}
.y6e{bottom:238.906667pt;}
.y1ef{bottom:240.506667pt;}
.yc5{bottom:243.560000pt;}
.y220{bottom:244.026667pt;}
.y3a{bottom:247.386667pt;}
.y13a{bottom:249.146667pt;}
.ydc{bottom:249.320000pt;}
.y103{bottom:250.906667pt;}
.y244{bottom:252.826667pt;}
.y1a0{bottom:254.266667pt;}
.y16f{bottom:254.746667pt;}
.y6d{bottom:254.906667pt;}
.yc4{bottom:255.080000pt;}
.y27a{bottom:256.346667pt;}
.y1ee{bottom:256.506667pt;}
.y21f{bottom:260.186667pt;}
.ydb{bottom:260.840000pt;}
.yaf{bottom:263.546667pt;}
.yc3{bottom:266.600000pt;}
.y243{bottom:268.186667pt;}
.y102{bottom:268.506667pt;}
.y279{bottom:268.666667pt;}
.y19f{bottom:269.626667pt;}
.y6c{bottom:271.066667pt;}
.yda{bottom:272.360000pt;}
.y1ed{bottom:272.666667pt;}
.y139{bottom:274.266667pt;}
.y1ca{bottom:274.746667pt;}
.y21e{bottom:276.186667pt;}
.yc2{bottom:278.120000pt;}
.yae{bottom:279.546667pt;}
.y16e{bottom:279.866667pt;}
.y278{bottom:280.826667pt;}
.y242{bottom:283.386667pt;}
.yd9{bottom:283.880000pt;}
.y19e{bottom:284.986667pt;}
.y101{bottom:286.106667pt;}
.y6b{bottom:287.066667pt;}
.y39{bottom:287.386667pt;}
.y1ec{bottom:288.666667pt;}
.yc1{bottom:289.640000pt;}
.y21d{bottom:292.346667pt;}
.y277{bottom:293.146667pt;}
.yd8{bottom:295.400000pt;}
.yad{bottom:295.706667pt;}
.y241{bottom:298.746667pt;}
.y137{bottom:299.426667pt;}
.y19d{bottom:300.226667pt;}
.yc0{bottom:301.000000pt;}
.y38{bottom:302.786667pt;}
.y6a{bottom:303.266667pt;}
.y100{bottom:303.746667pt;}
.y1eb{bottom:304.866667pt;}
.y16d{bottom:305.186667pt;}
.y276{bottom:305.506667pt;}
.y21c{bottom:308.386667pt;}
.yac{bottom:311.746667pt;}
.y1c9{bottom:312.226667pt;}
.ybf{bottom:312.520000pt;}
.y240{bottom:314.146667pt;}
.y19c{bottom:315.586667pt;}
.y275{bottom:317.666667pt;}
.y37{bottom:317.826667pt;}
.y69{bottom:319.266667pt;}
.y1ea{bottom:320.866667pt;}
.yff{bottom:323.106667pt;}
.ybe{bottom:324.040000pt;}
.y21b{bottom:324.546667pt;}
.y135{bottom:324.706667pt;}
.y2b5{bottom:326.146667pt;}
.yab{bottom:327.906667pt;}
.y23f{bottom:329.506667pt;}
.y274{bottom:329.986667pt;}
.y16c{bottom:330.306667pt;}
.y19b{bottom:330.946667pt;}
.y36{bottom:331.586667pt;}
.y68{bottom:335.426667pt;}
.y1e9{bottom:337.026667pt;}
.y21a{bottom:340.546667pt;}
.y2b4{bottom:341.506667pt;}
.y273{bottom:342.306667pt;}
.yaa{bottom:343.906667pt;}
.yfe{bottom:344.226667pt;}
.y23e{bottom:344.706667pt;}
.y35{bottom:345.346667pt;}
.y19a{bottom:346.306667pt;}
.y1c8{bottom:349.666667pt;}
.y134{bottom:349.826667pt;}
.y67{bottom:351.426667pt;}
.y1e8{bottom:353.026667pt;}
.y272{bottom:354.466667pt;}
.y219{bottom:356.706667pt;}
.y2b3{bottom:356.866667pt;}
.yfd{bottom:357.186667pt;}
.y34{bottom:359.266667pt;}
.ya9{bottom:360.066667pt;}
.y199{bottom:361.506667pt;}
.y131{bottom:362.786667pt;}
.y271{bottom:366.786667pt;}
.y66{bottom:367.586667pt;}
.y1e7{bottom:369.186667pt;}
.yfc{bottom:370.146667pt;}
.y2b2{bottom:372.066667pt;}
.y218{bottom:372.706667pt;}
.y33{bottom:373.026667pt;}
.y16b{bottom:374.466667pt;}
.y23d{bottom:375.426667pt;}
.ya8{bottom:376.066667pt;}
.y198{bottom:376.866667pt;}
.y133{bottom:377.666667pt;}
.y270{bottom:379.106667pt;}
.yfb{bottom:383.106667pt;}
.y65{bottom:383.746667pt;}
.y1e6{bottom:385.186667pt;}
.y32{bottom:386.786667pt;}
.y1c7{bottom:387.106667pt;}
.y2b1{bottom:387.426667pt;}
.y217{bottom:388.866667pt;}
.y23c{bottom:390.786667pt;}
.y26f{bottom:391.266667pt;}
.y16a{bottom:392.066667pt;}
.ya7{bottom:392.226667pt;}
.yfa{bottom:395.906667pt;}
.y130{bottom:398.786667pt;}
.y64{bottom:399.746667pt;}
.y31{bottom:400.866667pt;}
.y1e5{bottom:401.346667pt;}
.y2b0{bottom:402.786667pt;}
.y26e{bottom:403.586667pt;}
.y216{bottom:404.866667pt;}
.y23b{bottom:405.986667pt;}
.ya6{bottom:408.226667pt;}
.y169{bottom:409.666667pt;}
.y197{bottom:411.426667pt;}
.y12f{bottom:414.146667pt;}
.y26d{bottom:415.746667pt;}
.y63{bottom:415.906667pt;}
.yf9{bottom:417.186667pt;}
.y2af{bottom:418.146667pt;}
.y215{bottom:421.026667pt;}
.y30{bottom:421.186667pt;}
.y23a{bottom:421.346667pt;}
.y196{bottom:423.586667pt;}
.y1e4{bottom:423.746667pt;}
.ya5{bottom:424.386667pt;}
.y1c6{bottom:424.546667pt;}
.y168{bottom:427.266667pt;}
.y26c{bottom:428.066667pt;}
.y62{bottom:431.906667pt;}
.y2ae{bottom:433.346667pt;}
.y2f{bottom:434.946667pt;}
.y195{bottom:435.746667pt;}
.y239{bottom:436.706667pt;}
.y214{bottom:437.026667pt;}
.yf8{bottom:438.466667pt;}
.ya4{bottom:440.386667pt;}
.y167{bottom:444.866667pt;}
.y1e2{bottom:447.426667pt;}
.y61{bottom:448.066667pt;}
.y2e{bottom:448.706667pt;}
.y12e{bottom:451.586667pt;}
.y238{bottom:452.066667pt;}
.y26b{bottom:452.546667pt;}
.y213{bottom:453.186667pt;}
.yf7{bottom:454.626667pt;}
.ya3{bottom:456.546667pt;}
.y194{bottom:460.226667pt;}
.y1c5{bottom:461.986667pt;}
.y166{bottom:462.466667pt;}
.y60{bottom:464.066667pt;}
.y26a{bottom:464.866667pt;}
.y237{bottom:467.266667pt;}
.y12d{bottom:467.746667pt;}
.y2d{bottom:467.906667pt;}
.y212{bottom:469.346667pt;}
.yf6{bottom:470.626667pt;}
.ya2{bottom:472.706667pt;}
.y2ad{bottom:475.586667pt;}
.y269{bottom:477.186667pt;}
.y165{bottom:480.066667pt;}
.y5f{bottom:480.226667pt;}
.y2c{bottom:481.666667pt;}
.y1e0{bottom:482.466667pt;}
.y236{bottom:482.626667pt;}
.y12c{bottom:483.746667pt;}
.y193{bottom:484.706667pt;}
.y211{bottom:485.346667pt;}
.yf5{bottom:486.786667pt;}
.y2ac{bottom:487.906667pt;}
.ya1{bottom:488.706667pt;}
.y268{bottom:489.346667pt;}
.y2b{bottom:495.426667pt;}
.y5e{bottom:496.226667pt;}
.y164{bottom:497.666667pt;}
.y235{bottom:497.986667pt;}
.y1c0{bottom:499.426667pt;}
.y2ab{bottom:500.226667pt;}
.y210{bottom:501.506667pt;}
.y267{bottom:501.666667pt;}
.yf4{bottom:502.786667pt;}
.y12b{bottom:503.106667pt;}
.ya0{bottom:504.866667pt;}
.y191{bottom:508.386667pt;}
.y2a{bottom:509.346667pt;}
.y5d{bottom:512.386667pt;}
.y234{bottom:513.346667pt;}
.y266{bottom:513.986667pt;}
.y163{bottom:515.266667pt;}
.y1df{bottom:517.666667pt;}
.yf3{bottom:518.946667pt;}
.y9f{bottom:520.866667pt;}
.y29{bottom:523.106667pt;}
.y20f{bottom:524.706667pt;}
.y265{bottom:526.146667pt;}
.y5c{bottom:528.386667pt;}
.y233{bottom:528.546667pt;}
.y12a{bottom:528.706667pt;}
.y162{bottom:533.026667pt;}
.yf2{bottom:534.946667pt;}
.y28{bottom:536.893333pt;}
.y9e{bottom:537.053333pt;}
.y264{bottom:538.493333pt;}
.y190{bottom:543.453333pt;}
.y232{bottom:543.933333pt;}
.y5b{bottom:544.573333pt;}
.y129{bottom:546.333333pt;}
.y1de{bottom:549.053333pt;}
.y2aa{bottom:549.213333pt;}
.y27{bottom:550.653333pt;}
.y263{bottom:550.813333pt;}
.yf1{bottom:551.133333pt;}
.y9d{bottom:553.053333pt;}
.y20e{bottom:556.893333pt;}
.y231{bottom:559.293333pt;}
.y5a{bottom:560.573333pt;}
.y2a9{bottom:561.533333pt;}
.y262{bottom:562.973333pt;}
.y1dd{bottom:563.133333pt;}
.y128{bottom:563.933333pt;}
.y26{bottom:564.413333pt;}
.yf0{bottom:567.133333pt;}
.y9c{bottom:569.213333pt;}
.y161{bottom:569.853333pt;}
.y20d{bottom:572.893333pt;}
.y2a8{bottom:573.693333pt;}
.y230{bottom:574.653333pt;}
.y261{bottom:575.293333pt;}
.y59{bottom:576.733333pt;}
.y1dc{bottom:576.893333pt;}
.y25{bottom:578.333333pt;}
.y127{bottom:581.533333pt;}
.yef{bottom:583.293333pt;}
.y9b{bottom:585.213333pt;}
.y1bf{bottom:585.853333pt;}
.y2a7{bottom:586.013333pt;}
.y260{bottom:587.613333pt;}
.y20c{bottom:589.053333pt;}
.y22f{bottom:589.853333pt;}
.y1db{bottom:590.653333pt;}
.y18f{bottom:590.813333pt;}
.y24{bottom:592.093333pt;}
.y58{bottom:592.733333pt;}
.y160{bottom:595.613333pt;}
.y2a6{bottom:598.173333pt;}
.yee{bottom:599.293333pt;}
.y25f{bottom:599.773333pt;}
.y9a{bottom:601.373333pt;}
.y1da{bottom:604.413333pt;}
.y20b{bottom:605.213333pt;}
.y23{bottom:605.853333pt;}
.y57{bottom:608.093333pt;}
.y2a5{bottom:610.493333pt;}
.y25e{bottom:612.093333pt;}
.y15f{bottom:613.213333pt;}
.y18e{bottom:615.293333pt;}
.yed{bottom:615.453333pt;}
.y126{bottom:616.893333pt;}
.y99{bottom:617.373333pt;}
.y22{bottom:619.613333pt;}
.y22e{bottom:620.573333pt;}
.y20a{bottom:621.213333pt;}
.y1be{bottom:623.293333pt;}
.y56{bottom:623.453333pt;}
.y25d{bottom:624.413333pt;}
.y1d9{bottom:624.573333pt;}
.y15e{bottom:630.813333pt;}
.y21{bottom:633.373333pt;}
.y98{bottom:633.533333pt;}
.y125{bottom:634.493333pt;}
.yec{bottom:634.813333pt;}
.y22d{bottom:635.933333pt;}
.y25c{bottom:636.573333pt;}
.y209{bottom:637.373333pt;}
.y2a4{bottom:638.013333pt;}
.y55{bottom:638.813333pt;}
.y18d{bottom:639.773333pt;}
.y1d8{bottom:640.733333pt;}
.y20{bottom:647.133333pt;}
.y15d{bottom:648.413333pt;}
.y25b{bottom:648.893333pt;}
.y97{bottom:649.533333pt;}
.y2a3{bottom:650.333333pt;}
.y22c{bottom:651.133333pt;}
.y124{bottom:652.093333pt;}
.y208{bottom:653.373333pt;}
.y54{bottom:654.173333pt;}
.y1d7{bottom:656.733333pt;}
.y1f{bottom:661.053333pt;}
.y25a{bottom:661.213333pt;}
.y2a2{bottom:662.653333pt;}
.yeb{bottom:663.453333pt;}
.y96{bottom:665.693333pt;}
.y15c{bottom:666.013333pt;}
.y22b{bottom:666.493333pt;}
.y53{bottom:669.373333pt;}
.y207{bottom:669.533333pt;}
.y123{bottom:669.693333pt;}
.y1d6{bottom:672.893333pt;}
.y1bd{bottom:673.053333pt;}
.y259{bottom:673.373333pt;}
.y1e{bottom:674.813333pt;}
.ybd{bottom:681.853333pt;}
.y15b{bottom:683.613333pt;}
.y52{bottom:684.733333pt;}
.y206{bottom:685.533333pt;}
.y258{bottom:685.693333pt;}
.y2a1{bottom:687.133333pt;}
.y122{bottom:687.293333pt;}
.y18c{bottom:687.773333pt;}
.y1d{bottom:688.573333pt;}
.y1d5{bottom:688.893333pt;}
.y95{bottom:689.053333pt;}
.y257{bottom:698.013333pt;}
.y2a0{bottom:699.293333pt;}
.y18b{bottom:699.933333pt;}
.y51{bottom:700.093333pt;}
.y15a{bottom:701.213333pt;}
.y205{bottom:701.693333pt;}
.y1c{bottom:702.333333pt;}
.y121{bottom:704.893333pt;}
.y1d4{bottom:705.053333pt;}
.y256{bottom:710.173333pt;}
.y1b9{bottom:710.493333pt;}
.y29f{bottom:711.613333pt;}
.y50{bottom:715.453333pt;}
.y1b{bottom:716.093333pt;}
.y204{bottom:717.693333pt;}
.y159{bottom:718.813333pt;}
.y94{bottom:721.053333pt;}
.y120{bottom:722.493333pt;}
.y29e{bottom:723.933333pt;}
.y18a{bottom:724.413333pt;}
.y1a{bottom:729.853333pt;}
.y4f{bottom:730.653333pt;}
.y203{bottom:733.853333pt;}
.y255{bottom:734.813333pt;}
.y29d{bottom:736.093333pt;}
.y158{bottom:736.413333pt;}
.y93{bottom:737.213333pt;}
.y11f{bottom:740.093333pt;}
.y19{bottom:743.773333pt;}
.y4e{bottom:746.013333pt;}
.y254{bottom:746.973333pt;}
.y189{bottom:748.093333pt;}
.y29c{bottom:748.413333pt;}
.y202{bottom:749.853333pt;}
.y92{bottom:753.213333pt;}
.y157{bottom:754.173333pt;}
.y18{bottom:757.533333pt;}
.y11e{bottom:757.853333pt;}
.y253{bottom:759.293333pt;}
.y4d{bottom:761.373333pt;}
.y201{bottom:766.013333pt;}
.y29b{bottom:769.213333pt;}
.y91{bottom:769.373333pt;}
.y17{bottom:771.293333pt;}
.y252{bottom:771.613333pt;}
.y156{bottom:771.773333pt;}
.y11d{bottom:775.493333pt;}
.y4c{bottom:776.773333pt;}
.y200{bottom:782.053333pt;}
.y251{bottom:783.813333pt;}
.y16{bottom:785.093333pt;}
.y90{bottom:785.413333pt;}
.y4b{bottom:791.973333pt;}
.y11c{bottom:793.093333pt;}
.y154{bottom:794.053333pt;}
.y250{bottom:796.133333pt;}
.y185{bottom:796.293333pt;}
.y1b7{bottom:796.933333pt;}
.y1ff{bottom:798.213333pt;}
.y15{bottom:798.853333pt;}
.y29a{bottom:799.973333pt;}
.y8f{bottom:801.573333pt;}
.y4a{bottom:807.333333pt;}
.y153{bottom:807.493333pt;}
.y11b{bottom:810.693333pt;}
.y299{bottom:812.293333pt;}
.y14{bottom:812.773333pt;}
.y1fe{bottom:814.373333pt;}
.y24f{bottom:816.933333pt;}
.y8e{bottom:817.573333pt;}
.y184{bottom:820.773333pt;}
.y49{bottom:822.693333pt;}
.y298{bottom:824.453333pt;}
.y13{bottom:826.533333pt;}
.y11a{bottom:828.293333pt;}
.y1fd{bottom:830.373333pt;}
.y152{bottom:832.613333pt;}
.y182{bottom:832.933333pt;}
.y8d{bottom:833.733333pt;}
.y297{bottom:836.773333pt;}
.y48{bottom:838.053333pt;}
.y12{bottom:840.293333pt;}
.y119{bottom:845.893333pt;}
.y1b6{bottom:846.693333pt;}
.y1fc{bottom:848.133333pt;}
.y24e{bottom:849.093333pt;}
.y8c{bottom:849.893333pt;}
.y11{bottom:854.053333pt;}
.y47{bottom:856.293333pt;}
.y17f{bottom:856.613333pt;}
.y151{bottom:857.893333pt;}
.y296{bottom:861.253333pt;}
.y117{bottom:865.253333pt;}
.y8b{bottom:865.893333pt;}
.y1b5{bottom:867.653333pt;}
.y10{bottom:867.813333pt;}
.y150{bottom:871.173333pt;}
.y1fb{bottom:873.253333pt;}
.y295{bottom:873.573333pt;}
.y17d{bottom:880.133333pt;}
.yf{bottom:881.573333pt;}
.y8a{bottom:882.053333pt;}
.y1b4{bottom:883.173333pt;}
.y294{bottom:885.893333pt;}
.y46{bottom:891.973333pt;}
.ye{bottom:895.493333pt;}
.y14f{bottom:896.453333pt;}
.y116{bottom:896.933333pt;}
.y89{bottom:898.053333pt;}
.y1fa{bottom:898.533333pt;}
.y1b3{bottom:904.453333pt;}
.y17c{bottom:904.613333pt;}
.yd{bottom:909.253333pt;}
.y14a{bottom:909.893333pt;}
.y293{bottom:910.373333pt;}
.y115{bottom:913.253333pt;}
.y88{bottom:914.213333pt;}
.y1b2{bottom:920.613333pt;}
.y292{bottom:922.693333pt;}
.y14d{bottom:923.173333pt;}
.y1f9{bottom:923.653333pt;}
.y113{bottom:929.573333pt;}
.y87{bottom:930.213333pt;}
.y79{bottom:932.933333pt;}
.y291{bottom:934.853333pt;}
.y1b1{bottom:936.613333pt;}
.y17b{bottom:939.813333pt;}
.y149{bottom:944.293333pt;}
.y111{bottom:946.053333pt;}
.y86{bottom:946.373333pt;}
.y290{bottom:947.173333pt;}
.y1b0{bottom:952.773333pt;}
.y1f8{bottom:957.093333pt;}
.y28f{bottom:959.493333pt;}
.y148{bottom:959.653333pt;}
.y85{bottom:962.373333pt;}
.y1af{bottom:968.773333pt;}
.y28e{bottom:971.653333pt;}
.y17a{bottom:975.013333pt;}
.y10f{bottom:975.173333pt;}
.y84{bottom:978.533333pt;}
.y28d{bottom:983.973333pt;}
.y147{bottom:984.293333pt;}
.y1ae{bottom:984.933333pt;}
.y83{bottom:994.533333pt;}
.y28c{bottom:996.293333pt;}
.y10e{bottom:998.853333pt;}
.y179{bottom:999.333333pt;}
.y146{bottom:999.653333pt;}
.y1ad{bottom:1004.293333pt;}
.y28b{bottom:1008.453333pt;}
.y82{bottom:1010.693333pt;}
.y10d{bottom:1014.240000pt;}
.yba{bottom:1015.840000pt;}
.y178{bottom:1019.360000pt;}
.y28a{bottom:1020.800000pt;}
.y145{bottom:1025.280000pt;}
.y81{bottom:1026.720000pt;}
.y1ac{bottom:1027.680000pt;}
.y289{bottom:1033.120000pt;}
.y80{bottom:1042.880000pt;}
.y288{bottom:1045.280000pt;}
.y2{bottom:1082.400000pt;}
.y1{bottom:1097.600000pt;}
.h23{height:11.520000pt;}
.h16{height:12.160000pt;}
.h14{height:12.320000pt;}
.h20{height:12.640000pt;}
.h21{height:12.800000pt;}
.h1a{height:14.720000pt;}
.h17{height:14.880000pt;}
.h18{height:15.520000pt;}
.h19{height:15.680000pt;}
.h11{height:17.920000pt;}
.h29{height:22.880000pt;}
.h2b{height:23.040000pt;}
.h32{height:23.072000pt;}
.h25{height:23.680000pt;}
.h28{height:23.840000pt;}
.h2a{height:23.872000pt;}
.h1d{height:24.480000pt;}
.h1e{height:24.640000pt;}
.h22{height:24.672000pt;}
.h1f{height:25.600000pt;}
.h1c{height:27.200000pt;}
.h24{height:28.448437pt;}
.h12{height:29.157187pt;}
.h15{height:30.254687pt;}
.hb{height:31.008437pt;}
.h1b{height:31.040000pt;}
.h5{height:32.620625pt;}
.ha{height:33.867188pt;}
.h26{height:34.400000pt;}
.h2c{height:34.432000pt;}
.h27{height:34.560000pt;}
.h9{height:34.710938pt;}
.h2e{height:36.640000pt;}
.h30{height:36.800000pt;}
.h31{height:36.832000pt;}
.h2{height:37.479688pt;}
.h3{height:38.413438pt;}
.h7{height:38.953125pt;}
.h33{height:39.347188pt;}
.h4{height:40.320000pt;}
.hf{height:41.543750pt;}
.h8{height:43.108125pt;}
.h34{height:43.613750pt;}
.h10{height:48.960000pt;}
.h6{height:48.992000pt;}
.h2f{height:49.120000pt;}
.hc{height:77.289687pt;}
.h2d{height:85.792000pt;}
.he{height:92.562500pt;}
.hd{height:122.432000pt;}
.h13{height:333.346667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w19{width:24.480000pt;}
.w2d{width:25.632000pt;}
.w32{width:27.712000pt;}
.w1b{width:28.192000pt;}
.w31{width:28.480000pt;}
.w2a{width:31.200000pt;}
.w2b{width:33.760000pt;}
.w1d{width:34.080000pt;}
.wf{width:35.200000pt;}
.w11{width:35.232000pt;}
.w22{width:36.000000pt;}
.w30{width:37.120000pt;}
.w23{width:37.632000pt;}
.w1a{width:37.760000pt;}
.w27{width:38.592000pt;}
.w24{width:39.520000pt;}
.w13{width:39.840000pt;}
.w14{width:42.560000pt;}
.w12{width:42.720000pt;}
.w1e{width:43.360000pt;}
.w1c{width:43.520000pt;}
.w36{width:43.872000pt;}
.w3a{width:44.672000pt;}
.w26{width:45.280000pt;}
.wa{width:45.600000pt;}
.w10{width:48.800000pt;}
.w37{width:49.280000pt;}
.w3c{width:53.760000pt;}
.w9{width:56.000000pt;}
.w35{width:59.360000pt;}
.w16{width:59.520000pt;}
.w2c{width:59.840000pt;}
.w3b{width:60.320000pt;}
.wb{width:63.552000pt;}
.w38{width:68.320000pt;}
.w17{width:72.352000pt;}
.w20{width:74.400000pt;}
.w34{width:74.912000pt;}
.wd{width:78.592000pt;}
.w21{width:80.992000pt;}
.w18{width:81.600000pt;}
.w1f{width:82.112000pt;}
.we{width:83.040000pt;}
.wc{width:84.640000pt;}
.w7{width:92.320000pt;}
.w25{width:96.640000pt;}
.w15{width:101.792000pt;}
.w39{width:112.832000pt;}
.w28{width:120.480000pt;}
.w6{width:123.232000pt;}
.w2e{width:167.226667pt;}
.w3{width:171.866667pt;}
.w5{width:171.906667pt;}
.w8{width:174.586667pt;}
.w29{width:193.506667pt;}
.w33{width:204.506667pt;}
.w2f{width:233.026667pt;}
.w2{width:244.386667pt;}
.w4{width:629.853333pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1a{left:3.360000pt;}
.x19{left:6.880000pt;}
.x24{left:8.320000pt;}
.x5{left:9.600000pt;}
.x20{left:11.200000pt;}
.x25{left:12.800000pt;}
.x3c{left:13.760000pt;}
.x28{left:14.720000pt;}
.x32{left:16.320000pt;}
.x22{left:17.280000pt;}
.x36{left:18.560000pt;}
.x27{left:20.000000pt;}
.x23{left:22.720000pt;}
.x46{left:23.880000pt;}
.x18{left:25.280000pt;}
.x33{left:26.432000pt;}
.xd{left:27.360000pt;}
.x31{left:29.280000pt;}
.x2e{left:30.714667pt;}
.x4a{left:32.346667pt;}
.x4f{left:35.200000pt;}
.x16{left:38.560000pt;}
.xe{left:44.640000pt;}
.x4{left:50.560000pt;}
.x14{left:55.066667pt;}
.x1e{left:58.080000pt;}
.x8{left:62.400000pt;}
.x50{left:64.640000pt;}
.x2a{left:65.920000pt;}
.x2c{left:68.960000pt;}
.x7{left:71.840000pt;}
.x26{left:75.040000pt;}
.x9{left:76.000000pt;}
.xc{left:82.112000pt;}
.x5c{left:84.000000pt;}
.x38{left:86.912000pt;}
.x54{left:90.912000pt;}
.x57{left:92.986667pt;}
.x5d{left:94.752000pt;}
.x29{left:124.832000pt;}
.x12{left:126.752000pt;}
.x5f{left:131.232000pt;}
.x2d{left:133.312000pt;}
.x39{left:136.986667pt;}
.x5e{left:138.106667pt;}
.x10{left:145.786667pt;}
.x68{left:149.946667pt;}
.x69{left:155.066667pt;}
.x2b{left:158.906667pt;}
.x34{left:169.146667pt;}
.x60{left:171.386667pt;}
.x3d{left:193.786667pt;}
.x2f{left:218.586667pt;}
.x3a{left:228.826667pt;}
.x3e{left:232.186667pt;}
.xf{left:240.674667pt;}
.x35{left:254.466667pt;}
.x51{left:258.946667pt;}
.x3f{left:261.026667pt;}
.x61{left:275.906667pt;}
.x52{left:290.786667pt;}
.x30{left:297.826667pt;}
.x3b{left:301.826667pt;}
.x40{left:305.186667pt;}
.x53{left:325.186667pt;}
.x37{left:338.306667pt;}
.x41{left:340.066667pt;}
.x1{left:378.737333pt;}
.x2{left:382.570667pt;}
.x3{left:393.506667pt;}
.x13{left:398.946667pt;}
.x56{left:400.066667pt;}
.xb{left:406.466667pt;}
.x42{left:408.386667pt;}
.x11{left:413.506667pt;}
.x6{left:415.773333pt;}
.x4b{left:417.533333pt;}
.x5b{left:428.573333pt;}
.x1d{left:430.173333pt;}
.x55{left:435.613333pt;}
.x1b{left:460.893333pt;}
.x1c{left:465.053333pt;}
.x62{left:486.813333pt;}
.x44{left:490.333333pt;}
.xa{left:508.733333pt;}
.x67{left:513.053333pt;}
.x4c{left:514.813333pt;}
.x63{left:520.893333pt;}
.x43{left:521.853333pt;}
.x15{left:522.813333pt;}
.x47{left:526.973333pt;}
.x4d{left:560.733333pt;}
.x45{left:565.373333pt;}
.x64{left:570.813333pt;}
.x4e{left:599.973333pt;}
.x48{left:603.653333pt;}
.x1f{left:605.413333pt;}
.x65{left:616.133333pt;}
.x58{left:633.733333pt;}
.x17{left:646.693333pt;}
.x21{left:662.213333pt;}
.x59{left:671.493333pt;}
.x66{left:677.093333pt;}
.x49{left:687.333333pt;}
.x5a{left:709.413333pt;}
}




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