
    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_487342e9bf830bd395149786.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_aa11cc30cb5aeadd79eae43f.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_bd0b8cec94468f6f3b877880.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_cddc4300cf0f175ff658ee39.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.093262;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_c838966507194653b1bc5e11.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_e0cb6aa8bccb628474f92e13.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.930000;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_01e1e576b690ea4647dee109.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_c6bbbfd6510bcc09599891e8.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_307cbfea14ccfaa349283842.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.919434;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_c816bfe2542bb2feee9d024b.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.919434;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_b8970871e3ce78f36dae8f85.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.919434;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_2e8c5e579616f42d3da30f01.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_5936a48303a76aaaa0840711.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.844727;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;}
.m1{transform:matrix(0.236033,0.000000,-0.082392,0.236033,0,0);-ms-transform:matrix(0.236033,0.000000,-0.082392,0.236033,0,0);-webkit-transform:matrix(0.236033,0.000000,-0.082392,0.236033,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v3{vertical-align:-21.816000px;}
.v2{vertical-align:-10.800000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:12.726000px;}
.v1{vertical-align:21.816000px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.012000px;}
.ls3{letter-spacing:0.072000px;}
.ls33{letter-spacing:0.720000px;}
.ls12{letter-spacing:1.368000px;}
.ls22{letter-spacing:1.512000px;}
.ls2c{letter-spacing:1.872000px;}
.ls1d{letter-spacing:2.232000px;}
.ls4{letter-spacing:3.993002px;}
.ls1f{letter-spacing:4.248000px;}
.lsa{letter-spacing:4.385880px;}
.ls9{letter-spacing:4.392000px;}
.ls11{letter-spacing:4.680000px;}
.ls8{letter-spacing:4.896000px;}
.ls6{letter-spacing:4.956000px;}
.ls5{letter-spacing:5.328000px;}
.ls2a{letter-spacing:5.832000px;}
.ls1e{letter-spacing:6.264000px;}
.ls34{letter-spacing:6.696000px;}
.ls24{letter-spacing:7.128000px;}
.ls29{letter-spacing:8.424000px;}
.lsb{letter-spacing:8.496000px;}
.ls1{letter-spacing:9.504000px;}
.ls1b{letter-spacing:9.864000px;}
.ls17{letter-spacing:10.008000px;}
.ls20{letter-spacing:12.096000px;}
.ls7{letter-spacing:18.792000px;}
.lsc{letter-spacing:30.240000px;}
.ls26{letter-spacing:32.040000px;}
.ls13{letter-spacing:36.000000px;}
.ls16{letter-spacing:38.016000px;}
.ls35{letter-spacing:39.312000px;}
.ls18{letter-spacing:43.632000px;}
.ls21{letter-spacing:43.848000px;}
.ls2f{letter-spacing:48.384000px;}
.ls1a{letter-spacing:49.680000px;}
.ls15{letter-spacing:50.472000px;}
.ls23{letter-spacing:58.320000px;}
.ls10{letter-spacing:59.328000px;}
.lse{letter-spacing:63.216000px;}
.ls30{letter-spacing:77.040000px;}
.ls14{letter-spacing:80.424000px;}
.lsd{letter-spacing:81.792000px;}
.ls2d{letter-spacing:108.288000px;}
.ls28{letter-spacing:110.880000px;}
.ls27{letter-spacing:120.600000px;}
.lsf{letter-spacing:136.008000px;}
.ls2b{letter-spacing:144.792000px;}
.ls25{letter-spacing:160.056000px;}
.ls19{letter-spacing:181.368000px;}
.ls32{letter-spacing:189.360000px;}
.ls2e{letter-spacing:230.904000px;}
.ls31{letter-spacing:237.240000px;}
.ls1c{letter-spacing:364.464000px;}
.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;}
}
.ws4{word-spacing:-72.000000px;}
.ws3{word-spacing:-43.992000px;}
.ws5{word-spacing:-29.328000px;}
.ws2{word-spacing:-18.000000px;}
.ws1{word-spacing:-12.000000px;}
.ws6{word-spacing:-6.102000px;}
.ws0{word-spacing:0.000000px;}
._e{margin-left:-4.464000px;}
._d{margin-left:-2.880000px;}
._11{margin-left:-1.008000px;}
._2{width:1.440000px;}
._1{width:2.832000px;}
._10{width:4.200000px;}
._0{width:5.280000px;}
._a{width:6.647940px;}
._6{width:7.866000px;}
._4{width:9.072000px;}
._5{width:11.046000px;}
._3{width:12.324000px;}
._12{width:13.392000px;}
._7{width:14.760000px;}
._19{width:15.768000px;}
._16{width:16.776000px;}
._8{width:17.868000px;}
._17{width:19.512000px;}
._18{width:21.186000px;}
._15{width:22.968000px;}
._f{width:24.696000px;}
._1e{width:26.280000px;}
._20{width:27.648000px;}
._22{width:29.016000px;}
._14{width:30.024000px;}
._13{width:31.680000px;}
._23{width:32.688000px;}
._1f{width:33.768000px;}
._1a{width:35.496000px;}
._21{width:36.600000px;}
._9{width:37.752000px;}
._1b{width:38.928000px;}
._41{width:40.032000px;}
._35{width:41.256000px;}
._25{width:42.840000px;}
._26{width:44.208000px;}
._27{width:45.504000px;}
._3d{width:47.448000px;}
._34{width:48.816000px;}
._2f{width:50.400000px;}
._32{width:52.488000px;}
._24{width:54.576000px;}
._30{width:56.160000px;}
._33{width:57.960000px;}
._2d{width:59.328000px;}
._2b{width:63.144000px;}
._28{width:71.136000px;}
._3e{width:76.968000px;}
._2e{width:80.424000px;}
._2a{width:81.792000px;}
._1c{width:89.352000px;}
._b{width:98.064000px;}
._3b{width:107.352000px;}
._1d{width:109.224000px;}
._39{width:110.808000px;}
._c{width:116.064000px;}
._38{width:120.600000px;}
._2c{width:136.008000px;}
._3a{width:144.792000px;}
._37{width:160.056000px;}
._31{width:181.296000px;}
._40{width:189.288000px;}
._29{width:203.328000px;}
._3c{width:230.832000px;}
._3f{width:237.168000px;}
._36{width:364.536000px;}
.fc7{color:transparent;}
.fc6{color:rgb(255,0,0);}
.fc4{color:rgb(225,29,37);}
.fc3{color:rgb(47,97,162);}
.fc5{color:rgb(102,102,102);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(128,128,128);}
.fc0{color:rgb(0,0,0);}
.fsc{font-size:27.000000px;}
.fs1{font-size:42.000000px;}
.fs0{font-size:48.000000px;}
.fsb{font-size:50.840359px;}
.fs9{font-size:51.839997px;}
.fs5{font-size:54.000000px;}
.fs6{font-size:60.000000px;}
.fs4{font-size:66.000000px;}
.fs7{font-size:72.000000px;}
.fsa{font-size:76.260538px;}
.fs2{font-size:78.000000px;}
.fs3{font-size:86.400000px;}
.fs8{font-size:132.000000px;}
.y143{bottom:-460.203797px;}
.y142{bottom:-445.203797px;}
.y0{bottom:0.000000px;}
.y15b{bottom:5.393994px;}
.y156{bottom:5.393995px;}
.y15d{bottom:5.393999px;}
.y7{bottom:17.988000px;}
.y1ba{bottom:17.999961px;}
.y1d{bottom:18.894015px;}
.y199{bottom:19.694993px;}
.y17f{bottom:20.781487px;}
.y151{bottom:22.017963px;}
.y1c9{bottom:23.404500px;}
.y1ac{bottom:24.592371px;}
.y149{bottom:24.592378px;}
.y141{bottom:24.592387px;}
.y18c{bottom:24.592420px;}
.y1c2{bottom:24.592424px;}
.y175{bottom:24.592452px;}
.y1a9{bottom:24.592460px;}
.y1be{bottom:24.592477px;}
.y167{bottom:24.592511px;}
.y6{bottom:30.588000px;}
.y1b9{bottom:32.999961px;}
.y14b{bottom:39.592542px;}
.y135{bottom:39.592544px;}
.y5{bottom:43.188001px;}
.y6d{bottom:43.889985px;}
.y1b8{bottom:47.999961px;}
.y31{bottom:48.000000px;}
.y4{bottom:55.788000px;}
.y198{bottom:61.092008px;}
.y6c{bottom:61.889985px;}
.y17e{bottom:62.178502px;}
.y150{bottom:63.414963px;}
.y1c8{bottom:64.801500px;}
.y1ab{bottom:65.989371px;}
.y148{bottom:65.989378px;}
.y140{bottom:65.989387px;}
.y18b{bottom:65.989405px;}
.y1c1{bottom:65.989424px;}
.y1a8{bottom:65.989445px;}
.y174{bottom:65.989467px;}
.y1bd{bottom:65.989492px;}
.y166{bottom:65.989511px;}
.y3{bottom:68.387999px;}
.y6b{bottom:79.889985px;}
.y2{bottom:80.988001px;}
.y6a{bottom:97.889985px;}
.y184{bottom:98.318420px;}
.y197{bottom:102.488993px;}
.y17d{bottom:103.575502px;}
.y14f{bottom:104.811963px;}
.y1c7{bottom:106.198500px;}
.y147{bottom:107.386378px;}
.y1c0{bottom:107.386424px;}
.y18a{bottom:107.386435px;}
.y1a7{bottom:107.386460px;}
.y173{bottom:107.386467px;}
.y1bc{bottom:107.386492px;}
.y165{bottom:107.386511px;}
.y1c5{bottom:107.850000px;}
.y164{bottom:107.999254px;}
.y14a{bottom:107.999793px;}
.y1aa{bottom:107.999799px;}
.y14c{bottom:107.999994px;}
.y1bf{bottom:108.000841px;}
.y196{bottom:108.196822px;}
.y17c{bottom:109.502918px;}
.y1b6{bottom:114.129000px;}
.y69{bottom:115.889985px;}
.y227{bottom:118.858470px;}
.y232{bottom:118.858500px;}
.y23f{bottom:118.858530px;}
.y1e4{bottom:125.454015px;}
.y84{bottom:125.461515px;}
.y133{bottom:126.082530px;}
.y2f{bottom:127.849500px;}
.y1f7{bottom:128.160045px;}
.y22c{bottom:130.255470px;}
.y207{bottom:130.255530px;}
.yd4{bottom:133.858530px;}
.y68{bottom:133.889985px;}
.y182{bottom:137.461485px;}
.yec{bottom:137.461515px;}
.y13e{bottom:140.848485px;}
.y21d{bottom:145.255470px;}
.y212{bottom:145.255500px;}
.y23e{bottom:145.255530px;}
.y1d2{bottom:145.858530px;}
.y14e{bottom:146.208963px;}
.y1a4{bottom:146.291970px;}
.y1c6{bottom:147.595500px;}
.y111{bottom:148.003455px;}
.y16e{bottom:148.003485px;}
.y146{bottom:148.783378px;}
.y189{bottom:148.783420px;}
.y1a6{bottom:148.783460px;}
.y172{bottom:148.783467px;}
.ye5{bottom:148.858470px;}
.yfc{bottom:148.858500px;}
.y98{bottom:151.858485px;}
.y67{bottom:151.889985px;}
.y168{bottom:152.461485px;}
.yad{bottom:152.461500px;}
.yb8{bottom:152.461515px;}
.y1b5{bottom:155.525985px;}
.y226{bottom:160.255470px;}
.y231{bottom:160.255500px;}
.y23b{bottom:160.255530px;}
.y127{bottom:163.858500px;}
.y1e3{bottom:166.851015px;}
.y83{bottom:166.858470px;}
.y132{bottom:167.479530px;}
.y2e{bottom:169.246500px;}
.y1f6{bottom:169.557045px;}
.y66{bottom:169.889985px;}
.y206{bottom:171.652530px;}
.yd3{bottom:175.255530px;}
.y163{bottom:178.630515px;}
.yeb{bottom:178.858500px;}
.y11b{bottom:178.858515px;}
.y13d{bottom:182.245485px;}
.y21c{bottom:186.652470px;}
.y211{bottom:186.652500px;}
.y23d{bottom:186.652530px;}
.y1d1{bottom:187.255530px;}
.y14d{bottom:187.605963px;}
.y1a3{bottom:187.689015px;}
.y65{bottom:187.889985px;}
.y110{bottom:189.400455px;}
.y16d{bottom:189.400500px;}
.y188{bottom:190.180435px;}
.y171{bottom:190.180467px;}
.ye4{bottom:190.255470px;}
.yfb{bottom:190.255485px;}
.y97{bottom:193.255515px;}
.yac{bottom:193.858485px;}
.yb7{bottom:193.858500px;}
.yc2{bottom:193.858515px;}
.y1b4{bottom:196.922970px;}
.y244{bottom:201.652470px;}
.y230{bottom:201.652500px;}
.y23a{bottom:201.652530px;}
.y126{bottom:205.255515px;}
.y64{bottom:205.889985px;}
.y1e2{bottom:208.247955px;}
.y82{bottom:208.255500px;}
.y131{bottom:208.876515px;}
.y205{bottom:213.049530px;}
.y225{bottom:216.652515px;}
.yd2{bottom:216.652530px;}
.y162{bottom:220.027515px;}
.yea{bottom:220.255515px;}
.y13c{bottom:223.642485px;}
.y63{bottom:223.889985px;}
.y1f5{bottom:225.953985px;}
.y21b{bottom:228.049485px;}
.y23c{bottom:228.049530px;}
.y2d{bottom:228.643470px;}
.y1d0{bottom:228.652530px;}
.y1a2{bottom:229.086000px;}
.y16c{bottom:230.797500px;}
.y187{bottom:231.577435px;}
.y170{bottom:231.577467px;}
.yfa{bottom:231.652500px;}
.y96{bottom:234.652515px;}
.yc1{bottom:235.255470px;}
.yb6{bottom:235.255485px;}
.yab{bottom:235.255515px;}
.y1b3{bottom:238.319985px;}
.y62{bottom:241.889985px;}
.y243{bottom:243.049485px;}
.y210{bottom:243.049500px;}
.y239{bottom:243.049530px;}
.y10f{bottom:245.797485px;}
.ye3{bottom:246.652500px;}
.y125{bottom:246.652515px;}
.y81{bottom:249.652530px;}
.y130{bottom:250.273515px;}
.y224{bottom:258.049500px;}
.yd1{bottom:258.049530px;}
.y61{bottom:259.889985px;}
.y161{bottom:261.424530px;}
.y11a{bottom:261.652500px;}
.ye9{bottom:261.652515px;}
.y1e1{bottom:264.644985px;}
.y13b{bottom:265.039485px;}
.y21a{bottom:269.446470px;}
.y204{bottom:269.446485px;}
.y2c{bottom:270.040470px;}
.y1a1{bottom:270.482985px;}
.y16b{bottom:272.194500px;}
.y186{bottom:272.974435px;}
.yf9{bottom:273.049500px;}
.y1cf{bottom:275.503530px;}
.y95{bottom:276.049500px;}
.y1c4{bottom:276.652470px;}
.yc0{bottom:276.652500px;}
.yaa{bottom:276.652515px;}
.y60{bottom:277.889985px;}
.y1b2{bottom:279.716970px;}
.y1f4{bottom:282.350985px;}
.y242{bottom:284.446470px;}
.y20f{bottom:284.446500px;}
.y10e{bottom:287.194500px;}
.ye2{bottom:288.049500px;}
.y128{bottom:288.049530px;}
.y80{bottom:291.049515px;}
.y12f{bottom:291.670515px;}
.y5f{bottom:295.889985px;}
.y238{bottom:299.446485px;}
.y22f{bottom:299.446500px;}
.y223{bottom:299.446515px;}
.y160{bottom:302.821515px;}
.y181{bottom:303.049485px;}
.ye8{bottom:303.049500px;}
.y1e0{bottom:306.041985px;}
.y13a{bottom:306.436485px;}
.y203{bottom:310.843485px;}
.y1ce{bottom:311.446515px;}
.y1a0{bottom:311.880000px;}
.y16a{bottom:313.591500px;}
.y5e{bottom:313.889985px;}
.y185{bottom:314.371435px;}
.yd0{bottom:314.446515px;}
.y94{bottom:317.446485px;}
.ybf{bottom:318.049485px;}
.ya9{bottom:318.049500px;}
.yf8{bottom:319.900500px;}
.y1b1{bottom:321.113985px;}
.y1f3{bottom:323.747985px;}
.y20e{bottom:325.843500px;}
.y219{bottom:325.843515px;}
.y10d{bottom:329.100000px;}
.y2b{bottom:329.437500px;}
.ye1{bottom:329.446515px;}
.y5d{bottom:331.889985px;}
.y7f{bottom:332.446500px;}
.y12e{bottom:338.521530px;}
.y237{bottom:340.843485px;}
.y22e{bottom:340.843500px;}
.y222{bottom:340.843515px;}
.y15f{bottom:341.520000px;}
.y119{bottom:344.446500px;}
.ye7{bottom:344.446515px;}
.y1df{bottom:347.438985px;}
.y139{bottom:347.833485px;}
.y5c{bottom:349.889985px;}
.y202{bottom:352.240485px;}
.y1cd{bottom:352.843515px;}
.y19f{bottom:353.276985px;}
.y169{bottom:354.988500px;}
.ycf{bottom:355.843485px;}
.yf7{bottom:355.843500px;}
.y93{bottom:358.843515px;}
.y15e{bottom:359.074522px;}
.ya8{bottom:359.446485px;}
.yb5{bottom:359.446500px;}
.ybe{bottom:359.446515px;}
.y144{bottom:362.023500px;}
.y1b0{bottom:362.510985px;}
.y1f2{bottom:365.145015px;}
.y20d{bottom:367.240500px;}
.y218{bottom:367.240515px;}
.y5b{bottom:367.889985px;}
.y10c{bottom:369.780802px;}
.y2a{bottom:370.834485px;}
.ye0{bottom:370.843515px;}
.y10b{bottom:372.861030px;}
.y7e{bottom:373.843500px;}
.y12d{bottom:374.464515px;}
.y15c{bottom:379.773016px;}
.y236{bottom:382.240485px;}
.y22d{bottom:382.240500px;}
.y241{bottom:382.240515px;}
.y108{bottom:383.611515px;}
.y118{bottom:385.843500px;}
.ye6{bottom:385.843515px;}
.y5a{bottom:385.889985px;}
.y1de{bottom:388.836000px;}
.y138{bottom:389.230500px;}
.y201{bottom:393.637485px;}
.y19e{bottom:394.674000px;}
.yf6{bottom:397.240500px;}
.yce{bottom:397.240515px;}
.y10a{bottom:397.241302px;}
.y92{bottom:400.240500px;}
.y109{bottom:400.321515px;}
.y15a{bottom:400.471521px;}
.yb4{bottom:400.843485px;}
.ybd{bottom:400.843500px;}
.ya7{bottom:400.843515px;}
.y59{bottom:403.889985px;}
.y1af{bottom:403.907985px;}
.y1f1{bottom:406.542000px;}
.y217{bottom:408.637515px;}
.y1cc{bottom:412.240500px;}
.ydf{bottom:412.240515px;}
.y16f{bottom:414.318093px;}
.y7d{bottom:415.240485px;}
.y12c{bottom:415.861515px;}
.y159{bottom:421.170021px;}
.y145{bottom:421.353797px;}
.y58{bottom:421.889985px;}
.y235{bottom:423.637485px;}
.y20c{bottom:423.637500px;}
.y240{bottom:423.637515px;}
.y117{bottom:427.240500px;}
.y29{bottom:430.231515px;}
.y1dd{bottom:430.232985px;}
.y137{bottom:430.627485px;}
.y19d{bottom:436.071000px;}
.y107{bottom:437.900301px;}
.ycd{bottom:438.637500px;}
.y57{bottom:439.889985px;}
.y106{bottom:440.980515px;}
.y91{bottom:441.637500px;}
.y158{bottom:441.868520px;}
.ya6{bottom:442.240500px;}
.yb3{bottom:442.240515px;}
.y1ae{bottom:445.304985px;}
.y1f0{bottom:447.938985px;}
.y200{bottom:450.034485px;}
.y216{bottom:450.034515px;}
.y103{bottom:451.731015px;}
.yf5{bottom:453.637485px;}
.y124{bottom:453.637500px;}
.yde{bottom:453.637515px;}
.y7c{bottom:456.637515px;}
.y12b{bottom:457.258530px;}
.y56{bottom:457.889985px;}
.y157{bottom:462.567020px;}
.y20b{bottom:465.034515px;}
.y105{bottom:465.360785px;}
.y104{bottom:468.441015px;}
.y1cb{bottom:468.637485px;}
.y116{bottom:468.637500px;}
.y28{bottom:471.628515px;}
.y55{bottom:475.889985px;}
.y19c{bottom:477.468000px;}
.ycc{bottom:480.034485px;}
.y221{bottom:480.034515px;}
.y90{bottom:483.034485px;}
.ybc{bottom:483.637485px;}
.ya5{bottom:483.637500px;}
.y155{bottom:484.390520px;}
.y1dc{bottom:486.629985px;}
.y1ad{bottom:486.701985px;}
.y1ef{bottom:489.335970px;}
.y13f{bottom:489.956926px;}
.y1ff{bottom:491.431500px;}
.y54{bottom:493.889985px;}
.y123{bottom:495.034485px;}
.ydd{bottom:495.034515px;}
.y7b{bottom:498.034500px;}
.y12a{bottom:498.655515px;}
.y22b{bottom:506.431485px;}
.y20a{bottom:506.431515px;}
.y102{bottom:507.034485px;}
.y27{bottom:507.327000px;}
.yf4{bottom:510.034485px;}
.y1ca{bottom:510.034500px;}
.y115{bottom:510.034515px;}
.y53{bottom:511.889985px;}
.y19b{bottom:518.865000px;}
.y234{bottom:521.431485px;}
.ycb{bottom:521.431500px;}
.y220{bottom:521.431515px;}
.y8f{bottom:524.431515px;}
.ya4{bottom:525.034485px;}
.ybb{bottom:525.034515px;}
.y26{bottom:528.025500px;}
.y52{bottom:529.889985px;}
.y1ee{bottom:530.733015px;}
.y1c{bottom:530.851493px;}
.y1fe{bottom:532.828500px;}
.y154{bottom:533.431515px;}
.y122{bottom:536.431500px;}
.y7a{bottom:539.431485px;}
.y1db{bottom:546.027000px;}
.y1bb{bottom:546.030893px;}
.y22a{bottom:547.828485px;}
.y215{bottom:547.828515px;}
.y51{bottom:547.889985px;}
.y101{bottom:548.431500px;}
.y1b{bottom:548.851493px;}
.yf3{bottom:551.431485px;}
.y180{bottom:551.431500px;}
.ydc{bottom:551.431515px;}
.y134{bottom:557.985040px;}
.y19a{bottom:560.262000px;}
.yca{bottom:562.828485px;}
.y209{bottom:562.828500px;}
.y8e{bottom:565.828500px;}
.y50{bottom:565.889985px;}
.y1c3{bottom:566.431485px;}
.yb2{bottom:566.431500px;}
.ya3{bottom:566.431515px;}
.y1a{bottom:566.851493px;}
.y17b{bottom:571.828485px;}
.y1ed{bottom:572.130000px;}
.y121{bottom:577.828485px;}
.y79{bottom:580.828485px;}
.y4f{bottom:583.889985px;}
.y19{bottom:584.851493px;}
.y25{bottom:587.422485px;}
.y1da{bottom:587.424000px;}
.y229{bottom:589.225485px;}
.y1fd{bottom:589.225500px;}
.y214{bottom:589.225515px;}
.y100{bottom:589.828500px;}
.ydb{bottom:592.828485px;}
.y114{bottom:592.828500px;}
.yf2{bottom:592.828515px;}
.y4e{bottom:601.889985px;}
.y18{bottom:602.851493px;}
.y233{bottom:604.225485px;}
.yc9{bottom:604.225500px;}
.y8d{bottom:607.225485px;}
.yb1{bottom:607.828485px;}
.ya2{bottom:607.828500px;}
.y17a{bottom:613.225485px;}
.y1ec{bottom:613.526985px;}
.y21f{bottom:619.225485px;}
.y120{bottom:619.225500px;}
.y1a5{bottom:619.592080px;}
.y4d{bottom:619.889985px;}
.y17{bottom:620.851504px;}
.y78{bottom:622.225515px;}
.y24{bottom:628.819485px;}
.y1fc{bottom:630.622500px;}
.y213{bottom:630.622515px;}
.yff{bottom:631.225500px;}
.y195{bottom:631.225515px;}
.y1d9{bottom:633.320985px;}
.yda{bottom:634.225485px;}
.yf1{bottom:634.225500px;}
.y153{bottom:634.225515px;}
.y4c{bottom:637.889985px;}
.y16{bottom:638.851504px;}
.y228{bottom:645.622485px;}
.yc8{bottom:645.622500px;}
.y8c{bottom:648.622500px;}
.ya1{bottom:649.225485px;}
.yb0{bottom:649.225500px;}
.y179{bottom:654.622485px;}
.y1eb{bottom:654.924000px;}
.y4b{bottom:655.889985px;}
.y15{bottom:656.851504px;}
.y21e{bottom:660.622485px;}
.y11f{bottom:660.622500px;}
.y77{bottom:663.622500px;}
.y1fb{bottom:672.019500px;}
.yfe{bottom:672.622500px;}
.y4a{bottom:673.889985px;}
.y14{bottom:674.851504px;}
.yd9{bottom:675.622485px;}
.y113{bottom:675.622500px;}
.y1d8{bottom:683.718000px;}
.yc7{bottom:687.019500px;}
.y23{bottom:688.216500px;}
.y8b{bottom:690.019485px;}
.y136{bottom:690.622485px;}
.ya0{bottom:690.622500px;}
.yba{bottom:690.622515px;}
.y49{bottom:691.889985px;}
.y13{bottom:692.851504px;}
.y178{bottom:696.019500px;}
.y1ea{bottom:696.320985px;}
.y11e{bottom:702.019500px;}
.y76{bottom:705.019485px;}
.y48{bottom:709.889985px;}
.y12{bottom:710.851498px;}
.y194{bottom:714.019485px;}
.yfd{bottom:714.019500px;}
.yd8{bottom:717.019485px;}
.yf0{bottom:717.019500px;}
.y47{bottom:727.889985px;}
.yc6{bottom:728.416500px;}
.y11{bottom:728.851498px;}
.y22{bottom:729.613500px;}
.y8a{bottom:731.416500px;}
.y9f{bottom:732.019485px;}
.yaf{bottom:732.019500px;}
.y177{bottom:737.416500px;}
.y1e9{bottom:737.718000px;}
.y1d7{bottom:743.115015px;}
.y208{bottom:743.416485px;}
.y11d{bottom:743.416500px;}
.y46{bottom:745.889985px;}
.y75{bottom:746.416500px;}
.y10{bottom:746.851498px;}
.y193{bottom:755.416500px;}
.yd7{bottom:758.416485px;}
.y112{bottom:758.416500px;}
.y45{bottom:763.889985px;}
.yc5{bottom:769.813500px;}
.y89{bottom:772.813500px;}
.yb9{bottom:773.416485px;}
.y9e{bottom:773.416500px;}
.y1e8{bottom:779.115000px;}
.y44{bottom:781.889985px;}
.yf{bottom:783.369000px;}
.y11c{bottom:784.813500px;}
.y74{bottom:787.813485px;}
.y21{bottom:789.010500px;}
.y1d6{bottom:789.012000px;}
.y192{bottom:796.813485px;}
.y176{bottom:796.813500px;}
.y152{bottom:799.813485px;}
.yd6{bottom:799.813500px;}
.y43{bottom:799.889985px;}
.y88{bottom:814.210500px;}
.y9d{bottom:814.813500px;}
.y42{bottom:817.889985px;}
.y1e7{bottom:820.512000px;}
.yc4{bottom:826.210485px;}
.y1fa{bottom:826.210500px;}
.y73{bottom:829.210500px;}
.y20{bottom:830.407500px;}
.y41{bottom:835.889985px;}
.y191{bottom:838.210500px;}
.yd5{bottom:841.210485px;}
.yef{bottom:841.210500px;}
.y1d5{bottom:848.409015px;}
.y40{bottom:853.889985px;}
.y87{bottom:855.607500px;}
.ye{bottom:856.135506px;}
.yae{bottom:856.210485px;}
.y9c{bottom:856.210500px;}
.y1e6{bottom:861.909000px;}
.y1f9{bottom:867.607500px;}
.y72{bottom:870.607500px;}
.y3f{bottom:871.889985px;}
.yd{bottom:878.335499px;}
.y190{bottom:879.607500px;}
.yc3{bottom:882.607500px;}
.y3e{bottom:889.889985px;}
.y1d4{bottom:894.306000px;}
.y86{bottom:897.004500px;}
.y9b{bottom:897.607500px;}
.yc{bottom:901.568996px;}
.y1e5{bottom:903.306000px;}
.y3d{bottom:907.889985px;}
.y1f8{bottom:909.004500px;}
.y71{bottom:912.004500px;}
.y1f{bottom:919.297500px;}
.y18f{bottom:921.004500px;}
.yb{bottom:921.369003px;}
.yee{bottom:924.004500px;}
.y3c{bottom:925.889985px;}
.y9a{bottom:939.004500px;}
.y3b{bottom:943.889985px;}
.y1d3{bottom:944.703000px;}
.ya{bottom:945.925501px;}
.y70{bottom:953.401500px;}
.y3a{bottom:961.889985px;}
.y18e{bottom:962.401500px;}
.yed{bottom:965.401500px;}
.y9{bottom:971.845499px;}
.y39{bottom:979.889985px;}
.y99{bottom:980.401500px;}
.y6f{bottom:994.798500px;}
.y1e{bottom:995.191500px;}
.y38{bottom:997.889985px;}
.y18d{bottom:1003.798500px;}
.y8{bottom:1006.042500px;}
.y129{bottom:1006.798500px;}
.y37{bottom:1015.889985px;}
.y1{bottom:1019.304000px;}
.y85{bottom:1021.798500px;}
.y183{bottom:1027.252500px;}
.y36{bottom:1033.889985px;}
.y35{bottom:1051.889985px;}
.y6e{bottom:1063.195500px;}
.y34{bottom:1069.889985px;}
.y33{bottom:1087.889985px;}
.y32{bottom:1105.889985px;}
.y30{bottom:1159.889985px;}
.y1b7{bottom:1452.156969px;}
.h24{height:-433.203785px;}
.h33{height:-264.156969px;}
.h2a{height:23.698500px;}
.h2b{height:24.073500px;}
.h26{height:30.146484px;}
.h25{height:32.105883px;}
.h19{height:36.348748px;}
.h8{height:36.598517px;}
.h14{height:42.117188px;}
.hd{height:43.260000px;}
.h2{height:43.804688px;}
.he{height:48.796875px;}
.hc{height:49.992188px;}
.h1{height:50.062500px;}
.h16{height:50.484375px;}
.h21{height:53.471745px;}
.hb{height:55.144125px;}
.h6{height:56.320312px;}
.h22{height:56.397024px;}
.h28{height:56.397045px;}
.h7{height:62.578125px;}
.h9{height:63.175781px;}
.h13{height:63.933067px;}
.h10{height:63.933127px;}
.hf{height:63.933187px;}
.h12{height:63.933248px;}
.h11{height:63.933307px;}
.h5{height:68.835938px;}
.h3{height:81.351562px;}
.h23{height:82.793857px;}
.h32{height:82.793865px;}
.h4{height:90.112500px;}
.ha{height:115.822266px;}
.h30{height:119.293500px;}
.h2e{height:120.379995px;}
.h35{height:124.190925px;}
.h34{height:124.190985px;}
.h2c{height:124.191015px;}
.h36{height:164.400000px;}
.h27{height:165.587880px;}
.h31{height:165.587955px;}
.h29{height:204.410455px;}
.h2d{height:248.381970px;}
.h20{height:382.499976px;}
.h2f{height:387.572940px;}
.h1f{height:390.526531px;}
.h1c{height:401.277018px;}
.h1e{height:409.960464px;}
.h1d{height:417.987019px;}
.h1b{height:450.619468px;}
.h1a{height:458.646023px;}
.h15{height:469.396510px;}
.h18{height:478.079955px;}
.h17{height:486.106510px;}
.h0{height:1188.000000px;}
.w1{width:10.200000px;}
.w2{width:19.200000px;}
.wb{width:20.090160px;}
.w9{width:22.203720px;}
.w5{width:22.339500px;}
.w7{width:22.664880px;}
.w4{width:31.822500px;}
.w8{width:31.875000px;}
.w6{width:33.466500px;}
.w14{width:96.300000px;}
.w11{width:96.375000px;}
.w13{width:101.250000px;}
.w12{width:114.750000px;}
.wa{width:137.458500px;}
.w3{width:193.218000px;}
.we{width:352.874655px;}
.w19{width:374.100015px;}
.w18{width:688.818930px;}
.wc{width:692.625000px;}
.w17{width:699.432180px;}
.wd{width:702.000000px;}
.w1a{width:702.825030px;}
.w16{width:704.551215px;}
.wf{width:706.252035px;}
.w15{width:715.125000px;}
.w1b{width:716.456730px;}
.w10{width:731.338665px;}
.w1c{width:759.825030px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x1b{left:6.614993px;}
.x16{left:9.187496px;}
.xe{left:12.000000px;}
.x3e{left:36.937497px;}
.x38{left:39.187497px;}
.x3a{left:41.625002px;}
.x3b{left:43.687497px;}
.x3d{left:46.125002px;}
.x39{left:48.375002px;}
.x3c{left:52.875002px;}
.x3{left:67.500000px;}
.x8{left:73.486500px;}
.x44{left:81.000000px;}
.x33{left:93.337468px;}
.x40{left:101.437500px;}
.x42{left:106.744503px;}
.xa{left:108.000000px;}
.x41{left:110.475002px;}
.x31{left:112.500000px;}
.xb{left:115.500000px;}
.x12{left:123.150000px;}
.xd{left:150.525000px;}
.x45{left:156.000000px;}
.x2b{left:175.567500px;}
.x4{left:195.558002px;}
.x5{left:196.756496px;}
.x2c{left:198.781500px;}
.x2d{left:207.586500px;}
.x6{left:217.381496px;}
.x7{left:227.438999px;}
.x2e{left:230.502000px;}
.x37{left:259.162502px;}
.x3f{left:260.250000px;}
.x2f{left:265.101000px;}
.x34{left:276.256500px;}
.x32{left:282.375000px;}
.x30{left:286.030500px;}
.x9{left:295.825493px;}
.x15{left:312.728989px;}
.x22{left:341.896500px;}
.x10{left:351.840000px;}
.xf{left:361.979985px;}
.x35{left:445.837498px;}
.x2{left:459.000000px;}
.x1{left:462.564011px;}
.x23{left:464.943867px;}
.x24{left:482.355240px;}
.x25{left:486.319737px;}
.x17{left:491.535850px;}
.x26{left:503.983736px;}
.x18{left:508.947212px;}
.x29{left:509.991686px;}
.x19{left:512.911720px;}
.x43{left:514.875000px;}
.x2a{left:527.655686px;}
.x1a{left:530.575720px;}
.x27{left:533.663632px;}
.x20{left:537.640446px;}
.x1c{left:541.401967px;}
.x28{left:551.327632px;}
.x21{left:555.304446px;}
.x36{left:557.587498px;}
.x1d{left:558.865834px;}
.x1e{left:562.830334px;}
.x1f{left:580.494333px;}
.x13{left:791.400000px;}
.xc{left:800.400000px;}
.x14{left:821.955000px;}
.x11{left:829.650015px;}
@media print{
.v3{vertical-align:-19.392000pt;}
.v2{vertical-align:-9.600000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:11.312000pt;}
.v1{vertical-align:19.392000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.010667pt;}
.ls3{letter-spacing:0.064000pt;}
.ls33{letter-spacing:0.640000pt;}
.ls12{letter-spacing:1.216000pt;}
.ls22{letter-spacing:1.344000pt;}
.ls2c{letter-spacing:1.664000pt;}
.ls1d{letter-spacing:1.984000pt;}
.ls4{letter-spacing:3.549335pt;}
.ls1f{letter-spacing:3.776000pt;}
.lsa{letter-spacing:3.898560pt;}
.ls9{letter-spacing:3.904000pt;}
.ls11{letter-spacing:4.160000pt;}
.ls8{letter-spacing:4.352000pt;}
.ls6{letter-spacing:4.405333pt;}
.ls5{letter-spacing:4.736000pt;}
.ls2a{letter-spacing:5.184000pt;}
.ls1e{letter-spacing:5.568000pt;}
.ls34{letter-spacing:5.952000pt;}
.ls24{letter-spacing:6.336000pt;}
.ls29{letter-spacing:7.488000pt;}
.lsb{letter-spacing:7.552000pt;}
.ls1{letter-spacing:8.448000pt;}
.ls1b{letter-spacing:8.768000pt;}
.ls17{letter-spacing:8.896000pt;}
.ls20{letter-spacing:10.752000pt;}
.ls7{letter-spacing:16.704000pt;}
.lsc{letter-spacing:26.880000pt;}
.ls26{letter-spacing:28.480000pt;}
.ls13{letter-spacing:32.000000pt;}
.ls16{letter-spacing:33.792000pt;}
.ls35{letter-spacing:34.944000pt;}
.ls18{letter-spacing:38.784000pt;}
.ls21{letter-spacing:38.976000pt;}
.ls2f{letter-spacing:43.008000pt;}
.ls1a{letter-spacing:44.160000pt;}
.ls15{letter-spacing:44.864000pt;}
.ls23{letter-spacing:51.840000pt;}
.ls10{letter-spacing:52.736000pt;}
.lse{letter-spacing:56.192000pt;}
.ls30{letter-spacing:68.480000pt;}
.ls14{letter-spacing:71.488000pt;}
.lsd{letter-spacing:72.704000pt;}
.ls2d{letter-spacing:96.256000pt;}
.ls28{letter-spacing:98.560000pt;}
.ls27{letter-spacing:107.200000pt;}
.lsf{letter-spacing:120.896000pt;}
.ls2b{letter-spacing:128.704000pt;}
.ls25{letter-spacing:142.272000pt;}
.ls19{letter-spacing:161.216000pt;}
.ls32{letter-spacing:168.320000pt;}
.ls2e{letter-spacing:205.248000pt;}
.ls31{letter-spacing:210.880000pt;}
.ls1c{letter-spacing:323.968000pt;}
.ws4{word-spacing:-64.000000pt;}
.ws3{word-spacing:-39.104000pt;}
.ws5{word-spacing:-26.069333pt;}
.ws2{word-spacing:-16.000000pt;}
.ws1{word-spacing:-10.666667pt;}
.ws6{word-spacing:-5.424000pt;}
.ws0{word-spacing:0.000000pt;}
._e{margin-left:-3.968000pt;}
._d{margin-left:-2.560000pt;}
._11{margin-left:-0.896000pt;}
._2{width:1.280000pt;}
._1{width:2.517333pt;}
._10{width:3.733333pt;}
._0{width:4.693333pt;}
._a{width:5.909280pt;}
._6{width:6.992000pt;}
._4{width:8.064000pt;}
._5{width:9.818667pt;}
._3{width:10.954667pt;}
._12{width:11.904000pt;}
._7{width:13.120000pt;}
._19{width:14.016000pt;}
._16{width:14.912000pt;}
._8{width:15.882667pt;}
._17{width:17.344000pt;}
._18{width:18.832000pt;}
._15{width:20.416000pt;}
._f{width:21.952000pt;}
._1e{width:23.360000pt;}
._20{width:24.576000pt;}
._22{width:25.792000pt;}
._14{width:26.688000pt;}
._13{width:28.160000pt;}
._23{width:29.056000pt;}
._1f{width:30.016000pt;}
._1a{width:31.552000pt;}
._21{width:32.533333pt;}
._9{width:33.557333pt;}
._1b{width:34.602667pt;}
._41{width:35.584000pt;}
._35{width:36.672000pt;}
._25{width:38.080000pt;}
._26{width:39.296000pt;}
._27{width:40.448000pt;}
._3d{width:42.176000pt;}
._34{width:43.392000pt;}
._2f{width:44.800000pt;}
._32{width:46.656000pt;}
._24{width:48.512000pt;}
._30{width:49.920000pt;}
._33{width:51.520000pt;}
._2d{width:52.736000pt;}
._2b{width:56.128000pt;}
._28{width:63.232000pt;}
._3e{width:68.416000pt;}
._2e{width:71.488000pt;}
._2a{width:72.704000pt;}
._1c{width:79.424000pt;}
._b{width:87.168000pt;}
._3b{width:95.424000pt;}
._1d{width:97.088000pt;}
._39{width:98.496000pt;}
._c{width:103.168000pt;}
._38{width:107.200000pt;}
._2c{width:120.896000pt;}
._3a{width:128.704000pt;}
._37{width:142.272000pt;}
._31{width:161.152000pt;}
._40{width:168.256000pt;}
._29{width:180.736000pt;}
._3c{width:205.184000pt;}
._3f{width:210.816000pt;}
._36{width:324.032000pt;}
.fsc{font-size:24.000000pt;}
.fs1{font-size:37.333333pt;}
.fs0{font-size:42.666667pt;}
.fsb{font-size:45.191430pt;}
.fs9{font-size:46.079997pt;}
.fs5{font-size:48.000000pt;}
.fs6{font-size:53.333333pt;}
.fs4{font-size:58.666667pt;}
.fs7{font-size:64.000000pt;}
.fsa{font-size:67.787145pt;}
.fs2{font-size:69.333333pt;}
.fs3{font-size:76.800000pt;}
.fs8{font-size:117.333333pt;}
.y143{bottom:-409.070042pt;}
.y142{bottom:-395.736709pt;}
.y0{bottom:0.000000pt;}
.y15b{bottom:4.794661pt;}
.y156{bottom:4.794662pt;}
.y15d{bottom:4.794666pt;}
.y7{bottom:15.989334pt;}
.y1ba{bottom:15.999965pt;}
.y1d{bottom:16.794680pt;}
.y199{bottom:17.506660pt;}
.y17f{bottom:18.472433pt;}
.y151{bottom:19.571523pt;}
.y1c9{bottom:20.804000pt;}
.y1ac{bottom:21.859885pt;}
.y149{bottom:21.859892pt;}
.y141{bottom:21.859900pt;}
.y18c{bottom:21.859929pt;}
.y1c2{bottom:21.859932pt;}
.y175{bottom:21.859957pt;}
.y1a9{bottom:21.859964pt;}
.y1be{bottom:21.859979pt;}
.y167{bottom:21.860010pt;}
.y6{bottom:27.189333pt;}
.y1b9{bottom:29.333299pt;}
.y14b{bottom:35.193371pt;}
.y135{bottom:35.193373pt;}
.y5{bottom:38.389334pt;}
.y6d{bottom:39.013320pt;}
.y1b8{bottom:42.666632pt;}
.y31{bottom:42.666667pt;}
.y4{bottom:49.589333pt;}
.y198{bottom:54.304007pt;}
.y6c{bottom:55.013320pt;}
.y17e{bottom:55.269779pt;}
.y150{bottom:56.368856pt;}
.y1c8{bottom:57.601333pt;}
.y1ab{bottom:58.657219pt;}
.y148{bottom:58.657225pt;}
.y140{bottom:58.657233pt;}
.y18b{bottom:58.657249pt;}
.y1c1{bottom:58.657266pt;}
.y1a8{bottom:58.657284pt;}
.y174{bottom:58.657304pt;}
.y1bd{bottom:58.657326pt;}
.y166{bottom:58.657343pt;}
.y3{bottom:60.789332pt;}
.y6b{bottom:71.013320pt;}
.y2{bottom:71.989334pt;}
.y6a{bottom:87.013320pt;}
.y184{bottom:87.394151pt;}
.y197{bottom:91.101327pt;}
.y17d{bottom:92.067113pt;}
.y14f{bottom:93.166189pt;}
.y1c7{bottom:94.398667pt;}
.y147{bottom:95.454559pt;}
.y1c0{bottom:95.454599pt;}
.y18a{bottom:95.454609pt;}
.y1a7{bottom:95.454631pt;}
.y173{bottom:95.454637pt;}
.y1bc{bottom:95.454659pt;}
.y165{bottom:95.454676pt;}
.y1c5{bottom:95.866667pt;}
.y164{bottom:95.999337pt;}
.y14a{bottom:95.999816pt;}
.y1aa{bottom:95.999821pt;}
.y14c{bottom:95.999995pt;}
.y1bf{bottom:96.000748pt;}
.y196{bottom:96.174953pt;}
.y17c{bottom:97.335927pt;}
.y1b6{bottom:101.448000pt;}
.y69{bottom:103.013320pt;}
.y227{bottom:105.651973pt;}
.y232{bottom:105.652000pt;}
.y23f{bottom:105.652027pt;}
.y1e4{bottom:111.514680pt;}
.y84{bottom:111.521347pt;}
.y133{bottom:112.073360pt;}
.y2f{bottom:113.644000pt;}
.y1f7{bottom:113.920040pt;}
.y22c{bottom:115.782640pt;}
.y207{bottom:115.782693pt;}
.yd4{bottom:118.985360pt;}
.y68{bottom:119.013320pt;}
.y182{bottom:122.187987pt;}
.yec{bottom:122.188013pt;}
.y13e{bottom:125.198653pt;}
.y21d{bottom:129.115973pt;}
.y212{bottom:129.116000pt;}
.y23e{bottom:129.116027pt;}
.y1d2{bottom:129.652027pt;}
.y14e{bottom:129.963523pt;}
.y1a4{bottom:130.037307pt;}
.y1c6{bottom:131.196000pt;}
.y111{bottom:131.558627pt;}
.y16e{bottom:131.558653pt;}
.y146{bottom:132.251892pt;}
.y189{bottom:132.251929pt;}
.y1a6{bottom:132.251964pt;}
.y172{bottom:132.251970pt;}
.ye5{bottom:132.318640pt;}
.yfc{bottom:132.318667pt;}
.y98{bottom:134.985320pt;}
.y67{bottom:135.013320pt;}
.y168{bottom:135.521320pt;}
.yad{bottom:135.521333pt;}
.yb8{bottom:135.521347pt;}
.y1b5{bottom:138.245320pt;}
.y226{bottom:142.449307pt;}
.y231{bottom:142.449333pt;}
.y23b{bottom:142.449360pt;}
.y127{bottom:145.652000pt;}
.y1e3{bottom:148.312013pt;}
.y83{bottom:148.318640pt;}
.y132{bottom:148.870693pt;}
.y2e{bottom:150.441333pt;}
.y1f6{bottom:150.717373pt;}
.y66{bottom:151.013320pt;}
.y206{bottom:152.580027pt;}
.yd3{bottom:155.782693pt;}
.y163{bottom:158.782680pt;}
.yeb{bottom:158.985333pt;}
.y11b{bottom:158.985347pt;}
.y13d{bottom:161.995987pt;}
.y21c{bottom:165.913307pt;}
.y211{bottom:165.913333pt;}
.y23d{bottom:165.913360pt;}
.y1d1{bottom:166.449360pt;}
.y14d{bottom:166.760856pt;}
.y1a3{bottom:166.834680pt;}
.y65{bottom:167.013320pt;}
.y110{bottom:168.355960pt;}
.y16d{bottom:168.356000pt;}
.y188{bottom:169.049275pt;}
.y171{bottom:169.049304pt;}
.ye4{bottom:169.115973pt;}
.yfb{bottom:169.115987pt;}
.y97{bottom:171.782680pt;}
.yac{bottom:172.318653pt;}
.yb7{bottom:172.318667pt;}
.yc2{bottom:172.318680pt;}
.y1b4{bottom:175.042640pt;}
.y244{bottom:179.246640pt;}
.y230{bottom:179.246667pt;}
.y23a{bottom:179.246693pt;}
.y126{bottom:182.449347pt;}
.y64{bottom:183.013320pt;}
.y1e2{bottom:185.109293pt;}
.y82{bottom:185.116000pt;}
.y131{bottom:185.668013pt;}
.y205{bottom:189.377360pt;}
.y225{bottom:192.580013pt;}
.yd2{bottom:192.580027pt;}
.y162{bottom:195.580013pt;}
.yea{bottom:195.782680pt;}
.y13c{bottom:198.793320pt;}
.y63{bottom:199.013320pt;}
.y1f5{bottom:200.847987pt;}
.y21b{bottom:202.710653pt;}
.y23c{bottom:202.710693pt;}
.y2d{bottom:203.238640pt;}
.y1d0{bottom:203.246693pt;}
.y1a2{bottom:203.632000pt;}
.y16c{bottom:205.153333pt;}
.y187{bottom:205.846609pt;}
.y170{bottom:205.846637pt;}
.yfa{bottom:205.913333pt;}
.y96{bottom:208.580013pt;}
.yc1{bottom:209.115973pt;}
.yb6{bottom:209.115987pt;}
.yab{bottom:209.116013pt;}
.y1b3{bottom:211.839987pt;}
.y62{bottom:215.013320pt;}
.y243{bottom:216.043987pt;}
.y210{bottom:216.044000pt;}
.y239{bottom:216.044027pt;}
.y10f{bottom:218.486653pt;}
.ye3{bottom:219.246667pt;}
.y125{bottom:219.246680pt;}
.y81{bottom:221.913360pt;}
.y130{bottom:222.465347pt;}
.y224{bottom:229.377333pt;}
.yd1{bottom:229.377360pt;}
.y61{bottom:231.013320pt;}
.y161{bottom:232.377360pt;}
.y11a{bottom:232.580000pt;}
.ye9{bottom:232.580013pt;}
.y1e1{bottom:235.239987pt;}
.y13b{bottom:235.590653pt;}
.y21a{bottom:239.507973pt;}
.y204{bottom:239.507987pt;}
.y2c{bottom:240.035973pt;}
.y1a1{bottom:240.429320pt;}
.y16b{bottom:241.950667pt;}
.y186{bottom:242.643942pt;}
.yf9{bottom:242.710667pt;}
.y1cf{bottom:244.892027pt;}
.y95{bottom:245.377333pt;}
.y1c4{bottom:245.913307pt;}
.yc0{bottom:245.913333pt;}
.yaa{bottom:245.913347pt;}
.y60{bottom:247.013320pt;}
.y1b2{bottom:248.637307pt;}
.y1f4{bottom:250.978653pt;}
.y242{bottom:252.841307pt;}
.y20f{bottom:252.841333pt;}
.y10e{bottom:255.284000pt;}
.ye2{bottom:256.044000pt;}
.y128{bottom:256.044027pt;}
.y80{bottom:258.710680pt;}
.y12f{bottom:259.262680pt;}
.y5f{bottom:263.013320pt;}
.y238{bottom:266.174653pt;}
.y22f{bottom:266.174667pt;}
.y223{bottom:266.174680pt;}
.y160{bottom:269.174680pt;}
.y181{bottom:269.377320pt;}
.ye8{bottom:269.377333pt;}
.y1e0{bottom:272.037320pt;}
.y13a{bottom:272.387987pt;}
.y203{bottom:276.305320pt;}
.y1ce{bottom:276.841347pt;}
.y1a0{bottom:277.226667pt;}
.y16a{bottom:278.748000pt;}
.y5e{bottom:279.013320pt;}
.y185{bottom:279.441275pt;}
.yd0{bottom:279.508013pt;}
.y94{bottom:282.174653pt;}
.ybf{bottom:282.710653pt;}
.ya9{bottom:282.710667pt;}
.yf8{bottom:284.356000pt;}
.y1b1{bottom:285.434653pt;}
.y1f3{bottom:287.775987pt;}
.y20e{bottom:289.638667pt;}
.y219{bottom:289.638680pt;}
.y10d{bottom:292.533333pt;}
.y2b{bottom:292.833333pt;}
.ye1{bottom:292.841347pt;}
.y5d{bottom:295.013320pt;}
.y7f{bottom:295.508000pt;}
.y12e{bottom:300.908027pt;}
.y237{bottom:302.971987pt;}
.y22e{bottom:302.972000pt;}
.y222{bottom:302.972013pt;}
.y15f{bottom:303.573333pt;}
.y119{bottom:306.174667pt;}
.ye7{bottom:306.174680pt;}
.y1df{bottom:308.834653pt;}
.y139{bottom:309.185320pt;}
.y5c{bottom:311.013320pt;}
.y202{bottom:313.102653pt;}
.y1cd{bottom:313.638680pt;}
.y19f{bottom:314.023987pt;}
.y169{bottom:315.545333pt;}
.ycf{bottom:316.305320pt;}
.yf7{bottom:316.305333pt;}
.y93{bottom:318.972013pt;}
.y15e{bottom:319.177353pt;}
.ya8{bottom:319.507987pt;}
.yb5{bottom:319.508000pt;}
.ybe{bottom:319.508013pt;}
.y144{bottom:321.798667pt;}
.y1b0{bottom:322.231987pt;}
.y1f2{bottom:324.573347pt;}
.y20d{bottom:326.436000pt;}
.y218{bottom:326.436013pt;}
.y5b{bottom:327.013320pt;}
.y10c{bottom:328.694046pt;}
.y2a{bottom:329.630653pt;}
.ye0{bottom:329.638680pt;}
.y10b{bottom:331.432027pt;}
.y7e{bottom:332.305333pt;}
.y12d{bottom:332.857347pt;}
.y15c{bottom:337.576014pt;}
.y236{bottom:339.769320pt;}
.y22d{bottom:339.769333pt;}
.y241{bottom:339.769347pt;}
.y108{bottom:340.988013pt;}
.y118{bottom:342.972000pt;}
.ye6{bottom:342.972013pt;}
.y5a{bottom:343.013320pt;}
.y1de{bottom:345.632000pt;}
.y138{bottom:345.982667pt;}
.y201{bottom:349.899987pt;}
.y19e{bottom:350.821333pt;}
.yf6{bottom:353.102667pt;}
.yce{bottom:353.102680pt;}
.y10a{bottom:353.103379pt;}
.y92{bottom:355.769333pt;}
.y109{bottom:355.841347pt;}
.y15a{bottom:355.974685pt;}
.yb4{bottom:356.305320pt;}
.ybd{bottom:356.305333pt;}
.ya7{bottom:356.305347pt;}
.y59{bottom:359.013320pt;}
.y1af{bottom:359.029320pt;}
.y1f1{bottom:361.370667pt;}
.y217{bottom:363.233347pt;}
.y1cc{bottom:366.436000pt;}
.ydf{bottom:366.436013pt;}
.y16f{bottom:368.282750pt;}
.y7d{bottom:369.102653pt;}
.y12c{bottom:369.654680pt;}
.y159{bottom:374.373352pt;}
.y145{bottom:374.536708pt;}
.y58{bottom:375.013320pt;}
.y235{bottom:376.566653pt;}
.y20c{bottom:376.566667pt;}
.y240{bottom:376.566680pt;}
.y117{bottom:379.769333pt;}
.y29{bottom:382.428013pt;}
.y1dd{bottom:382.429320pt;}
.y137{bottom:382.779987pt;}
.y19d{bottom:387.618667pt;}
.y107{bottom:389.244712pt;}
.ycd{bottom:389.900000pt;}
.y57{bottom:391.013320pt;}
.y106{bottom:391.982680pt;}
.y91{bottom:392.566667pt;}
.y158{bottom:392.772018pt;}
.ya6{bottom:393.102667pt;}
.yb3{bottom:393.102680pt;}
.y1ae{bottom:395.826653pt;}
.y1f0{bottom:398.167987pt;}
.y200{bottom:400.030653pt;}
.y216{bottom:400.030680pt;}
.y103{bottom:401.538680pt;}
.yf5{bottom:403.233320pt;}
.y124{bottom:403.233333pt;}
.yde{bottom:403.233347pt;}
.y7c{bottom:405.900013pt;}
.y12b{bottom:406.452027pt;}
.y56{bottom:407.013320pt;}
.y157{bottom:411.170685pt;}
.y20b{bottom:413.364013pt;}
.y105{bottom:413.654031pt;}
.y104{bottom:416.392013pt;}
.y1cb{bottom:416.566653pt;}
.y116{bottom:416.566667pt;}
.y28{bottom:419.225347pt;}
.y55{bottom:423.013320pt;}
.y19c{bottom:424.416000pt;}
.ycc{bottom:426.697320pt;}
.y221{bottom:426.697347pt;}
.y90{bottom:429.363987pt;}
.ybc{bottom:429.899987pt;}
.ya5{bottom:429.900000pt;}
.y155{bottom:430.569351pt;}
.y1dc{bottom:432.559987pt;}
.y1ad{bottom:432.623987pt;}
.y1ef{bottom:434.965307pt;}
.y13f{bottom:435.517267pt;}
.y1ff{bottom:436.828000pt;}
.y54{bottom:439.013320pt;}
.y123{bottom:440.030653pt;}
.ydd{bottom:440.030680pt;}
.y7b{bottom:442.697333pt;}
.y12a{bottom:443.249347pt;}
.y22b{bottom:450.161320pt;}
.y20a{bottom:450.161347pt;}
.y102{bottom:450.697320pt;}
.y27{bottom:450.957333pt;}
.yf4{bottom:453.363987pt;}
.y1ca{bottom:453.364000pt;}
.y115{bottom:453.364013pt;}
.y53{bottom:455.013320pt;}
.y19b{bottom:461.213333pt;}
.y234{bottom:463.494653pt;}
.ycb{bottom:463.494667pt;}
.y220{bottom:463.494680pt;}
.y8f{bottom:466.161347pt;}
.ya4{bottom:466.697320pt;}
.ybb{bottom:466.697347pt;}
.y26{bottom:469.356000pt;}
.y52{bottom:471.013320pt;}
.y1ee{bottom:471.762680pt;}
.y1c{bottom:471.867993pt;}
.y1fe{bottom:473.625333pt;}
.y154{bottom:474.161347pt;}
.y122{bottom:476.828000pt;}
.y7a{bottom:479.494653pt;}
.y1db{bottom:485.357333pt;}
.y1bb{bottom:485.360794pt;}
.y22a{bottom:486.958653pt;}
.y215{bottom:486.958680pt;}
.y51{bottom:487.013320pt;}
.y101{bottom:487.494667pt;}
.y1b{bottom:487.867993pt;}
.yf3{bottom:490.161320pt;}
.y180{bottom:490.161333pt;}
.ydc{bottom:490.161347pt;}
.y134{bottom:495.986702pt;}
.y19a{bottom:498.010667pt;}
.yca{bottom:500.291987pt;}
.y209{bottom:500.292000pt;}
.y8e{bottom:502.958667pt;}
.y50{bottom:503.013320pt;}
.y1c3{bottom:503.494653pt;}
.yb2{bottom:503.494667pt;}
.ya3{bottom:503.494680pt;}
.y1a{bottom:503.867993pt;}
.y17b{bottom:508.291987pt;}
.y1ed{bottom:508.560000pt;}
.y121{bottom:513.625320pt;}
.y79{bottom:516.291987pt;}
.y4f{bottom:519.013320pt;}
.y19{bottom:519.867993pt;}
.y25{bottom:522.153320pt;}
.y1da{bottom:522.154667pt;}
.y229{bottom:523.755987pt;}
.y1fd{bottom:523.756000pt;}
.y214{bottom:523.756013pt;}
.y100{bottom:524.292000pt;}
.ydb{bottom:526.958653pt;}
.y114{bottom:526.958667pt;}
.yf2{bottom:526.958680pt;}
.y4e{bottom:535.013320pt;}
.y18{bottom:535.867993pt;}
.y233{bottom:537.089320pt;}
.yc9{bottom:537.089333pt;}
.y8d{bottom:539.755987pt;}
.yb1{bottom:540.291987pt;}
.ya2{bottom:540.292000pt;}
.y17a{bottom:545.089320pt;}
.y1ec{bottom:545.357320pt;}
.y21f{bottom:550.422653pt;}
.y120{bottom:550.422667pt;}
.y1a5{bottom:550.748516pt;}
.y4d{bottom:551.013320pt;}
.y17{bottom:551.868004pt;}
.y78{bottom:553.089347pt;}
.y24{bottom:558.950653pt;}
.y1fc{bottom:560.553333pt;}
.y213{bottom:560.553347pt;}
.yff{bottom:561.089333pt;}
.y195{bottom:561.089347pt;}
.y1d9{bottom:562.951987pt;}
.yda{bottom:563.755987pt;}
.yf1{bottom:563.756000pt;}
.y153{bottom:563.756013pt;}
.y4c{bottom:567.013320pt;}
.y16{bottom:567.868004pt;}
.y228{bottom:573.886653pt;}
.yc8{bottom:573.886667pt;}
.y8c{bottom:576.553333pt;}
.ya1{bottom:577.089320pt;}
.yb0{bottom:577.089333pt;}
.y179{bottom:581.886653pt;}
.y1eb{bottom:582.154667pt;}
.y4b{bottom:583.013320pt;}
.y15{bottom:583.868004pt;}
.y21e{bottom:587.219987pt;}
.y11f{bottom:587.220000pt;}
.y77{bottom:589.886667pt;}
.y1fb{bottom:597.350667pt;}
.yfe{bottom:597.886667pt;}
.y4a{bottom:599.013320pt;}
.y14{bottom:599.868004pt;}
.yd9{bottom:600.553320pt;}
.y113{bottom:600.553333pt;}
.y1d8{bottom:607.749333pt;}
.yc7{bottom:610.684000pt;}
.y23{bottom:611.748000pt;}
.y8b{bottom:613.350653pt;}
.y136{bottom:613.886653pt;}
.ya0{bottom:613.886667pt;}
.yba{bottom:613.886680pt;}
.y49{bottom:615.013320pt;}
.y13{bottom:615.868004pt;}
.y178{bottom:618.684000pt;}
.y1ea{bottom:618.951987pt;}
.y11e{bottom:624.017333pt;}
.y76{bottom:626.683987pt;}
.y48{bottom:631.013320pt;}
.y12{bottom:631.867999pt;}
.y194{bottom:634.683987pt;}
.yfd{bottom:634.684000pt;}
.yd8{bottom:637.350653pt;}
.yf0{bottom:637.350667pt;}
.y47{bottom:647.013320pt;}
.yc6{bottom:647.481333pt;}
.y11{bottom:647.867999pt;}
.y22{bottom:648.545333pt;}
.y8a{bottom:650.148000pt;}
.y9f{bottom:650.683987pt;}
.yaf{bottom:650.684000pt;}
.y177{bottom:655.481333pt;}
.y1e9{bottom:655.749333pt;}
.y1d7{bottom:660.546680pt;}
.y208{bottom:660.814653pt;}
.y11d{bottom:660.814667pt;}
.y46{bottom:663.013320pt;}
.y75{bottom:663.481333pt;}
.y10{bottom:663.867999pt;}
.y193{bottom:671.481333pt;}
.yd7{bottom:674.147987pt;}
.y112{bottom:674.148000pt;}
.y45{bottom:679.013320pt;}
.yc5{bottom:684.278667pt;}
.y89{bottom:686.945333pt;}
.yb9{bottom:687.481320pt;}
.y9e{bottom:687.481333pt;}
.y1e8{bottom:692.546667pt;}
.y44{bottom:695.013320pt;}
.yf{bottom:696.328000pt;}
.y11c{bottom:697.612000pt;}
.y74{bottom:700.278653pt;}
.y21{bottom:701.342667pt;}
.y1d6{bottom:701.344000pt;}
.y192{bottom:708.278653pt;}
.y176{bottom:708.278667pt;}
.y152{bottom:710.945320pt;}
.yd6{bottom:710.945333pt;}
.y43{bottom:711.013320pt;}
.y88{bottom:723.742667pt;}
.y9d{bottom:724.278667pt;}
.y42{bottom:727.013320pt;}
.y1e7{bottom:729.344000pt;}
.yc4{bottom:734.409320pt;}
.y1fa{bottom:734.409333pt;}
.y73{bottom:737.076000pt;}
.y20{bottom:738.140000pt;}
.y41{bottom:743.013320pt;}
.y191{bottom:745.076000pt;}
.yd5{bottom:747.742653pt;}
.yef{bottom:747.742667pt;}
.y1d5{bottom:754.141347pt;}
.y40{bottom:759.013320pt;}
.y87{bottom:760.540000pt;}
.ye{bottom:761.009338pt;}
.yae{bottom:761.075987pt;}
.y9c{bottom:761.076000pt;}
.y1e6{bottom:766.141333pt;}
.y1f9{bottom:771.206667pt;}
.y72{bottom:773.873333pt;}
.y3f{bottom:775.013320pt;}
.yd{bottom:780.742666pt;}
.y190{bottom:781.873333pt;}
.yc3{bottom:784.540000pt;}
.y3e{bottom:791.013320pt;}
.y1d4{bottom:794.938667pt;}
.y86{bottom:797.337333pt;}
.y9b{bottom:797.873333pt;}
.yc{bottom:801.394663pt;}
.y1e5{bottom:802.938667pt;}
.y3d{bottom:807.013320pt;}
.y1f8{bottom:808.004000pt;}
.y71{bottom:810.670667pt;}
.y1f{bottom:817.153333pt;}
.y18f{bottom:818.670667pt;}
.yb{bottom:818.994670pt;}
.yee{bottom:821.337333pt;}
.y3c{bottom:823.013320pt;}
.y9a{bottom:834.670667pt;}
.y3b{bottom:839.013320pt;}
.y1d3{bottom:839.736000pt;}
.ya{bottom:840.822667pt;}
.y70{bottom:847.468000pt;}
.y3a{bottom:855.013320pt;}
.y18e{bottom:855.468000pt;}
.yed{bottom:858.134667pt;}
.y9{bottom:863.862666pt;}
.y39{bottom:871.013320pt;}
.y99{bottom:871.468000pt;}
.y6f{bottom:884.265333pt;}
.y1e{bottom:884.614667pt;}
.y38{bottom:887.013320pt;}
.y18d{bottom:892.265333pt;}
.y8{bottom:894.260000pt;}
.y129{bottom:894.932000pt;}
.y37{bottom:903.013320pt;}
.y1{bottom:906.048000pt;}
.y85{bottom:908.265333pt;}
.y183{bottom:913.113333pt;}
.y36{bottom:919.013320pt;}
.y35{bottom:935.013320pt;}
.y6e{bottom:945.062667pt;}
.y34{bottom:951.013320pt;}
.y33{bottom:967.013320pt;}
.y32{bottom:983.013320pt;}
.y30{bottom:1031.013320pt;}
.y1b7{bottom:1290.806195pt;}
.h24{height:-385.070031pt;}
.h33{height:-234.806195pt;}
.h2a{height:21.065333pt;}
.h2b{height:21.398667pt;}
.h26{height:26.796875pt;}
.h25{height:28.538562pt;}
.h19{height:32.309998pt;}
.h8{height:32.532015pt;}
.h14{height:37.437500pt;}
.hd{height:38.453333pt;}
.h2{height:38.937500pt;}
.he{height:43.375000pt;}
.hc{height:44.437500pt;}
.h1{height:44.500000pt;}
.h16{height:44.875000pt;}
.h21{height:47.530440pt;}
.hb{height:49.017000pt;}
.h6{height:50.062500pt;}
.h22{height:50.130688pt;}
.h28{height:50.130707pt;}
.h7{height:55.625000pt;}
.h9{height:56.156250pt;}
.h13{height:56.829393pt;}
.h10{height:56.829447pt;}
.hf{height:56.829500pt;}
.h12{height:56.829553pt;}
.h11{height:56.829607pt;}
.h5{height:61.187500pt;}
.h3{height:72.312500pt;}
.h23{height:73.594539pt;}
.h32{height:73.594547pt;}
.h4{height:80.100000pt;}
.ha{height:102.953125pt;}
.h30{height:106.038667pt;}
.h2e{height:107.004440pt;}
.h35{height:110.391933pt;}
.h34{height:110.391987pt;}
.h2c{height:110.392013pt;}
.h36{height:146.133333pt;}
.h27{height:147.189227pt;}
.h31{height:147.189293pt;}
.h29{height:181.698182pt;}
.h2d{height:220.783973pt;}
.h20{height:339.999979pt;}
.h2f{height:344.509280pt;}
.h1f{height:347.134694pt;}
.h1c{height:356.690683pt;}
.h1e{height:364.409301pt;}
.h1d{height:371.544017pt;}
.h1b{height:400.550638pt;}
.h1a{height:407.685354pt;}
.h15{height:417.241342pt;}
.h18{height:424.959960pt;}
.h17{height:432.094676pt;}
.h0{height:1056.000000pt;}
.w1{width:9.066667pt;}
.w2{width:17.066667pt;}
.wb{width:17.857920pt;}
.w9{width:19.736640pt;}
.w5{width:19.857333pt;}
.w7{width:20.146560pt;}
.w4{width:28.286667pt;}
.w8{width:28.333333pt;}
.w6{width:29.748000pt;}
.w14{width:85.600000pt;}
.w11{width:85.666667pt;}
.w13{width:90.000000pt;}
.w12{width:102.000000pt;}
.wa{width:122.185333pt;}
.w3{width:171.749333pt;}
.we{width:313.666360pt;}
.w19{width:332.533347pt;}
.w18{width:612.283493pt;}
.wc{width:615.666667pt;}
.w17{width:621.717493pt;}
.wd{width:624.000000pt;}
.w1a{width:624.733360pt;}
.w16{width:626.267747pt;}
.wf{width:627.779587pt;}
.w15{width:635.666667pt;}
.w1b{width:636.850427pt;}
.w10{width:650.078813pt;}
.w1c{width:675.400027pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x1b{left:5.879994pt;}
.x16{left:8.166663pt;}
.xe{left:10.666667pt;}
.x3e{left:32.833330pt;}
.x38{left:34.833330pt;}
.x3a{left:37.000002pt;}
.x3b{left:38.833330pt;}
.x3d{left:41.000002pt;}
.x39{left:43.000002pt;}
.x3c{left:47.000002pt;}
.x3{left:60.000000pt;}
.x8{left:65.321334pt;}
.x44{left:72.000000pt;}
.x33{left:82.966638pt;}
.x40{left:90.166667pt;}
.x42{left:94.884003pt;}
.xa{left:96.000000pt;}
.x41{left:98.200002pt;}
.x31{left:100.000000pt;}
.xb{left:102.666667pt;}
.x12{left:109.466667pt;}
.xd{left:133.800000pt;}
.x45{left:138.666667pt;}
.x2b{left:156.060000pt;}
.x4{left:173.829336pt;}
.x5{left:174.894663pt;}
.x2c{left:176.694667pt;}
.x2d{left:184.521333pt;}
.x6{left:193.227997pt;}
.x7{left:202.167999pt;}
.x2e{left:204.890667pt;}
.x37{left:230.366669pt;}
.x3f{left:231.333333pt;}
.x2f{left:235.645333pt;}
.x34{left:245.561333pt;}
.x32{left:251.000000pt;}
.x30{left:254.249333pt;}
.x9{left:262.955994pt;}
.x15{left:277.981323pt;}
.x22{left:303.908000pt;}
.x10{left:312.746667pt;}
.xf{left:321.759987pt;}
.x35{left:396.299998pt;}
.x2{left:408.000000pt;}
.x1{left:411.168009pt;}
.x23{left:413.283437pt;}
.x24{left:428.760213pt;}
.x25{left:432.284210pt;}
.x17{left:436.920756pt;}
.x26{left:447.985543pt;}
.x18{left:452.397522pt;}
.x29{left:453.325943pt;}
.x19{left:455.921529pt;}
.x43{left:457.666667pt;}
.x2a{left:469.027276pt;}
.x1a{left:471.622862pt;}
.x27{left:474.367673pt;}
.x20{left:477.902618pt;}
.x1c{left:481.246193pt;}
.x28{left:490.069006pt;}
.x21{left:493.603952pt;}
.x36{left:495.633331pt;}
.x1d{left:496.769630pt;}
.x1e{left:500.293630pt;}
.x1f{left:515.994963pt;}
.x13{left:703.466667pt;}
.xc{left:711.466667pt;}
.x14{left:730.626667pt;}
.x11{left:737.466680pt;}
}




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