
    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_544466d51182e27e6c98a3e5.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_1f9cb8e6aa9d0b623de4d43b.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_0e9467baaa057b1faa51ffd1.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.731445;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_81bec3b0b1ba14d509b70411.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_e7fdf5c1aacf4596759d0c73.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.207031;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_0f45b005a0f62830e6dce450.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.024902;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;}
.mc{transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);}
.md{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m9{transform:matrix(0.176806,-0.176806,0.176777,0.176777,0,0);-ms-transform:matrix(0.176806,-0.176806,0.176777,0.176777,0,0);-webkit-transform:matrix(0.176806,-0.176806,0.176777,0.176777,0,0);}
.m2{transform:matrix(0.249820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249820,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249823,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249823,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249823,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.249926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249926,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.249929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249929,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.249933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249933,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.249986,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249986,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249986,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.249990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249990,0.000000,0.000000,0.250000,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);}
.m8{transform:matrix(0.250040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250040,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.252670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252670,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.252672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252672,0.000000,0.000000,0.250000,0,0);}
.v1{vertical-align:-38.879984px;}
.v4{vertical-align:-33.839986px;}
.v2{vertical-align:-25.919990px;}
.v3{vertical-align:-16.559993px;}
.v5{vertical-align:-12.959995px;}
.v0{vertical-align:0.000000px;}
.ls1{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.037441px;}
.lsa{letter-spacing:0.037617px;}
.ls2{letter-spacing:0.106523px;}
.ls9{letter-spacing:0.152578px;}
.ls0{letter-spacing:0.288000px;}
.ls4{letter-spacing:0.319666px;}
.ls8{letter-spacing:0.360000px;}
.ls3{letter-spacing:0.610489px;}
.ls6{letter-spacing:1.926218px;}
.ls5{letter-spacing:4.289301px;}
.lsb{letter-spacing:23.075991px;}
.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;}
}
.ws24{word-spacing:-42.324463px;}
.ws20{word-spacing:-38.015985px;}
.ws36{word-spacing:-36.629265px;}
.ws39{word-spacing:-35.988466px;}
.ws14{word-spacing:-33.707507px;}
.ws2{word-spacing:-33.533230px;}
.ws1{word-spacing:-33.426707px;}
.ws21{word-spacing:-31.679987px;}
.wsc{word-spacing:-30.023988px;}
.ws17{word-spacing:-29.652468px;}
.ws38{word-spacing:-26.658887px;}
.wsf{word-spacing:-26.658711px;}
.ws2d{word-spacing:-26.621269px;}
.ws10{word-spacing:-25.379990px;}
.ws16{word-spacing:-25.343990px;}
.ws12{word-spacing:-25.019990px;}
.ws8{word-spacing:-23.713613px;}
.ws7{word-spacing:-23.418711px;}
.ws13{word-spacing:-21.188090px;}
.wsa{word-spacing:-20.069201px;}
.ws9{word-spacing:-20.064704px;}
.ws27{word-spacing:-20.015992px;}
.ws18{word-spacing:-19.007992px;}
.ws3{word-spacing:-18.678478px;}
.ws6{word-spacing:-16.260592px;}
.ws5{word-spacing:-14.040818px;}
.ws23{word-spacing:-3.107560px;}
.ws2f{word-spacing:-2.103846px;}
.ws33{word-spacing:-1.781231px;}
.ws30{word-spacing:-1.061308px;}
.ws31{word-spacing:-0.663617px;}
.ws11{word-spacing:-0.180000px;}
.ws0{word-spacing:0.000000px;}
.ws19{word-spacing:0.002190px;}
.ws34{word-spacing:0.056160px;}
.ws37{word-spacing:0.647650px;}
.ws32{word-spacing:0.776326px;}
.ws1e{word-spacing:0.900718px;}
.ws25{word-spacing:1.275836px;}
.ws35{word-spacing:1.583999px;}
.ws1d{word-spacing:1.620737px;}
.ws1b{word-spacing:2.081534px;}
.ws28{word-spacing:3.528035px;}
.ws2e{word-spacing:3.656307px;}
.ws2c{word-spacing:5.688034px;}
.ws1c{word-spacing:5.940757px;}
.ws1a{word-spacing:7.916380px;}
.ws29{word-spacing:14.328030px;}
.ws22{word-spacing:40.679984px;}
.ws2b{word-spacing:44.855946px;}
.ws4{word-spacing:55.314992px;}
.ws2a{word-spacing:63.287975px;}
.wsb{word-spacing:66.238848px;}
.ws26{word-spacing:210.527916px;}
.wse{word-spacing:287.927500px;}
.ws15{word-spacing:913.624555px;}
.wsd{word-spacing:975.815260px;}
.ws1f{word-spacing:2123.079197px;}
._1d{margin-left:-13.054370px;}
._15{margin-left:-11.275351px;}
._f{margin-left:-10.010380px;}
._3{margin-left:-8.920013px;}
._c{margin-left:-7.573308px;}
._8{margin-left:-5.832289px;}
._9{margin-left:-4.408393px;}
._2{margin-left:-2.951963px;}
._0{margin-left:-1.044017px;}
._1{width:1.152078px;}
._4{width:2.409202px;}
._5{width:3.465786px;}
._a{width:4.996352px;}
._b{width:6.274283px;}
._1a{width:18.072078px;}
._d{width:25.495883px;}
._19{width:27.816343px;}
._10{width:34.771842px;}
._12{width:37.253970px;}
._11{width:42.645773px;}
._1c{width:52.883918px;}
._e{width:60.696028px;}
._1b{width:61.719803px;}
._6{width:68.257604px;}
._14{width:71.999971px;}
._7{width:74.907337px;}
._17{width:75.997284px;}
._13{width:103.095679px;}
._16{width:111.563913px;}
._18{width:186.865103px;}
.fc5{color:transparent;}
.fc4{color:rgb(0,59,118);}
.fc3{color:rgb(0,101,204);}
.fc2{color:rgb(0,51,101);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fsa{font-size:40.494224px;}
.fs8{font-size:50.506540px;}
.fs4{font-size:53.999978px;}
.fsb{font-size:58.491337px;}
.fs14{font-size:59.759976px;}
.fs1{font-size:71.999971px;}
.fse{font-size:72.175193px;}
.fs11{font-size:72.191371px;}
.fs7{font-size:73.465171px;}
.fs6{font-size:79.245568px;}
.fsc{font-size:84.239966px;}
.fsd{font-size:85.300766px;}
.fs9{font-size:85.488566px;}
.fs13{font-size:89.999964px;}
.fs5{font-size:91.433963px;}
.fs3{font-size:95.759962px;}
.fs16{font-size:102.239959px;}
.fsf{font-size:104.985558px;}
.fs10{font-size:105.007758px;}
.fs0{font-size:107.999957px;}
.fs2{font-size:120.239952px;}
.fs12{font-size:131.759947px;}
.fs15{font-size:143.999942px;}
.y16f{bottom:-2.519659px;}
.yf5{bottom:-1.079659px;}
.y0{bottom:0.000000px;}
.y11b{bottom:0.000340px;}
.y7f{bottom:4.860279px;}
.y78{bottom:4.860285px;}
.y72{bottom:4.860287px;}
.y64{bottom:4.860292px;}
.y69{bottom:4.860294px;}
.y76{bottom:4.860296px;}
.y7d{bottom:4.860302px;}
.y74{bottom:4.860308px;}
.y6e{bottom:4.860315px;}
.y70{bottom:4.860320px;}
.y66{bottom:4.860325px;}
.y7a{bottom:4.860330px;}
.y155{bottom:5.040167px;}
.y6c{bottom:5.040306px;}
.y121{bottom:5.580097px;}
.y81{bottom:5.940116px;}
.yf4{bottom:41.280000px;}
.y1a5{bottom:46.320338px;}
.y142{bottom:50.820337px;}
.y12f{bottom:52.440336px;}
.y22{bottom:57.120334px;}
.y44{bottom:58.740334px;}
.y79{bottom:61.440000px;}
.ya{bottom:63.420332px;}
.y16e{bottom:67.560330px;}
.y46{bottom:67.920330px;}
.y108{bottom:69.360329px;}
.yb6{bottom:70.260329px;}
.y1a4{bottom:71.520328px;}
.y67{bottom:72.960000px;}
.y41{bottom:73.680328px;}
.y65{bottom:74.580000px;}
.y43{bottom:76.020327px;}
.y141{bottom:77.820326px;}
.y42{bottom:80.700325px;}
.y17d{bottom:81.600324px;}
.ye{bottom:84.300323px;}
.y9{bottom:85.020323px;}
.y45{bottom:85.200323px;}
.y6f{bottom:87.720000px;}
.y40{bottom:90.960321px;}
.y14c{bottom:91.140321px;}
.y23{bottom:91.680320px;}
.y21{bottom:93.120320px;}
.y16d{bottom:96.360318px;}
.y1a3{bottom:96.720318px;}
.y107{bottom:98.160318px;}
.y6d{bottom:100.860000px;}
.yb5{bottom:101.940316px;}
.y140{bottom:104.820315px;}
.y8{bottom:106.620314px;}
.y14b{bottom:116.340310px;}
.y73{bottom:117.240000px;}
.y49{bottom:119.580309px;}
.yd{bottom:120.300309px;}
.y6b{bottom:122.100000px;}
.y1a2{bottom:122.460308px;}
.y3f{bottom:123.180308px;}
.y1b1{bottom:123.540308px;}
.y16c{bottom:125.160307px;}
.y20{bottom:129.120305px;}
.yb4{bottom:130.740305px;}
.y13f{bottom:131.820304px;}
.y48{bottom:132.360304px;}
.y7c{bottom:133.620000px;}
.y117{bottom:133.980303px;}
.y11{bottom:136.860302px;}
.y119{bottom:139.380301px;}
.y3e{bottom:140.280301px;}
.y14a{bottom:141.540300px;}
.y12e{bottom:142.260300px;}
.y75{bottom:148.380000px;}
.y47{bottom:149.460297px;}
.y7{bottom:149.820297px;}
.y1a1{bottom:151.260296px;}
.y68{bottom:153.420000px;}
.y16b{bottom:153.960295px;}
.y106{bottom:155.760295px;}
.yc{bottom:156.300294px;}
.y63{bottom:156.660000px;}
.yc8{bottom:158.280294px;}
.y13e{bottom:158.820293px;}
.yb3{bottom:159.540293px;}
.y116{bottom:162.780292px;}
.y7b{bottom:163.140292px;}
.y6a{bottom:164.760291px;}
.y1f{bottom:165.120291px;}
.ye9{bottom:165.300291px;}
.y149{bottom:166.740290px;}
.y1b0{bottom:169.440289px;}
.y71{bottom:169.800000px;}
.y3b{bottom:170.160289px;}
.y6{bottom:171.420288px;}
.y77{bottom:174.660000px;}
.y4b{bottom:177.000286px;}
.y1a0{bottom:180.060285px;}
.y12d{bottom:181.140285px;}
.y16a{bottom:182.760284px;}
.yc7{bottom:183.480284px;}
.y13d{bottom:185.820283px;}
.y3a{bottom:187.440282px;}
.yb2{bottom:188.340282px;}
.y7e{bottom:189.420000px;}
.y115{bottom:191.580280px;}
.y148{bottom:191.940280px;}
.y5{bottom:193.020280px;}
.ye8{bottom:194.100279px;}
.y4a{bottom:194.280279px;}
.y1e{bottom:201.120277px;}
.y17b{bottom:202.020276px;}
.ya7{bottom:202.560276px;}
.yc6{bottom:208.680274px;}
.y19f{bottom:208.860273px;}
.yd1{bottom:210.120273px;}
.y169{bottom:211.560272px;}
.y13c{bottom:212.820272px;}
.y25{bottom:213.000272px;}
.y105{bottom:213.360272px;}
.yb1{bottom:217.140270px;}
.y12c{bottom:220.020269px;}
.y114{bottom:220.380269px;}
.y171{bottom:221.280268px;}
.y4f{bottom:225.240267px;}
.y17e{bottom:226.140267px;}
.y24{bottom:232.980264px;}
.y3d{bottom:233.340264px;}
.ya6{bottom:234.960263px;}
.y1d{bottom:237.120262px;}
.yd0{bottom:238.920261px;}
.y13b{bottom:239.820261px;}
.ybb{bottom:240.000261px;}
.y104{bottom:242.160260px;}
.y147{bottom:242.340260px;}
.y4e{bottom:242.520260px;}
.y192{bottom:245.400259px;}
.yb0{bottom:245.940259px;}
.y113{bottom:249.180257px;}
.y3c{bottom:250.440257px;}
.ye7{bottom:251.700256px;}
.y1af{bottom:255.120255px;}
.y5c{bottom:257.280254px;}
.ya2{bottom:258.900253px;}
.yc5{bottom:259.080253px;}
.ya5{bottom:267.360250px;}
.y146{bottom:267.540250px;}
.y90{bottom:268.620250px;}
.y168{bottom:269.160249px;}
.y92{bottom:271.860248px;}
.yba{bottom:272.400248px;}
.y1c{bottom:273.120248px;}
.yaf{bottom:274.740247px;}
.ye6{bottom:280.500245px;}
.y199{bottom:283.920243px;}
.yc4{bottom:284.280243px;}
.y86{bottom:286.440242px;}
.y4d{bottom:288.420242px;}
.y37{bottom:289.500241px;}
.y145{bottom:292.740240px;}
.y8f{bottom:293.280240px;}
.y12a{bottom:295.800239px;}
.y91{bottom:296.520238px;}
.y5d{bottom:296.700238px;}
.y167{bottom:297.960238px;}
.ya4{bottom:299.760237px;}
.y19e{bottom:302.280236px;}
.yae{bottom:303.540236px;}
.y31{bottom:304.800235px;}
.y4c{bottom:305.700235px;}
.y36{bottom:306.780234px;}
.yf6{bottom:308.580234px;}
.ye5{bottom:309.300233px;}
.yc3{bottom:309.480233px;}
.y112{bottom:310.380233px;}
.ycf{bottom:310.740233px;}
.y198{bottom:312.720232px;}
.y8e{bottom:314.520231px;}
.y144{bottom:317.940230px;}
.y12b{bottom:326.040227px;}
.y5a{bottom:326.400226px;}
.y166{bottom:327.480226px;}
.y17a{bottom:328.560226px;}
.y19d{bottom:331.080225px;}
.yad{bottom:332.340224px;}
.y29{bottom:333.780223px;}
.y95{bottom:335.940223px;}
.yc2{bottom:336.660222px;}
.yb9{bottom:337.200222px;}
.y5e{bottom:337.560222px;}
.y39{bottom:337.740222px;}
.y129{bottom:337.920222px;}
.ye4{bottom:338.100222px;}
.y8d{bottom:339.180221px;}
.y197{bottom:341.520220px;}
.y157{bottom:344.400219px;}
.yf1{bottom:344.940219px;}
.y1b{bottom:345.120219px;}
.y1ae{bottom:346.920218px;}
.y58{bottom:351.960216px;}
.y38{bottom:355.020215px;}
.yee{bottom:358.980213px;}
.y165{bottom:359.880213px;}
.y94{bottom:360.600213px;}
.y93{bottom:362.220212px;}
.ye1{bottom:362.580212px;}
.yb8{bottom:369.600209px;}
.y51{bottom:369.960209px;}
.y103{bottom:370.320209px;}
.y2a{bottom:371.940208px;}
.y5f{bottom:376.980206px;}
.y1ad{bottom:377.520206px;}
.y50{bottom:387.060202px;}
.y10e{bottom:388.320202px;}
.y19c{bottom:388.680202px;}
.ye0{bottom:389.580201px;}
.y164{bottom:392.280200px;}
.y8c{bottom:393.360200px;}
.y96{bottom:396.600198px;}
.y111{bottom:396.780198px;}
.ycc{bottom:397.320198px;}
.y189{bottom:398.760197px;}
.y196{bottom:399.120197px;}
.y10d{bottom:409.920193px;}
.y2b{bottom:411.540192px;}
.y128{bottom:412.440192px;}
.ydf{bottom:416.580190px;}
.y1a{bottom:417.120190px;}
.y143{bottom:417.480190px;}
.y60{bottom:418.020190px;}
.y85{bottom:420.540189px;}
.y102{bottom:420.720189px;}
.ycb{bottom:422.520188px;}
.y99{bottom:422.880188px;}
.y1ac{bottom:423.420188px;}
.yed{bottom:423.780187px;}
.y163{bottom:424.680187px;}
.y110{bottom:425.580187px;}
.y195{bottom:427.920186px;}
.y10c{bottom:431.520184px;}
.y156{bottom:432.780184px;}
.y11a{bottom:437.280182px;}
.y35{bottom:438.720182px;}
.y32{bottom:440.700181px;}
.ye3{bottom:443.040180px;}
.yde{bottom:443.580180px;}
.y127{bottom:444.840179px;}
.y19b{bottom:447.000178px;}
.y188{bottom:447.360178px;}
.yca{bottom:447.720178px;}
.y2c{bottom:449.700177px;}
.y19{bottom:453.120176px;}
.y101{bottom:454.740175px;}
.y5b{bottom:456.540174px;}
.y194{bottom:456.720174px;}
.y162{bottom:457.080174px;}
.y98{bottom:457.260174px;}
.y61{bottom:459.060173px;}
.y8b{bottom:460.680173px;}
.y34{bottom:462.840172px;}
.y1ab{bottom:469.320169px;}
.ydd{bottom:470.580169px;}
.y154{bottom:470.940000px;}
.yc9{bottom:474.900167px;}
.y153{bottom:475.980167px;}
.y126{bottom:477.240166px;}
.y19a{bottom:479.400165px;}
.y100{bottom:479.940165px;}
.y97{bottom:481.920164px;}
.y8a{bottom:485.160163px;}
.y193{bottom:485.520163px;}
.y2d{bottom:487.680162px;}
.yec{bottom:488.580162px;}
.y18{bottom:489.120161px;}
.y187{bottom:495.960159px;}
.ya1{bottom:497.040158px;}
.y84{bottom:497.220158px;}
.ydc{bottom:497.580158px;}
.y158{bottom:498.120158px;}
.y62{bottom:498.480158px;}
.y14f{bottom:499.920157px;}
.yaa{bottom:503.520156px;}
.yff{bottom:505.140155px;}
.yf3{bottom:505.680155px;}
.y161{bottom:506.400154px;}
.y10b{bottom:506.580154px;}
.y125{bottom:509.640153px;}
.y9b{bottom:509.820153px;}
.yf8{bottom:512.160152px;}
.y18d{bottom:513.780151px;}
.y17c{bottom:515.220151px;}
.y4{bottom:517.020150px;}
.y152{bottom:519.180149px;}
.y9d{bottom:519.720149px;}
.y159{bottom:522.420148px;}
.yc1{bottom:523.860147px;}
.ydb{bottom:524.580147px;}
.y17{bottom:525.120147px;}
.y33{bottom:525.300147px;}
.y170{bottom:525.480147px;}
.y2e{bottom:525.840147px;}
.y184{bottom:528.000146px;}
.y13a{bottom:529.800145px;}
.y160{bottom:530.700145px;}
.yf2{bottom:530.880145px;}
.y83{bottom:531.420144px;}
.y10a{bottom:531.960144px;}
.y14e{bottom:532.320144px;}
.y191{bottom:533.400144px;}
.yf7{bottom:533.760143px;}
.y9a{bottom:534.480143px;}
.ya9{bottom:535.920143px;}
.ya3{bottom:536.100143px;}
.yfe{bottom:539.880141px;}
.y3{bottom:540.600141px;}
.y124{bottom:542.040140px;}
.y9c{bottom:544.200139px;}
.y186{bottom:544.560139px;}
.ye2{bottom:544.920139px;}
.y9f{bottom:546.000139px;}
.yc0{bottom:549.060137px;}
.yda{bottom:551.580136px;}
.y109{bottom:553.560136px;}
.y183{bottom:555.000135px;}
.yf0{bottom:556.080135px;}
.y59{bottom:556.620134px;}
.y139{bottom:556.800134px;}
.yce{bottom:557.340134px;}
.y16{bottom:561.120133px;}
.y179{bottom:562.560132px;}
.y2f{bottom:565.440131px;}
.y82{bottom:567.060130px;}
.ya8{bottom:568.320130px;}
.y9e{bottom:570.480129px;}
.yd9{bottom:578.580126px;}
.y89{bottom:578.760125px;}
.y182{bottom:582.000124px;}
.ya0{bottom:582.180124px;}
.y14d{bottom:582.540124px;}
.ybf{bottom:583.080124px;}
.y138{bottom:583.800123px;}
.y123{bottom:584.160123px;}
.yeb{bottom:585.780123px;}
.y178{bottom:591.360120px;}
.y80{bottom:595.500000px;}
.y15f{bottom:596.400118px;}
.y88{bottom:603.420116px;}
.y30{bottom:603.600116px;}
.y2{bottom:605.400115px;}
.yd8{bottom:605.580115px;}
.y1aa{bottom:607.020114px;}
.ybe{bottom:608.280114px;}
.y137{bottom:610.800113px;}
.y122{bottom:616.560110px;}
.yef{bottom:617.640110px;}
.yfd{bottom:618.720110px;}
.yb7{bottom:622.680108px;}
.y177{bottom:627.360106px;}
.y15e{bottom:628.800105px;}
.yd7{bottom:632.580104px;}
.y15{bottom:633.120104px;}
.ybd{bottom:633.480104px;}
.y1a9{bottom:637.620102px;}
.y1{bottom:637.800102px;}
.y190{bottom:641.400100px;}
.y120{bottom:643.380000px;}
.yfc{bottom:643.920099px;}
.y18c{bottom:644.280099px;}
.y54{bottom:645.720099px;}
.yea{bottom:650.580097px;}
.y176{bottom:656.160095px;}
.y87{bottom:659.220093px;}
.yd6{bottom:659.580093px;}
.ybc{bottom:660.660093px;}
.y53{bottom:664.260091px;}
.y28{bottom:664.440091px;}
.y136{bottom:664.800091px;}
.y10f{bottom:676.500086px;}
.y11f{bottom:681.360084px;}
.y1a8{bottom:683.520084px;}
.y18b{bottom:683.880083px;}
.y175{bottom:684.960083px;}
.yd5{bottom:686.580082px;}
.y135{bottom:691.800080px;}
.y15d{bottom:696.840078px;}
.y118{bottom:700.800077px;}
.yfb{bottom:702.420076px;}
.y151{bottom:704.940075px;}
.y14{bottom:705.120075px;}
.y181{bottom:705.300075px;}
.yd4{bottom:713.580072px;}
.y11e{bottom:713.760071px;}
.y134{bottom:718.800069px;}
.y18a{bottom:723.480068px;}
.y15c{bottom:729.240065px;}
.y1a7{bottom:729.420065px;}
.y27{bottom:732.480064px;}
.y10{bottom:735.000063px;}
.y150{bottom:737.340062px;}
.y57{bottom:737.880062px;}
.y56{bottom:738.060062px;}
.yd3{bottom:740.580061px;}
.y13{bottom:741.120061px;}
.y180{bottom:741.300060px;}
.y133{bottom:745.800059px;}
.y11d{bottom:746.160059px;}
.y18f{bottom:749.400057px;}
.y174{bottom:749.760057px;}
.y26{bottom:751.740056px;}
.y55{bottom:756.420054px;}
.yac{bottom:758.580054px;}
.yfa{bottom:760.020053px;}
.yf{bottom:760.380053px;}
.yd2{bottom:767.580050px;}
.y132{bottom:772.800048px;}
.y17f{bottom:777.300046px;}
.ycd{bottom:778.020046px;}
.y173{bottom:778.560046px;}
.y15b{bottom:781.260044px;}
.yb{bottom:785.940043px;}
.yab{bottom:786.480042px;}
.y11c{bottom:788.280042px;}
.yf9{bottom:788.820041px;}
.y18e{bottom:794.040039px;}
.y131{bottom:799.800037px;}
.y172{bottom:807.360034px;}
.y1a6{bottom:808.980033px;}
.y12{bottom:813.120032px;}
.y15a{bottom:813.660032px;}
.y185{bottom:814.380031px;}
.y52{bottom:814.560031px;}
.y130{bottom:826.800026px;}
.h32{height:18.900000px;}
.h2c{height:21.060000px;}
.h31{height:28.980000px;}
.h1f{height:30.240000px;}
.h2e{height:32.580000px;}
.hb{height:42.234210px;}
.h9{height:52.676743px;}
.h2b{height:54.026346px;}
.h5{height:56.320290px;}
.h7{height:56.957752px;}
.h25{height:59.789156px;}
.hc{height:61.004636px;}
.h1e{height:64.800000px;}
.h2d{height:68.938566px;}
.h29{height:72.035127px;}
.h2{height:75.093720px;}
.h10{height:75.276471px;}
.h22{height:75.293344px;}
.h12{height:75.785588px;}
.h8{height:76.621877px;}
.h1b{height:79.920000px;}
.h28{height:84.281099px;}
.h18{height:84.600000px;}
.hd{height:87.859652px;}
.he{height:88.966033px;}
.ha{height:89.161903px;}
.h2f{height:90.043909px;}
.h24{height:93.867150px;}
.h6{height:95.362767px;}
.h26{height:95.806719px;}
.hf{height:97.740000px;}
.h4{height:99.874648px;}
.h14{height:102.240000px;}
.h34{height:102.289881px;}
.h1a{height:106.740000px;}
.h27{height:108.052691px;}
.h20{height:109.496656px;}
.h21{height:109.519810px;}
.h1{height:112.640580px;}
.h30{height:120.298663px;}
.h1d{height:123.120000px;}
.h3{height:125.406512px;}
.h15{height:134.640000px;}
.h23{height:137.421508px;}
.h19{height:139.500000px;}
.h33{height:150.187440px;}
.h16{height:155.880000px;}
.h17{height:168.480000px;}
.h11{height:182.160000px;}
.h13{height:183.780000px;}
.h1c{height:195.300000px;}
.h2a{height:316.260000px;}
.h0{height:892.500000px;}
.w19{width:7.920000px;}
.w11{width:19.620000px;}
.w14{width:25.560000px;}
.w13{width:38.340000px;}
.wf{width:64.620000px;}
.w1a{width:77.400000px;}
.wb{width:79.200000px;}
.w8{width:84.240000px;}
.w18{width:89.460000px;}
.w17{width:93.240000px;}
.w1{width:97.200000px;}
.w4{width:100.620000px;}
.wa{width:105.480000px;}
.we{width:120.240000px;}
.w5{width:131.760000px;}
.w9{width:136.620000px;}
.w6{width:153.180000px;}
.w7{width:166.140000px;}
.w2{width:179.280000px;}
.wc{width:179.460000px;}
.w15{width:180.360000px;}
.w3{width:180.900000px;}
.wd{width:192.600000px;}
.w12{width:284.400000px;}
.w16{width:400.680000px;}
.w10{width:831.960000px;}
.w0{width:1263.000000px;}
.x0{left:0.000000px;}
.x51{left:13.500745px;}
.xab{left:15.840661px;}
.xc7{left:97.905861px;}
.xa1{left:102.225859px;}
.xa4{left:106.365857px;}
.x8c{left:107.625857px;}
.xe8{left:115.005854px;}
.xae{left:123.465851px;}
.x89{left:132.465847px;}
.xa5{left:137.865845px;}
.xe6{left:140.566444px;}
.x93{left:143.626443px;}
.xed{left:145.234442px;}
.xc6{left:148.845840px;}
.xa3{left:159.286436px;}
.x92{left:164.146434px;}
.xbb{left:165.946434px;}
.xb2{left:171.166432px;}
.x1{left:173.506431px;}
.xa6{left:180.526428px;}
.xb9{left:181.786427px;}
.xb{left:183.046427px;}
.x90{left:184.306426px;}
.xad{left:196.906421px;}
.x18{left:198.886420px;}
.x46{left:200.506420px;}
.xde{left:203.746419px;}
.x91{left:205.726418px;}
.x60{left:217.785600px;}
.xdc{left:225.526410px;}
.xc4{left:231.466407px;}
.x8b{left:234.526406px;}
.xe9{left:237.765805px;}
.x47{left:241.006404px;}
.xdb{left:246.765801px;}
.xce{left:250.906400px;}
.x63{left:257.206397px;}
.x10{left:258.646397px;}
.x8d{left:267.646393px;}
.x72{left:268.727064px;}
.xeb{left:271.065792px;}
.xcd{left:277.546389px;}
.xba{left:278.626389px;}
.x6{left:291.046384px;}
.x1e{left:293.386383px;}
.x48{left:295.366382px;}
.x7b{left:299.867756px;}
.x1f{left:308.506377px;}
.x4a{left:318.946372px;}
.x88{left:323.086371px;}
.xbd{left:327.586369px;}
.x12{left:333.346367px;}
.x94{left:343.066363px;}
.x9{left:344.326362px;}
.x52{left:345.405600px;}
.x43{left:346.846361px;}
.x73{left:355.667002px;}
.x76{left:362.147040px;}
.x23{left:363.586355px;}
.x4f{left:365.566319px;}
.x24{left:369.706305px;}
.x50{left:373.305600px;}
.x4e{left:376.906314px;}
.xac{left:378.526349px;}
.x74{left:383.566924px;}
.xc8{left:384.645746px;}
.x9f{left:386.806345px;}
.xa0{left:388.066345px;}
.x77{left:398.327078px;}
.x11{left:399.406340px;}
.x87{left:404.266338px;}
.x85{left:409.846336px;}
.x95{left:412.366335px;}
.x75{left:416.326951px;}
.x83{left:419.566332px;}
.xc9{left:425.146180px;}
.xa7{left:429.646328px;}
.x79{left:431.087254px;}
.x4d{left:434.326326px;}
.x22{left:439.726324px;}
.x4c{left:446.746321px;}
.x84{left:448.006321px;}
.x53{left:451.965600px;}
.x9c{left:454.306318px;}
.x99{left:455.386318px;}
.x7c{left:457.367693px;}
.x7a{left:462.227196px;}
.xaf{left:463.485715px;}
.x2{left:464.566314px;}
.x7d{left:465.826314px;}
.x16{left:467.626313px;}
.x78{left:470.507162px;}
.x8a{left:471.766311px;}
.xd3{left:473.206311px;}
.x14{left:475.906310px;}
.xb8{left:478.246309px;}
.x6f{left:480.406237px;}
.x97{left:481.846307px;}
.x55{left:483.105600px;}
.x15{left:487.606305px;}
.x8{left:489.226304px;}
.x61{left:497.686301px;}
.xf{left:498.766300px;}
.x54{left:500.026300px;}
.x19{left:504.346298px;}
.x17{left:506.866297px;}
.x7{left:509.566296px;}
.xe2{left:511.186296px;}
.x3e{left:513.346446px;}
.x3{left:516.226294px;}
.xb0{left:517.486293px;}
.xd{left:518.566293px;}
.x9e{left:520.006292px;}
.x82{left:521.446291px;}
.x3f{left:523.786359px;}
.x9a{left:524.866290px;}
.xe5{left:531.526287px;}
.xc{left:533.506287px;}
.x1a{left:535.126286px;}
.x86{left:536.206286px;}
.x1b{left:537.646285px;}
.xe{left:539.446284px;}
.xa{left:540.706284px;}
.x1d{left:541.966283px;}
.x1c{left:543.586283px;}
.x29{left:547.006640px;}
.x40{left:550.426267px;}
.x3c{left:553.846289px;}
.x5{left:557.986277px;}
.x3b{left:563.206271px;}
.x3d{left:566.626262px;}
.x4{left:575.986270px;}
.x9d{left:577.606269px;}
.x98{left:579.586268px;}
.x13{left:581.206268px;}
.x57{left:583.365600px;}
.x81{left:598.306261px;}
.x96{left:599.746260px;}
.x2a{left:602.626455px;}
.x56{left:607.845600px;}
.xe3{left:609.466256px;}
.x70{left:611.626185px;}
.xbc{left:616.666253px;}
.x39{left:617.746108px;}
.x37{left:622.426106px;}
.x71{left:624.766179px;}
.x9b{left:627.466249px;}
.x6d{left:631.245993px;}
.x3a{left:632.866080px;}
.x5a{left:637.365600px;}
.xb1{left:639.526244px;}
.x38{left:640.965994px;}
.x58{left:642.405600px;}
.xd5{left:645.286242px;}
.xa2{left:654.466238px;}
.xcb{left:659.326236px;}
.xca{left:668.146233px;}
.xa9{left:671.746231px;}
.x6e{left:674.085912px;}
.xc0{left:676.246230px;}
.xd6{left:679.126228px;}
.xaa{left:681.106228px;}
.xc5{left:682.726227px;}
.x59{left:696.585600px;}
.x35{left:701.265989px;}
.x26{left:708.286255px;}
.x36{left:709.365979px;}
.x80{left:710.986216px;}
.xcc{left:713.326215px;}
.xdd{left:718.726213px;}
.x44{left:722.506211px;}
.xd7{left:726.286209px;}
.xc1{left:730.246208px;}
.xea{left:731.865607px;}
.x64{left:734.746206px;}
.xee{left:737.265755px;}
.x65{left:742.846209px;}
.x33{left:759.225803px;}
.xc2{left:770.746192px;}
.x45{left:774.166190px;}
.x5b{left:775.786190px;}
.x66{left:779.026247px;}
.x34{left:781.365818px;}
.x5c{left:785.145600px;}
.x6b{left:787.306288px;}
.xcf{left:790.366184px;}
.x5d{left:793.425600px;}
.x68{left:795.406260px;}
.x67{left:808.546254px;}
.x6c{left:810.166264px;}
.x41{left:812.685057px;}
.xd8{left:815.745600px;}
.x69{left:821.686249px;}
.xd9{left:823.665600px;}
.xc3{left:824.746170px;}
.x42{left:828.885098px;}
.xe1{left:833.386167px;}
.xdf{left:838.966164px;}
.x25{left:841.486163px;}
.x7f{left:846.346161px;}
.x6a{left:847.966237px;}
.x31{left:857.865550px;}
.xe7{left:860.746156px;}
.x27{left:867.226153px;}
.x32{left:871.905515px;}
.xd4{left:874.066150px;}
.x5e{left:876.945600px;}
.x2f{left:880.005565px;}
.x20{left:881.626147px;}
.x7e{left:886.486145px;}
.x28{left:890.446039px;}
.xd1{left:897.466141px;}
.x30{left:900.885452px;}
.x2d{left:908.985472px;}
.x5f{left:918.526133px;}
.xbe{left:926.625600px;}
.x2e{left:928.785488px;}
.x2b{left:934.545509px;}
.x21{left:942.106123px;}
.xe4{left:953.986118px;}
.x8f{left:956.866117px;}
.xb3{left:958.666117px;}
.xe0{left:960.466116px;}
.x2c{left:963.525416px;}
.xbf{left:964.965600px;}
.xb4{left:966.046114px;}
.x62{left:971.446111px;}
.x4b{left:991.066104px;}
.xec{left:1000.606100px;}
.xb5{left:1011.406095px;}
.x49{left:1016.446093px;}
.xb6{left:1017.706093px;}
.xd2{left:1042.006083px;}
.xb7{left:1055.686078px;}
.xd0{left:1078.185600px;}
.xa8{left:1101.406059px;}
.x8e{left:1135.066046px;}
.xda{left:1164.586034px;}
@media print{
.v1{vertical-align:-34.559986pt;}
.v4{vertical-align:-30.079988pt;}
.v2{vertical-align:-23.039991pt;}
.v3{vertical-align:-14.719994pt;}
.v5{vertical-align:-11.519995pt;}
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.033281pt;}
.lsa{letter-spacing:0.033438pt;}
.ls2{letter-spacing:0.094688pt;}
.ls9{letter-spacing:0.135625pt;}
.ls0{letter-spacing:0.256000pt;}
.ls4{letter-spacing:0.284147pt;}
.ls8{letter-spacing:0.320000pt;}
.ls3{letter-spacing:0.542657pt;}
.ls6{letter-spacing:1.712194pt;}
.ls5{letter-spacing:3.812712pt;}
.lsb{letter-spacing:20.511992pt;}
.ws24{word-spacing:-37.621745pt;}
.ws20{word-spacing:-33.791986pt;}
.ws36{word-spacing:-32.559347pt;}
.ws39{word-spacing:-31.989747pt;}
.ws14{word-spacing:-29.962228pt;}
.ws2{word-spacing:-29.807316pt;}
.ws1{word-spacing:-29.712628pt;}
.ws21{word-spacing:-28.159989pt;}
.wsc{word-spacing:-26.687989pt;}
.ws17{word-spacing:-26.357749pt;}
.ws38{word-spacing:-23.696788pt;}
.wsf{word-spacing:-23.696632pt;}
.ws2d{word-spacing:-23.663351pt;}
.ws10{word-spacing:-22.559991pt;}
.ws16{word-spacing:-22.527991pt;}
.ws12{word-spacing:-22.239991pt;}
.ws8{word-spacing:-21.078767pt;}
.ws7{word-spacing:-20.816632pt;}
.ws13{word-spacing:-18.833857pt;}
.wsa{word-spacing:-17.839290pt;}
.ws9{word-spacing:-17.835292pt;}
.ws27{word-spacing:-17.791993pt;}
.ws18{word-spacing:-16.895993pt;}
.ws3{word-spacing:-16.603092pt;}
.ws6{word-spacing:-14.453859pt;}
.ws5{word-spacing:-12.480727pt;}
.ws23{word-spacing:-2.762276pt;}
.ws2f{word-spacing:-1.870086pt;}
.ws33{word-spacing:-1.583316pt;}
.ws30{word-spacing:-0.943385pt;}
.ws31{word-spacing:-0.589881pt;}
.ws11{word-spacing:-0.160000pt;}
.ws0{word-spacing:0.000000pt;}
.ws19{word-spacing:0.001947pt;}
.ws34{word-spacing:0.049920pt;}
.ws37{word-spacing:0.575689pt;}
.ws32{word-spacing:0.690068pt;}
.ws1e{word-spacing:0.800638pt;}
.ws25{word-spacing:1.134077pt;}
.ws35{word-spacing:1.407999pt;}
.ws1d{word-spacing:1.440655pt;}
.ws1b{word-spacing:1.850253pt;}
.ws28{word-spacing:3.136031pt;}
.ws2e{word-spacing:3.250051pt;}
.ws2c{word-spacing:5.056030pt;}
.ws1c{word-spacing:5.280672pt;}
.ws1a{word-spacing:7.036782pt;}
.ws29{word-spacing:12.736027pt;}
.ws22{word-spacing:36.159986pt;}
.ws2b{word-spacing:39.871952pt;}
.ws4{word-spacing:49.168881pt;}
.ws2a{word-spacing:56.255977pt;}
.wsb{word-spacing:58.878976pt;}
.ws26{word-spacing:187.135925pt;}
.wse{word-spacing:255.935556pt;}
.ws15{word-spacing:812.110715pt;}
.wsd{word-spacing:867.391342pt;}
.ws1f{word-spacing:1887.181508pt;}
._1d{margin-left:-11.603884pt;}
._15{margin-left:-10.022534pt;}
._f{margin-left:-8.898115pt;}
._3{margin-left:-7.928900pt;}
._c{margin-left:-6.731829pt;}
._8{margin-left:-5.184257pt;}
._9{margin-left:-3.918571pt;}
._2{margin-left:-2.623967pt;}
._0{margin-left:-0.928015pt;}
._1{width:1.024069pt;}
._4{width:2.141513pt;}
._5{width:3.080699pt;}
._a{width:4.441202pt;}
._b{width:5.577140pt;}
._1a{width:16.064070pt;}
._d{width:22.663007pt;}
._19{width:24.725638pt;}
._10{width:30.908304pt;}
._12{width:33.114640pt;}
._11{width:37.907353pt;}
._1c{width:47.007927pt;}
._e{width:53.952025pt;}
._1b{width:54.862047pt;}
._6{width:60.673425pt;}
._14{width:63.999974pt;}
._7{width:66.584299pt;}
._17{width:67.553142pt;}
._13{width:91.640603pt;}
._16{width:99.167922pt;}
._18{width:166.102314pt;}
.fsa{font-size:35.994866pt;}
.fs8{font-size:44.894702pt;}
.fs4{font-size:47.999981pt;}
.fsb{font-size:51.992299pt;}
.fs14{font-size:53.119979pt;}
.fs1{font-size:63.999974pt;}
.fse{font-size:64.155728pt;}
.fs11{font-size:64.170108pt;}
.fs7{font-size:65.302374pt;}
.fs6{font-size:70.440505pt;}
.fsc{font-size:74.879970pt;}
.fsd{font-size:75.822903pt;}
.fs9{font-size:75.989836pt;}
.fs13{font-size:79.999968pt;}
.fs5{font-size:81.274634pt;}
.fs3{font-size:85.119966pt;}
.fs16{font-size:90.879964pt;}
.fsf{font-size:93.320496pt;}
.fs10{font-size:93.340229pt;}
.fs0{font-size:95.999962pt;}
.fs2{font-size:106.879957pt;}
.fs12{font-size:117.119953pt;}
.fs15{font-size:127.999949pt;}
.y16f{bottom:-2.239696pt;}
.yf5{bottom:-0.959697pt;}
.y0{bottom:0.000000pt;}
.y11b{bottom:0.000303pt;}
.y7f{bottom:4.320248pt;}
.y78{bottom:4.320254pt;}
.y72{bottom:4.320255pt;}
.y64{bottom:4.320260pt;}
.y69{bottom:4.320261pt;}
.y76{bottom:4.320263pt;}
.y7d{bottom:4.320268pt;}
.y74{bottom:4.320274pt;}
.y6e{bottom:4.320280pt;}
.y70{bottom:4.320284pt;}
.y66{bottom:4.320289pt;}
.y7a{bottom:4.320294pt;}
.y155{bottom:4.480148pt;}
.y6c{bottom:4.480272pt;}
.y121{bottom:4.960087pt;}
.y81{bottom:5.280103pt;}
.yf4{bottom:36.693333pt;}
.y1a5{bottom:41.173634pt;}
.y142{bottom:45.173633pt;}
.y12f{bottom:46.613632pt;}
.y22{bottom:50.773630pt;}
.y44{bottom:52.213630pt;}
.y79{bottom:54.613333pt;}
.ya{bottom:56.373628pt;}
.y16e{bottom:60.053627pt;}
.y46{bottom:60.373627pt;}
.y108{bottom:61.653626pt;}
.yb6{bottom:62.453626pt;}
.y1a4{bottom:63.573625pt;}
.y67{bottom:64.853333pt;}
.y41{bottom:65.493624pt;}
.y65{bottom:66.293333pt;}
.y43{bottom:67.573624pt;}
.y141{bottom:69.173623pt;}
.y42{bottom:71.733622pt;}
.y17d{bottom:72.533622pt;}
.ye{bottom:74.933621pt;}
.y9{bottom:75.573620pt;}
.y45{bottom:75.733620pt;}
.y6f{bottom:77.973333pt;}
.y40{bottom:80.853618pt;}
.y14c{bottom:81.013618pt;}
.y23{bottom:81.493618pt;}
.y21{bottom:82.773618pt;}
.y16d{bottom:85.653616pt;}
.y1a3{bottom:85.973616pt;}
.y107{bottom:87.253616pt;}
.y6d{bottom:89.653333pt;}
.yb5{bottom:90.613614pt;}
.y140{bottom:93.173613pt;}
.y8{bottom:94.773613pt;}
.y14b{bottom:103.413609pt;}
.y73{bottom:104.213333pt;}
.y49{bottom:106.293608pt;}
.yd{bottom:106.933608pt;}
.y6b{bottom:108.533333pt;}
.y1a2{bottom:108.853607pt;}
.y3f{bottom:109.493607pt;}
.y1b1{bottom:109.813607pt;}
.y16c{bottom:111.253606pt;}
.y20{bottom:114.773605pt;}
.yb4{bottom:116.213604pt;}
.y13f{bottom:117.173604pt;}
.y48{bottom:117.653604pt;}
.y7c{bottom:118.773333pt;}
.y117{bottom:119.093603pt;}
.y11{bottom:121.653602pt;}
.y119{bottom:123.893601pt;}
.y3e{bottom:124.693601pt;}
.y14a{bottom:125.813600pt;}
.y12e{bottom:126.453600pt;}
.y75{bottom:131.893333pt;}
.y47{bottom:132.853598pt;}
.y7{bottom:133.173597pt;}
.y1a1{bottom:134.453597pt;}
.y68{bottom:136.373333pt;}
.y16b{bottom:136.853596pt;}
.y106{bottom:138.453595pt;}
.yc{bottom:138.933595pt;}
.y63{bottom:139.253333pt;}
.yc8{bottom:140.693594pt;}
.y13e{bottom:141.173594pt;}
.yb3{bottom:141.813594pt;}
.y116{bottom:144.693593pt;}
.y7b{bottom:145.013593pt;}
.y6a{bottom:146.453592pt;}
.y1f{bottom:146.773592pt;}
.ye9{bottom:146.933592pt;}
.y149{bottom:148.213591pt;}
.y1b0{bottom:150.613590pt;}
.y71{bottom:150.933333pt;}
.y3b{bottom:151.253590pt;}
.y6{bottom:152.373590pt;}
.y77{bottom:155.253333pt;}
.y4b{bottom:157.333588pt;}
.y1a0{bottom:160.053587pt;}
.y12d{bottom:161.013586pt;}
.y16a{bottom:162.453586pt;}
.yc7{bottom:163.093585pt;}
.y13d{bottom:165.173585pt;}
.y3a{bottom:166.613584pt;}
.yb2{bottom:167.413584pt;}
.y7e{bottom:168.373333pt;}
.y115{bottom:170.293583pt;}
.y148{bottom:170.613582pt;}
.y5{bottom:171.573582pt;}
.ye8{bottom:172.533582pt;}
.y4a{bottom:172.693582pt;}
.y1e{bottom:178.773579pt;}
.y17b{bottom:179.573579pt;}
.ya7{bottom:180.053579pt;}
.yc6{bottom:185.493576pt;}
.y19f{bottom:185.653576pt;}
.yd1{bottom:186.773576pt;}
.y169{bottom:188.053575pt;}
.y13c{bottom:189.173575pt;}
.y25{bottom:189.333575pt;}
.y105{bottom:189.653575pt;}
.yb1{bottom:193.013573pt;}
.y12c{bottom:195.573572pt;}
.y114{bottom:195.893572pt;}
.y171{bottom:196.693572pt;}
.y4f{bottom:200.213571pt;}
.y17e{bottom:201.013570pt;}
.y24{bottom:207.093568pt;}
.y3d{bottom:207.413568pt;}
.ya6{bottom:208.853567pt;}
.y1d{bottom:210.773566pt;}
.yd0{bottom:212.373566pt;}
.y13b{bottom:213.173565pt;}
.ybb{bottom:213.333565pt;}
.y104{bottom:215.253565pt;}
.y147{bottom:215.413565pt;}
.y4e{bottom:215.573564pt;}
.y192{bottom:218.133563pt;}
.yb0{bottom:218.613563pt;}
.y113{bottom:221.493562pt;}
.y3c{bottom:222.613562pt;}
.ye7{bottom:223.733561pt;}
.y1af{bottom:226.773560pt;}
.y5c{bottom:228.693559pt;}
.ya2{bottom:230.133559pt;}
.yc5{bottom:230.293559pt;}
.ya5{bottom:237.653556pt;}
.y146{bottom:237.813556pt;}
.y90{bottom:238.773555pt;}
.y168{bottom:239.253555pt;}
.y92{bottom:241.653554pt;}
.yba{bottom:242.133554pt;}
.y1c{bottom:242.773554pt;}
.yaf{bottom:244.213553pt;}
.ye6{bottom:249.333551pt;}
.y199{bottom:252.373550pt;}
.yc4{bottom:252.693550pt;}
.y86{bottom:254.613549pt;}
.y4d{bottom:256.373548pt;}
.y37{bottom:257.333548pt;}
.y145{bottom:260.213547pt;}
.y8f{bottom:260.693546pt;}
.y12a{bottom:262.933545pt;}
.y91{bottom:263.573545pt;}
.y5d{bottom:263.733545pt;}
.y167{bottom:264.853545pt;}
.ya4{bottom:266.453544pt;}
.y19e{bottom:268.693543pt;}
.yae{bottom:269.813543pt;}
.y31{bottom:270.933542pt;}
.y4c{bottom:271.733542pt;}
.y36{bottom:272.693542pt;}
.yf6{bottom:274.293541pt;}
.ye5{bottom:274.933541pt;}
.yc3{bottom:275.093541pt;}
.y112{bottom:275.893540pt;}
.ycf{bottom:276.213540pt;}
.y198{bottom:277.973539pt;}
.y8e{bottom:279.573539pt;}
.y144{bottom:282.613538pt;}
.y12b{bottom:289.813535pt;}
.y5a{bottom:290.133535pt;}
.y166{bottom:291.093534pt;}
.y17a{bottom:292.053534pt;}
.y19d{bottom:294.293533pt;}
.yad{bottom:295.413533pt;}
.y29{bottom:296.693532pt;}
.y95{bottom:298.613531pt;}
.yc2{bottom:299.253531pt;}
.yb9{bottom:299.733531pt;}
.y5e{bottom:300.053531pt;}
.y39{bottom:300.213531pt;}
.y129{bottom:300.373531pt;}
.ye4{bottom:300.533530pt;}
.y8d{bottom:301.493530pt;}
.y197{bottom:303.573529pt;}
.y157{bottom:306.133528pt;}
.yf1{bottom:306.613528pt;}
.y1b{bottom:306.773528pt;}
.y1ae{bottom:308.373527pt;}
.y58{bottom:312.853526pt;}
.y38{bottom:315.573524pt;}
.yee{bottom:319.093523pt;}
.y165{bottom:319.893523pt;}
.y94{bottom:320.533522pt;}
.y93{bottom:321.973522pt;}
.ye1{bottom:322.293522pt;}
.yb8{bottom:328.533519pt;}
.y51{bottom:328.853519pt;}
.y103{bottom:329.173519pt;}
.y2a{bottom:330.613518pt;}
.y5f{bottom:335.093517pt;}
.y1ad{bottom:335.573516pt;}
.y50{bottom:344.053513pt;}
.y10e{bottom:345.173513pt;}
.y19c{bottom:345.493512pt;}
.ye0{bottom:346.293512pt;}
.y164{bottom:348.693511pt;}
.y8c{bottom:349.653511pt;}
.y96{bottom:352.533510pt;}
.y111{bottom:352.693510pt;}
.ycc{bottom:353.173509pt;}
.y189{bottom:354.453509pt;}
.y196{bottom:354.773509pt;}
.y10d{bottom:364.373505pt;}
.y2b{bottom:365.813504pt;}
.y128{bottom:366.613504pt;}
.ydf{bottom:370.293503pt;}
.y1a{bottom:370.773502pt;}
.y143{bottom:371.093502pt;}
.y60{bottom:371.573502pt;}
.y85{bottom:373.813501pt;}
.y102{bottom:373.973501pt;}
.ycb{bottom:375.573500pt;}
.y99{bottom:375.893500pt;}
.y1ac{bottom:376.373500pt;}
.yed{bottom:376.693500pt;}
.y163{bottom:377.493500pt;}
.y110{bottom:378.293499pt;}
.y195{bottom:380.373499pt;}
.y10c{bottom:383.573497pt;}
.y156{bottom:384.693497pt;}
.y11a{bottom:388.693495pt;}
.y35{bottom:389.973495pt;}
.y32{bottom:391.733494pt;}
.ye3{bottom:393.813493pt;}
.yde{bottom:394.293493pt;}
.y127{bottom:395.413493pt;}
.y19b{bottom:397.333492pt;}
.y188{bottom:397.653492pt;}
.yca{bottom:397.973491pt;}
.y2c{bottom:399.733491pt;}
.y19{bottom:402.773490pt;}
.y101{bottom:404.213489pt;}
.y5b{bottom:405.813488pt;}
.y194{bottom:405.973488pt;}
.y162{bottom:406.293488pt;}
.y98{bottom:406.453488pt;}
.y61{bottom:408.053487pt;}
.y8b{bottom:409.493487pt;}
.y34{bottom:411.413486pt;}
.y1ab{bottom:417.173484pt;}
.ydd{bottom:418.293483pt;}
.y154{bottom:418.613333pt;}
.yc9{bottom:422.133482pt;}
.y153{bottom:423.093481pt;}
.y126{bottom:424.213481pt;}
.y19a{bottom:426.133480pt;}
.y100{bottom:426.613480pt;}
.y97{bottom:428.373479pt;}
.y8a{bottom:431.253478pt;}
.y193{bottom:431.573478pt;}
.y2d{bottom:433.493477pt;}
.yec{bottom:434.293477pt;}
.y18{bottom:434.773477pt;}
.y187{bottom:440.853474pt;}
.ya1{bottom:441.813474pt;}
.y84{bottom:441.973474pt;}
.ydc{bottom:442.293474pt;}
.y158{bottom:442.773474pt;}
.y62{bottom:443.093473pt;}
.y14f{bottom:444.373473pt;}
.yaa{bottom:447.573472pt;}
.yff{bottom:449.013471pt;}
.yf3{bottom:449.493471pt;}
.y161{bottom:450.133471pt;}
.y10b{bottom:450.293471pt;}
.y125{bottom:453.013469pt;}
.y9b{bottom:453.173469pt;}
.yf8{bottom:455.253469pt;}
.y18d{bottom:456.693468pt;}
.y17c{bottom:457.973467pt;}
.y4{bottom:459.573467pt;}
.y152{bottom:461.493466pt;}
.y9d{bottom:461.973466pt;}
.y159{bottom:464.373465pt;}
.yc1{bottom:465.653464pt;}
.ydb{bottom:466.293464pt;}
.y17{bottom:466.773464pt;}
.y33{bottom:466.933464pt;}
.y170{bottom:467.093464pt;}
.y2e{bottom:467.413464pt;}
.y184{bottom:469.333463pt;}
.y13a{bottom:470.933462pt;}
.y160{bottom:471.733462pt;}
.yf2{bottom:471.893462pt;}
.y83{bottom:472.373462pt;}
.y10a{bottom:472.853462pt;}
.y14e{bottom:473.173461pt;}
.y191{bottom:474.133461pt;}
.yf7{bottom:474.453461pt;}
.y9a{bottom:475.093461pt;}
.ya9{bottom:476.373460pt;}
.ya3{bottom:476.533460pt;}
.yfe{bottom:479.893459pt;}
.y3{bottom:480.533458pt;}
.y124{bottom:481.813458pt;}
.y9c{bottom:483.733457pt;}
.y186{bottom:484.053457pt;}
.ye2{bottom:484.373457pt;}
.y9f{bottom:485.333457pt;}
.yc0{bottom:488.053455pt;}
.yda{bottom:490.293455pt;}
.y109{bottom:492.053454pt;}
.y183{bottom:493.333453pt;}
.yf0{bottom:494.293453pt;}
.y59{bottom:494.773453pt;}
.y139{bottom:494.933453pt;}
.yce{bottom:495.413453pt;}
.y16{bottom:498.773451pt;}
.y179{bottom:500.053451pt;}
.y2f{bottom:502.613450pt;}
.y82{bottom:504.053449pt;}
.ya8{bottom:505.173449pt;}
.y9e{bottom:507.093448pt;}
.yd9{bottom:514.293445pt;}
.y89{bottom:514.453445pt;}
.y182{bottom:517.333444pt;}
.ya0{bottom:517.493444pt;}
.y14d{bottom:517.813444pt;}
.ybf{bottom:518.293443pt;}
.y138{bottom:518.933443pt;}
.y123{bottom:519.253443pt;}
.yeb{bottom:520.693442pt;}
.y178{bottom:525.653440pt;}
.y80{bottom:529.333333pt;}
.y15f{bottom:530.133439pt;}
.y88{bottom:536.373436pt;}
.y30{bottom:536.533436pt;}
.y2{bottom:538.133435pt;}
.yd8{bottom:538.293435pt;}
.y1aa{bottom:539.573435pt;}
.ybe{bottom:540.693434pt;}
.y137{bottom:542.933433pt;}
.y122{bottom:548.053431pt;}
.yef{bottom:549.013431pt;}
.yfd{bottom:549.973431pt;}
.yb7{bottom:553.493429pt;}
.y177{bottom:557.653428pt;}
.y15e{bottom:558.933427pt;}
.yd7{bottom:562.293426pt;}
.y15{bottom:562.773426pt;}
.ybd{bottom:563.093425pt;}
.y1a9{bottom:566.773424pt;}
.y1{bottom:566.933424pt;}
.y190{bottom:570.133423pt;}
.y120{bottom:571.893333pt;}
.yfc{bottom:572.373422pt;}
.y18c{bottom:572.693422pt;}
.y54{bottom:573.973421pt;}
.yea{bottom:578.293419pt;}
.y176{bottom:583.253417pt;}
.y87{bottom:585.973416pt;}
.yd6{bottom:586.293416pt;}
.ybc{bottom:587.253416pt;}
.y53{bottom:590.453414pt;}
.y28{bottom:590.613414pt;}
.y136{bottom:590.933414pt;}
.y10f{bottom:601.333410pt;}
.y11f{bottom:605.653408pt;}
.y1a8{bottom:607.573408pt;}
.y18b{bottom:607.893408pt;}
.y175{bottom:608.853407pt;}
.yd5{bottom:610.293407pt;}
.y135{bottom:614.933405pt;}
.y15d{bottom:619.413403pt;}
.y118{bottom:622.933401pt;}
.yfb{bottom:624.373401pt;}
.y151{bottom:626.613400pt;}
.y14{bottom:626.773400pt;}
.y181{bottom:626.933400pt;}
.yd4{bottom:634.293397pt;}
.y11e{bottom:634.453397pt;}
.y134{bottom:638.933395pt;}
.y18a{bottom:643.093393pt;}
.y15c{bottom:648.213391pt;}
.y1a7{bottom:648.373391pt;}
.y27{bottom:651.093390pt;}
.y10{bottom:653.333389pt;}
.y150{bottom:655.413389pt;}
.y57{bottom:655.893388pt;}
.y56{bottom:656.053388pt;}
.yd3{bottom:658.293387pt;}
.y13{bottom:658.773387pt;}
.y180{bottom:658.933387pt;}
.y133{bottom:662.933385pt;}
.y11d{bottom:663.253385pt;}
.y18f{bottom:666.133384pt;}
.y174{bottom:666.453384pt;}
.y26{bottom:668.213383pt;}
.y55{bottom:672.373382pt;}
.yac{bottom:674.293381pt;}
.yfa{bottom:675.573380pt;}
.yf{bottom:675.893380pt;}
.yd2{bottom:682.293378pt;}
.y132{bottom:686.933376pt;}
.y17f{bottom:690.933374pt;}
.ycd{bottom:691.573374pt;}
.y173{bottom:692.053374pt;}
.y15b{bottom:694.453373pt;}
.yb{bottom:698.613371pt;}
.yab{bottom:699.093371pt;}
.y11c{bottom:700.693370pt;}
.yf9{bottom:701.173370pt;}
.y18e{bottom:705.813368pt;}
.y131{bottom:710.933366pt;}
.y172{bottom:717.653364pt;}
.y1a6{bottom:719.093363pt;}
.y12{bottom:722.773362pt;}
.y15a{bottom:723.253361pt;}
.y185{bottom:723.893361pt;}
.y52{bottom:724.053361pt;}
.y130{bottom:734.933357pt;}
.h32{height:16.800000pt;}
.h2c{height:18.720000pt;}
.h31{height:25.760000pt;}
.h1f{height:26.880000pt;}
.h2e{height:28.960000pt;}
.hb{height:37.541520pt;}
.h9{height:46.823771pt;}
.h2b{height:48.023418pt;}
.h5{height:50.062480pt;}
.h7{height:50.629113pt;}
.h25{height:53.145916pt;}
.hc{height:54.226343pt;}
.h1e{height:57.600000pt;}
.h2d{height:61.278725pt;}
.h29{height:64.031224pt;}
.h2{height:66.749973pt;}
.h10{height:66.912419pt;}
.h22{height:66.927417pt;}
.h12{height:67.364967pt;}
.h8{height:68.108335pt;}
.h1b{height:71.040000pt;}
.h28{height:74.916533pt;}
.h18{height:75.200000pt;}
.hd{height:78.097469pt;}
.he{height:79.080918pt;}
.ha{height:79.255025pt;}
.h2f{height:80.039030pt;}
.h24{height:83.437467pt;}
.h6{height:84.766904pt;}
.h26{height:85.161528pt;}
.hf{height:86.880000pt;}
.h4{height:88.777464pt;}
.h14{height:90.880000pt;}
.h34{height:90.924339pt;}
.h1a{height:94.880000pt;}
.h27{height:96.046837pt;}
.h20{height:97.330361pt;}
.h21{height:97.350942pt;}
.h1{height:100.124960pt;}
.h30{height:106.932145pt;}
.h1d{height:109.440000pt;}
.h3{height:111.472455pt;}
.h15{height:119.680000pt;}
.h23{height:122.152451pt;}
.h19{height:124.000000pt;}
.h33{height:133.499947pt;}
.h16{height:138.560000pt;}
.h17{height:149.760000pt;}
.h11{height:161.920000pt;}
.h13{height:163.360000pt;}
.h1c{height:173.600000pt;}
.h2a{height:281.120000pt;}
.h0{height:793.333333pt;}
.w19{width:7.040000pt;}
.w11{width:17.440000pt;}
.w14{width:22.720000pt;}
.w13{width:34.080000pt;}
.wf{width:57.440000pt;}
.w1a{width:68.800000pt;}
.wb{width:70.400000pt;}
.w8{width:74.880000pt;}
.w18{width:79.520000pt;}
.w17{width:82.880000pt;}
.w1{width:86.400000pt;}
.w4{width:89.440000pt;}
.wa{width:93.760000pt;}
.we{width:106.880000pt;}
.w5{width:117.120000pt;}
.w9{width:121.440000pt;}
.w6{width:136.160000pt;}
.w7{width:147.680000pt;}
.w2{width:159.360000pt;}
.wc{width:159.520000pt;}
.w15{width:160.320000pt;}
.w3{width:160.800000pt;}
.wd{width:171.200000pt;}
.w12{width:252.800000pt;}
.w16{width:356.160000pt;}
.w10{width:739.520000pt;}
.w0{width:1122.666667pt;}
.x0{left:0.000000pt;}
.x51{left:12.000662pt;}
.xab{left:14.080588pt;}
.xc7{left:87.027432pt;}
.xa1{left:90.867430pt;}
.xa4{left:94.547429pt;}
.x8c{left:95.667428pt;}
.xe8{left:102.227426pt;}
.xae{left:109.747423pt;}
.x89{left:117.747420pt;}
.xa5{left:122.547418pt;}
.xe6{left:124.947950pt;}
.x93{left:127.667949pt;}
.xed{left:129.097282pt;}
.xc6{left:132.307414pt;}
.xa3{left:141.587943pt;}
.x92{left:145.907942pt;}
.xbb{left:147.507941pt;}
.xb2{left:152.147939pt;}
.x1{left:154.227938pt;}
.xa6{left:160.467936pt;}
.xb9{left:161.587935pt;}
.xb{left:162.707935pt;}
.x90{left:163.827934pt;}
.xad{left:175.027930pt;}
.x18{left:176.787929pt;}
.x46{left:178.227929pt;}
.xde{left:181.107928pt;}
.x91{left:182.867927pt;}
.x60{left:193.587200pt;}
.xdc{left:200.467920pt;}
.xc4{left:205.747918pt;}
.x8b{left:208.467917pt;}
.xe9{left:211.347382pt;}
.x47{left:214.227914pt;}
.xdb{left:219.347379pt;}
.xce{left:223.027911pt;}
.x63{left:228.627909pt;}
.x10{left:229.907908pt;}
.x8d{left:237.907905pt;}
.x72{left:238.868501pt;}
.xeb{left:240.947370pt;}
.xcd{left:246.707901pt;}
.xba{left:247.667901pt;}
.x6{left:258.707897pt;}
.x1e{left:260.787896pt;}
.x48{left:262.547895pt;}
.x7b{left:266.549116pt;}
.x1f{left:274.227890pt;}
.x4a{left:283.507887pt;}
.x88{left:287.187885pt;}
.xbd{left:291.187884pt;}
.x12{left:296.307881pt;}
.x94{left:304.947878pt;}
.x9{left:306.067878pt;}
.x52{left:307.027200pt;}
.x43{left:308.307877pt;}
.x73{left:316.148446pt;}
.x76{left:321.908480pt;}
.x23{left:323.187871pt;}
.x4f{left:324.947839pt;}
.x24{left:328.627827pt;}
.x50{left:331.827200pt;}
.x4e{left:335.027834pt;}
.xac{left:336.467865pt;}
.x74{left:340.948377pt;}
.xc8{left:341.907330pt;}
.x9f{left:343.827862pt;}
.xa0{left:344.947862pt;}
.x77{left:354.068514pt;}
.x11{left:355.027858pt;}
.x87{left:359.347856pt;}
.x85{left:364.307854pt;}
.x95{left:366.547853pt;}
.x75{left:370.068401pt;}
.x83{left:372.947851pt;}
.xc9{left:377.907716pt;}
.xa7{left:381.907847pt;}
.x79{left:383.188671pt;}
.x4d{left:386.067846pt;}
.x22{left:390.867844pt;}
.x4c{left:397.107841pt;}
.x84{left:398.227841pt;}
.x53{left:401.747200pt;}
.x9c{left:403.827838pt;}
.x99{left:404.787838pt;}
.x7c{left:406.549060pt;}
.x7a{left:410.868619pt;}
.xaf{left:411.987302pt;}
.x2{left:412.947835pt;}
.x7d{left:414.067834pt;}
.x16{left:415.667834pt;}
.x78{left:418.228588pt;}
.x8a{left:419.347832pt;}
.xd3{left:420.627832pt;}
.x14{left:423.027831pt;}
.xb8{left:425.107830pt;}
.x6f{left:427.027766pt;}
.x97{left:428.307829pt;}
.x55{left:429.427200pt;}
.x15{left:433.427827pt;}
.x8{left:434.867826pt;}
.x61{left:442.387823pt;}
.xf{left:443.347823pt;}
.x54{left:444.467822pt;}
.x19{left:448.307821pt;}
.x17{left:450.547820pt;}
.x7{left:452.947819pt;}
.xe2{left:454.387818pt;}
.x3e{left:456.307952pt;}
.x3{left:458.867816pt;}
.xb0{left:459.987816pt;}
.xd{left:460.947816pt;}
.x9e{left:462.227815pt;}
.x82{left:463.507815pt;}
.x3f{left:465.587875pt;}
.x9a{left:466.547813pt;}
.xe5{left:472.467811pt;}
.xc{left:474.227810pt;}
.x1a{left:475.667810pt;}
.x86{left:476.627809pt;}
.x1b{left:477.907809pt;}
.xe{left:479.507808pt;}
.xa{left:480.627808pt;}
.x1d{left:481.747807pt;}
.x1c{left:483.187807pt;}
.x29{left:486.228124pt;}
.x40{left:489.267793pt;}
.x3c{left:492.307813pt;}
.x5{left:495.987802pt;}
.x3b{left:500.627796pt;}
.x3d{left:503.667789pt;}
.x4{left:511.987795pt;}
.x9d{left:513.427795pt;}
.x98{left:515.187794pt;}
.x13{left:516.627793pt;}
.x57{left:518.547200pt;}
.x81{left:531.827787pt;}
.x96{left:533.107787pt;}
.x2a{left:535.667960pt;}
.x56{left:540.307200pt;}
.xe3{left:541.747783pt;}
.x70{left:543.667720pt;}
.xbc{left:548.147781pt;}
.x39{left:549.107652pt;}
.x37{left:553.267650pt;}
.x71{left:555.347715pt;}
.x9b{left:557.747777pt;}
.x6d{left:561.107549pt;}
.x3a{left:562.547627pt;}
.x5a{left:566.547200pt;}
.xb1{left:568.467773pt;}
.x38{left:569.747550pt;}
.x58{left:571.027200pt;}
.xd5{left:573.587771pt;}
.xa2{left:581.747767pt;}
.xcb{left:586.067766pt;}
.xca{left:593.907762pt;}
.xa9{left:597.107761pt;}
.x6e{left:599.187477pt;}
.xc0{left:601.107760pt;}
.xd6{left:603.667759pt;}
.xaa{left:605.427758pt;}
.xc5{left:606.867757pt;}
.x59{left:619.187200pt;}
.x35{left:623.347546pt;}
.x26{left:629.587782pt;}
.x36{left:630.547537pt;}
.x80{left:631.987747pt;}
.xcc{left:634.067746pt;}
.xdd{left:638.867744pt;}
.x44{left:642.227743pt;}
.xd7{left:645.587742pt;}
.xc1{left:649.107740pt;}
.xea{left:650.547206pt;}
.x64{left:653.107739pt;}
.xee{left:655.347338pt;}
.x65{left:660.307741pt;}
.x33{left:674.867381pt;}
.xc2{left:685.107726pt;}
.x45{left:688.147725pt;}
.x5b{left:689.587724pt;}
.x66{left:692.467775pt;}
.x34{left:694.547394pt;}
.x5c{left:697.907200pt;}
.x6b{left:699.827811pt;}
.xcf{left:702.547719pt;}
.x5d{left:705.267200pt;}
.x68{left:707.027787pt;}
.x67{left:718.707782pt;}
.x6c{left:720.147790pt;}
.x41{left:722.386718pt;}
.xd8{left:725.107200pt;}
.x69{left:730.387777pt;}
.xd9{left:732.147200pt;}
.xc3{left:733.107707pt;}
.x42{left:736.786753pt;}
.xe1{left:740.787704pt;}
.xdf{left:745.747702pt;}
.x25{left:747.987701pt;}
.x7f{left:752.307699pt;}
.x6a{left:753.747766pt;}
.x31{left:762.547156pt;}
.xe7{left:765.107694pt;}
.x27{left:770.867692pt;}
.x32{left:775.027124pt;}
.xd4{left:776.947689pt;}
.x5e{left:779.507200pt;}
.x2f{left:782.227169pt;}
.x20{left:783.667687pt;}
.x7e{left:787.987685pt;}
.x28{left:791.507590pt;}
.xd1{left:797.747681pt;}
.x30{left:800.787068pt;}
.x2d{left:807.987086pt;}
.x5f{left:816.467673pt;}
.xbe{left:823.667200pt;}
.x2e{left:825.587100pt;}
.x2b{left:830.707119pt;}
.x21{left:837.427665pt;}
.xe4{left:847.987661pt;}
.x8f{left:850.547660pt;}
.xb3{left:852.147659pt;}
.xe0{left:853.747659pt;}
.x2c{left:856.467036pt;}
.xbf{left:857.747200pt;}
.xb4{left:858.707657pt;}
.x62{left:863.507655pt;}
.x4b{left:880.947648pt;}
.xec{left:889.427644pt;}
.xb5{left:899.027640pt;}
.x49{left:903.507639pt;}
.xb6{left:904.627638pt;}
.xd2{left:926.227630pt;}
.xb7{left:938.387625pt;}
.xd0{left:958.387200pt;}
.xa8{left:979.027608pt;}
.x8e{left:1008.947596pt;}
.xda{left:1035.187586pt;}
}




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