
    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_a97dfa5627d86af6ae9bd1ac.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_6a605f8950e501cdabcf1694.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.969238;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_f11ae53e122390cf50082409.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.965000;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_2a86167b47fc1a6aaa80d8f9.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.938477;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_be3cf1f185f3126fea1d97b4.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.938477;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_69a74c327d27173deb39a082.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.942383;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_588d59f42f9d4e5117d92f3f.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_cb8e7e546747c4426769a452.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.927734;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-35.273436px;}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls21{letter-spacing:0.432013px;}
.ls16{letter-spacing:0.507534px;}
.ls1f{letter-spacing:0.540000px;}
.ls23{letter-spacing:0.624019px;}
.ls3{letter-spacing:0.864000px;}
.ls25{letter-spacing:1.104034px;}
.ls24{letter-spacing:1.200037px;}
.ls26{letter-spacing:1.536047px;}
.ls12{letter-spacing:2.106000px;}
.ls15{letter-spacing:2.430000px;}
.ls22{letter-spacing:2.688082px;}
.ls14{letter-spacing:2.754000px;}
.lsd{letter-spacing:3.024000px;}
.ls8{letter-spacing:3.078000px;}
.ls9{letter-spacing:3.240000px;}
.lsb{letter-spacing:3.726000px;}
.ls1{letter-spacing:4.050000px;}
.ls11{letter-spacing:6.156000px;}
.lsa{letter-spacing:6.210000px;}
.ls13{letter-spacing:6.750000px;}
.ls5{letter-spacing:7.506000px;}
.lsc{letter-spacing:8.640264px;}
.ls10{letter-spacing:9.828000px;}
.lsf{letter-spacing:10.260000px;}
.ls4{letter-spacing:10.584000px;}
.ls20{letter-spacing:16.542000px;}
.lse{letter-spacing:35.586000px;}
.ls18{letter-spacing:157.662504px;}
.ls1a{letter-spacing:159.972424px;}
.ls19{letter-spacing:160.014422px;}
.ls1d{letter-spacing:240.063632px;}
.ls1e{letter-spacing:240.105630px;}
.ls1c{letter-spacing:293.779759px;}
.ls17{letter-spacing:399.364079px;}
.ls7{letter-spacing:505.423654px;}
.ls1b{letter-spacing:665.322412px;}
.ls6{letter-spacing:689.573543px;}
.ls2{letter-spacing:934.014314px;}
.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;}
}
.ws1{word-spacing:-21.129671px;}
.ws10{word-spacing:-14.958000px;}
.ws24{word-spacing:-14.210587px;}
.ws23{word-spacing:-13.296406px;}
.ws0{word-spacing:-11.633594px;}
.ws3{word-spacing:-10.508889px;}
.ws4{word-spacing:0.000000px;}
.ws1d{word-spacing:0.041999px;}
.ws6{word-spacing:1.350000px;}
.ws5{word-spacing:2.592000px;}
.ws13{word-spacing:19.865308px;}
.ws1c{word-spacing:32.170879px;}
.ws14{word-spacing:37.378697px;}
.ws15{word-spacing:55.438068px;}
.ws1b{word-spacing:55.480066px;}
.ws17{word-spacing:60.729883px;}
.ws1a{word-spacing:65.979700px;}
.ws16{word-spacing:66.021699px;}
.ws1e{word-spacing:67.785637px;}
.ws20{word-spacing:73.077453px;}
.ws1f{word-spacing:78.327270px;}
.ws21{word-spacing:78.369268px;}
.ws22{word-spacing:108.011799px;}
.ws18{word-spacing:157.027500px;}
.ws2{word-spacing:330.012000px;}
.ws11{word-spacing:388.360462px;}
.wsf{word-spacing:505.325965px;}
.wsd{word-spacing:512.297722px;}
.wse{word-spacing:512.339721px;}
.wsa{word-spacing:519.353476px;}
.wsc{word-spacing:524.015314px;}
.ws8{word-spacing:526.367232px;}
.wsb{word-spacing:528.635153px;}
.ws7{word-spacing:528.719150px;}
.ws9{word-spacing:542.382365px;}
.ws19{word-spacing:883.090116px;}
.ws12{word-spacing:893.981093px;}
._1{margin-left:-10.189995px;}
._22{margin-left:-7.792005px;}
._18{margin-left:-6.750000px;}
._b{margin-left:-5.417811px;}
._7{margin-left:-4.416135px;}
._2{margin-left:-2.845854px;}
._0{margin-left:-1.652432px;}
._3{width:1.152035px;}
._9{width:2.268105px;}
._8{width:3.515563px;}
._a{width:4.649616px;}
._c{width:5.869151px;}
._13{width:7.182000px;}
._16{width:8.973281px;}
._17{width:10.476000px;}
._11{width:12.150000px;}
._14{width:13.297395px;}
._21{width:15.597204px;}
._10{width:17.172000px;}
._1e{width:18.594854px;}
._6{width:20.293639px;}
._d{width:21.378331px;}
._15{width:23.100820px;}
._12{width:24.246000px;}
._1f{width:25.636438px;}
._19{width:26.646627px;}
._1b{width:30.672000px;}
._4b{width:32.562000px;}
._5{width:38.849934px;}
._4{width:50.299994px;}
._51{width:52.498170px;}
._4c{width:65.232000px;}
._5c{width:67.113661px;}
._60{width:72.299304px;}
._50{width:73.497438px;}
._56{width:75.933353px;}
._58{width:77.028549px;}
._5a{width:78.217863px;}
._7b{width:79.985036px;}
._5b{width:81.141172px;}
._4f{width:82.821113px;}
._79{width:84.123068px;}
._5f{width:85.890240px;}
._59{width:87.059731px;}
._68{width:88.112929px;}
._20{width:90.002745px;}
._76{width:91.136823px;}
._55{width:93.380049px;}
._4e{width:94.496706px;}
._57{width:95.756662px;}
._4d{width:99.452911px;}
._67{width:100.608501px;}
._70{width:102.728419px;}
._81{width:104.536120px;}
._63{width:105.839923px;}
._74{width:107.516252px;}
._6c{width:109.658177px;}
._54{width:110.876135px;}
._69{width:112.052094px;}
._80{width:113.519590px;}
._62{width:114.949993px;}
._77{width:116.335945px;}
._8e{width:117.914990px;}
._53{width:120.199810px;}
._6b{width:121.333771px;}
._7e{width:123.049906px;}
._7c{width:124.282101px;}
._5e{width:126.583588px;}
._64{width:128.431523px;}
._44{width:129.565484px;}
._52{width:131.875403px;}
._7a{width:137.755198px;}
._72{width:140.107116px;}
._75{width:142.501033px;}
._5d{width:146.490894px;}
._61{width:149.388793px;}
._6e{width:151.782709px;}
._83{width:153.798639px;}
._66{width:155.856567px;}
._6d{width:159.409727px;}
._78{width:161.190381px;}
._84{width:166.398200px;}
._6a{width:167.532160px;}
._73{width:170.556055px;}
._6f{width:179.207753px;}
._48{width:183.775548px;}
._71{width:193.823244px;}
._38{width:201.844964px;}
._39{width:207.346772px;}
._8d{width:211.500315px;}
._8f{width:213.097500px;}
._90{width:215.525300px;}
._4a{width:227.632065px;}
._37{width:234.561824px;}
._8c{width:244.851465px;}
._8b{width:251.823222px;}
._7d{width:256.485059px;}
._82{width:263.456816px;}
._36{width:267.236685px;}
._65{width:269.004864px;}
._47{width:274.292439px;}
._89{width:277.064342px;}
._29{width:281.264196px;}
._1a{width:295.700178px;}
._35{width:302.263464px;}
._86{width:307.849269px;}
._3a{width:309.277219px;}
._2b{width:311.629137px;}
._88{width:314.863024px;}
._27{width:317.004950px;}
._87{width:319.566860px;}
._8a{width:321.918778px;}
._3e{width:325.572651px;}
._7f{width:328.302556px;}
._45{width:330.360484px;}
._2a{width:332.670404px;}
._26{width:339.726158px;}
._85{width:345.269964px;}
._31{width:348.965836px;}
._3b{width:353.669672px;}
._3d{width:383.992615px;}
._49{width:386.302534px;}
._24{width:399.994057px;}
._46{width:402.639965px;}
._25{width:404.697893px;}
._2c{width:411.963640px;}
._33{width:416.667476px;}
._23{width:432.738383px;}
._e{width:436.910076px;}
._3f{width:444.709436px;}
._28{width:458.778946px;}
._2f{width:465.750703px;}
._40{width:468.060622px;}
._3c{width:472.722460px;}
._30{width:475.116376px;}
._34{width:477.426296px;}
._2e{width:486.749971px;}
._43{width:489.017892px;}
._32{width:493.721728px;}
._42{width:505.397321px;}
._41{width:507.749239px;}
._2d{width:519.179129px;}
._f{width:527.364180px;}
._1c{width:554.015960px;}
._1d{width:556.861814px;}
.fc3{color:rgb(10,84,44);}
.fc6{color:transparent;}
.fc1{color:rgb(27,138,174);}
.fc5{color:rgb(64,64,64);}
.fc4{color:rgb(83,83,83);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:31.500000px;}
.fs7{font-size:36.000000px;}
.fs4{font-size:37.801758px;}
.fs0{font-size:41.998536px;}
.fs3{font-size:48.001464px;}
.fs9{font-size:51.301758px;}
.fs1{font-size:54.000000px;}
.fs6{font-size:59.400876px;}
.fs5{font-size:70.198242px;}
.fs2{font-size:91.801758px;}
.y0{bottom:0.000000px;}
.y26c{bottom:4.527938px;}
.y208{bottom:4.528218px;}
.y25c{bottom:4.528678px;}
.y238{bottom:4.528681px;}
.y26b{bottom:22.486895px;}
.y207{bottom:22.487195px;}
.y25b{bottom:22.487666px;}
.y237{bottom:22.487669px;}
.y26a{bottom:40.440022px;}
.y206{bottom:40.440322px;}
.y236{bottom:40.440787px;}
.y25a{bottom:40.440794px;}
.y25{bottom:43.541017px;}
.y24{bottom:57.093750px;}
.y269{bottom:58.399010px;}
.y205{bottom:58.399310px;}
.y235{bottom:58.399775px;}
.y259{bottom:58.399782px;}
.y23{bottom:70.652343px;}
.y268{bottom:76.352137px;}
.y204{bottom:76.352421px;}
.y258{bottom:76.352887px;}
.y234{bottom:76.352903px;}
.y1ad{bottom:84.562500px;}
.y1ba{bottom:89.337834px;}
.y129{bottom:90.128917px;}
.y209{bottom:91.026000px;}
.y73{bottom:91.716741px;}
.y8a{bottom:93.199173px;}
.y161{bottom:93.322258px;}
.y10a{bottom:93.996081px;}
.y267{bottom:94.311126px;}
.y203{bottom:94.311410px;}
.y257{bottom:94.311876px;}
.y233{bottom:94.311882px;}
.y149{bottom:94.898497px;}
.y18d{bottom:100.857394px;}
.y1b9{bottom:108.240183px;}
.y96{bottom:110.244140px;}
.y72{bottom:110.619090px;}
.y89{bottom:112.107381px;}
.y266{bottom:112.264253px;}
.y202{bottom:112.264537px;}
.y256{bottom:112.265003px;}
.y232{bottom:112.265009px;}
.y148{bottom:113.806700px;}
.y1dc{bottom:114.921000px;}
.y128{bottom:116.912118px;}
.y160{bottom:118.160151px;}
.y26{bottom:118.324500px;}
.y4b{bottom:123.093678px;}
.y109{bottom:124.312491px;}
.y18c{bottom:125.689427px;}
.y95{bottom:127.042973px;}
.y1b8{bottom:127.142532px;}
.ye9{bottom:129.374811px;}
.y71{bottom:129.521439px;}
.y265{bottom:130.223241px;}
.y201{bottom:130.223525px;}
.y255{bottom:130.223991px;}
.y231{bottom:130.223998px;}
.y88{bottom:131.009730px;}
.y147{bottom:140.589901px;}
.y4a{bottom:141.996027px;}
.y15f{bottom:142.992184px;}
.y127{bottom:143.701178px;}
.y94{bottom:143.847661px;}
.y1b7{bottom:146.050740px;}
.y1a4{bottom:147.966753px;}
.y264{bottom:148.176368px;}
.y200{bottom:148.176653px;}
.y230{bottom:148.177114px;}
.y254{bottom:148.177118px;}
.ye8{bottom:148.277160px;}
.y70{bottom:148.429647px;}
.y87{bottom:149.917938px;}
.y18b{bottom:150.527320px;}
.y108{bottom:154.623042px;}
.y49{bottom:160.904235px;}
.y97{bottom:164.027343px;}
.y1b6{bottom:164.953089px;}
.y98{bottom:165.129000px;}
.y93{bottom:165.152343px;}
.y263{bottom:166.135357px;}
.y1ff{bottom:166.135641px;}
.y22f{bottom:166.136102px;}
.y253{bottom:166.136107px;}
.ye7{bottom:167.179509px;}
.y6f{bottom:167.331996px;}
.y146{bottom:167.378961px;}
.y15e{bottom:167.830076px;}
.y86{bottom:168.820287px;}
.yc0{bottom:169.898253px;}
.y126{bottom:170.484379px;}
.y1a3{bottom:172.804645px;}
.y1db{bottom:173.050761px;}
.y18a{bottom:175.359353px;}
.y8f{bottom:175.875000px;}
.y48{bottom:179.806584px;}
.y1b5{bottom:183.861297px;}
.y262{bottom:184.088484px;}
.y1fe{bottom:184.088755px;}
.y252{bottom:184.089218px;}
.y22e{bottom:184.089230px;}
.y107{bottom:184.933593px;}
.ye6{bottom:186.087717px;}
.y6e{bottom:186.234345px;}
.y85{bottom:187.722636px;}
.ybf{bottom:188.806461px;}
.y1da{bottom:191.958969px;}
.y20{bottom:192.251928px;}
.y15d{bottom:192.662099px;}
.y145{bottom:194.162162px;}
.y125{bottom:197.273440px;}
.y1a2{bottom:197.642537px;}
.y47{bottom:198.708933px;}
.y189{bottom:200.197245px;}
.y261{bottom:202.047461px;}
.y1fd{bottom:202.047743px;}
.y251{bottom:202.048206px;}
.y22d{bottom:202.048218px;}
.y1b4{bottom:202.763646px;}
.ye5{bottom:204.990066px;}
.y6d{bottom:205.142553px;}
.y84{bottom:206.630844px;}
.y15c{bottom:207.374995px;}
.ybe{bottom:207.708810px;}
.y1d9{bottom:210.861318px;}
.y1f{bottom:211.160136px;}
.y106{bottom:215.753907px;}
.y260{bottom:220.000588px;}
.y1fc{bottom:220.000871px;}
.y22c{bottom:220.001334px;}
.y144{bottom:220.951223px;}
.y1b3{bottom:221.665995px;}
.y1a1{bottom:222.474571px;}
.ye4{bottom:223.892415px;}
.y6c{bottom:224.044902px;}
.y124{bottom:224.056641px;}
.y188{bottom:225.035137px;}
.y83{bottom:225.533193px;}
.ybd{bottom:226.611159px;}
.y1d8{bottom:229.763667px;}
.y1e{bottom:230.062485px;}
.y46{bottom:231.117141px;}
.y1ae{bottom:231.626954px;}
.y15b{bottom:232.212887px;}
.y162{bottom:236.150391px;}
.y25f{bottom:237.959576px;}
.y1fb{bottom:237.959859px;}
.y22b{bottom:237.960322px;}
.y1b2{bottom:240.574203px;}
.ye3{bottom:242.800623px;}
.y6b{bottom:242.947251px;}
.y82{bottom:244.435542px;}
.ybc{bottom:245.519367px;}
.y1a0{bottom:247.312463px;}
.y143{bottom:247.734424px;}
.y1d7{bottom:248.671875px;}
.y1d{bottom:248.964834px;}
.y187{bottom:249.867171px;}
.y45{bottom:250.019490px;}
.y123{bottom:250.839843px;}
.y25e{bottom:255.912704px;}
.y1fa{bottom:255.912979px;}
.y22a{bottom:255.913449px;}
.y15a{bottom:257.044920px;}
.y1b1{bottom:259.476552px;}
.ye2{bottom:261.702972px;}
.y6a{bottom:261.855459px;}
.y81{bottom:263.343750px;}
.ybb{bottom:264.421716px;}
.y1c{bottom:267.873042px;}
.y44{bottom:268.921839px;}
.y19f{bottom:272.144496px;}
.y1f9{bottom:273.871967px;}
.y250{bottom:273.872426px;}
.y229{bottom:273.872438px;}
.y142{bottom:274.517625px;}
.y186{bottom:274.705063px;}
.y105{bottom:276.914065px;}
.y1b0{bottom:278.378901px;}
.y1d6{bottom:279.333984px;}
.ye1{bottom:280.605321px;}
.y69{bottom:280.757808px;}
.y159{bottom:281.882813px;}
.yba{bottom:283.329924px;}
.y122{bottom:286.705016px;}
.y1b{bottom:286.775391px;}
.y43{bottom:287.830047px;}
.y1f8{bottom:291.825084px;}
.y228{bottom:291.825553px;}
.y19e{bottom:296.982388px;}
.y1af{bottom:297.287109px;}
.y80{bottom:299.191384px;}
.ye0{bottom:299.513529px;}
.y185{bottom:299.537096px;}
.y68{bottom:299.666016px;}
.y141{bottom:301.306686px;}
.yb9{bottom:302.232273px;}
.y104{bottom:303.697266px;}
.y121{bottom:305.613224px;}
.y42{bottom:306.732396px;}
.y1f7{bottom:309.784072px;}
.y227{bottom:309.784541px;}
.ydf{bottom:318.415878px;}
.y168{bottom:318.492183px;}
.yb8{bottom:321.134622px;}
.y19d{bottom:321.820281px;}
.y1a{bottom:323.431641px;}
.y7f{bottom:324.029276px;}
.y184{bottom:324.374989px;}
.y120{bottom:324.515573px;}
.y41{bottom:325.640604px;}
.y1f6{bottom:327.737199px;}
.y226{bottom:327.737669px;}
.y140{bottom:328.089887px;}
.y67{bottom:330.480468px;}
.y1d5{bottom:334.945246px;}
.y167{bottom:335.291016px;}
.y103{bottom:337.312500px;}
.yde{bottom:337.318227px;}
.yb7{bottom:340.042830px;}
.y11f{bottom:343.417922px;}
.y40{bottom:344.542953px;}
.y1f5{bottom:345.696188px;}
.y225{bottom:345.696637px;}
.y24f{bottom:345.696644px;}
.y19c{bottom:346.652314px;}
.y7e{bottom:348.861310px;}
.y183{bottom:349.207011px;}
.y166{bottom:352.095704px;}
.y1d4{bottom:353.847596px;}
.y13f{bottom:354.878947px;}
.ydd{bottom:356.226435px;}
.y1c5{bottom:358.189437px;}
.yb6{bottom:358.945179px;}
.y19{bottom:361.992188px;}
.y11e{bottom:362.326130px;}
.y3f{bottom:363.445302px;}
.y1f4{bottom:363.649306px;}
.y224{bottom:363.649764px;}
.y24e{bottom:363.649771px;}
.y182{bottom:363.919907px;}
.y102{bottom:367.974609px;}
.y165{bottom:368.900393px;}
.y19b{bottom:371.490206px;}
.y1d3{bottom:372.755803px;}
.y169{bottom:373.400391px;}
.y7d{bottom:373.699202px;}
.y1c4{bottom:374.988270px;}
.ydc{bottom:375.128784px;}
.yb5{bottom:377.847528px;}
.y11d{bottom:381.228479px;}
.y1f3{bottom:381.608294px;}
.y223{bottom:381.608753px;}
.y24d{bottom:381.608759px;}
.y13e{bottom:381.662149px;}
.y3e{bottom:382.353510px;}
.y164{bottom:385.699225px;}
.y66{bottom:386.097630px;}
.y181{bottom:388.757799px;}
.y1d2{bottom:391.658152px;}
.y1c3{bottom:391.792958px;}
.ydb{bottom:394.031133px;}
.y19a{bottom:396.322240px;}
.yb4{bottom:396.755736px;}
.y7c{bottom:398.531235px;}
.y1f2{bottom:399.561422px;}
.y222{bottom:399.561880px;}
.y24c{bottom:399.561887px;}
.y11c{bottom:400.130828px;}
.y3d{bottom:401.255859px;}
.y180{bottom:403.464826px;}
.y65{bottom:404.999979px;}
.y163{bottom:407.003907px;}
.y13d{bottom:408.445350px;}
.y1c2{bottom:408.597647px;}
.y1d1{bottom:410.560501px;}
.yda{bottom:412.939341px;}
.yb3{bottom:415.658085px;}
.y1f1{bottom:417.520376px;}
.y221{bottom:417.520868px;}
.y24b{bottom:417.520875px;}
.y11b{bottom:419.039036px;}
.y199{bottom:421.160132px;}
.y7b{bottom:423.369128px;}
.y101{bottom:423.585942px;}
.y64{bottom:423.902328px;}
.y1c1{bottom:425.396479px;}
.y17f{bottom:428.302718px;}
.y18{bottom:431.103516px;}
.yd9{bottom:431.841690px;}
.y3c{bottom:431.917969px;}
.yb2{bottom:434.560434px;}
.y13c{bottom:435.234410px;}
.y1f0{bottom:435.473503px;}
.y24a{bottom:435.473993px;}
.y220{bottom:435.473996px;}
.y91{bottom:436.998052px;}
.y11a{bottom:437.941385px;}
.y1c0{bottom:442.201167px;}
.y63{bottom:442.810536px;}
.y1d0{bottom:442.968709px;}
.y17e{bottom:443.009744px;}
.y158{bottom:445.851507px;}
.y198{bottom:445.992165px;}
.y17{bottom:447.914054px;}
.y7a{bottom:448.207020px;}
.yd8{bottom:450.744039px;}
.y1ef{bottom:453.432491px;}
.y249{bottom:453.432982px;}
.y21f{bottom:453.432984px;}
.yb1{bottom:453.468642px;}
.y100{bottom:456.152343px;}
.y119{bottom:456.843734px;}
.y92{bottom:457.177734px;}
.y90{bottom:458.302734px;}
.y1bf{bottom:459.005856px;}
.y62{bottom:461.712885px;}
.y1cf{bottom:461.871059px;}
.y13b{bottom:462.017611px;}
.y16{bottom:464.724598px;}
.y157{bottom:464.759715px;}
.y17d{bottom:467.847636px;}
.y8e{bottom:469.025391px;}
.yd7{bottom:469.652247px;}
.y197{bottom:470.830057px;}
.y1ee{bottom:471.385618px;}
.y248{bottom:471.386100px;}
.y21e{bottom:471.386102px;}
.yb0{bottom:472.370991px;}
.y79{bottom:473.039053px;}
.y118{bottom:475.751942px;}
.y1be{bottom:475.804688px;}
.y61{bottom:480.621093px;}
.y1ce{bottom:480.779266px;}
.y17c{bottom:482.554663px;}
.y156{bottom:483.662064px;}
.y15{bottom:486.035149px;}
.yff{bottom:486.972657px;}
.y3b{bottom:487.529292px;}
.yd6{bottom:488.554596px;}
.y13a{bottom:488.800813px;}
.y1ed{bottom:489.344607px;}
.y247{bottom:489.345088px;}
.y21d{bottom:489.345091px;}
.yaf{bottom:491.273340px;}
.y1bd{bottom:492.609377px;}
.y196{bottom:495.667950px;}
.y78{bottom:497.876945px;}
.y1cd{bottom:499.681615px;}
.y155{bottom:502.564413px;}
.y117{bottom:506.062492px;}
.y3a{bottom:506.437500px;}
.y1ec{bottom:507.297734px;}
.y246{bottom:507.298215px;}
.y21c{bottom:507.298218px;}
.y14{bottom:507.345699px;}
.y17b{bottom:507.392555px;}
.yd5{bottom:507.462804px;}
.y1bc{bottom:509.414065px;}
.yae{bottom:510.181548px;}
.y60{bottom:511.435546px;}
.y139{bottom:515.589873px;}
.y1cc{bottom:518.583964px;}
.y195{bottom:520.499983px;}
.y154{bottom:521.472621px;}
.y77{bottom:522.708979px;}
.y1eb{bottom:525.256722px;}
.y21b{bottom:525.257195px;}
.y245{bottom:525.257203px;}
.yd4{bottom:526.365153px;}
.y13{bottom:528.656250px;}
.yad{bottom:529.083897px;}
.y1c6{bottom:529.587891px;}
.y17a{bottom:532.230447px;}
.y116{bottom:536.373043px;}
.y39{bottom:537.093750px;}
.y1cb{bottom:537.492172px;}
.y1bb{bottom:539.531250px;}
.y153{bottom:540.374970px;}
.y138{bottom:542.373074px;}
.yfe{bottom:542.583979px;}
.y1ea{bottom:543.209850px;}
.y244{bottom:543.210312px;}
.y21a{bottom:543.210322px;}
.yd3{bottom:545.267502px;}
.y194{bottom:545.337875px;}
.y76{bottom:547.546871px;}
.y1ca{bottom:556.394521px;}
.y179{bottom:557.062480px;}
.y152{bottom:559.277319px;}
.y1e9{bottom:561.168838px;}
.y243{bottom:561.169301px;}
.y219{bottom:561.169310px;}
.yfd{bottom:561.486312px;}
.yac{bottom:561.644439px;}
.y115{bottom:566.689454px;}
.y5f{bottom:567.052643px;}
.y137{bottom:569.162135px;}
.y193{bottom:570.169909px;}
.y75{bottom:572.378904px;}
.yd2{bottom:577.833903px;}
.y151{bottom:578.185527px;}
.y12{bottom:578.906269px;}
.y1e8{bottom:579.121965px;}
.y242{bottom:579.122428px;}
.y218{bottom:579.122438px;}
.yfc{bottom:580.394520px;}
.yab{bottom:580.552647px;}
.y178{bottom:581.900373px;}
.y114{bottom:585.591785px;}
.y5e{bottom:585.954992px;}
.y1c9{bottom:588.796870px;}
.y11{bottom:592.142602px;}
.y38{bottom:592.710861px;}
.y192{bottom:595.007801px;}
.y136{bottom:595.945336px;}
.y177{bottom:596.607399px;}
.yd1{bottom:596.736252px;}
.y1e7{bottom:597.080940px;}
.y217{bottom:597.081414px;}
.y241{bottom:597.081416px;}
.y150{bottom:597.087876px;}
.y74{bottom:597.216796px;}
.yfb{bottom:599.296869px;}
.yaa{bottom:599.454996px;}
.y5d{bottom:604.857341px;}
.y10{bottom:605.373066px;}
.y1c8{bottom:607.705078px;}
.y37{bottom:611.613210px;}
.y1e6{bottom:615.034068px;}
.y216{bottom:615.034541px;}
.y240{bottom:615.034544px;}
.yd0{bottom:615.638601px;}
.y113{bottom:615.902335px;}
.y14f{bottom:615.990225px;}
.yfa{bottom:618.199137px;}
.ya9{bottom:618.357345px;}
.yf{bottom:618.603530px;}
.y191{bottom:619.845693px;}
.y176{bottom:621.445291px;}
.y135{bottom:622.728537px;}
.y5c{bottom:623.765549px;}
.y1a5{bottom:623.783207px;}
.y36{bottom:630.515559px;}
.ye{bottom:631.833994px;}
.y1e5{bottom:632.993056px;}
.y215{bottom:632.993530px;}
.y23f{bottom:632.993532px;}
.y8c{bottom:633.826174px;}
.ycf{bottom:634.546809px;}
.y14e{bottom:634.898433px;}
.yf9{bottom:637.107345px;}
.ya8{bottom:637.265553px;}
.y1c7{bottom:638.361329px;}
.y190{bottom:644.677726px;}
.yd{bottom:645.070327px;}
.y112{bottom:646.218745px;}
.y175{bottom:646.283183px;}
.y35{bottom:649.423767px;}
.y134{bottom:649.517598px;}
.y1e4{bottom:650.946183px;}
.y23e{bottom:650.946646px;}
.y214{bottom:650.946657px;}
.yce{bottom:653.449158px;}
.y14d{bottom:653.800782px;}
.y8b{bottom:655.125000px;}
.yf8{bottom:656.009694px;}
.y5b{bottom:656.167897px;}
.ya7{bottom:656.167902px;}
.yc{bottom:658.300791px;}
.y25d{bottom:665.620500px;}
.y34{bottom:668.326116px;}
.y1e3{bottom:668.905172px;}
.y213{bottom:668.905634px;}
.y18f{bottom:669.515619px;}
.y174{bottom:671.115217px;}
.yb{bottom:671.531255px;}
.ycd{bottom:672.351507px;}
.yf7{bottom:674.917902px;}
.y5a{bottom:675.076106px;}
.ya6{bottom:675.076110px;}
.y133{bottom:676.300799px;}
.y111{bottom:676.529296px;}
.y14c{bottom:684.462891px;}
.ya{bottom:684.767588px;}
.y1e2{bottom:686.858291px;}
.y212{bottom:686.858762px;}
.y33{bottom:687.234324px;}
.ycc{bottom:691.259715px;}
.yf6{bottom:693.820251px;}
.y59{bottom:693.978454px;}
.ya5{bottom:693.978459px;}
.y110{bottom:695.437496px;}
.y173{bottom:695.953109px;}
.y9{bottom:697.998052px;}
.y132{bottom:703.084000px;}
.y1e1{bottom:704.817280px;}
.y211{bottom:704.817741px;}
.y23d{bottom:704.817750px;}
.y1aa{bottom:706.119141px;}
.y32{bottom:706.136673px;}
.ycb{bottom:710.162064px;}
.y8{bottom:711.228516px;}
.yf5{bottom:712.722600px;}
.y58{bottom:712.880803px;}
.ya4{bottom:712.880808px;}
.y172{bottom:720.785142px;}
.y1e0{bottom:722.770400px;}
.y23c{bottom:722.770864px;}
.y210{bottom:722.770868px;}
.y1a9{bottom:722.923829px;}
.y31{bottom:725.039022px;}
.y10f{bottom:725.748046px;}
.yca{bottom:729.064413px;}
.y131{bottom:729.873060px;}
.yf4{bottom:731.630808px;}
.y57{bottom:731.789012px;}
.ya3{bottom:731.789016px;}
.y7{bottom:732.193358px;}
.y22{bottom:736.693356px;}
.y1a8{bottom:739.728518px;}
.y1df{bottom:740.729389px;}
.y23b{bottom:740.729852px;}
.y20f{bottom:740.729857px;}
.y30{bottom:743.947230px;}
.y1ac{bottom:744.228519px;}
.y10e{bottom:744.650382px;}
.y171{bottom:745.623035px;}
.y14b{bottom:745.623057px;}
.yc9{bottom:747.972621px;}
.yf3{bottom:750.533157px;}
.y56{bottom:750.691360px;}
.ya2{bottom:750.691365px;}
.y6{bottom:751.394532px;}
.y99{bottom:755.701079px;}
.y21{bottom:755.894532px;}
.y1a7{bottom:756.527350px;}
.y130{bottom:756.656262px;}
.y28{bottom:757.950891px;}
.y1de{bottom:758.682516px;}
.y23a{bottom:758.682980px;}
.y20e{bottom:758.682984px;}
.y1ab{bottom:761.027343px;}
.y2f{bottom:762.849579px;}
.y14a{bottom:764.531260px;}
.yc8{bottom:766.874970px;}
.yf2{bottom:769.435506px;}
.y55{bottom:769.593710px;}
.ya1{bottom:769.593714px;}
.y170{bottom:770.455068px;}
.y10d{bottom:774.966792px;}
.y20d{bottom:776.641963px;}
.y1a6{bottom:777.832032px;}
.y2e{bottom:781.751928px;}
.y12f{bottom:783.445322px;}
.yc7{bottom:785.777319px;}
.yf1{bottom:788.343714px;}
.y54{bottom:788.501917px;}
.ya0{bottom:788.501922px;}
.y5{bottom:793.705071px;}
.y10c{bottom:793.869141px;}
.y20c{bottom:794.595090px;}
.y27{bottom:794.607141px;}
.y16f{bottom:795.292960px;}
.y1dd{bottom:796.200093px;}
.y2d{bottom:800.660136px;}
.yc6{bottom:804.685527px;}
.yf0{bottom:807.246063px;}
.y53{bottom:807.404267px;}
.y9f{bottom:807.404271px;}
.y12e{bottom:810.228523px;}
.y20b{bottom:812.554076px;}
.y239{bottom:812.554079px;}
.y2c{bottom:819.562485px;}
.y16e{bottom:820.130852px;}
.yc5{bottom:823.587876px;}
.y10b{bottom:824.689454px;}
.yef{bottom:826.148412px;}
.y52{bottom:826.306616px;}
.y9e{bottom:826.306620px;}
.y20a{bottom:830.507204px;}
.y4{bottom:831.263671px;}
.y12d{bottom:837.011725px;}
.y2b{bottom:838.464834px;}
.yc4{bottom:842.490225px;}
.y16d{bottom:844.962886px;}
.yee{bottom:845.056620px;}
.y51{bottom:845.214823px;}
.y9d{bottom:845.214828px;}
.y2a{bottom:857.373042px;}
.yc3{bottom:861.398433px;}
.y12c{bottom:863.800785px;}
.yed{bottom:863.958969px;}
.y50{bottom:864.117172px;}
.y9c{bottom:864.117177px;}
.y16c{bottom:869.800778px;}
.y18e{bottom:873.738282px;}
.y29{bottom:876.275391px;}
.yc2{bottom:880.300782px;}
.yec{bottom:882.861318px;}
.y4f{bottom:883.019521px;}
.y9b{bottom:883.019526px;}
.y12b{bottom:890.583986px;}
.y16b{bottom:894.632811px;}
.y3{bottom:899.378907px;}
.yeb{bottom:901.769526px;}
.y4e{bottom:901.927730px;}
.y9a{bottom:901.927734px;}
.yc1{bottom:911.121093px;}
.y12a{bottom:917.373046px;}
.y16a{bottom:919.470704px;}
.yea{bottom:920.671875px;}
.y4d{bottom:920.830079px;}
.y2{bottom:939.451176px;}
.y1{bottom:955.212891px;}
.y4c{bottom:972.292968px;}
.y8d{bottom:972.292969px;}
.h9{height:28.237913px;}
.h11{height:28.239258px;}
.h10{height:30.576083px;}
.h8{height:32.273438px;}
.h5{height:33.888685px;}
.hc{height:35.391704px;}
.hb{height:35.857094px;}
.h1{height:37.651031px;}
.h4{height:43.032562px;}
.h7{height:44.376631px;}
.h14{height:45.991224px;}
.h15{height:45.991277px;}
.h17{height:45.991288px;}
.h19{height:45.991303px;}
.h16{height:45.991350px;}
.h2{height:48.410156px;}
.hf{height:48.410222px;}
.he{height:48.410480px;}
.h6{height:52.443023px;}
.h3{height:68.582368px;}
.h1a{height:269.343000px;}
.hd{height:769.834500px;}
.ha{height:816.639000px;}
.h13{height:820.042500px;}
.h18{height:843.937500px;}
.h12{height:850.401000px;}
.h0{height:1020.000000px;}
.w1{width:544.254000px;}
.w0{width:700.500000px;}
.x0{left:0.000000px;}
.x1a{left:11.596313px;}
.x1b{left:45.000606px;}
.x3{left:78.662109px;}
.xa{left:83.162109px;}
.xb{left:86.537109px;}
.x5{left:94.412109px;}
.x4{left:95.537109px;}
.xd{left:101.162117px;}
.xe{left:105.662109px;}
.x7{left:130.253911px;}
.xc{left:137.976562px;}
.x1{left:140.308593px;}
.x9{left:159.292968px;}
.x6{left:213.017579px;}
.x11{left:216.820311px;}
.x14{left:220.177779px;}
.x12{left:221.496102px;}
.x16{left:254.818360px;}
.xf{left:256.517585px;}
.x17{left:267.662109px;}
.x19{left:292.359375px;}
.x2{left:316.640625px;}
.x13{left:356.859375px;}
.x10{left:394.183593px;}
.x15{left:399.275391px;}
.x18{left:595.699218px;}
.x8{left:602.663818px;}
@media print{
.v1{vertical-align:-31.354165pt;}
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls21{letter-spacing:0.384012pt;}
.ls16{letter-spacing:0.451141pt;}
.ls1f{letter-spacing:0.480000pt;}
.ls23{letter-spacing:0.554684pt;}
.ls3{letter-spacing:0.768000pt;}
.ls25{letter-spacing:0.981363pt;}
.ls24{letter-spacing:1.066699pt;}
.ls26{letter-spacing:1.365375pt;}
.ls12{letter-spacing:1.872000pt;}
.ls15{letter-spacing:2.160000pt;}
.ls22{letter-spacing:2.389406pt;}
.ls14{letter-spacing:2.448000pt;}
.lsd{letter-spacing:2.688000pt;}
.ls8{letter-spacing:2.736000pt;}
.ls9{letter-spacing:2.880000pt;}
.lsb{letter-spacing:3.312000pt;}
.ls1{letter-spacing:3.600000pt;}
.ls11{letter-spacing:5.472000pt;}
.lsa{letter-spacing:5.520000pt;}
.ls13{letter-spacing:6.000000pt;}
.ls5{letter-spacing:6.672000pt;}
.lsc{letter-spacing:7.680234pt;}
.ls10{letter-spacing:8.736000pt;}
.lsf{letter-spacing:9.120000pt;}
.ls4{letter-spacing:9.408000pt;}
.ls20{letter-spacing:14.704000pt;}
.lse{letter-spacing:31.632000pt;}
.ls18{letter-spacing:140.144448pt;}
.ls1a{letter-spacing:142.197710pt;}
.ls19{letter-spacing:142.235042pt;}
.ls1d{letter-spacing:213.389895pt;}
.ls1e{letter-spacing:213.427227pt;}
.ls1c{letter-spacing:261.137564pt;}
.ls17{letter-spacing:354.990292pt;}
.ls7{letter-spacing:449.265470pt;}
.ls1b{letter-spacing:591.397700pt;}
.ls6{letter-spacing:612.954260pt;}
.ls2{letter-spacing:830.234946pt;}
.ws1{word-spacing:-18.781930pt;}
.ws10{word-spacing:-13.296000pt;}
.ws24{word-spacing:-12.631633pt;}
.ws23{word-spacing:-11.819027pt;}
.ws0{word-spacing:-10.340973pt;}
.ws3{word-spacing:-9.341234pt;}
.ws4{word-spacing:0.000000pt;}
.ws1d{word-spacing:0.037332pt;}
.ws6{word-spacing:1.200000pt;}
.ws5{word-spacing:2.304000pt;}
.ws13{word-spacing:17.658051pt;}
.ws1c{word-spacing:28.596337pt;}
.ws14{word-spacing:33.225508pt;}
.ws15{word-spacing:49.278282pt;}
.ws1b{word-spacing:49.315614pt;}
.ws17{word-spacing:53.982118pt;}
.ws1a{word-spacing:58.648622pt;}
.ws16{word-spacing:58.685954pt;}
.ws1e{word-spacing:60.253900pt;}
.ws20{word-spacing:64.957736pt;}
.ws1f{word-spacing:69.624240pt;}
.ws21{word-spacing:69.661572pt;}
.ws22{word-spacing:96.010488pt;}
.ws18{word-spacing:139.580000pt;}
.ws2{word-spacing:293.344000pt;}
.ws11{word-spacing:345.209300pt;}
.wsf{word-spacing:449.178636pt;}
.wsd{word-spacing:455.375753pt;}
.wse{word-spacing:455.413085pt;}
.wsa{word-spacing:461.647534pt;}
.wsc{word-spacing:465.791390pt;}
.ws8{word-spacing:467.881984pt;}
.wsb{word-spacing:469.897913pt;}
.ws7{word-spacing:469.972578pt;}
.ws9{word-spacing:482.117658pt;}
.ws19{word-spacing:784.968992pt;}
.ws12{word-spacing:794.649860pt;}
._1{margin-left:-9.057773pt;}
._22{margin-left:-6.926227pt;}
._18{margin-left:-6.000000pt;}
._b{margin-left:-4.815832pt;}
._7{margin-left:-3.925453pt;}
._2{margin-left:-2.529648pt;}
._0{margin-left:-1.468828pt;}
._3{width:1.024031pt;}
._9{width:2.016094pt;}
._8{width:3.124945pt;}
._a{width:4.132992pt;}
._c{width:5.217023pt;}
._13{width:6.384000pt;}
._16{width:7.976250pt;}
._17{width:9.312000pt;}
._11{width:10.800000pt;}
._14{width:11.819906pt;}
._21{width:13.864181pt;}
._10{width:15.264000pt;}
._1e{width:16.528759pt;}
._6{width:18.038790pt;}
._d{width:19.002961pt;}
._15{width:20.534062pt;}
._12{width:21.552000pt;}
._1f{width:22.787945pt;}
._19{width:23.685891pt;}
._1b{width:27.264000pt;}
._4b{width:28.944000pt;}
._5{width:34.533275pt;}
._4{width:44.711106pt;}
._51{width:46.665040pt;}
._4c{width:57.984000pt;}
._5c{width:59.656587pt;}
._60{width:64.266048pt;}
._50{width:65.331056pt;}
._56{width:67.496314pt;}
._58{width:68.469821pt;}
._5a{width:69.526990pt;}
._7b{width:71.097810pt;}
._5b{width:72.125486pt;}
._4f{width:73.618767pt;}
._79{width:74.776060pt;}
._5f{width:76.346880pt;}
._59{width:77.386428pt;}
._68{width:78.322603pt;}
._20{width:80.002440pt;}
._76{width:81.010509pt;}
._55{width:83.004488pt;}
._4e{width:83.997072pt;}
._57{width:85.117033pt;}
._4d{width:88.402588pt;}
._67{width:89.429779pt;}
._70{width:91.314150pt;}
._81{width:92.920996pt;}
._63{width:94.079931pt;}
._74{width:95.570002pt;}
._6c{width:97.473936pt;}
._54{width:98.556564pt;}
._69{width:99.601861pt;}
._80{width:100.906302pt;}
._62{width:102.177772pt;}
._77{width:103.409729pt;}
._8e{width:104.813324pt;}
._53{width:106.844276pt;}
._6b{width:107.852240pt;}
._7e{width:109.377695pt;}
._7c{width:110.472979pt;}
._5e{width:112.518744pt;}
._64{width:114.161354pt;}
._44{width:115.169319pt;}
._52{width:117.222580pt;}
._7a{width:122.449065pt;}
._72{width:124.539659pt;}
._75{width:126.667585pt;}
._5d{width:130.214128pt;}
._61{width:132.790038pt;}
._6e{width:134.917964pt;}
._83{width:136.709901pt;}
._66{width:138.539171pt;}
._6d{width:141.697535pt;}
._78{width:143.280339pt;}
._84{width:147.909511pt;}
._6a{width:148.917476pt;}
._73{width:151.605382pt;}
._6f{width:159.295781pt;}
._48{width:163.356042pt;}
._71{width:172.287328pt;}
._38{width:179.417746pt;}
._39{width:184.308242pt;}
._8d{width:188.000280pt;}
._8f{width:189.420000pt;}
._90{width:191.578044pt;}
._4a{width:202.339613pt;}
._37{width:208.499399pt;}
._8c{width:217.645747pt;}
._8b{width:223.842864pt;}
._7d{width:227.986719pt;}
._82{width:234.183837pt;}
._36{width:237.543720pt;}
._65{width:239.115434pt;}
._47{width:243.815501pt;}
._89{width:246.279415pt;}
._29{width:250.012618pt;}
._1a{width:262.844602pt;}
._35{width:268.678634pt;}
._86{width:273.643795pt;}
._3a{width:274.913084pt;}
._2b{width:277.003677pt;}
._88{width:279.878244pt;}
._27{width:281.782178pt;}
._87{width:284.059431pt;}
._8a{width:286.150025pt;}
._3e{width:289.397912pt;}
._7f{width:291.824494pt;}
._45{width:293.653764pt;}
._2a{width:295.707025pt;}
._26{width:301.978807pt;}
._85{width:306.906635pt;}
._31{width:310.191854pt;}
._3b{width:314.373041pt;}
._3d{width:341.326769pt;}
._49{width:343.380030pt;}
._24{width:355.550273pt;}
._46{width:357.902191pt;}
._25{width:359.731460pt;}
._2c{width:366.189902pt;}
._33{width:370.371089pt;}
._23{width:384.656341pt;}
._e{width:388.364512pt;}
._3f{width:395.297277pt;}
._28{width:407.803507pt;}
._2f{width:414.000625pt;}
._40{width:416.053886pt;}
._3c{width:420.197742pt;}
._30{width:422.325668pt;}
._34{width:424.378930pt;}
._2e{width:432.666641pt;}
._43{width:434.682570pt;}
._32{width:438.863758pt;}
._42{width:449.242063pt;}
._41{width:451.332657pt;}
._2d{width:461.492559pt;}
._f{width:468.768160pt;}
._1c{width:492.458631pt;}
._1d{width:494.988279pt;}
.fs8{font-size:28.000000pt;}
.fs7{font-size:32.000000pt;}
.fs4{font-size:33.601563pt;}
.fs0{font-size:37.332032pt;}
.fs3{font-size:42.667968pt;}
.fs9{font-size:45.601563pt;}
.fs1{font-size:48.000000pt;}
.fs6{font-size:52.800779pt;}
.fs5{font-size:62.398437pt;}
.fs2{font-size:81.601563pt;}
.y0{bottom:0.000000pt;}
.y26c{bottom:4.024833pt;}
.y208{bottom:4.025083pt;}
.y25c{bottom:4.025492pt;}
.y238{bottom:4.025494pt;}
.y26b{bottom:19.988351pt;}
.y207{bottom:19.988618pt;}
.y25b{bottom:19.989037pt;}
.y237{bottom:19.989039pt;}
.y26a{bottom:35.946686pt;}
.y206{bottom:35.946953pt;}
.y236{bottom:35.947366pt;}
.y25a{bottom:35.947372pt;}
.y25{bottom:38.703126pt;}
.y24{bottom:50.750000pt;}
.y269{bottom:51.910231pt;}
.y205{bottom:51.910498pt;}
.y235{bottom:51.910912pt;}
.y259{bottom:51.910917pt;}
.y23{bottom:62.802083pt;}
.y268{bottom:67.868567pt;}
.y204{bottom:67.868819pt;}
.y258{bottom:67.869233pt;}
.y234{bottom:67.869247pt;}
.y1ad{bottom:75.166667pt;}
.y1ba{bottom:79.411408pt;}
.y129{bottom:80.114592pt;}
.y209{bottom:80.912000pt;}
.y73{bottom:81.525992pt;}
.y8a{bottom:82.843709pt;}
.y161{bottom:82.953119pt;}
.y10a{bottom:83.552072pt;}
.y267{bottom:83.832112pt;}
.y203{bottom:83.832364pt;}
.y257{bottom:83.832778pt;}
.y233{bottom:83.832784pt;}
.y149{bottom:84.354219pt;}
.y18d{bottom:89.651017pt;}
.y1b9{bottom:96.213496pt;}
.y96{bottom:97.994791pt;}
.y72{bottom:98.328080pt;}
.y89{bottom:99.651005pt;}
.y266{bottom:99.790447pt;}
.y202{bottom:99.790700pt;}
.y256{bottom:99.791114pt;}
.y232{bottom:99.791120pt;}
.y148{bottom:101.161511pt;}
.y1dc{bottom:102.152000pt;}
.y128{bottom:103.921883pt;}
.y160{bottom:105.031245pt;}
.y26{bottom:105.177333pt;}
.y4b{bottom:109.416603pt;}
.y109{bottom:110.499992pt;}
.y18c{bottom:111.723935pt;}
.y95{bottom:112.927087pt;}
.y1b8{bottom:113.015584pt;}
.ye9{bottom:114.999832pt;}
.y71{bottom:115.130168pt;}
.y265{bottom:115.753992pt;}
.y201{bottom:115.754245pt;}
.y255{bottom:115.754659pt;}
.y231{bottom:115.754665pt;}
.y88{bottom:116.453093pt;}
.y147{bottom:124.968801pt;}
.y4a{bottom:126.218691pt;}
.y15f{bottom:127.104164pt;}
.y127{bottom:127.734380pt;}
.y94{bottom:127.864588pt;}
.y1b7{bottom:129.822880pt;}
.y1a4{bottom:131.526003pt;}
.y264{bottom:131.712328pt;}
.y200{bottom:131.712580pt;}
.y230{bottom:131.712990pt;}
.y254{bottom:131.712994pt;}
.ye8{bottom:131.801920pt;}
.y70{bottom:131.937464pt;}
.y87{bottom:133.260389pt;}
.y18b{bottom:133.802062pt;}
.y108{bottom:137.442704pt;}
.y49{bottom:143.025987pt;}
.y97{bottom:145.802083pt;}
.y1b6{bottom:146.624968pt;}
.y98{bottom:146.781333pt;}
.y93{bottom:146.802083pt;}
.y263{bottom:147.675873pt;}
.y1ff{bottom:147.676125pt;}
.y22f{bottom:147.676536pt;}
.y253{bottom:147.676539pt;}
.ye7{bottom:148.604008pt;}
.y6f{bottom:148.739552pt;}
.y146{bottom:148.781299pt;}
.y15e{bottom:149.182290pt;}
.y86{bottom:150.062477pt;}
.yc0{bottom:151.020669pt;}
.y126{bottom:151.541671pt;}
.y1a3{bottom:153.604129pt;}
.y1db{bottom:153.822899pt;}
.y18a{bottom:155.874980pt;}
.y8f{bottom:156.333333pt;}
.y48{bottom:159.828075pt;}
.y1b5{bottom:163.432264pt;}
.y262{bottom:163.634208pt;}
.y1fe{bottom:163.634449pt;}
.y252{bottom:163.634860pt;}
.y22e{bottom:163.634871pt;}
.y107{bottom:164.385416pt;}
.ye6{bottom:165.411304pt;}
.y6e{bottom:165.541640pt;}
.y85{bottom:166.864565pt;}
.ybf{bottom:167.827965pt;}
.y1da{bottom:170.630195pt;}
.y20{bottom:170.890603pt;}
.y15d{bottom:171.255199pt;}
.y145{bottom:172.588589pt;}
.y125{bottom:175.354169pt;}
.y1a2{bottom:175.682255pt;}
.y47{bottom:176.630163pt;}
.y189{bottom:177.953107pt;}
.y261{bottom:179.597743pt;}
.y1fd{bottom:179.597994pt;}
.y251{bottom:179.598406pt;}
.y22d{bottom:179.598416pt;}
.y1b4{bottom:180.234352pt;}
.ye5{bottom:182.213392pt;}
.y6d{bottom:182.348936pt;}
.y84{bottom:183.671861pt;}
.y15c{bottom:184.333329pt;}
.ybe{bottom:184.630053pt;}
.y1d9{bottom:187.432283pt;}
.y1f{bottom:187.697899pt;}
.y106{bottom:191.781251pt;}
.y260{bottom:195.556078pt;}
.y1fc{bottom:195.556329pt;}
.y22c{bottom:195.556741pt;}
.y144{bottom:196.401087pt;}
.y1b3{bottom:197.036440pt;}
.y1a1{bottom:197.755174pt;}
.ye4{bottom:199.015480pt;}
.y6c{bottom:199.151024pt;}
.y124{bottom:199.161459pt;}
.y188{bottom:200.031233pt;}
.y83{bottom:200.473949pt;}
.ybd{bottom:201.432141pt;}
.y1d8{bottom:204.234371pt;}
.y1e{bottom:204.499987pt;}
.y46{bottom:205.437459pt;}
.y1ae{bottom:205.890625pt;}
.y15b{bottom:206.411455pt;}
.y162{bottom:209.911459pt;}
.y25f{bottom:211.519623pt;}
.y1fb{bottom:211.519875pt;}
.y22b{bottom:211.520286pt;}
.y1b2{bottom:213.843736pt;}
.ye3{bottom:215.822776pt;}
.y6b{bottom:215.953112pt;}
.y82{bottom:217.276037pt;}
.ybc{bottom:218.239437pt;}
.y1a0{bottom:219.833300pt;}
.y143{bottom:220.208377pt;}
.y1d7{bottom:221.041667pt;}
.y1d{bottom:221.302075pt;}
.y187{bottom:222.104152pt;}
.y45{bottom:222.239547pt;}
.y123{bottom:222.968749pt;}
.y25e{bottom:227.477959pt;}
.y1fa{bottom:227.478204pt;}
.y22a{bottom:227.478621pt;}
.y15a{bottom:228.484374pt;}
.y1b1{bottom:230.645824pt;}
.ye2{bottom:232.624864pt;}
.y6a{bottom:232.760408pt;}
.y81{bottom:234.083333pt;}
.ybb{bottom:235.041525pt;}
.y1c{bottom:238.109371pt;}
.y44{bottom:239.041635pt;}
.y19f{bottom:241.906219pt;}
.y1f9{bottom:243.441749pt;}
.y250{bottom:243.442156pt;}
.y229{bottom:243.442167pt;}
.y142{bottom:244.015667pt;}
.y186{bottom:244.182278pt;}
.y105{bottom:246.145835pt;}
.y1b0{bottom:247.447912pt;}
.y1d6{bottom:248.296875pt;}
.ye1{bottom:249.426952pt;}
.y69{bottom:249.562496pt;}
.y159{bottom:250.562500pt;}
.yba{bottom:251.848821pt;}
.y122{bottom:254.848903pt;}
.y1b{bottom:254.911459pt;}
.y43{bottom:255.848931pt;}
.y1f8{bottom:259.400074pt;}
.y228{bottom:259.400492pt;}
.y19e{bottom:263.984345pt;}
.y1af{bottom:264.255208pt;}
.y80{bottom:265.947897pt;}
.ye0{bottom:266.234248pt;}
.y185{bottom:266.255197pt;}
.y68{bottom:266.369792pt;}
.y141{bottom:267.828165pt;}
.yb9{bottom:268.650909pt;}
.y104{bottom:269.953125pt;}
.y121{bottom:271.656199pt;}
.y42{bottom:272.651019pt;}
.y1f7{bottom:275.363620pt;}
.y227{bottom:275.364037pt;}
.ydf{bottom:283.036336pt;}
.y168{bottom:283.104163pt;}
.yb8{bottom:285.452997pt;}
.y19d{bottom:286.062472pt;}
.y1a{bottom:287.494792pt;}
.y7f{bottom:288.026023pt;}
.y184{bottom:288.333323pt;}
.y120{bottom:288.458287pt;}
.y41{bottom:289.458315pt;}
.y1f6{bottom:291.321955pt;}
.y226{bottom:291.322372pt;}
.y140{bottom:291.635455pt;}
.y67{bottom:293.760416pt;}
.y1d5{bottom:297.729108pt;}
.y167{bottom:298.036459pt;}
.y103{bottom:299.833333pt;}
.yde{bottom:299.838424pt;}
.yb7{bottom:302.260293pt;}
.y11f{bottom:305.260375pt;}
.y40{bottom:306.260403pt;}
.y1f5{bottom:307.285500pt;}
.y225{bottom:307.285900pt;}
.y24f{bottom:307.285906pt;}
.y19c{bottom:308.135390pt;}
.y7e{bottom:310.098942pt;}
.y183{bottom:310.406232pt;}
.y166{bottom:312.973959pt;}
.y1d4{bottom:314.531196pt;}
.y13f{bottom:315.447953pt;}
.ydd{bottom:316.645720pt;}
.y1c5{bottom:318.390611pt;}
.yb6{bottom:319.062381pt;}
.y19{bottom:321.770833pt;}
.y11e{bottom:322.067671pt;}
.y3f{bottom:323.062491pt;}
.y1f4{bottom:323.243828pt;}
.y224{bottom:323.244235pt;}
.y24e{bottom:323.244241pt;}
.y182{bottom:323.484362pt;}
.y102{bottom:327.088541pt;}
.y165{bottom:327.911460pt;}
.y19b{bottom:330.213517pt;}
.y1d3{bottom:331.338492pt;}
.y169{bottom:331.911459pt;}
.y7d{bottom:332.177068pt;}
.y1c4{bottom:333.322906pt;}
.ydc{bottom:333.447808pt;}
.yb5{bottom:335.864469pt;}
.y11d{bottom:338.869759pt;}
.y1f3{bottom:339.207373pt;}
.y223{bottom:339.207780pt;}
.y24d{bottom:339.207786pt;}
.y13e{bottom:339.255243pt;}
.y3e{bottom:339.869787pt;}
.y164{bottom:342.843756pt;}
.y66{bottom:343.197893pt;}
.y181{bottom:345.562488pt;}
.y1d2{bottom:348.140580pt;}
.y1c3{bottom:348.260407pt;}
.ydb{bottom:350.249896pt;}
.y19a{bottom:352.286435pt;}
.yb4{bottom:352.671765pt;}
.y7c{bottom:354.249987pt;}
.y1f2{bottom:355.165708pt;}
.y222{bottom:355.166116pt;}
.y24c{bottom:355.166121pt;}
.y11c{bottom:355.671847pt;}
.y3d{bottom:356.671875pt;}
.y180{bottom:358.635401pt;}
.y65{bottom:359.999981pt;}
.y163{bottom:361.781251pt;}
.y13d{bottom:363.062533pt;}
.y1c2{bottom:363.197908pt;}
.y1d1{bottom:364.942668pt;}
.yda{bottom:367.057192pt;}
.yb3{bottom:369.473853pt;}
.y1f1{bottom:371.129223pt;}
.y221{bottom:371.129661pt;}
.y24b{bottom:371.129667pt;}
.y11b{bottom:372.479143pt;}
.y199{bottom:374.364562pt;}
.y7b{bottom:376.328113pt;}
.y101{bottom:376.520837pt;}
.y64{bottom:376.802069pt;}
.y1c1{bottom:378.130204pt;}
.y17f{bottom:380.713527pt;}
.y18{bottom:383.203125pt;}
.yd9{bottom:383.859280pt;}
.y3c{bottom:383.927084pt;}
.yb2{bottom:386.275941pt;}
.y13c{bottom:386.875031pt;}
.y1f0{bottom:387.087558pt;}
.y24a{bottom:387.087994pt;}
.y220{bottom:387.087996pt;}
.y91{bottom:388.442713pt;}
.y11a{bottom:389.281231pt;}
.y1c0{bottom:393.067704pt;}
.y63{bottom:393.609365pt;}
.y1d0{bottom:393.749964pt;}
.y17e{bottom:393.786439pt;}
.y158{bottom:396.312451pt;}
.y198{bottom:396.437480pt;}
.y17{bottom:398.145826pt;}
.y7a{bottom:398.406240pt;}
.yd8{bottom:400.661368pt;}
.y1ef{bottom:403.051103pt;}
.y249{bottom:403.051539pt;}
.y21f{bottom:403.051541pt;}
.yb1{bottom:403.083237pt;}
.y100{bottom:405.468749pt;}
.y119{bottom:406.083319pt;}
.y92{bottom:406.380208pt;}
.y90{bottom:407.380208pt;}
.y1bf{bottom:408.005205pt;}
.y62{bottom:410.411453pt;}
.y1cf{bottom:410.552052pt;}
.y13b{bottom:410.682321pt;}
.y16{bottom:413.088532pt;}
.y157{bottom:413.119747pt;}
.y17d{bottom:415.864566pt;}
.y8e{bottom:416.911459pt;}
.yd7{bottom:417.468664pt;}
.y197{bottom:418.515607pt;}
.y1ee{bottom:419.009439pt;}
.y248{bottom:419.009866pt;}
.y21e{bottom:419.009869pt;}
.yb0{bottom:419.885325pt;}
.y79{bottom:420.479158pt;}
.y118{bottom:422.890615pt;}
.y1be{bottom:422.937501pt;}
.y61{bottom:427.218749pt;}
.y1ce{bottom:427.359348pt;}
.y17c{bottom:428.937478pt;}
.y156{bottom:429.921835pt;}
.y15{bottom:432.031243pt;}
.yff{bottom:432.864584pt;}
.y3b{bottom:433.359371pt;}
.yd6{bottom:434.270752pt;}
.y13a{bottom:434.489611pt;}
.y1ed{bottom:434.972984pt;}
.y247{bottom:434.973412pt;}
.y21d{bottom:434.973414pt;}
.yaf{bottom:436.687413pt;}
.y1bd{bottom:437.875002pt;}
.y196{bottom:440.593733pt;}
.y78{bottom:442.557285pt;}
.y1cd{bottom:444.161436pt;}
.y155{bottom:446.723923pt;}
.y117{bottom:449.833327pt;}
.y3a{bottom:450.166667pt;}
.y1ec{bottom:450.931319pt;}
.y246{bottom:450.931747pt;}
.y21c{bottom:450.931749pt;}
.y14{bottom:450.973955pt;}
.y17b{bottom:451.015604pt;}
.yd5{bottom:451.078048pt;}
.y1bc{bottom:452.812503pt;}
.yae{bottom:453.494709pt;}
.y60{bottom:454.609375pt;}
.y139{bottom:458.302109pt;}
.y1cc{bottom:460.963524pt;}
.y195{bottom:462.666652pt;}
.y154{bottom:463.531219pt;}
.y77{bottom:464.630203pt;}
.y1eb{bottom:466.894864pt;}
.y21b{bottom:466.895284pt;}
.y245{bottom:466.895292pt;}
.yd4{bottom:467.880136pt;}
.y13{bottom:469.916667pt;}
.yad{bottom:470.296797pt;}
.y1c6{bottom:470.744792pt;}
.y17a{bottom:473.093731pt;}
.y116{bottom:476.776039pt;}
.y39{bottom:477.416667pt;}
.y1cb{bottom:477.770820pt;}
.y1bb{bottom:479.583333pt;}
.y153{bottom:480.333307pt;}
.y138{bottom:482.109399pt;}
.yfe{bottom:482.296871pt;}
.y1ea{bottom:482.853200pt;}
.y244{bottom:482.853611pt;}
.y21a{bottom:482.853620pt;}
.yd3{bottom:484.682224pt;}
.y194{bottom:484.744778pt;}
.y76{bottom:486.708330pt;}
.y1ca{bottom:494.572908pt;}
.y179{bottom:495.166649pt;}
.y152{bottom:497.135395pt;}
.y1e9{bottom:498.816745pt;}
.y243{bottom:498.817156pt;}
.y219{bottom:498.817165pt;}
.yfd{bottom:499.098944pt;}
.yac{bottom:499.239501pt;}
.y115{bottom:503.723959pt;}
.y5f{bottom:504.046793pt;}
.y137{bottom:505.921897pt;}
.y193{bottom:506.817696pt;}
.y75{bottom:508.781248pt;}
.yd2{bottom:513.630136pt;}
.y151{bottom:513.942691pt;}
.y12{bottom:514.583350pt;}
.y1e8{bottom:514.775080pt;}
.y242{bottom:514.775492pt;}
.y218{bottom:514.775500pt;}
.yfc{bottom:515.906240pt;}
.yab{bottom:516.046797pt;}
.y178{bottom:517.244776pt;}
.y114{bottom:520.526031pt;}
.y5e{bottom:520.848881pt;}
.y1c9{bottom:523.374996pt;}
.y11{bottom:526.348979pt;}
.y38{bottom:526.854099pt;}
.y192{bottom:528.895823pt;}
.y136{bottom:529.729188pt;}
.y177{bottom:530.317688pt;}
.yd1{bottom:530.432224pt;}
.y1e7{bottom:530.738614pt;}
.y217{bottom:530.739035pt;}
.y241{bottom:530.739037pt;}
.y150{bottom:530.744779pt;}
.y74{bottom:530.859375pt;}
.yfb{bottom:532.708328pt;}
.yaa{bottom:532.848885pt;}
.y5d{bottom:537.650969pt;}
.y10{bottom:538.109392pt;}
.y1c8{bottom:540.182292pt;}
.y37{bottom:543.656187pt;}
.y1e6{bottom:546.696949pt;}
.y216{bottom:546.697370pt;}
.y240{bottom:546.697372pt;}
.yd0{bottom:547.234312pt;}
.y113{bottom:547.468743pt;}
.y14f{bottom:547.546867pt;}
.yfa{bottom:549.510344pt;}
.ya9{bottom:549.650973pt;}
.yf{bottom:549.869804pt;}
.y191{bottom:550.973949pt;}
.y176{bottom:552.395814pt;}
.y135{bottom:553.536478pt;}
.y5c{bottom:554.458265pt;}
.y1a5{bottom:554.473962pt;}
.y36{bottom:560.458275pt;}
.ye{bottom:561.630217pt;}
.y1e5{bottom:562.660494pt;}
.y215{bottom:562.660915pt;}
.y23f{bottom:562.660917pt;}
.y8c{bottom:563.401044pt;}
.ycf{bottom:564.041608pt;}
.y14e{bottom:564.354163pt;}
.yf9{bottom:566.317640pt;}
.ya8{bottom:566.458269pt;}
.y1c7{bottom:567.432292pt;}
.y190{bottom:573.046868pt;}
.yd{bottom:573.395846pt;}
.y112{bottom:574.416663pt;}
.y175{bottom:574.473941pt;}
.y35{bottom:577.265571pt;}
.y134{bottom:577.348976pt;}
.y1e4{bottom:578.618829pt;}
.y23e{bottom:578.619241pt;}
.y214{bottom:578.619251pt;}
.yce{bottom:580.843696pt;}
.y14d{bottom:581.156251pt;}
.y8b{bottom:582.333333pt;}
.yf8{bottom:583.119728pt;}
.y5b{bottom:583.260353pt;}
.ya7{bottom:583.260357pt;}
.yc{bottom:585.156259pt;}
.y25d{bottom:591.662667pt;}
.y34{bottom:594.067659pt;}
.y1e3{bottom:594.582375pt;}
.y213{bottom:594.582786pt;}
.y18f{bottom:595.124994pt;}
.y174{bottom:596.546859pt;}
.yb{bottom:596.916671pt;}
.ycd{bottom:597.645784pt;}
.yf7{bottom:599.927024pt;}
.y5a{bottom:600.067649pt;}
.ya6{bottom:600.067653pt;}
.y133{bottom:601.156266pt;}
.y111{bottom:601.359375pt;}
.y14c{bottom:608.411459pt;}
.ya{bottom:608.682300pt;}
.y1e2{bottom:610.540704pt;}
.y212{bottom:610.541121pt;}
.y33{bottom:610.874955pt;}
.ycc{bottom:614.453080pt;}
.yf6{bottom:616.729112pt;}
.y59{bottom:616.869737pt;}
.ya5{bottom:616.869741pt;}
.y110{bottom:618.166663pt;}
.y173{bottom:618.624986pt;}
.y9{bottom:620.442713pt;}
.y132{bottom:624.963556pt;}
.y1e1{bottom:626.504249pt;}
.y211{bottom:626.504659pt;}
.y23d{bottom:626.504667pt;}
.y1aa{bottom:627.661459pt;}
.y32{bottom:627.677043pt;}
.ycb{bottom:631.255168pt;}
.y8{bottom:632.203125pt;}
.yf5{bottom:633.531200pt;}
.y58{bottom:633.671825pt;}
.ya4{bottom:633.671829pt;}
.y172{bottom:640.697904pt;}
.y1e0{bottom:642.462578pt;}
.y23c{bottom:642.462990pt;}
.y210{bottom:642.462994pt;}
.y1a9{bottom:642.598959pt;}
.y31{bottom:644.479131pt;}
.y10f{bottom:645.109375pt;}
.yca{bottom:648.057256pt;}
.y131{bottom:648.776054pt;}
.yf4{bottom:650.338496pt;}
.y57{bottom:650.479121pt;}
.ya3{bottom:650.479125pt;}
.y7{bottom:650.838541pt;}
.y22{bottom:654.838539pt;}
.y1a8{bottom:657.536460pt;}
.y1df{bottom:658.426123pt;}
.y23b{bottom:658.426536pt;}
.y20f{bottom:658.426539pt;}
.y30{bottom:661.286427pt;}
.y1ac{bottom:661.536461pt;}
.y10e{bottom:661.911451pt;}
.y171{bottom:662.776031pt;}
.y14b{bottom:662.776051pt;}
.yc9{bottom:664.864552pt;}
.yf3{bottom:667.140584pt;}
.y56{bottom:667.281209pt;}
.ya2{bottom:667.281213pt;}
.y6{bottom:667.906251pt;}
.y99{bottom:671.734292pt;}
.y21{bottom:671.906251pt;}
.y1a7{bottom:672.468756pt;}
.y130{bottom:672.583344pt;}
.y28{bottom:673.734125pt;}
.y1de{bottom:674.384459pt;}
.y23a{bottom:674.384871pt;}
.y20e{bottom:674.384875pt;}
.y1ab{bottom:676.468749pt;}
.y2f{bottom:678.088515pt;}
.y14a{bottom:679.583343pt;}
.yc8{bottom:681.666640pt;}
.yf2{bottom:683.942672pt;}
.y55{bottom:684.083297pt;}
.ya1{bottom:684.083301pt;}
.y170{bottom:684.848949pt;}
.y10d{bottom:688.859371pt;}
.y20d{bottom:690.348412pt;}
.y1a6{bottom:691.406251pt;}
.y2e{bottom:694.890603pt;}
.y12f{bottom:696.395842pt;}
.yc7{bottom:698.468728pt;}
.yf1{bottom:700.749968pt;}
.y54{bottom:700.890593pt;}
.ya0{bottom:700.890597pt;}
.y5{bottom:705.515618pt;}
.y10c{bottom:705.661459pt;}
.y20c{bottom:706.306747pt;}
.y27{bottom:706.317459pt;}
.y16f{bottom:706.927076pt;}
.y1dd{bottom:707.733416pt;}
.y2d{bottom:711.697899pt;}
.yc6{bottom:715.276024pt;}
.yf0{bottom:717.552056pt;}
.y53{bottom:717.692681pt;}
.y9f{bottom:717.692685pt;}
.y12e{bottom:720.203132pt;}
.y20b{bottom:722.270290pt;}
.y239{bottom:722.270292pt;}
.y2c{bottom:728.499987pt;}
.y16e{bottom:729.005202pt;}
.yc5{bottom:732.078112pt;}
.y10b{bottom:733.057292pt;}
.yef{bottom:734.354144pt;}
.y52{bottom:734.494769pt;}
.y9e{bottom:734.494773pt;}
.y20a{bottom:738.228625pt;}
.y4{bottom:738.901041pt;}
.y12d{bottom:744.010422pt;}
.y2b{bottom:745.302075pt;}
.yc4{bottom:748.880200pt;}
.y16d{bottom:751.078121pt;}
.yee{bottom:751.161440pt;}
.y51{bottom:751.302065pt;}
.y9d{bottom:751.302069pt;}
.y2a{bottom:762.109371pt;}
.yc3{bottom:765.687496pt;}
.y12c{bottom:767.822920pt;}
.yed{bottom:767.963528pt;}
.y50{bottom:768.104153pt;}
.y9c{bottom:768.104157pt;}
.y16c{bottom:773.156247pt;}
.y18e{bottom:776.656251pt;}
.y29{bottom:778.911459pt;}
.yc2{bottom:782.489584pt;}
.yec{bottom:784.765616pt;}
.y4f{bottom:784.906241pt;}
.y9b{bottom:784.906245pt;}
.y12b{bottom:791.630210pt;}
.y16b{bottom:795.229166pt;}
.y3{bottom:799.447917pt;}
.yeb{bottom:801.572912pt;}
.y4e{bottom:801.713537pt;}
.y9a{bottom:801.713541pt;}
.yc1{bottom:809.885416pt;}
.y12a{bottom:815.442708pt;}
.y16a{bottom:817.307292pt;}
.yea{bottom:818.375000pt;}
.y4d{bottom:818.515625pt;}
.y2{bottom:835.067712pt;}
.y1{bottom:849.078125pt;}
.y4c{bottom:864.260416pt;}
.y8d{bottom:864.260417pt;}
.h9{height:25.100367pt;}
.h11{height:25.101562pt;}
.h10{height:27.178740pt;}
.h8{height:28.687500pt;}
.h5{height:30.123276pt;}
.hc{height:31.459293pt;}
.hb{height:31.872972pt;}
.h1{height:33.467583pt;}
.h4{height:38.251167pt;}
.h7{height:39.445894pt;}
.h14{height:40.881088pt;}
.h15{height:40.881135pt;}
.h17{height:40.881145pt;}
.h19{height:40.881158pt;}
.h16{height:40.881200pt;}
.h2{height:43.031250pt;}
.hf{height:43.031309pt;}
.he{height:43.031538pt;}
.h6{height:46.616020pt;}
.h3{height:60.962105pt;}
.h1a{height:239.416000pt;}
.hd{height:684.297333pt;}
.ha{height:725.901333pt;}
.h13{height:728.926667pt;}
.h18{height:750.166667pt;}
.h12{height:755.912000pt;}
.h0{height:906.666667pt;}
.w1{width:483.781333pt;}
.w0{width:622.666667pt;}
.x0{left:0.000000pt;}
.x1a{left:10.307833pt;}
.x1b{left:40.000538pt;}
.x3{left:69.921875pt;}
.xa{left:73.921875pt;}
.xb{left:76.921875pt;}
.x5{left:83.921875pt;}
.x4{left:84.921875pt;}
.xd{left:89.921881pt;}
.xe{left:93.921875pt;}
.x7{left:115.781255pt;}
.xc{left:122.645833pt;}
.x1{left:124.718749pt;}
.x9{left:141.593749pt;}
.x6{left:189.348959pt;}
.x11{left:192.729165pt;}
.x14{left:195.713581pt;}
.x12{left:196.885424pt;}
.x16{left:226.505209pt;}
.xf{left:228.015631pt;}
.x17{left:237.921874pt;}
.x19{left:259.875000pt;}
.x2{left:281.458333pt;}
.x13{left:317.208333pt;}
.x10{left:350.385416pt;}
.x15{left:354.911458pt;}
.x18{left:529.510416pt;}
.x8{left:535.701172pt;}
}




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