
    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_2c87d70034de48282d0a8740.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.003906;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_b668a7ea643c9638958b1b37.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_6da7ee65eabb678b191f335c.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_fe680dd26b2466dfd0b8cc78.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.106934;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_da907015b387369838f602ca.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.372070;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_b0dced187d18bbfa300be56a.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.893555;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_7d107005b73372fec57ab437.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.910645;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_cb40807e593ec98be2626ab9.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_1e8e57d147804a7bc4240371.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.685547;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_cb80de6d83c32d4535a81c2c.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_92ebc6fa2704aecf5cfb19d5.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_ca33f76522b7b569e6526687.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.870117;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_cafa7049b0d8dee4845f465c.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.097656;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_3cbae8b86af9edbeef76e396.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.097656;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:fff;src:url('chunks/assets/font_654748d66dcdd1322c11d28e.woff2')format("woff");}.fff{font-family:fff;line-height:0.910645;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:ff10;src:url('chunks/assets/font_649e24f06916b86b999d8fc9.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.097656;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:ff11;src:url('chunks/assets/font_eefa706d31aede11c94cbc95.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.710449;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:ff12;src:url('chunks/assets/font_a57dd4c97baa18f252a29d0f.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.685547;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:ff13;src:url('chunks/assets/font_cfcc468d16a6d39134066a20.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.677246;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:ff14;src:url('chunks/assets/font_73170b5c8d218b23f0d9c516.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.866211;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:ff15;src:url('chunks/assets/font_5d6d5fa30a19202a28562e96.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.905762;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:ff16;src:url('chunks/assets/font_1e9126e88d8beeebda7cbed8.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.872559;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:ff17;src:url('chunks/assets/font_01e0b69117a3e1a5cb3f2fe2.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.866211;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.236033,0.000000,-0.082391,0.236033,0,0);-ms-transform:matrix(0.236033,0.000000,-0.082391,0.236033,0,0);-webkit-transform:matrix(0.236033,0.000000,-0.082391,0.236033,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-83.520000px;}
.v3{vertical-align:-18.180001px;}
.v5{vertical-align:-10.799973px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:18.180001px;}
.v4{vertical-align:21.815987px;}
.ls3{letter-spacing:-0.576000px;}
.ls5{letter-spacing:-0.432000px;}
.ls2{letter-spacing:0.000000px;}
.ls16{letter-spacing:0.000012px;}
.ls13{letter-spacing:0.000013px;}
.ls14{letter-spacing:0.000023px;}
.ls9{letter-spacing:0.000052px;}
.lsc{letter-spacing:0.000107px;}
.ls15{letter-spacing:0.000138px;}
.lsb{letter-spacing:0.005980px;}
.lse{letter-spacing:0.005985px;}
.lsf{letter-spacing:0.011960px;}
.lsd{letter-spacing:0.011990px;}
.ls17{letter-spacing:0.011994px;}
.ls10{letter-spacing:0.012000px;}
.lsa{letter-spacing:0.012002px;}
.ls18{letter-spacing:0.024001px;}
.ls12{letter-spacing:0.029989px;}
.ls19{letter-spacing:0.048003px;}
.ls11{letter-spacing:0.072000px;}
.ls0{letter-spacing:0.144000px;}
.ls4{letter-spacing:0.288000px;}
.ls1b{letter-spacing:3.168000px;}
.ls1a{letter-spacing:7.056000px;}
.ls8{letter-spacing:10.944000px;}
.ls6{letter-spacing:11.988007px;}
.ls1{letter-spacing:22.464000px;}
.ls1c{letter-spacing:33.696000px;}
.ls7{letter-spacing:74.880000px;}
.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;}
}
.wsb{word-spacing:-51.984000px;}
.ws8{word-spacing:-32.976000px;}
.ws9{word-spacing:-24.732000px;}
.ws1{word-spacing:-20.304000px;}
.ws0{word-spacing:-20.016000px;}
.ws2{word-spacing:-19.584000px;}
.wsa{word-spacing:-18.549000px;}
.ws7{word-spacing:-18.000000px;}
.ws5{word-spacing:-15.000000px;}
.ws6{word-spacing:-12.000000px;}
.ws4{word-spacing:-9.750000px;}
.ws3{word-spacing:0.000000px;}
._0{margin-left:-1.126080px;}
._2{width:1.030080px;}
._4{width:2.629919px;}
._a{width:3.960000px;}
._7{width:5.616000px;}
._e{width:7.056000px;}
._b{width:8.496000px;}
._8{width:10.248000px;}
._3{width:12.000000px;}
._5{width:13.824000px;}
._6{width:14.832000px;}
._f{width:16.128000px;}
._10{width:19.080000px;}
._c{width:20.927996px;}
._16{width:21.960000px;}
._17{width:22.992004px;}
._13{width:24.166080px;}
._11{width:25.200000px;}
._9{width:26.352000px;}
._d{width:27.936000px;}
._12{width:29.376000px;}
._1b{width:31.968000px;}
._21{width:33.696000px;}
._14{width:34.848000px;}
._15{width:36.144000px;}
._1d{width:40.824000px;}
._23{width:48.816000px;}
._20{width:61.920000px;}
._1f{width:75.672000px;}
._22{width:83.448000px;}
._1e{width:152.208000px;}
._18{width:190.800000px;}
._1a{width:201.690728px;}
._19{width:208.800000px;}
._1c{width:545.832000px;}
._1{width:990.627360px;}
.fc4{color:rgb(43,50,68);}
.fc3{color:rgb(0,0,255);}
.fc1{color:rgb(5,99,193);}
.fc2{color:rgb(100,100,100);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:39.000000px;}
.fs7{font-size:40.500000px;}
.fs4{font-size:48.000000px;}
.fs6{font-size:54.000000px;}
.fs2{font-size:60.000000px;}
.fs5{font-size:66.000000px;}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs8{font-size:76.260440px;}
.y0{bottom:0.000000px;}
.ycd{bottom:7.689897px;}
.ycb{bottom:7.712814px;}
.y74{bottom:56.850037px;}
.y73{bottom:76.350037px;}
.y72{bottom:95.850037px;}
.y10f{bottom:113.406080px;}
.y71{bottom:115.350037px;}
.yc5{bottom:118.372524px;}
.y19c{bottom:123.235577px;}
.y15c{bottom:125.013027px;}
.y9c{bottom:127.615551px;}
.yfb{bottom:133.363541px;}
.y70{bottom:134.850037px;}
.y10e{bottom:137.208080px;}
.yc9{bottom:138.553556px;}
.y1bb{bottom:140.695507px;}
.yc4{bottom:142.174519px;}
.y19b{bottom:147.037575px;}
.y15b{bottom:150.106522px;}
.y9b{bottom:151.417550px;}
.y127{bottom:153.585207px;}
.y6f{bottom:154.350037px;}
.yfa{bottom:157.165546px;}
.y10d{bottom:161.010079px;}
.yc8{bottom:162.621059px;}
.y1d8{bottom:163.962014px;}
.y1ba{bottom:164.497506px;}
.yc3{bottom:165.976536px;}
.y131{bottom:169.335299px;}
.yb4{bottom:170.194558px;}
.y12c{bottom:171.210573px;}
.y130{bottom:173.273073px;}
.y6e{bottom:173.850037px;}
.y15a{bottom:174.174023px;}
.yf9{bottom:180.967541px;}
.y19a{bottom:185.839547px;}
.yc7{bottom:187.980057px;}
.y12f{bottom:188.460573px;}
.yc2{bottom:189.778530px;}
.y9a{bottom:190.219517px;}
.y6d{bottom:193.350037px;}
.y10c{bottom:199.812023px;}
.y1d7{bottom:202.764050px;}
.y1b9{bottom:203.299513px;}
.yf8{bottom:204.769546px;}
.y6c{bottom:212.850037px;}
.yc6{bottom:213.073555px;}
.yc1{bottom:213.580524px;}
.y99{bottom:214.021534px;}
.y39{bottom:217.164074px;}
.y10b{bottom:223.614022px;}
.y199{bottom:224.641518px;}
.y1d6{bottom:226.566048px;}
.y1b8{bottom:227.101513px;}
.yf7{bottom:228.571547px;}
.y6b{bottom:232.350037px;}
.y159{bottom:235.267536px;}
.yc0{bottom:237.648033px;}
.y98{bottom:237.823528px;}
.y38{bottom:242.257542px;}
.y1b7{bottom:250.903512px;}
.y6a{bottom:251.850037px;}
.yf6{bottom:252.373547px;}
.y158{bottom:259.069542px;}
.y97{bottom:261.625523px;}
.ybf{bottom:262.741528px;}
.y198{bottom:263.443520px;}
.y1d5{bottom:265.368055px;}
.y37{bottom:271.164044px;}
.y69{bottom:271.350037px;}
.yf5{bottom:276.175545px;}
.y157{bottom:283.137039px;}
.y96{bottom:285.427528px;}
.ybe{bottom:286.543533px;}
.y197{bottom:287.245514px;}
.y1d4{bottom:289.170055px;}
.y1b6{bottom:289.705547px;}
.y68{bottom:290.850037px;}
.y36{bottom:299.958050px;}
.y156{bottom:308.496037px;}
.y95{bottom:309.229523px;}
.y67{bottom:310.350037px;}
.ybd{bottom:310.611036px;}
.y196{bottom:311.047520px;}
.y1d3{bottom:312.972054px;}
.y1b5{bottom:313.507546px;}
.y35{bottom:325.051529px;}
.y66{bottom:329.850037px;}
.y94{bottom:333.031528px;}
.y155{bottom:333.589542px;}
.y195{bottom:334.849514px;}
.ybc{bottom:335.970034px;}
.yf4{bottom:335.977517px;}
.y16{bottom:346.395000px;}
.y34{bottom:348.853528px;}
.y65{bottom:349.350037px;}
.y1d2{bottom:351.774015px;}
.y1b4{bottom:352.309525px;}
.y93{bottom:356.833523px;}
.y154{bottom:357.657045px;}
.y194{bottom:358.651520px;}
.ybb{bottom:361.063534px;}
.y64{bottom:368.850037px;}
.y1d1{bottom:375.576015px;}
.y1b3{bottom:376.111525px;}
.yf3{bottom:377.374523px;}
.y15{bottom:380.595000px;}
.y92{bottom:380.635529px;}
.y193{bottom:382.453520px;}
.y153{bottom:382.750545px;}
.yba{bottom:384.865532px;}
.y63{bottom:388.350037px;}
.y33{bottom:388.947045px;}
.yf2{bottom:398.073021px;}
.y1d0{bottom:399.378014px;}
.y1b2{bottom:399.913525px;}
.y91{bottom:404.437529px;}
.y192{bottom:406.255520px;}
.y152{bottom:406.818043px;}
.y62{bottom:407.850037px;}
.y14{bottom:414.975000px;}
.yb9{bottom:423.667550px;}
.y1b1{bottom:423.715523px;}
.ycc{bottom:423.975027px;}
.y61{bottom:427.350037px;}
.y32{bottom:427.749035px;}
.y90{bottom:428.239529px;}
.y191{bottom:430.057518px;}
.y151{bottom:432.177044px;}
.y1cf{bottom:438.180021px;}
.y60{bottom:446.850037px;}
.y13{bottom:449.355000px;}
.y31{bottom:451.551033px;}
.y8f{bottom:452.041527px;}
.yb3{bottom:457.200039px;}
.y140{bottom:459.675030px;}
.y1ce{bottom:461.982021px;}
.y1b0{bottom:462.517548px;}
.y5f{bottom:466.350037px;}
.y190{bottom:468.859536px;}
.y12{bottom:471.495000px;}
.yb2{bottom:481.002033px;}
.yb8{bottom:483.168038px;}
.y13f{bottom:485.034027px;}
.y1cd{bottom:485.784020px;}
.y5e{bottom:485.850037px;}
.ye3{bottom:486.172520px;}
.y1af{bottom:486.319548px;}
.y30{bottom:490.353051px;}
.y8e{bottom:490.843540px;}
.y150{bottom:491.625263px;}
.y14f{bottom:494.250446px;}
.y14c{bottom:501.126068px;}
.y14b{bottom:501.442546px;}
.yb1{bottom:504.804039px;}
.y5d{bottom:505.350037px;}
.y11{bottom:506.055000px;}
.ye2{bottom:509.974537px;}
.y1ae{bottom:510.121548px;}
.y13e{bottom:510.127526px;}
.y14e{bottom:513.750629px;}
.y8d{bottom:514.645546px;}
.y14d{bottom:516.375813px;}
.y1cc{bottom:524.586010px;}
.y5c{bottom:524.850037px;}
.yb0{bottom:528.606033px;}
.y2f{bottom:529.155041px;}
.ye1{bottom:533.776531px;}
.y1ad{bottom:533.923546px;}
.y8c{bottom:538.447540px;}
.y10{bottom:540.255000px;}
.y5b{bottom:544.350037px;}
.y18f{bottom:546.463520px;}
.y1cb{bottom:548.388016px;}
.yaf{bottom:552.408045px;}
.y2e{bottom:552.957035px;}
.ye0{bottom:557.578526px;}
.y8b{bottom:562.249546px;}
.y5a{bottom:563.850037px;}
.y13a{bottom:569.034791px;}
.y14a{bottom:569.874012px;}
.y18e{bottom:570.265526px;}
.y1ca{bottom:572.190016px;}
.y13d{bottom:572.283268px;}
.y139{bottom:572.535035px;}
.y13b{bottom:572.535037px;}
.y1ac{bottom:572.725553px;}
.y138{bottom:572.851513px;}
.yf{bottom:574.665000px;}
.y13c{bottom:575.783512px;}
.yae{bottom:576.475542px;}
.y2d{bottom:576.759052px;}
.ydf{bottom:581.380520px;}
.y59{bottom:583.350037px;}
.y8a{bottom:586.051540px;}
.y149{bottom:593.676018px;}
.y18d{bottom:594.067532px;}
.y1c9{bottom:595.992016px;}
.y1ab{bottom:596.527554px;}
.y2c{bottom:600.561047px;}
.yad{bottom:601.569042px;}
.y58{bottom:602.850037px;}
.yde{bottom:605.182537px;}
.ye{bottom:609.045000px;}
.y89{bottom:609.853546px;}
.y148{bottom:617.478012px;}
.y1c8{bottom:619.794014px;}
.y1aa{bottom:620.329552px;}
.y57{bottom:622.350037px;}
.y18c{bottom:622.974029px;}
.y2b{bottom:624.363041px;}
.yac{bottom:625.371041px;}
.ydd{bottom:628.984531px;}
.y88{bottom:633.655546px;}
.y137{bottom:634.072517px;}
.y147{bottom:641.545521px;}
.y56{bottom:641.850037px;}
.yd{bottom:643.425000px;}
.y2a{bottom:648.165047px;}
.y179{bottom:648.973537px;}
.y18b{bottom:651.768029px;}
.ydc{bottom:653.052029px;}
.y87{bottom:657.457546px;}
.y1c7{bottom:658.596022px;}
.y128{bottom:658.945917px;}
.y1a9{bottom:659.131531px;}
.y136{bottom:659.166012px;}
.y55{bottom:661.350037px;}
.y146{bottom:666.639021px;}
.yab{bottom:666.768029px;}
.y29{bottom:671.967041px;}
.y178{bottom:673.041035px;}
.yc{bottom:677.625000px;}
.ydb{bottom:678.145534px;}
.y11a{bottom:678.457546px;}
.y54{bottom:680.850037px;}
.y86{bottom:681.259545px;}
.y1c6{bottom:682.398022px;}
.y1a8{bottom:682.933531px;}
.y135{bottom:682.968018px;}
.y145{bottom:690.441021px;}
.y18a{bottom:690.570030px;}
.y28{bottom:695.769047px;}
.y177{bottom:698.134541px;}
.yb{bottom:698.325000px;}
.y53{bottom:700.350037px;}
.yda{bottom:701.947529px;}
.y119{bottom:702.259541px;}
.y1c5{bottom:706.200020px;}
.y1a7{bottom:706.735531px;}
.y134{bottom:706.770018px;}
.yaa{bottom:708.165017px;}
.y144{bottom:714.243020px;}
.y189{bottom:714.372025px;}
.y27{bottom:719.571041px;}
.y52{bottom:719.850037px;}
.y85{bottom:720.061529px;}
.y1e9{bottom:721.071040px;}
.y176{bottom:721.936535px;}
.yd9{bottom:725.749535px;}
.y118{bottom:726.061535px;}
.y1a6{bottom:730.537529px;}
.y133{bottom:730.572018px;}
.ya{bottom:732.705000px;}
.y188{bottom:738.174030px;}
.y51{bottom:739.350037px;}
.y26{bottom:743.373047px;}
.y84{bottom:743.863523px;}
.y1c4{bottom:745.002033px;}
.y175{bottom:745.047832px;}
.y174{bottom:748.548077px;}
.y173{bottom:748.864552px;}
.yd8{bottom:749.817038px;}
.y117{bottom:749.863541px;}
.y132{bottom:754.374016px;}
.y9{bottom:754.845000px;}
.y50{bottom:758.850037px;}
.y1e8{bottom:759.234042px;}
.y187{bottom:761.976025px;}
.yce{bottom:766.766569px;}
.y25{bottom:767.175047px;}
.ya9{bottom:767.665524px;}
.y83{bottom:767.665541px;}
.y1c3{bottom:768.804032px;}
.y1a5{bottom:769.339537px;}
.y116{bottom:773.665535px;}
.y143{bottom:774.045032px;}
.y172{bottom:774.223537px;}
.yd7{bottom:775.176035px;}
.y10a{bottom:777.994526px;}
.y4f{bottom:778.350037px;}
.y186{bottom:785.778030px;}
.y8{bottom:789.405000px;}
.y24{bottom:790.977047px;}
.y82{bottom:791.467535px;}
.ya8{bottom:791.467541px;}
.y1a4{bottom:793.141537px;}
.y1e7{bottom:797.397044px;}
.y115{bottom:797.467541px;}
.y142{bottom:797.847027px;}
.y4e{bottom:797.850037px;}
.y171{bottom:799.317020px;}
.yd6{bottom:800.269535px;}
.y109{bottom:802.062046px;}
.y1c2{bottom:807.606039px;}
.y185{bottom:809.580030px;}
.y23{bottom:814.779046px;}
.y12b{bottom:814.781673px;}
.y126{bottom:815.156307px;}
.y81{bottom:815.269529px;}
.ya7{bottom:815.269535px;}
.yf1{bottom:816.687035px;}
.y1a3{bottom:816.943535px;}
.y4d{bottom:817.350037px;}
.y124{bottom:818.531319px;}
.y114{bottom:821.269535px;}
.y141{bottom:821.649021px;}
.y12d{bottom:822.030544px;}
.y123{bottom:822.031563px;}
.y122{bottom:822.348041px;}
.y166{bottom:822.484531px;}
.y170{bottom:823.119038px;}
.y7{bottom:823.785000px;}
.y129{bottom:824.031063px;}
.yd5{bottom:824.071534px;}
.y108{bottom:827.155529px;}
.y1c1{bottom:831.408039px;}
.y12a{bottom:832.781673px;}
.y184{bottom:833.382030px;}
.y125{bottom:835.406307px;}
.y1e6{bottom:835.560046px;}
.y4c{bottom:836.850037px;}
.y12e{bottom:837.375423px;}
.y80{bottom:839.071524px;}
.ya6{bottom:839.071529px;}
.yf0{bottom:839.798309px;}
.y113{bottom:845.071541px;}
.y165{bottom:846.552052px;}
.yee{bottom:846.673565px;}
.y16f{bottom:846.921032px;}
.yed{bottom:846.990040px;}
.y107{bottom:850.957523px;}
.y22{bottom:853.581040px;}
.y1c0{bottom:855.210038px;}
.y1a2{bottom:855.745537px;}
.y4b{bottom:856.350037px;}
.y183{bottom:857.184029px;}
.y6{bottom:858.210000px;}
.yef{bottom:860.048309px;}
.yd4{bottom:862.873528px;}
.ya5{bottom:862.873535px;}
.y7f{bottom:862.873541px;}
.y112{bottom:868.873541px;}
.y16e{bottom:870.723026px;}
.y164{bottom:871.911037px;}
.y1e5{bottom:873.723048px;}
.y106{bottom:875.025043px;}
.y4a{bottom:875.850037px;}
.yec{bottom:877.546532px;}
.y1a1{bottom:879.714034px;}
.ya4{bottom:886.675529px;}
.y7e{bottom:886.675535px;}
.y5{bottom:892.410000px;}
.y111{bottom:892.675541px;}
.y1bf{bottom:894.012033px;}
.y16d{bottom:894.525032px;}
.y49{bottom:895.350037px;}
.y21{bottom:895.761028px;}
.y182{bottom:895.986031px;}
.y163{bottom:897.004520px;}
.y121{bottom:898.279541px;}
.y105{bottom:900.118526px;}
.yeb{bottom:901.348537px;}
.yd3{bottom:901.675541px;}
.y1a0{bottom:903.981033px;}
.y7d{bottom:910.477530px;}
.ya3{bottom:910.477535px;}
.y1e4{bottom:911.886050px;}
.y48{bottom:914.850037px;}
.y110{bottom:916.477540px;}
.y16c{bottom:918.327026px;}
.y1be{bottom:918.946535px;}
.y181{bottom:919.788036px;}
.y162{bottom:920.806538px;}
.y120{bottom:922.081535px;}
.y104{bottom:923.920521px;}
.yea{bottom:925.150537px;}
.yd2{bottom:925.477535px;}
.y20{bottom:926.050527px;}
.y4{bottom:927.330000px;}
.ya2{bottom:934.279530px;}
.y7c{bottom:934.279535px;}
.y47{bottom:934.350037px;}
.y1dd{bottom:936.556503px;}
.y16b{bottom:942.394535px;}
.y1bd{bottom:943.081535px;}
.y19f{bottom:943.081541px;}
.y180{bottom:943.590031px;}
.y161{bottom:944.874035px;}
.y11f{bottom:945.883541px;}
.y103{bottom:947.722538px;}
.ye9{bottom:948.952538px;}
.yd1{bottom:949.279530px;}
.y1e3{bottom:950.049040px;}
.y1f{bottom:950.430026px;}
.y46{bottom:953.850037px;}
.y3{bottom:956.490000px;}
.y1dc{bottom:956.698504px;}
.y7b{bottom:958.081530px;}
.ya1{bottom:958.081535px;}
.y1bc{bottom:966.883534px;}
.y19e{bottom:966.883541px;}
.y17f{bottom:967.392036px;}
.y16a{bottom:967.488035px;}
.y11e{bottom:969.685541px;}
.y160{bottom:969.967529px;}
.y1e{bottom:970.264537px;}
.y102{bottom:971.524532px;}
.ye8{bottom:972.754536px;}
.yd0{bottom:973.081535px;}
.y45{bottom:973.350037px;}
.yb7{bottom:981.883534px;}
.y7a{bottom:981.883535px;}
.y1e2{bottom:988.212042px;}
.y1d{bottom:990.099036px;}
.y19d{bottom:990.685540px;}
.y17e{bottom:991.194036px;}
.y169{bottom:991.290035px;}
.y44{bottom:992.850037px;}
.y11d{bottom:993.487541px;}
.y15f{bottom:994.035027px;}
.y101{bottom:995.326527px;}
.ycf{bottom:996.883530px;}
.y1db{bottom:996.982501px;}
.y79{bottom:1005.685530px;}
.ya0{bottom:1005.685535px;}
.y1c{bottom:1009.933536px;}
.y43{bottom:1012.350037px;}
.ye7{bottom:1014.151535px;}
.y17d{bottom:1014.996037px;}
.y168{bottom:1015.092034px;}
.y11c{bottom:1017.289540px;}
.y100{bottom:1019.128532px;}
.yca{bottom:1019.376268px;}
.y1da{bottom:1019.734499px;}
.yb6{bottom:1020.685535px;}
.y1e1{bottom:1026.375044px;}
.y9f{bottom:1029.487534px;}
.y78{bottom:1029.487535px;}
.y42{bottom:1031.850037px;}
.y17c{bottom:1038.798035px;}
.y1b{bottom:1040.223038px;}
.yff{bottom:1042.930527px;}
.yb5{bottom:1044.487530px;}
.y41{bottom:1051.350037px;}
.y77{bottom:1053.289536px;}
.ye6{bottom:1055.548535px;}
.y1a{bottom:1060.057534px;}
.y1d9{bottom:1064.289000px;}
.y1e0{bottom:1064.538041px;}
.yfe{bottom:1066.732538px;}
.y9e{bottom:1068.289536px;}
.y40{bottom:1070.850037px;}
.y11b{bottom:1077.091534px;}
.y76{bottom:1077.091536px;}
.y17b{bottom:1077.600035px;}
.y19{bottom:1079.892034px;}
.y3f{bottom:1090.350037px;}
.yfd{bottom:1090.534538px;}
.y9d{bottom:1092.091536px;}
.y167{bottom:1095.654036px;}
.ye5{bottom:1096.945536px;}
.y75{bottom:1100.893534px;}
.y1df{bottom:1102.701040px;}
.y2{bottom:1107.330000px;}
.y3e{bottom:1109.850037px;}
.y15e{bottom:1114.336533px;}
.yfc{bottom:1114.602036px;}
.y18{bottom:1115.893536px;}
.ye4{bottom:1117.705536px;}
.y17a{bottom:1118.997036px;}
.y3d{bottom:1129.350037px;}
.y15d{bottom:1138.404034px;}
.y17{bottom:1139.695534px;}
.y1de{bottom:1140.864039px;}
.y1{bottom:1141.200000px;}
.y3c{bottom:1148.850037px;}
.y3b{bottom:1168.350037px;}
.y3a{bottom:1187.850037px;}
.h14{height:23.925897px;}
.h12{height:23.948814px;}
.ha{height:27.098145px;}
.h1f{height:35.516602px;}
.hb{height:41.689453px;}
.h9{height:45.278137px;}
.h7{height:45.278146px;}
.h8{height:45.278149px;}
.h38{height:45.826172px;}
.h36{height:46.406250px;}
.h18{height:47.355469px;}
.h39{height:48.114258px;}
.h13{height:48.275391px;}
.h37{height:48.761719px;}
.h6{height:48.796875px;}
.h33{height:49.992188px;}
.hc{height:50.027344px;}
.h31{height:52.664062px;}
.h34{height:55.144123px;}
.hd{height:55.167549px;}
.hf{height:55.167561px;}
.h11{height:55.167563px;}
.he{height:55.167572px;}
.h10{height:62.578125px;}
.h16{height:63.140625px;}
.h2{height:65.884219px;}
.h32{height:66.876831px;}
.h4{height:71.824219px;}
.h3{height:75.093750px;}
.h2e{height:501.562107px;}
.h2d{height:507.499572px;}
.h2a{height:518.791569px;}
.h2c{height:523.687474px;}
.h2b{height:529.624938px;}
.h26{height:582.283916px;}
.h29{height:585.532393px;}
.h25{height:590.200536px;}
.h27{height:590.200537px;}
.h28{height:593.449013px;}
.h1e{height:668.882761px;}
.h30{height:758.296958px;}
.h2f{height:766.213577px;}
.h22{height:828.030799px;}
.h1d{height:828.405433px;}
.h1b{height:831.780444px;}
.h23{height:839.696045px;}
.h1a{height:839.697063px;}
.h20{height:841.696564px;}
.h21{height:846.030799px;}
.h1c{height:848.655433px;}
.h24{height:850.624549px;}
.h19{height:853.047435px;}
.h15{height:864.339066px;}
.h17{height:873.297435px;}
.h35{height:1188.000000px;}
.h5{height:1262.850000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w1e{width:15.719907px;}
.w1b{width:15.724970px;}
.w1c{width:15.843094px;}
.wf{width:15.942657px;}
.w17{width:15.981469px;}
.w2f{width:16.754625px;}
.w2a{width:17.116875px;}
.w1d{width:17.815781px;}
.w2c{width:19.947093px;}
.w27{width:19.970999px;}
.w1a{width:21.124125px;}
.w29{width:21.229875px;}
.wd{width:21.256876px;}
.w24{width:21.269250px;}
.w2b{width:21.678751px;}
.w8{width:21.836250px;}
.we{width:22.211999px;}
.w18{width:22.339499px;}
.w16{width:22.383000px;}
.w31{width:22.822500px;}
.w2e{width:23.002873px;}
.w12{width:23.754375px;}
.w28{width:23.866875px;}
.w10{width:25.844999px;}
.w25{width:26.627998px;}
.w19{width:27.304499px;}
.w21{width:27.946501px;}
.w30{width:28.245000px;}
.w7{width:28.613250px;}
.w32{width:28.728001px;}
.w14{width:28.790999px;}
.w11{width:28.930501px;}
.w13{width:30.036376px;}
.w1f{width:30.546280px;}
.w23{width:30.838500px;}
.w5{width:31.672500px;}
.w6{width:31.822500px;}
.wa{width:32.475376px;}
.w22{width:40.728374px;}
.w15{width:42.352501px;}
.w4{width:43.186609px;}
.wb{width:45.052876px;}
.w26{width:47.907000px;}
.w9{width:51.095999px;}
.w20{width:53.787003px;}
.w2d{width:54.347623px;}
.wc{width:73.924873px;}
.w3{width:892.949982px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.w33{width:918.000000px;}
.x0{left:0.000000px;}
.x8{left:6.000000px;}
.xd{left:9.187500px;}
.xa{left:11.325000px;}
.x5d{left:108.000000px;}
.x3{left:117.035987px;}
.x1{left:127.655987px;}
.x6{left:154.575005px;}
.x58{left:167.565004px;}
.x59{left:173.541003px;}
.x4{left:174.672006px;}
.x7{left:181.575005px;}
.x12{left:209.667377px;}
.x4c{left:212.071506px;}
.x5a{left:218.496002px;}
.x4d{left:223.939882px;}
.x13{left:230.028877px;}
.x2{left:238.709987px;}
.x14{left:247.440010px;}
.x4e{left:256.878868px;}
.x4f{left:274.290236px;}
.x50{left:278.254509px;}
.x15{left:282.457884px;}
.x51{left:290.421384px;}
.x52{left:299.576374px;}
.x39{left:302.125500px;}
.x53{left:307.987507px;}
.x3a{left:310.378510px;}
.x16{left:315.396881px;}
.x3b{left:317.848510px;}
.x54{left:327.692368px;}
.x17{left:332.808014px;}
.x55{left:336.103500px;}
.x3c{left:347.380508px;}
.x3d{left:358.814369px;}
.x5b{left:360.965996px;}
.x18{left:367.825888px;}
.x30{left:369.856499px;}
.x3e{left:376.225737px;}
.x5{left:378.464996px;}
.x31{left:381.724874px;}
.x3f{left:392.935410px;}
.x40{left:405.993937px;}
.x32{left:410.339378px;}
.x41{left:416.415462px;}
.x42{left:422.723986px;}
.x33{left:427.750746px;}
.x19{left:429.636864px;}
.x43{left:433.594387px;}
.x44{left:439.902912px;}
.x34{left:443.536285px;}
.x1b{left:449.344872px;}
.x1a{left:452.625793px;}
.x35{left:458.296660px;}
.x1c{left:459.498278px;}
.x1d{left:461.084999px;}
.x36{left:463.487786px;}
.x45{left:466.138367px;}
.x1e{left:468.555016px;}
.x37{left:474.037661px;}
.xb{left:475.199982px;}
.x1f{left:481.407391px;}
.x9{left:484.588373px;}
.x2f{left:488.416512px;}
.x20{left:491.380516px;}
.x21{left:505.338020px;}
.x46{left:509.677640px;}
.x47{left:515.986170px;}
.x48{left:528.180694px;}
.x22{left:533.279387px;}
.x49{left:534.489223px;}
.x4a{left:542.401630px;}
.x4b{left:546.285690px;}
.x5c{left:547.407005px;}
.x23{left:550.690498px;}
.x38{left:556.149010px;}
.x24{left:563.542874px;}
.x25{left:573.867280px;}
.x26{left:577.790154px;}
.x27{left:591.748512px;}
.x28{left:595.713020px;}
.x29{left:609.912296px;}
.xc{left:613.602013px;}
.x2c{left:621.950728px;}
.x2a{left:623.330193px;}
.x2d{left:627.334697px;}
.xe{left:630.863379px;}
.x56{left:634.008018px;}
.x2b{left:638.685732px;}
.x57{left:639.983986px;}
.x2e{left:643.525520px;}
.xf{left:650.571373px;}
.x10{left:653.959873px;}
.x11{left:688.125023px;}
@media print{
.v1{vertical-align:-74.240000pt;}
.v3{vertical-align:-16.160001pt;}
.v5{vertical-align:-9.599976pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:16.160001pt;}
.v4{vertical-align:19.391988pt;}
.ls3{letter-spacing:-0.512000pt;}
.ls5{letter-spacing:-0.384000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls16{letter-spacing:0.000011pt;}
.ls13{letter-spacing:0.000012pt;}
.ls14{letter-spacing:0.000021pt;}
.ls9{letter-spacing:0.000046pt;}
.lsc{letter-spacing:0.000095pt;}
.ls15{letter-spacing:0.000122pt;}
.lsb{letter-spacing:0.005315pt;}
.lse{letter-spacing:0.005320pt;}
.lsf{letter-spacing:0.010631pt;}
.lsd{letter-spacing:0.010658pt;}
.ls17{letter-spacing:0.010661pt;}
.ls10{letter-spacing:0.010667pt;}
.lsa{letter-spacing:0.010669pt;}
.ls18{letter-spacing:0.021334pt;}
.ls12{letter-spacing:0.026657pt;}
.ls19{letter-spacing:0.042669pt;}
.ls11{letter-spacing:0.064000pt;}
.ls0{letter-spacing:0.128000pt;}
.ls4{letter-spacing:0.256000pt;}
.ls1b{letter-spacing:2.816000pt;}
.ls1a{letter-spacing:6.272000pt;}
.ls8{letter-spacing:9.728000pt;}
.ls6{letter-spacing:10.656006pt;}
.ls1{letter-spacing:19.968000pt;}
.ls1c{letter-spacing:29.952000pt;}
.ls7{letter-spacing:66.560000pt;}
.wsb{word-spacing:-46.208000pt;}
.ws8{word-spacing:-29.312000pt;}
.ws9{word-spacing:-21.984000pt;}
.ws1{word-spacing:-18.048000pt;}
.ws0{word-spacing:-17.792000pt;}
.ws2{word-spacing:-17.408000pt;}
.wsa{word-spacing:-16.488000pt;}
.ws7{word-spacing:-16.000000pt;}
.ws5{word-spacing:-13.333333pt;}
.ws6{word-spacing:-10.666667pt;}
.ws4{word-spacing:-8.666667pt;}
.ws3{word-spacing:0.000000pt;}
._0{margin-left:-1.000960pt;}
._2{width:0.915627pt;}
._4{width:2.337706pt;}
._a{width:3.520000pt;}
._7{width:4.992000pt;}
._e{width:6.272000pt;}
._b{width:7.552000pt;}
._8{width:9.109333pt;}
._3{width:10.666667pt;}
._5{width:12.288000pt;}
._6{width:13.184000pt;}
._f{width:14.336000pt;}
._10{width:16.960000pt;}
._c{width:18.602663pt;}
._16{width:19.520000pt;}
._17{width:20.437337pt;}
._13{width:21.480960pt;}
._11{width:22.400000pt;}
._9{width:23.424000pt;}
._d{width:24.832000pt;}
._12{width:26.112000pt;}
._1b{width:28.416000pt;}
._21{width:29.952000pt;}
._14{width:30.976000pt;}
._15{width:32.128000pt;}
._1d{width:36.288000pt;}
._23{width:43.392000pt;}
._20{width:55.040000pt;}
._1f{width:67.264000pt;}
._22{width:74.176000pt;}
._1e{width:135.296000pt;}
._18{width:169.600000pt;}
._1a{width:179.280647pt;}
._19{width:185.600000pt;}
._1c{width:485.184000pt;}
._1{width:880.557653pt;}
.fs3{font-size:34.666667pt;}
.fs7{font-size:36.000000pt;}
.fs4{font-size:42.666667pt;}
.fs6{font-size:48.000000pt;}
.fs2{font-size:53.333333pt;}
.fs5{font-size:58.666667pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs8{font-size:67.787057pt;}
.y0{bottom:0.000000pt;}
.ycd{bottom:6.835464pt;}
.ycb{bottom:6.855835pt;}
.y74{bottom:50.533366pt;}
.y73{bottom:67.866699pt;}
.y72{bottom:85.200033pt;}
.y10f{bottom:100.805405pt;}
.y71{bottom:102.533366pt;}
.yc5{bottom:105.220022pt;}
.y19c{bottom:109.542735pt;}
.y15c{bottom:111.122691pt;}
.y9c{bottom:113.436045pt;}
.yfb{bottom:118.545369pt;}
.y70{bottom:119.866699pt;}
.y10e{bottom:121.962738pt;}
.yc9{bottom:123.158717pt;}
.y1bb{bottom:125.062673pt;}
.yc4{bottom:126.377350pt;}
.y19b{bottom:130.700067pt;}
.y15b{bottom:133.428019pt;}
.y9b{bottom:134.593377pt;}
.y127{bottom:136.520184pt;}
.y6f{bottom:137.200033pt;}
.yfa{bottom:139.702708pt;}
.y10d{bottom:143.120070pt;}
.yc8{bottom:144.552053pt;}
.y1d8{bottom:145.744012pt;}
.y1ba{bottom:146.220005pt;}
.yc3{bottom:147.534698pt;}
.y131{bottom:150.520266pt;}
.yb4{bottom:151.284051pt;}
.y12c{bottom:152.187176pt;}
.y130{bottom:154.020510pt;}
.y6e{bottom:154.533366pt;}
.y15a{bottom:154.821354pt;}
.yf9{bottom:160.860036pt;}
.y19a{bottom:165.190708pt;}
.yc7{bottom:167.093384pt;}
.y12f{bottom:167.520510pt;}
.yc2{bottom:168.692027pt;}
.y9a{bottom:169.084015pt;}
.y6d{bottom:171.866699pt;}
.y10c{bottom:177.610687pt;}
.y1d7{bottom:180.234711pt;}
.y1b9{bottom:180.710678pt;}
.yf8{bottom:182.017375pt;}
.y6c{bottom:189.200033pt;}
.yc6{bottom:189.398716pt;}
.yc1{bottom:189.849355pt;}
.y99{bottom:190.241364pt;}
.y39{bottom:193.034733pt;}
.y10b{bottom:198.768019pt;}
.y199{bottom:199.681349pt;}
.y1d6{bottom:201.392043pt;}
.y1b8{bottom:201.868011pt;}
.yf7{bottom:203.174708pt;}
.y6b{bottom:206.533366pt;}
.y159{bottom:209.126699pt;}
.yc0{bottom:211.242696pt;}
.y98{bottom:211.398692pt;}
.y38{bottom:215.340037pt;}
.y1b7{bottom:223.025344pt;}
.y6a{bottom:223.866699pt;}
.yf6{bottom:224.332041pt;}
.y158{bottom:230.284037pt;}
.y97{bottom:232.556020pt;}
.ybf{bottom:233.548024pt;}
.y198{bottom:234.172017pt;}
.y1d5{bottom:235.882716pt;}
.y37{bottom:241.034706pt;}
.y69{bottom:241.200033pt;}
.yf5{bottom:245.489374pt;}
.y157{bottom:251.677368pt;}
.y96{bottom:253.713359pt;}
.ybe{bottom:254.705363pt;}
.y197{bottom:255.329346pt;}
.y1d4{bottom:257.040049pt;}
.y1b6{bottom:257.516042pt;}
.y68{bottom:258.533366pt;}
.y36{bottom:266.629378pt;}
.y156{bottom:274.218699pt;}
.y95{bottom:274.870687pt;}
.y67{bottom:275.866699pt;}
.ybd{bottom:276.098699pt;}
.y196{bottom:276.486684pt;}
.y1d3{bottom:278.197381pt;}
.y1b5{bottom:278.673374pt;}
.y35{bottom:288.934692pt;}
.y66{bottom:293.200033pt;}
.y94{bottom:296.028025pt;}
.y155{bottom:296.524038pt;}
.y195{bottom:297.644012pt;}
.ybc{bottom:298.640030pt;}
.yf4{bottom:298.646681pt;}
.y16{bottom:307.906667pt;}
.y34{bottom:310.092024pt;}
.y65{bottom:310.533366pt;}
.y1d2{bottom:312.688014pt;}
.y1b4{bottom:313.164022pt;}
.y93{bottom:317.185354pt;}
.y154{bottom:317.917374pt;}
.y194{bottom:318.801351pt;}
.ybb{bottom:320.945363pt;}
.y64{bottom:327.866699pt;}
.y1d1{bottom:333.845347pt;}
.y1b3{bottom:334.321355pt;}
.yf3{bottom:335.444021pt;}
.y15{bottom:338.306667pt;}
.y92{bottom:338.342692pt;}
.y193{bottom:339.958684pt;}
.y153{bottom:340.222707pt;}
.yba{bottom:342.102695pt;}
.y63{bottom:345.200033pt;}
.y33{bottom:345.730707pt;}
.yf2{bottom:353.842686pt;}
.y1d0{bottom:355.002679pt;}
.y1b2{bottom:355.478689pt;}
.y91{bottom:359.500025pt;}
.y192{bottom:361.116018pt;}
.y152{bottom:361.616038pt;}
.y62{bottom:362.533366pt;}
.y14{bottom:368.866667pt;}
.yb9{bottom:376.593377pt;}
.y1b1{bottom:376.636021pt;}
.ycc{bottom:376.866691pt;}
.y61{bottom:379.866699pt;}
.y32{bottom:380.221364pt;}
.y90{bottom:380.657359pt;}
.y191{bottom:382.273350pt;}
.y151{bottom:384.157373pt;}
.y1cf{bottom:389.493352pt;}
.y60{bottom:397.200033pt;}
.y13{bottom:399.426667pt;}
.y31{bottom:401.378696pt;}
.y8f{bottom:401.814691pt;}
.yb3{bottom:406.400035pt;}
.y140{bottom:408.600026pt;}
.y1ce{bottom:410.650686pt;}
.y1b0{bottom:411.126709pt;}
.y5f{bottom:414.533366pt;}
.y190{bottom:416.764032pt;}
.y12{bottom:419.106667pt;}
.yb2{bottom:427.557363pt;}
.yb8{bottom:429.482700pt;}
.y13f{bottom:431.141357pt;}
.y1cd{bottom:431.808018pt;}
.y5e{bottom:431.866699pt;}
.ye3{bottom:432.153351pt;}
.y1af{bottom:432.284042pt;}
.y30{bottom:435.869378pt;}
.y8e{bottom:436.305369pt;}
.y150{bottom:437.000234pt;}
.y14f{bottom:439.333730pt;}
.y14c{bottom:445.445394pt;}
.y14b{bottom:445.726707pt;}
.yb1{bottom:448.714701pt;}
.y5d{bottom:449.200033pt;}
.y11{bottom:449.826667pt;}
.ye2{bottom:453.310699pt;}
.y1ae{bottom:453.441376pt;}
.y13e{bottom:453.446690pt;}
.y14e{bottom:456.667226pt;}
.y8d{bottom:457.462708pt;}
.y14d{bottom:459.000722pt;}
.y1cc{bottom:466.298676pt;}
.y5c{bottom:466.533366pt;}
.yb0{bottom:469.872030pt;}
.y2f{bottom:470.360036pt;}
.ye1{bottom:474.468028pt;}
.y1ad{bottom:474.598708pt;}
.y8c{bottom:478.620036pt;}
.y10{bottom:480.226667pt;}
.y5b{bottom:483.866699pt;}
.y18f{bottom:485.745351pt;}
.y1cb{bottom:487.456014pt;}
.yaf{bottom:491.029373pt;}
.y2e{bottom:491.517364pt;}
.ye0{bottom:495.625356pt;}
.y8b{bottom:499.777374pt;}
.y5a{bottom:501.200033pt;}
.y13a{bottom:505.808703pt;}
.y14a{bottom:506.554677pt;}
.y18e{bottom:506.902690pt;}
.y1ca{bottom:508.613347pt;}
.y13d{bottom:508.696238pt;}
.y139{bottom:508.920031pt;}
.y13b{bottom:508.920032pt;}
.y1ac{bottom:509.089381pt;}
.y138{bottom:509.201345pt;}
.yf{bottom:510.813333pt;}
.y13c{bottom:511.807566pt;}
.yae{bottom:512.422704pt;}
.y2d{bottom:512.674713pt;}
.ydf{bottom:516.782684pt;}
.y59{bottom:518.533366pt;}
.y8a{bottom:520.934703pt;}
.y149{bottom:527.712016pt;}
.y18d{bottom:528.060028pt;}
.y1c9{bottom:529.770681pt;}
.y1ab{bottom:530.246714pt;}
.y2c{bottom:533.832041pt;}
.yad{bottom:534.728037pt;}
.y58{bottom:535.866699pt;}
.yde{bottom:537.940033pt;}
.ye{bottom:541.373333pt;}
.y89{bottom:542.092041pt;}
.y148{bottom:548.869344pt;}
.y1c8{bottom:550.928013pt;}
.y1aa{bottom:551.404046pt;}
.y57{bottom:553.200033pt;}
.y18c{bottom:553.754692pt;}
.y2b{bottom:554.989370pt;}
.yac{bottom:555.885370pt;}
.ydd{bottom:559.097361pt;}
.y88{bottom:563.249374pt;}
.y137{bottom:563.620015pt;}
.y147{bottom:570.262685pt;}
.y56{bottom:570.533366pt;}
.yd{bottom:571.933333pt;}
.y2a{bottom:576.146708pt;}
.y179{bottom:576.865367pt;}
.y18b{bottom:579.349359pt;}
.ydc{bottom:580.490692pt;}
.y87{bottom:584.406708pt;}
.y1c7{bottom:585.418686pt;}
.y128{bottom:585.729704pt;}
.y1a9{bottom:585.894694pt;}
.y136{bottom:585.925344pt;}
.y55{bottom:587.866699pt;}
.y146{bottom:592.568019pt;}
.yab{bottom:592.682692pt;}
.y29{bottom:597.304036pt;}
.y178{bottom:598.258698pt;}
.yc{bottom:602.333333pt;}
.ydb{bottom:602.796031pt;}
.y11a{bottom:603.073374pt;}
.y54{bottom:605.200033pt;}
.y86{bottom:605.564040pt;}
.y1c6{bottom:606.576019pt;}
.y1a8{bottom:607.052027pt;}
.y135{bottom:607.082682pt;}
.y145{bottom:613.725352pt;}
.y18a{bottom:613.840027pt;}
.y28{bottom:618.461375pt;}
.y177{bottom:620.564036pt;}
.yb{bottom:620.733333pt;}
.y53{bottom:622.533366pt;}
.yda{bottom:623.953359pt;}
.y119{bottom:624.230703pt;}
.y1c5{bottom:627.733351pt;}
.y1a7{bottom:628.209361pt;}
.y134{bottom:628.240016pt;}
.yaa{bottom:629.480015pt;}
.y144{bottom:634.882684pt;}
.y189{bottom:634.997355pt;}
.y27{bottom:639.618703pt;}
.y52{bottom:639.866699pt;}
.y85{bottom:640.054693pt;}
.y1e9{bottom:640.952035pt;}
.y176{bottom:641.721364pt;}
.yd9{bottom:645.110697pt;}
.y118{bottom:645.388031pt;}
.y1a6{bottom:649.366693pt;}
.y133{bottom:649.397349pt;}
.ya{bottom:651.293333pt;}
.y188{bottom:656.154694pt;}
.y51{bottom:657.200033pt;}
.y26{bottom:660.776042pt;}
.y84{bottom:661.212021pt;}
.y1c4{bottom:662.224030pt;}
.y175{bottom:662.264740pt;}
.y174{bottom:665.376068pt;}
.y173{bottom:665.657379pt;}
.yd8{bottom:666.504033pt;}
.y117{bottom:666.545369pt;}
.y132{bottom:670.554681pt;}
.y9{bottom:670.973333pt;}
.y50{bottom:674.533366pt;}
.y1e8{bottom:674.874704pt;}
.y187{bottom:677.312022pt;}
.yce{bottom:681.570284pt;}
.y25{bottom:681.933375pt;}
.ya9{bottom:682.369354pt;}
.y83{bottom:682.369369pt;}
.y1c3{bottom:683.381362pt;}
.y1a5{bottom:683.857366pt;}
.y116{bottom:687.702698pt;}
.y143{bottom:688.040029pt;}
.y172{bottom:688.198700pt;}
.yd7{bottom:689.045364pt;}
.y10a{bottom:691.550690pt;}
.y4f{bottom:691.866699pt;}
.y186{bottom:698.469360pt;}
.y8{bottom:701.693333pt;}
.y24{bottom:703.090708pt;}
.y82{bottom:703.526698pt;}
.ya8{bottom:703.526703pt;}
.y1a4{bottom:705.014699pt;}
.y1e7{bottom:708.797372pt;}
.y115{bottom:708.860036pt;}
.y142{bottom:709.197357pt;}
.y4e{bottom:709.200033pt;}
.y171{bottom:710.504018pt;}
.yd6{bottom:711.350698pt;}
.y109{bottom:712.944041pt;}
.y1c2{bottom:717.872035pt;}
.y185{bottom:719.626694pt;}
.y23{bottom:724.248041pt;}
.y12b{bottom:724.250376pt;}
.y126{bottom:724.583384pt;}
.y81{bottom:724.684026pt;}
.ya7{bottom:724.684031pt;}
.yf1{bottom:725.944031pt;}
.y1a3{bottom:726.172031pt;}
.y4d{bottom:726.533366pt;}
.y124{bottom:727.583394pt;}
.y114{bottom:730.017364pt;}
.y141{bottom:730.354685pt;}
.y12d{bottom:730.693817pt;}
.y123{bottom:730.694722pt;}
.y122{bottom:730.976036pt;}
.y166{bottom:731.097361pt;}
.y170{bottom:731.661367pt;}
.y7{bottom:732.253333pt;}
.y129{bottom:732.472056pt;}
.yd5{bottom:732.508030pt;}
.y108{bottom:735.249359pt;}
.y1c1{bottom:739.029368pt;}
.y12a{bottom:740.250376pt;}
.y184{bottom:740.784027pt;}
.y125{bottom:742.583384pt;}
.y1e6{bottom:742.720041pt;}
.y4c{bottom:743.866699pt;}
.y12e{bottom:744.333710pt;}
.y80{bottom:745.841354pt;}
.ya6{bottom:745.841359pt;}
.yf0{bottom:746.487386pt;}
.y113{bottom:751.174703pt;}
.y165{bottom:752.490712pt;}
.yee{bottom:752.598724pt;}
.y16f{bottom:752.818695pt;}
.yed{bottom:752.880035pt;}
.y107{bottom:756.406687pt;}
.y22{bottom:758.738702pt;}
.y1c0{bottom:760.186700pt;}
.y1a2{bottom:760.662699pt;}
.y4b{bottom:761.200033pt;}
.y183{bottom:761.941359pt;}
.y6{bottom:762.853333pt;}
.yef{bottom:764.487386pt;}
.yd4{bottom:766.998692pt;}
.ya5{bottom:766.998698pt;}
.y7f{bottom:766.998703pt;}
.y112{bottom:772.332036pt;}
.y16e{bottom:773.976023pt;}
.y164{bottom:775.032033pt;}
.y1e5{bottom:776.642709pt;}
.y106{bottom:777.800039pt;}
.y4a{bottom:778.533366pt;}
.yec{bottom:780.041361pt;}
.y1a1{bottom:781.968030pt;}
.ya4{bottom:788.156026pt;}
.y7e{bottom:788.156031pt;}
.y5{bottom:793.253333pt;}
.y111{bottom:793.489370pt;}
.y1bf{bottom:794.677363pt;}
.y16d{bottom:795.133362pt;}
.y49{bottom:795.866699pt;}
.y21{bottom:796.232025pt;}
.y182{bottom:796.432027pt;}
.y163{bottom:797.337351pt;}
.y121{bottom:798.470703pt;}
.y105{bottom:800.105357pt;}
.yeb{bottom:801.198700pt;}
.yd3{bottom:801.489370pt;}
.y1a0{bottom:803.538696pt;}
.y7d{bottom:809.313360pt;}
.ya3{bottom:809.313365pt;}
.y1e4{bottom:810.565378pt;}
.y48{bottom:813.200033pt;}
.y110{bottom:814.646702pt;}
.y16c{bottom:816.290690pt;}
.y1be{bottom:816.841365pt;}
.y181{bottom:817.589366pt;}
.y162{bottom:818.494700pt;}
.y120{bottom:819.628031pt;}
.y104{bottom:821.262685pt;}
.yea{bottom:822.356033pt;}
.yd2{bottom:822.646698pt;}
.y20{bottom:823.156024pt;}
.y4{bottom:824.293333pt;}
.ya2{bottom:830.470693pt;}
.y7c{bottom:830.470698pt;}
.y47{bottom:830.533366pt;}
.y1dd{bottom:832.494670pt;}
.y16b{bottom:837.684031pt;}
.y1bd{bottom:838.294698pt;}
.y19f{bottom:838.294703pt;}
.y180{bottom:838.746694pt;}
.y161{bottom:839.888031pt;}
.y11f{bottom:840.785370pt;}
.y103{bottom:842.420034pt;}
.ye9{bottom:843.513367pt;}
.yd1{bottom:843.804026pt;}
.y1e3{bottom:844.488036pt;}
.y1f{bottom:844.826690pt;}
.y46{bottom:847.866699pt;}
.y3{bottom:850.213333pt;}
.y1dc{bottom:850.398670pt;}
.y7b{bottom:851.628026pt;}
.ya1{bottom:851.628031pt;}
.y1bc{bottom:859.452030pt;}
.y19e{bottom:859.452037pt;}
.y17f{bottom:859.904032pt;}
.y16a{bottom:859.989365pt;}
.y11e{bottom:861.942703pt;}
.y160{bottom:862.193359pt;}
.y1e{bottom:862.457366pt;}
.y102{bottom:863.577362pt;}
.ye8{bottom:864.670699pt;}
.yd0{bottom:864.961365pt;}
.y45{bottom:865.200033pt;}
.yb7{bottom:872.785364pt;}
.y7a{bottom:872.785365pt;}
.y1e2{bottom:878.410704pt;}
.y1d{bottom:880.088032pt;}
.y19d{bottom:880.609369pt;}
.y17e{bottom:881.061366pt;}
.y169{bottom:881.146698pt;}
.y44{bottom:882.533366pt;}
.y11d{bottom:883.100037pt;}
.y15f{bottom:883.586690pt;}
.y101{bottom:884.734690pt;}
.ycf{bottom:886.118693pt;}
.y1db{bottom:886.206668pt;}
.y79{bottom:893.942693pt;}
.ya0{bottom:893.942698pt;}
.y1c{bottom:897.718698pt;}
.y43{bottom:899.866699pt;}
.ye7{bottom:901.468032pt;}
.y17d{bottom:902.218699pt;}
.y168{bottom:902.304030pt;}
.y11c{bottom:904.257369pt;}
.y100{bottom:905.892029pt;}
.yca{bottom:906.112239pt;}
.y1da{bottom:906.430665pt;}
.yb6{bottom:907.276031pt;}
.y1e1{bottom:912.333373pt;}
.y9f{bottom:915.100030pt;}
.y78{bottom:915.100032pt;}
.y42{bottom:917.200033pt;}
.y17c{bottom:923.376031pt;}
.y1b{bottom:924.642700pt;}
.yff{bottom:927.049357pt;}
.yb5{bottom:928.433360pt;}
.y41{bottom:934.533366pt;}
.y77{bottom:936.257365pt;}
.ye6{bottom:938.265364pt;}
.y1a{bottom:942.273364pt;}
.y1d9{bottom:946.034667pt;}
.y1e0{bottom:946.256036pt;}
.yfe{bottom:948.206701pt;}
.y9e{bottom:949.590698pt;}
.y40{bottom:951.866699pt;}
.y11b{bottom:957.414697pt;}
.y76{bottom:957.414698pt;}
.y17b{bottom:957.866698pt;}
.y19{bottom:959.904030pt;}
.y3f{bottom:969.200033pt;}
.yfd{bottom:969.364034pt;}
.y9d{bottom:970.748032pt;}
.y167{bottom:973.914698pt;}
.ye5{bottom:975.062698pt;}
.y75{bottom:978.572030pt;}
.y1df{bottom:980.178702pt;}
.y2{bottom:984.293333pt;}
.y3e{bottom:986.533366pt;}
.y15e{bottom:990.521362pt;}
.yfc{bottom:990.757365pt;}
.y18{bottom:991.905365pt;}
.ye4{bottom:993.516032pt;}
.y17a{bottom:994.664032pt;}
.y3d{bottom:1003.866699pt;}
.y15d{bottom:1011.914697pt;}
.y17{bottom:1013.062697pt;}
.y1de{bottom:1014.101368pt;}
.y1{bottom:1014.400000pt;}
.y3c{bottom:1021.200033pt;}
.y3b{bottom:1038.533366pt;}
.y3a{bottom:1055.866699pt;}
.h14{height:21.267464pt;}
.h12{height:21.287834pt;}
.ha{height:24.087240pt;}
.h1f{height:31.570313pt;}
.hb{height:37.057292pt;}
.h9{height:40.247233pt;}
.h7{height:40.247241pt;}
.h8{height:40.247243pt;}
.h38{height:40.734375pt;}
.h36{height:41.250000pt;}
.h18{height:42.093750pt;}
.h39{height:42.768229pt;}
.h13{height:42.911458pt;}
.h37{height:43.343750pt;}
.h6{height:43.375000pt;}
.h33{height:44.437500pt;}
.hc{height:44.468750pt;}
.h31{height:46.812500pt;}
.h34{height:49.016998pt;}
.hd{height:49.037821pt;}
.hf{height:49.037832pt;}
.h11{height:49.037834pt;}
.he{height:49.037842pt;}
.h10{height:55.625000pt;}
.h16{height:56.125000pt;}
.h2{height:58.563750pt;}
.h32{height:59.446072pt;}
.h4{height:63.843750pt;}
.h3{height:66.750000pt;}
.h2e{height:445.832984pt;}
.h2d{height:451.110730pt;}
.h2a{height:461.148061pt;}
.h2c{height:465.499976pt;}
.h2b{height:470.777723pt;}
.h26{height:517.585704pt;}
.h29{height:520.473239pt;}
.h25{height:524.622698pt;}
.h27{height:524.622700pt;}
.h28{height:527.510234pt;}
.h1e{height:594.562454pt;}
.h30{height:674.041740pt;}
.h2f{height:681.078735pt;}
.h22{height:736.027377pt;}
.h1d{height:736.360385pt;}
.h1b{height:739.360395pt;}
.h23{height:746.396484pt;}
.h1a{height:746.397390pt;}
.h20{height:748.174723pt;}
.h21{height:752.027377pt;}
.h1c{height:754.360385pt;}
.h24{height:756.110710pt;}
.h19{height:758.264386pt;}
.h15{height:768.301392pt;}
.h17{height:776.264386pt;}
.h35{height:1056.000000pt;}
.h5{height:1122.533333pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w1e{width:13.973250pt;}
.w1b{width:13.977751pt;}
.w1c{width:14.082750pt;}
.wf{width:14.171250pt;}
.w17{width:14.205750pt;}
.w2f{width:14.893000pt;}
.w2a{width:15.215000pt;}
.w1d{width:15.836250pt;}
.w2c{width:17.730749pt;}
.w27{width:17.751999pt;}
.w1a{width:18.777000pt;}
.w29{width:18.871000pt;}
.wd{width:18.895000pt;}
.w24{width:18.906000pt;}
.w2b{width:19.270000pt;}
.w8{width:19.410000pt;}
.we{width:19.743999pt;}
.w18{width:19.857333pt;}
.w16{width:19.896000pt;}
.w31{width:20.286667pt;}
.w2e{width:20.446999pt;}
.w12{width:21.115000pt;}
.w28{width:21.215000pt;}
.w10{width:22.973333pt;}
.w25{width:23.669332pt;}
.w19{width:24.270665pt;}
.w21{width:24.841334pt;}
.w30{width:25.106667pt;}
.w7{width:25.434000pt;}
.w32{width:25.536001pt;}
.w14{width:25.591999pt;}
.w11{width:25.716001pt;}
.w13{width:26.699001pt;}
.w1f{width:27.152249pt;}
.w23{width:27.412000pt;}
.w5{width:28.153333pt;}
.w6{width:28.286667pt;}
.wa{width:28.867001pt;}
.w22{width:36.202999pt;}
.w15{width:37.646667pt;}
.w4{width:38.388097pt;}
.wb{width:40.047001pt;}
.w26{width:42.584000pt;}
.w9{width:45.418666pt;}
.w20{width:47.810669pt;}
.w2d{width:48.308998pt;}
.wc{width:65.710999pt;}
.w3{width:793.733317pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.w33{width:816.000000pt;}
.x0{left:0.000000pt;}
.x8{left:5.333333pt;}
.xd{left:8.166667pt;}
.xa{left:10.066667pt;}
.x5d{left:96.000000pt;}
.x3{left:104.031988pt;}
.x1{left:113.471988pt;}
.x6{left:137.400004pt;}
.x58{left:148.946671pt;}
.x59{left:154.258670pt;}
.x4{left:155.264005pt;}
.x7{left:161.400004pt;}
.x12{left:186.371002pt;}
.x4c{left:188.508006pt;}
.x5a{left:194.218669pt;}
.x4d{left:199.057672pt;}
.x13{left:204.470113pt;}
.x2{left:212.186655pt;}
.x14{left:219.946676pt;}
.x4e{left:228.336772pt;}
.x4f{left:243.813543pt;}
.x50{left:247.337341pt;}
.x15{left:251.073675pt;}
.x51{left:258.152341pt;}
.x52{left:266.290110pt;}
.x39{left:268.556000pt;}
.x53{left:273.766673pt;}
.x3a{left:275.892008pt;}
.x16{left:280.352783pt;}
.x3b{left:282.532008pt;}
.x54{left:291.282104pt;}
.x17{left:295.829346pt;}
.x55{left:298.758667pt;}
.x3c{left:308.782674pt;}
.x3d{left:318.946106pt;}
.x5b{left:320.858663pt;}
.x18{left:326.956345pt;}
.x30{left:328.761332pt;}
.x3e{left:334.422877pt;}
.x5{left:336.413330pt;}
.x31{left:339.310999pt;}
.x3f{left:349.275920pt;}
.x40{left:360.883499pt;}
.x32{left:364.746114pt;}
.x41{left:370.147078pt;}
.x42{left:375.754654pt;}
.x33{left:380.222885pt;}
.x19{left:381.899434pt;}
.x43{left:385.417233pt;}
.x44{left:391.024811pt;}
.x34{left:394.254476pt;}
.x1b{left:399.417664pt;}
.x1a{left:402.334038pt;}
.x35{left:407.374809pt;}
.x1c{left:408.442914pt;}
.x1d{left:409.853333pt;}
.x36{left:411.989143pt;}
.x45{left:414.345215pt;}
.x1e{left:416.493347pt;}
.x37{left:421.366810pt;}
.xb{left:422.399984pt;}
.x1f{left:427.917681pt;}
.x9{left:430.745220pt;}
.x2f{left:434.148010pt;}
.x20{left:436.782681pt;}
.x21{left:449.189351pt;}
.x46{left:453.046791pt;}
.x47{left:458.654373pt;}
.x48{left:469.493950pt;}
.x22{left:474.026122pt;}
.x49{left:475.101532pt;}
.x4a{left:482.134782pt;}
.x4b{left:485.587280pt;}
.x5c{left:486.584005pt;}
.x23{left:489.502665pt;}
.x38{left:494.354675pt;}
.x24{left:500.926999pt;}
.x25{left:510.104249pt;}
.x26{left:513.591248pt;}
.x27{left:525.998678pt;}
.x28{left:529.522685pt;}
.x29{left:542.144263pt;}
.xc{left:545.424011pt;}
.x2c{left:552.845092pt;}
.x2a{left:554.071282pt;}
.x2d{left:557.630842pt;}
.xe{left:560.767448pt;}
.x56{left:563.562683pt;}
.x2b{left:567.720651pt;}
.x57{left:568.874654pt;}
.x2e{left:572.022685pt;}
.xf{left:578.285665pt;}
.x10{left:581.297665pt;}
.x11{left:611.666687pt;}
}




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