
    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_5ac5c9b14789abe3abb5e384.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;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_86555b0d3b0cd41f16dd3329.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_77d4444f93fd43ed3a0fdfe6.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.107910;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_d114173e475be3890c7e55cd.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.107910;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_a98cacc16f6bfadbdd2723cf.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.475000;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_f149d61ee7d0d04e94f0f5a6.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.109863;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_28f63709327cbeaae5f4f44a.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.692383;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_df45aceb3390d522d0ee4b9b.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.921000;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_efd033daad34d7bb8b8da77a.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.107910;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_571d1f65164f8b686d8eb207.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.107910;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_5728971468031c58b496773b.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.172000;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_274b9068f3069d5043fdcfb1.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.107910;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_c77de124452fafca73b3e449.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.878906;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_f72ed25fc0fe45551848c086.woff2')format("woff");}.fff{font-family:fff;line-height:1.022949;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_b5d5fb02c82bc1e24e4e525c.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.773000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_8d62b6375af868a1eaedad85.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.578000;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);}
.m3{transform:matrix(0.268014,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268014,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268014,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.281277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281277,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:3.065300px;}
.ls0{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.000006px;}
.ls6{letter-spacing:0.000012px;}
.ls4{letter-spacing:0.000126px;}
.ls8{letter-spacing:0.000132px;}
.ls7{letter-spacing:0.000192px;}
.ls1{letter-spacing:1.651467px;}
.ls5{letter-spacing:3.572166px;}
.ls14{letter-spacing:7.295305px;}
.ls11{letter-spacing:7.322084px;}
.ls20{letter-spacing:7.367990px;}
.ls17{letter-spacing:7.410071px;}
.ls1d{letter-spacing:7.425373px;}
.ls12{letter-spacing:7.444501px;}
.lsb{letter-spacing:7.467454px;}
.ls1b{letter-spacing:7.505709px;}
.lsf{letter-spacing:7.547790px;}
.ls13{letter-spacing:7.593697px;}
.lsd{letter-spacing:7.597522px;}
.ls1e{letter-spacing:7.605174px;}
.lse{letter-spacing:7.631952px;}
.ls10{letter-spacing:7.639603px;}
.ls1a{letter-spacing:7.647254px;}
.ls15{letter-spacing:7.662557px;}
.lsc{letter-spacing:7.685510px;}
.ls1c{letter-spacing:7.708463px;}
.ls19{letter-spacing:7.716114px;}
.ls1f{letter-spacing:7.754370px;}
.ls16{letter-spacing:7.784974px;}
.ls18{letter-spacing:7.811753px;}
.ls21{letter-spacing:7.888263px;}
.ls9{letter-spacing:8.697980px;}
.lsa{letter-spacing:9.439786px;}
.ls22{letter-spacing:17.827520px;}
.ls2{letter-spacing:19.038201px;}
.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;}
}
.ws11{word-spacing:-38.256000px;}
.ws1d{word-spacing:-38.255400px;}
.ws9{word-spacing:-24.230394px;}
.ws12{word-spacing:-21.538128px;}
.ws10{word-spacing:-21.270336px;}
.ws6{word-spacing:-14.011436px;}
.ws8{word-spacing:-13.437589px;}
.ws3{word-spacing:-12.610134px;}
.ws1{word-spacing:-12.375441px;}
.ws5{word-spacing:-11.955150px;}
.ws1c{word-spacing:-11.208832px;}
.ws2{word-spacing:-10.759500px;}
.ws15{word-spacing:-9.563850px;}
.ws0{word-spacing:0.000000px;}
.ws7{word-spacing:1.704305px;}
.wsa{word-spacing:2.883582px;}
.wsd{word-spacing:5.609356px;}
.wse{word-spacing:9.688454px;}
.wsc{word-spacing:10.372288px;}
.wsb{word-spacing:11.381303px;}
.ws1f{word-spacing:15.842965px;}
.ws13{word-spacing:15.900350px;}
.wsf{word-spacing:16.062940px;}
.ws4{word-spacing:16.182491px;}
.ws21{word-spacing:56.859001px;}
.ws28{word-spacing:56.935512px;}
.ws29{word-spacing:61.679181px;}
.ws1b{word-spacing:64.131353px;}
.ws26{word-spacing:70.171880px;}
.ws23{word-spacing:78.473302px;}
.ws27{word-spacing:81.189435px;}
.ws25{word-spacing:85.531423px;}
.ws22{word-spacing:108.637685px;}
.ws1e{word-spacing:125.856440px;}
.ws24{word-spacing:127.612363px;}
.ws18{word-spacing:165.707091px;}
.ws1a{word-spacing:170.527271px;}
.ws16{word-spacing:179.019970px;}
.ws20{word-spacing:186.353530px;}
.ws19{word-spacing:190.037525px;}
.ws17{word-spacing:193.453732px;}
.ws14{word-spacing:330.618469px;}
._2{margin-left:-17.343592px;}
._12{margin-left:-12.595176px;}
._7{margin-left:-5.003428px;}
._8{margin-left:-3.813167px;}
._b{margin-left:-2.711532px;}
._4{margin-left:-1.497722px;}
._1{width:1.929222px;}
._0{width:3.260159px;}
._3{width:4.413335px;}
._c{width:5.424852px;}
._a{width:6.935380px;}
._9{width:8.459464px;}
._6{width:9.782537px;}
._5{width:10.987601px;}
._f{width:12.879660px;}
._e{width:15.359977px;}
._d{width:16.584184px;}
._10{width:18.477880px;}
._11{width:20.318240px;}
._13{width:21.724899px;}
._17{width:23.063875px;}
._18{width:24.495189px;}
._14{width:30.193927px;}
._19{width:31.886776px;}
._46{width:34.139126px;}
._16{width:36.582759px;}
._15{width:37.711325px;}
._47{width:43.043322px;}
._39{width:67.727360px;}
._3d{width:72.547541px;}
._3e{width:75.680658px;}
._3b{width:81.040239px;}
._3c{width:92.057795px;}
._41{width:111.219924px;}
._43{width:117.092128px;}
._44{width:141.284843px;}
._3f{width:144.674272px;}
._42{width:154.295505px;}
._45{width:162.539544px;}
._38{width:164.073585px;}
._3a{width:173.407903px;}
._33{width:176.889144px;}
._40{width:182.826382px;}
._32{width:184.528747px;}
._34{width:204.662564px;}
._36{width:226.437538px;}
._37{width:274.581959px;}
._35{width:296.356933px;}
._1a{width:298.755546px;}
._29{width:299.874636px;}
._28{width:315.352771px;}
._27{width:320.019930px;}
._2b{width:331.446579px;}
._20{width:335.404219px;}
._24{width:341.827301px;}
._22{width:363.365091px;}
._1b{width:366.808077px;}
._21{width:374.252578px;}
._1e{width:387.733781px;}
._1d{width:393.433836px;}
._26{width:395.790368px;}
._2d{width:407.318753px;}
._2c{width:412.138933px;}
._1c{width:416.601306px;}
._2e{width:420.631632px;}
._2a{width:440.256652px;}
._25{width:502.816604px;}
._23{width:505.303205px;}
._1f{width:533.701085px;}
._30{width:770.945774px;}
._31{width:879.380705px;}
._2f{width:939.785982px;}
.fc2{color:rgb(12,118,159);}
.fc1{color:rgb(33,150,209);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:26.761800px;}
.fs9{font-size:38.255400px;}
.fse{font-size:38.256000px;}
.fsa{font-size:41.842200px;}
.fs4{font-size:42.000000px;}
.fs7{font-size:42.237000px;}
.fsb{font-size:43.038000px;}
.fsc{font-size:47.820600px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fs6{font-size:63.362400px;}
.fs0{font-size:72.000000px;}
.fs5{font-size:80.697000px;}
.fsd{font-size:83.685000px;}
.fs2{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.yc7{bottom:47.430000px;}
.y5{bottom:66.525004px;}
.y5c{bottom:76.859985px;}
.y1a4{bottom:78.411791px;}
.y98{bottom:78.416181px;}
.y101{bottom:78.491894px;}
.yc4{bottom:79.351073px;}
.y1fb{bottom:82.318949px;}
.y13d{bottom:85.296647px;}
.y17d{bottom:85.303747px;}
.y224{bottom:86.831374px;}
.y5b{bottom:91.199985px;}
.y100{bottom:92.778358px;}
.y1f3{bottom:93.458758px;}
.y1a3{bottom:94.144768px;}
.y97{bottom:94.147962px;}
.yc3{bottom:95.082855px;}
.y4{bottom:97.125005px;}
.y1fa{bottom:97.965849px;}
.y13c{bottom:98.222190px;}
.y17c{bottom:98.229290px;}
.y223{bottom:102.563156px;}
.y5a{bottom:105.629970px;}
.yff{bottom:107.149822px;}
.y1f2{bottom:109.190540px;}
.y1a2{bottom:109.791668px;}
.y96{bottom:109.794863px;}
.yc2{bottom:110.730951px;}
.y13b{bottom:111.063571px;}
.y17b{bottom:111.069715px;}
.y1f9{bottom:113.697631px;}
.y222{bottom:118.210057px;}
.y58{bottom:119.905636px;}
.yfe{bottom:121.521286px;}
.y13a{bottom:123.903996px;}
.y17a{bottom:123.911096px;}
.y1f1{bottom:124.838636px;}
.y1a1{bottom:125.523450px;}
.yc1{bottom:126.462733px;}
.y1f8{bottom:129.345727px;}
.y226{bottom:133.943034px;}
.y57{bottom:134.192100px;}
.yfd{bottom:135.807750px;}
.y139{bottom:136.744421px;}
.y179{bottom:136.751521px;}
.y26d{bottom:137.006400px;}
.y21{bottom:139.264499px;}
.y1f0{bottom:140.570417px;}
.y1a0{bottom:141.170350px;}
.y95{bottom:141.174740px;}
.yc0{bottom:142.109633px;}
.y1f7{bottom:145.077509px;}
.y26c{bottom:148.911480px;}
.y138{bottom:149.585803px;}
.y221{bottom:149.589934px;}
.y178{bottom:149.591946px;}
.y1ef{bottom:156.217318px;}
.y19f{bottom:156.903328px;}
.y94{bottom:156.906522px;}
.yfc{bottom:157.070496px;}
.ybf{bottom:157.841415px;}
.y53{bottom:159.703536px;}
.y1f6{bottom:160.724409px;}
.y26b{bottom:160.901679px;}
.y137{bottom:162.426228px;}
.y177{bottom:162.433328px;}
.y225{bottom:165.321716px;}
.y2a5{bottom:167.279811px;}
.y22f{bottom:169.483500px;}
.yfb{bottom:169.910921px;}
.y1ee{bottom:171.949100px;}
.y19e{bottom:172.550228px;}
.y93{bottom:172.553423px;}
.y26a{bottom:172.807716px;}
.ybe{bottom:173.574392px;}
.y52{bottom:174.075000px;}
.y136{bottom:175.267609px;}
.y176{bottom:175.273753px;}
.y233{bottom:175.776000px;}
.y1f5{bottom:176.456191px;}
.y2a4{bottom:179.270009px;}
.y220{bottom:180.968616px;}
.yfa{bottom:182.752303px;}
.y269{bottom:184.797915px;}
.y1ed{bottom:187.596000px;}
.y135{bottom:188.108034px;}
.y175{bottom:188.115134px;}
.y19d{bottom:188.282010px;}
.ybd{bottom:189.221293px;}
.y2a3{bottom:191.260208px;}
.y22b{bottom:191.593500px;}
.y1f4{bottom:192.101896px;}
.yf9{bottom:195.592728px;}
.y21f{bottom:196.701594px;}
.y268{bottom:196.788113px;}
.y18{bottom:196.933500px;}
.y134{bottom:201.033577px;}
.y174{bottom:201.040677px;}
.y2a2{bottom:203.166245px;}
.y19c{bottom:203.928910px;}
.y92{bottom:203.933300px;}
.ybc{bottom:204.953075px;}
.yf8{bottom:208.434109px;}
.y267{bottom:208.693194px;}
.y20{bottom:209.518500px;}
.y17{bottom:209.533503px;}
.y21e{bottom:212.348494px;}
.y133{bottom:213.874959px;}
.y173{bottom:213.881102px;}
.y2a1{bottom:215.156444px;}
.y19b{bottom:219.661888px;}
.ybb{bottom:220.599975px;}
.y266{bottom:220.684349px;}
.y1fe{bottom:221.272500px;}
.yf7{bottom:221.359652px;}
.y1f{bottom:222.118502px;}
.y16{bottom:222.133505px;}
.y200{bottom:225.780000px;}
.y50{bottom:225.868637px;}
.y132{bottom:226.715384px;}
.y172{bottom:226.722484px;}
.y2a0{bottom:227.061524px;}
.y21d{bottom:228.080276px;}
.y265{bottom:232.589429px;}
.yf6{bottom:234.200077px;}
.y1e{bottom:234.718504px;}
.y15{bottom:234.733496px;}
.y19a{bottom:235.308788px;}
.y91{bottom:236.077112px;}
.yba{bottom:236.332952px;}
.y29f{bottom:239.052679px;}
.y131{bottom:239.555809px;}
.y171{bottom:239.562909px;}
.y4f{bottom:241.601614px;}
.y21c{bottom:243.727176px;}
.y264{bottom:244.579628px;}
.yf5{bottom:247.041459px;}
.y199{bottom:251.040570px;}
.y29e{bottom:251.042878px;}
.y90{bottom:251.810090px;}
.y130{bottom:252.397190px;}
.y170{bottom:252.404290px;}
.y263{bottom:256.569827px;}
.y4e{bottom:257.248514px;}
.y21b{bottom:259.458958px;}
.yf4{bottom:259.881884px;}
.y1d{bottom:259.918497px;}
.y14{bottom:259.933500px;}
.y29d{bottom:262.947958px;}
.y16f{bottom:265.244715px;}
.y198{bottom:266.687470px;}
.y8f{bottom:267.456990px;}
.yb9{bottom:267.711635px;}
.y262{bottom:268.475864px;}
.y12f{bottom:272.125500px;}
.y1c{bottom:272.518500px;}
.y13{bottom:272.533503px;}
.yf3{bottom:272.722309px;}
.y4d{bottom:272.980296px;}
.y29c{bottom:274.938157px;}
.y21a{bottom:275.107054px;}
.y16e{bottom:278.085140px;}
.y261{bottom:280.466063px;}
.y197{bottom:282.420448px;}
.y8e{bottom:283.188772px;}
.y1d9{bottom:283.355340px;}
.yb8{bottom:283.358535px;}
.y1b{bottom:285.118502px;}
.y12{bottom:285.133499px;}
.yf2{bottom:285.563690px;}
.y29b{bottom:286.844194px;}
.y4c{bottom:288.627197px;}
.y219{bottom:290.838836px;}
.y16d{bottom:290.926522px;}
.y12e{bottom:291.855036px;}
.y260{bottom:292.371143px;}
.y196{bottom:298.067348px;}
.y29a{bottom:298.834393px;}
.y8d{bottom:298.835672px;}
.y1d8{bottom:299.087122px;}
.yb7{bottom:299.091512px;}
.y16c{bottom:303.852065px;}
.y4b{bottom:304.358978px;}
.y25f{bottom:304.361342px;}
.yf1{bottom:305.292000px;}
.y12d{bottom:306.226500px;}
.y218{bottom:306.485736px;}
.y1a{bottom:310.318501px;}
.y11{bottom:310.333501px;}
.y299{bottom:310.739473px;}
.y195{bottom:313.799130px;}
.y8c{bottom:314.567454px;}
.y1d7{bottom:314.734023px;}
.yb6{bottom:314.738413px;}
.y25e{bottom:316.352497px;}
.y16b{bottom:316.693446px;}
.y4a{bottom:320.007074px;}
.y217{bottom:322.217518px;}
.y298{bottom:322.729672px;}
.y19{bottom:322.918500px;}
.y10{bottom:322.933500px;}
.yf0{bottom:325.020036px;}
.y25d{bottom:328.257577px;}
.y194{bottom:329.446030px;}
.y16a{bottom:329.533871px;}
.y8b{bottom:330.215550px;}
.y1d6{bottom:330.467000px;}
.yb5{bottom:330.470195px;}
.y297{bottom:334.720827px;}
.y49{bottom:335.738856px;}
.y216{bottom:337.865614px;}
.yef{bottom:339.391500px;}
.y25c{bottom:340.247776px;}
.y121{bottom:340.248935px;}
.y169{bottom:342.374296px;}
.y193{bottom:345.177812px;}
.y8a{bottom:345.947332px;}
.y1d5{bottom:346.113900px;}
.yb4{bottom:346.117095px;}
.y296{bottom:346.625908px;}
.yf{bottom:348.133500px;}
.y48{bottom:351.385756px;}
.y25b{bottom:352.153813px;}
.y215{bottom:353.597396px;}
.y168{bottom:355.215678px;}
.y120{bottom:355.895835px;}
.y295{bottom:358.616106px;}
.y192{bottom:360.825908px;}
.y89{bottom:361.679114px;}
.y1d4{bottom:361.845682px;}
.yb3{bottom:361.848877px;}
.y25a{bottom:364.144012px;}
.y47{bottom:367.117538px;}
.y167{bottom:368.056103px;}
.y214{bottom:369.244296px;}
.y294{bottom:370.522143px;}
.y11f{bottom:371.627617px;}
.yed{bottom:373.414289px;}
.y259{bottom:376.049092px;}
.y191{bottom:376.557690px;}
.y88{bottom:377.326014px;}
.y1d3{bottom:377.492583px;}
.yb2{bottom:377.496973px;}
.y166{bottom:380.897484px;}
.y293{bottom:382.512342px;}
.y46{bottom:382.765634px;}
.y213{bottom:384.976078px;}
.ye{bottom:386.785499px;}
.y11e{bottom:387.275713px;}
.y258{bottom:388.039291px;}
.yec{bottom:389.147266px;}
.y190{bottom:392.204590px;}
.y87{bottom:393.058991px;}
.y1d2{bottom:393.225560px;}
.yb1{bottom:393.228754px;}
.y165{bottom:393.823027px;}
.y292{bottom:394.502541px;}
.y45{bottom:398.497416px;}
.y257{bottom:400.030446px;}
.y212{bottom:400.622978px;}
.y291{bottom:406.407621px;}
.y164{bottom:406.663452px;}
.y18f{bottom:407.936372px;}
.yd{bottom:408.044999px;}
.y86{bottom:408.705892px;}
.y1d1{bottom:408.872460px;}
.yb0{bottom:408.875655px;}
.y256{bottom:411.935527px;}
.y44{bottom:414.144316px;}
.y22e{bottom:415.077000px;}
.y211{bottom:416.355956px;}
.y232{bottom:417.714000px;}
.y290{bottom:418.398776px;}
.y11d{bottom:418.654395px;}
.y163{bottom:419.504834px;}
.yeb{bottom:420.525948px;}
.y18e{bottom:423.584468px;}
.y255{bottom:423.925725px;}
.y85{bottom:424.437674px;}
.y1d0{bottom:424.604242px;}
.yaf{bottom:424.607437px;}
.y43{bottom:429.876098px;}
.y28f{bottom:430.303857px;}
.y210{bottom:432.087738px;}
.y162{bottom:432.345259px;}
.y22a{bottom:432.424500px;}
.y254{bottom:435.830806px;}
.y18d{bottom:439.316250px;}
.y84{bottom:440.084574px;}
.y1cf{bottom:440.251142px;}
.yae{bottom:440.255532px;}
.y28e{bottom:442.294056px;}
.y161{bottom:445.185684px;}
.y42{bottom:445.524194px;}
.y20f{bottom:447.734638px;}
.y253{bottom:447.821961px;}
.y28d{bottom:454.199136px;}
.y11c{bottom:454.285524px;}
.y18c{bottom:454.963150px;}
.yea{bottom:455.222185px;}
.y83{bottom:455.817551px;}
.y1ce{bottom:455.984120px;}
.yad{bottom:455.987314px;}
.y160{bottom:458.027065px;}
.y252{bottom:459.812160px;}
.y1fd{bottom:461.083500px;}
.y41{bottom:461.255976px;}
.y1ff{bottom:463.464000px;}
.y20e{bottom:463.467615px;}
.y28c{bottom:466.190291px;}
.y11b{bottom:470.017306px;}
.y18b{bottom:470.694932px;}
.y15f{bottom:470.867490px;}
.ye9{bottom:470.869085px;}
.y82{bottom:471.464452px;}
.y1cd{bottom:471.631020px;}
.yac{bottom:471.634215px;}
.y251{bottom:471.717240px;}
.y40{bottom:476.987758px;}
.y28b{bottom:478.180490px;}
.y20d{bottom:479.114516px;}
.y250{bottom:483.708395px;}
.y15e{bottom:483.708872px;}
.y11a{bottom:485.665402px;}
.y18a{bottom:486.341832px;}
.ye8{bottom:486.600867px;}
.y81{bottom:487.196233px;}
.y1cc{bottom:487.362802px;}
.yab{bottom:487.365997px;}
.y28a{bottom:490.085570px;}
.y3f{bottom:492.634658px;}
.y20c{bottom:494.846298px;}
.y24f{bottom:495.613476px;}
.y15d{bottom:496.634415px;}
.y119{bottom:501.397184px;}
.y189{bottom:502.074810px;}
.y289{bottom:502.075769px;}
.ye7{bottom:502.247767px;}
.y80{bottom:502.843134px;}
.yc{bottom:502.864502px;}
.y1cb{bottom:503.009702px;}
.y24e{bottom:507.603674px;}
.y3e{bottom:508.367636px;}
.y15c{bottom:509.474840px;}
.y20b{bottom:510.493198px;}
.y288{bottom:513.981806px;}
.y118{bottom:517.044084px;}
.y188{bottom:517.721710px;}
.ye6{bottom:517.980745px;}
.y7f{bottom:518.576111px;}
.y1ca{bottom:518.742680px;}
.yaa{bottom:518.745874px;}
.y24d{bottom:519.508755px;}
.yb{bottom:520.864502px;}
.y15b{bottom:522.316221px;}
.y3d{bottom:524.014536px;}
.y287{bottom:525.972005px;}
.y20a{bottom:526.224980px;}
.y24c{bottom:531.499910px;}
.y117{bottom:532.775866px;}
.y187{bottom:533.453492px;}
.ye5{bottom:533.627645px;}
.y7e{bottom:534.223011px;}
.y1c9{bottom:534.389580px;}
.ya9{bottom:534.392775px;}
.y15a{bottom:535.156646px;}
.y286{bottom:537.962204px;}
.ya{bottom:538.864499px;}
.y3c{bottom:539.746318px;}
.y209{bottom:541.873076px;}
.y24b{bottom:543.490109px;}
.y159{bottom:547.998028px;}
.y116{bottom:548.422766px;}
.y186{bottom:549.186469px;}
.ye4{bottom:549.359427px;}
.y285{bottom:549.868240px;}
.y7d{bottom:549.954793px;}
.y1c8{bottom:550.121362px;}
.ya8{bottom:550.124557px;}
.y51{bottom:555.393218px;}
.y24a{bottom:555.395189px;}
.y9{bottom:556.864499px;}
.y208{bottom:557.604858px;}
.y158{bottom:560.838453px;}
.y284{bottom:561.858439px;}
.y115{bottom:564.155744px;}
.y185{bottom:564.833370px;}
.ye3{bottom:565.006327px;}
.y7c{bottom:565.601694px;}
.y1c7{bottom:565.768262px;}
.ya7{bottom:565.771457px;}
.y249{bottom:567.385388px;}
.y3b{bottom:571.125000px;}
.y207{bottom:573.251758px;}
.y157{bottom:573.678878px;}
.y283{bottom:573.763520px;}
.y248{bottom:579.291425px;}
.y114{bottom:579.802644px;}
.y184{bottom:580.565151px;}
.ye2{bottom:580.739305px;}
.y7b{bottom:581.333476px;}
.y1c6{bottom:581.500044px;}
.ya6{bottom:581.504434px;}
.y282{bottom:585.753718px;}
.y156{bottom:586.520259px;}
.y206{bottom:588.983540px;}
.y247{bottom:591.281624px;}
.y113{bottom:595.534426px;}
.y183{bottom:596.212052px;}
.ye1{bottom:596.386205px;}
.y7a{bottom:596.981571px;}
.y1c5{bottom:597.148140px;}
.ya5{bottom:597.151335px;}
.y281{bottom:597.744873px;}
.y155{bottom:599.445802px;}
.y246{bottom:603.271822px;}
.y205{bottom:604.631636px;}
.y280{bottom:609.649954px;}
.y112{bottom:611.181326px;}
.ye0{bottom:612.117987px;}
.y154{bottom:612.286227px;}
.y79{bottom:612.713353px;}
.y1c4{bottom:612.879922px;}
.ya4{bottom:612.883116px;}
.y245{bottom:615.176903px;}
.y204{bottom:620.363417px;}
.y27f{bottom:621.640153px;}
.y153{bottom:625.127609px;}
.y111{bottom:626.914304px;}
.y244{bottom:627.168058px;}
.y182{bottom:627.591930px;}
.ydf{bottom:627.764887px;}
.y78{bottom:628.360254px;}
.y1c3{bottom:628.526822px;}
.ya3{bottom:628.530017px;}
.y3a{bottom:630.567787px;}
.y27e{bottom:633.545233px;}
.y203{bottom:636.010318px;}
.y152{bottom:637.968034px;}
.y243{bottom:639.073138px;}
.y110{bottom:642.561204px;}
.yde{bottom:643.496669px;}
.y77{bottom:644.092036px;}
.y1c2{bottom:644.258604px;}
.ya2{bottom:644.262994px;}
.y39{bottom:644.939251px;}
.y8{bottom:645.510000px;}
.y27d{bottom:645.536388px;}
.y151{bottom:650.809415px;}
.y242{bottom:651.063337px;}
.y202{bottom:651.742100px;}
.y22d{bottom:657.439500px;}
.y27c{bottom:657.441469px;}
.y231{bottom:658.290000px;}
.y10f{bottom:658.292986px;}
.ydd{bottom:659.144765px;}
.y38{bottom:659.310715px;}
.y76{bottom:659.740131px;}
.y1c1{bottom:659.906700px;}
.ya1{bottom:659.909894px;}
.y241{bottom:662.969374px;}
.y150{bottom:663.649840px;}
.y181{bottom:664.753318px;}
.y7{bottom:666.771000px;}
.y201{bottom:667.389000px;}
.y27b{bottom:669.431668px;}
.y31{bottom:669.771419px;}
.y229{bottom:672.831000px;}
.y37{bottom:673.597179px;}
.ydc{bottom:674.876547px;}
.y240{bottom:674.959573px;}
.y75{bottom:675.471913px;}
.y1c0{bottom:675.638482px;}
.ya0{bottom:675.641676px;}
.y14f{bottom:676.490265px;}
.y180{bottom:680.400218px;}
.y27a{bottom:681.421866px;}
.y30{bottom:682.612800px;}
.y23f{bottom:686.949772px;}
.y36{bottom:687.968643px;}
.y14e{bottom:689.416765px;}
.y10e{bottom:689.672864px;}
.ydb{bottom:690.523447px;}
.y74{bottom:691.118814px;}
.y1bf{bottom:691.285382px;}
.y9f{bottom:691.288577px;}
.y279{bottom:693.327903px;}
.y2f{bottom:695.453225px;}
.y17f{bottom:696.132000px;}
.y1fc{bottom:697.407000px;}
.y23e{bottom:698.854852px;}
.y227{bottom:701.064000px;}
.y14d{bottom:702.257190px;}
.y35{bottom:702.340108px;}
.y278{bottom:705.318102px;}
.yda{bottom:706.255229px;}
.y73{bottom:706.850595px;}
.y1be{bottom:707.015969px;}
.y9e{bottom:707.021554px;}
.y2e{bottom:708.293650px;}
.y23d{bottom:710.846007px;}
.y14c{bottom:715.098571px;}
.y34{bottom:716.711572px;}
.y277{bottom:717.223182px;}
.y10d{bottom:721.051546px;}
.y2d{bottom:721.135032px;}
.yd9{bottom:721.903325px;}
.y72{bottom:722.498691px;}
.y1bd{bottom:722.748946px;}
.y23c{bottom:722.751088px;}
.y9d{bottom:722.753336px;}
.y6{bottom:726.298500px;}
.y14b{bottom:727.938996px;}
.y276{bottom:729.214338px;}
.y33{bottom:730.998036px;}
.y2c{bottom:733.975457px;}
.y23b{bottom:734.741286px;}
.y1eb{bottom:736.615528px;}
.yd8{bottom:737.635107px;}
.y1bc{bottom:738.395846px;}
.yee{bottom:738.400236px;}
.y14a{bottom:740.779421px;}
.y275{bottom:741.204536px;}
.y32{bottom:745.369500px;}
.y23a{bottom:746.731485px;}
.y2b{bottom:746.901000px;}
.y1ea{bottom:749.455953px;}
.y3{bottom:752.599495px;}
.y274{bottom:753.109617px;}
.yd7{bottom:753.282007px;}
.y10c{bottom:753.451198px;}
.y149{bottom:753.620803px;}
.y71{bottom:753.877373px;}
.y1bb{bottom:754.127628px;}
.y9c{bottom:754.132018px;}
.y239{bottom:758.637522px;}
.y1e9{bottom:762.296378px;}
.y273{bottom:765.099815px;}
.y148{bottom:766.461228px;}
.yd6{bottom:769.013789px;}
.y10b{bottom:769.098098px;}
.y1ba{bottom:769.774528px;}
.y9b{bottom:769.780114px;}
.y238{bottom:770.627721px;}
.y2a{bottom:774.624000px;}
.y1e8{bottom:775.222877px;}
.y272{bottom:777.005852px;}
.y147{bottom:779.302609px;}
.y237{bottom:782.532801px;}
.yd5{bottom:784.661885px;}
.y10a{bottom:784.831076px;}
.y70{bottom:785.256056px;}
.y1b9{bottom:785.507506px;}
.y9a{bottom:785.511896px;}
.y1e7{bottom:788.063302px;}
.y271{bottom:788.996051px;}
.y146{bottom:792.228152px;}
.y236{bottom:794.523000px;}
.yd4{bottom:800.393667px;}
.y109{bottom:800.477976px;}
.y270{bottom:800.900175px;}
.y1e6{bottom:800.903727px;}
.y1b8{bottom:801.154406px;}
.y99{bottom:801.158796px;}
.y145{bottom:805.068577px;}
.y26f{bottom:812.890374px;}
.y1e5{bottom:813.745109px;}
.yd3{bottom:816.040567px;}
.y108{bottom:816.209758px;}
.y1b7{bottom:816.886188px;}
.y6f{bottom:816.890578px;}
.y144{bottom:817.909959px;}
.y235{bottom:822.075000px;}
.y29{bottom:824.116500px;}
.y26e{bottom:824.881529px;}
.y1e4{bottom:826.585534px;}
.y28{bottom:828.369000px;}
.y143{bottom:830.750384px;}
.yd2{bottom:831.772349px;}
.y107{bottom:831.856658px;}
.y1b6{bottom:832.533088px;}
.y6e{bottom:832.537478px;}
.y27{bottom:836.958000px;}
.y1e3{bottom:839.426915px;}
.y26{bottom:841.209000px;}
.y142{bottom:843.590809px;}
.yd1{bottom:847.419249px;}
.y106{bottom:847.589636px;}
.y1b5{bottom:848.264870px;}
.y6d{bottom:848.270456px;}
.y1e2{bottom:852.267340px;}
.y141{bottom:856.432190px;}
.y24{bottom:861.619500px;}
.yd0{bottom:863.152227px;}
.y105{bottom:863.236536px;}
.y1b4{bottom:863.912966px;}
.y6c{bottom:863.917356px;}
.y1e1{bottom:865.107765px;}
.y25{bottom:868.677000px;}
.y140{bottom:876.160500px;}
.y1e0{bottom:878.034265px;}
.ycf{bottom:878.799127px;}
.y104{bottom:878.968318px;}
.y2{bottom:879.369000px;}
.y1b3{bottom:879.644748px;}
.y6b{bottom:879.649138px;}
.y1df{bottom:890.874690px;}
.y234{bottom:891.213000px;}
.yce{bottom:894.530909px;}
.y103{bottom:894.615218px;}
.y1b2{bottom:895.291648px;}
.y6a{bottom:895.296038px;}
.y13f{bottom:895.890036px;}
.y23{bottom:899.122216px;}
.y22c{bottom:899.376000px;}
.y230{bottom:900.907500px;}
.y1de{bottom:903.716071px;}
.y228{bottom:905.926558px;}
.ycd{bottom:910.177809px;}
.y13e{bottom:910.261500px;}
.y102{bottom:910.347000px;}
.y1b1{bottom:911.023430px;}
.y69{bottom:911.029016px;}
.y1dd{bottom:916.556496px;}
.y22{bottom:924.973500px;}
.ycc{bottom:925.910786px;}
.y1b0{bottom:926.671526px;}
.y68{bottom:926.675916px;}
.y1dc{bottom:929.396921px;}
.ycb{bottom:941.557687px;}
.y1db{bottom:942.238303px;}
.y1af{bottom:942.403308px;}
.y67{bottom:942.407698px;}
.y12c{bottom:955.078728px;}
.yca{bottom:957.289469px;}
.y1ae{bottom:958.050208px;}
.y66{bottom:958.054598px;}
.y1{bottom:966.726000px;}
.y12b{bottom:967.920109px;}
.y1ad{bottom:973.781990px;}
.y65{bottom:973.787576px;}
.y12a{bottom:980.845652px;}
.yc9{bottom:988.669346px;}
.y1ac{bottom:989.430086px;}
.y64{bottom:989.434476px;}
.y129{bottom:993.686077px;}
.y56{bottom:1003.719000px;}
.y1ab{bottom:1005.161868px;}
.y63{bottom:1005.166258px;}
.y128{bottom:1006.527459px;}
.y127{bottom:1019.367884px;}
.yc8{bottom:1020.048029px;}
.y1aa{bottom:1020.808768px;}
.y62{bottom:1020.813158px;}
.y126{bottom:1032.208309px;}
.y1a9{bottom:1036.540550px;}
.y61{bottom:1036.546136px;}
.y125{bottom:1045.049690px;}
.y55{bottom:1045.474500px;}
.y1da{bottom:1051.937575px;}
.y1a8{bottom:1052.187450px;}
.y60{bottom:1052.193036px;}
.y124{bottom:1064.778000px;}
.y1a7{bottom:1067.920428px;}
.y5f{bottom:1067.924818px;}
.y1a6{bottom:1083.567328px;}
.y5e{bottom:1083.571718px;}
.y123{bottom:1084.507536px;}
.y54{bottom:1087.312500px;}
.y122{bottom:1098.879000px;}
.y1a5{bottom:1099.299110px;}
.y5d{bottom:1099.303500px;}
.y59{bottom:1127.504970px;}
.y2a6{bottom:1128.468732px;}
.yc6{bottom:1128.629970px;}
.y17e{bottom:1128.639445px;}
.y1ec{bottom:1128.641565px;}
.yc5{bottom:1128.642000px;}
.hd{height:23.521113px;}
.h7{height:32.130000px;}
.he{height:33.622910px;}
.h14{height:33.623438px;}
.h13{height:34.478653px;}
.hf{height:36.775371px;}
.hc{height:37.122363px;}
.h10{height:37.826367px;}
.h11{height:42.029824px;}
.h6{height:45.900000px;}
.h3{height:48.195000px;}
.h2{height:55.080000px;}
.hb{height:55.689609px;}
.ha{height:70.925098px;}
.h12{height:73.551270px;}
.h5{height:78.030000px;}
.h4{height:119.055004px;}
.h9{height:1190.250000px;}
.h15{height:1190.380500px;}
.h8{height:1190.551500px;}
.h0{height:1262.833500px;}
.h1{height:1263.000000px;}
.w2{width:637.794021px;}
.w4{width:892.743000px;}
.w0{width:892.912500px;}
.w3{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:56.381100px;}
.xb{left:62.758950px;}
.x10{left:63.949500px;}
.x1a{left:65.397649px;}
.xd{left:74.323389px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x22{left:109.104864px;}
.x1e{left:136.316886px;}
.x24{left:145.842450px;}
.x25{left:147.713250px;}
.x6{left:152.730000px;}
.x7{left:159.279000px;}
.x15{left:163.444250px;}
.x4{left:203.484001px;}
.x19{left:221.527500px;}
.x21{left:234.620831px;}
.x12{left:242.022000px;}
.x8{left:254.268000px;}
.x28{left:259.114500px;}
.x9{left:260.815500px;}
.x14{left:296.415000px;}
.xc{left:302.995500px;}
.x2b{left:305.802000px;}
.x29{left:308.353500px;}
.x13{left:310.138500px;}
.x2a{left:311.754000px;}
.x2c{left:322.639500px;}
.x2d{left:324.510000px;}
.x2e{left:326.041500px;}
.x2f{left:327.741000px;}
.x30{left:329.613000px;}
.x31{left:331.143000px;}
.x11{left:342.624000px;}
.x1b{left:358.011711px;}
.xa{left:366.859500px;}
.x23{left:415.246500px;}
.x18{left:438.930000px;}
.x3{left:454.959000px;}
.xe{left:459.888932px;}
.x1f{left:468.907500px;}
.xf{left:477.831221px;}
.x33{left:489.480854px;}
.x16{left:496.880557px;}
.x1c{left:512.951819px;}
.x27{left:549.949500px;}
.x26{left:552.756000px;}
.x32{left:560.233260px;}
.x20{left:580.051870px;}
.x17{left:583.080000px;}
.x34{left:620.014973px;}
.x1d{left:738.729452px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:2.724712pt;}
.ls0{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.000005pt;}
.ls6{letter-spacing:0.000011pt;}
.ls4{letter-spacing:0.000112pt;}
.ls8{letter-spacing:0.000117pt;}
.ls7{letter-spacing:0.000171pt;}
.ls1{letter-spacing:1.467970pt;}
.ls5{letter-spacing:3.175259pt;}
.ls14{letter-spacing:6.484715pt;}
.ls11{letter-spacing:6.508519pt;}
.ls20{letter-spacing:6.549324pt;}
.ls17{letter-spacing:6.586730pt;}
.ls1d{letter-spacing:6.600332pt;}
.ls12{letter-spacing:6.617334pt;}
.lsb{letter-spacing:6.637737pt;}
.ls1b{letter-spacing:6.671742pt;}
.lsf{letter-spacing:6.709147pt;}
.ls13{letter-spacing:6.749953pt;}
.lsd{letter-spacing:6.753353pt;}
.ls1e{letter-spacing:6.760154pt;}
.lse{letter-spacing:6.783958pt;}
.ls10{letter-spacing:6.790759pt;}
.ls1a{letter-spacing:6.797560pt;}
.ls15{letter-spacing:6.811161pt;}
.lsc{letter-spacing:6.831564pt;}
.ls1c{letter-spacing:6.851967pt;}
.ls19{letter-spacing:6.858768pt;}
.ls1f{letter-spacing:6.892773pt;}
.ls16{letter-spacing:6.919977pt;}
.ls18{letter-spacing:6.943780pt;}
.ls21{letter-spacing:7.011790pt;}
.ls9{letter-spacing:7.731538pt;}
.lsa{letter-spacing:8.390921pt;}
.ls22{letter-spacing:15.846684pt;}
.ls2{letter-spacing:16.922845pt;}
.ws11{word-spacing:-34.005333pt;}
.ws1d{word-spacing:-34.004800pt;}
.ws9{word-spacing:-21.538128pt;}
.ws12{word-spacing:-19.145003pt;}
.ws10{word-spacing:-18.906965pt;}
.ws6{word-spacing:-12.454610pt;}
.ws8{word-spacing:-11.944523pt;}
.ws3{word-spacing:-11.209008pt;}
.ws1{word-spacing:-11.000392pt;}
.ws5{word-spacing:-10.626800pt;}
.ws1c{word-spacing:-9.963406pt;}
.ws2{word-spacing:-9.564000pt;}
.ws15{word-spacing:-8.501200pt;}
.ws0{word-spacing:0.000000pt;}
.ws7{word-spacing:1.514938pt;}
.wsa{word-spacing:2.563184pt;}
.wsd{word-spacing:4.986095pt;}
.wse{word-spacing:8.611959pt;}
.wsc{word-spacing:9.219812pt;}
.wsb{word-spacing:10.116714pt;}
.ws1f{word-spacing:14.082635pt;}
.ws13{word-spacing:14.133644pt;}
.wsf{word-spacing:14.278168pt;}
.ws4{word-spacing:14.384436pt;}
.ws21{word-spacing:50.541334pt;}
.ws28{word-spacing:50.609344pt;}
.ws29{word-spacing:54.825939pt;}
.ws1b{word-spacing:57.005647pt;}
.ws26{word-spacing:62.375005pt;}
.ws23{word-spacing:69.754046pt;}
.ws27{word-spacing:72.168387pt;}
.ws25{word-spacing:76.027932pt;}
.ws22{word-spacing:96.566831pt;}
.ws1e{word-spacing:111.872392pt;}
.ws24{word-spacing:113.433212pt;}
.ws18{word-spacing:147.295192pt;}
.ws1a{word-spacing:151.579796pt;}
.ws16{word-spacing:159.128862pt;}
.ws20{word-spacing:165.647582pt;}
.ws19{word-spacing:168.922244pt;}
.ws17{word-spacing:171.958873pt;}
.ws14{word-spacing:293.883084pt;}
._2{margin-left:-15.416526pt;}
._12{margin-left:-11.195712pt;}
._7{margin-left:-4.447492pt;}
._8{margin-left:-3.389482pt;}
._b{margin-left:-2.410251pt;}
._4{margin-left:-1.331309pt;}
._1{width:1.714864pt;}
._0{width:2.897919pt;}
._3{width:3.922964pt;}
._c{width:4.822090pt;}
._a{width:6.164782pt;}
._9{width:7.519524pt;}
._6{width:8.695589pt;}
._5{width:9.766757pt;}
._f{width:11.448587pt;}
._e{width:13.653313pt;}
._d{width:14.741497pt;}
._10{width:16.424782pt;}
._11{width:18.060658pt;}
._13{width:19.311021pt;}
._17{width:20.501223pt;}
._18{width:21.773501pt;}
._14{width:26.839046pt;}
._19{width:28.343801pt;}
._46{width:30.345890pt;}
._16{width:32.518008pt;}
._15{width:33.521178pt;}
._47{width:38.260731pt;}
._39{width:60.202098pt;}
._3d{width:64.486703pt;}
._3e{width:67.271696pt;}
._3b{width:72.035768pt;}
._3c{width:81.829151pt;}
._41{width:98.862155pt;}
._43{width:104.081892pt;}
._44{width:125.586527pt;}
._3f{width:128.599353pt;}
._42{width:137.151560pt;}
._45{width:144.479594pt;}
._38{width:145.843187pt;}
._3a{width:154.140358pt;}
._33{width:157.234795pt;}
._40{width:162.512340pt;}
._32{width:164.025553pt;}
._34{width:181.922280pt;}
._36{width:201.277812pt;}
._37{width:244.072852pt;}
._35{width:263.428385pt;}
._1a{width:265.560486pt;}
._29{width:266.555232pt;}
._28{width:280.313574pt;}
._27{width:284.462160pt;}
._2b{width:294.619181pt;}
._20{width:298.137084pt;}
._24{width:303.846490pt;}
._22{width:322.991192pt;}
._1b{width:326.051624pt;}
._21{width:332.668958pt;}
._1e{width:344.652250pt;}
._1d{width:349.718965pt;}
._26{width:351.813661pt;}
._2d{width:362.061114pt;}
._2c{width:366.345718pt;}
._1c{width:370.312272pt;}
._2e{width:373.894784pt;}
._2a{width:391.339246pt;}
._25{width:446.948093pt;}
._23{width:449.158405pt;}
._1f{width:474.400965pt;}
._30{width:685.285132pt;}
._31{width:781.671738pt;}
._2f{width:835.365317pt;}
.fs8{font-size:23.788267pt;}
.fs9{font-size:34.004800pt;}
.fse{font-size:34.005333pt;}
.fsa{font-size:37.193067pt;}
.fs4{font-size:37.333333pt;}
.fs7{font-size:37.544000pt;}
.fsb{font-size:38.256000pt;}
.fsc{font-size:42.507200pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fs6{font-size:56.322133pt;}
.fs0{font-size:64.000000pt;}
.fs5{font-size:71.730667pt;}
.fsd{font-size:74.386667pt;}
.fs2{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.yc7{bottom:42.160000pt;}
.y5{bottom:59.133337pt;}
.y5c{bottom:68.319987pt;}
.y1a4{bottom:69.699369pt;}
.y98{bottom:69.703272pt;}
.y101{bottom:69.770572pt;}
.yc4{bottom:70.534287pt;}
.y1fb{bottom:73.172399pt;}
.y13d{bottom:75.819241pt;}
.y17d{bottom:75.825553pt;}
.y224{bottom:77.183444pt;}
.y5b{bottom:81.066653pt;}
.y100{bottom:82.469651pt;}
.y1f3{bottom:83.074451pt;}
.y1a3{bottom:83.684238pt;}
.y97{bottom:83.687078pt;}
.yc3{bottom:84.518093pt;}
.y4{bottom:86.333337pt;}
.y1fa{bottom:87.080755pt;}
.y13c{bottom:87.308613pt;}
.y17c{bottom:87.314924pt;}
.y223{bottom:91.167250pt;}
.y5a{bottom:93.893307pt;}
.yff{bottom:95.244286pt;}
.y1f2{bottom:97.058258pt;}
.y1a2{bottom:97.592594pt;}
.y96{bottom:97.595434pt;}
.yc2{bottom:98.427512pt;}
.y13b{bottom:98.723174pt;}
.y17b{bottom:98.728635pt;}
.y1f9{bottom:101.064561pt;}
.y222{bottom:105.075606pt;}
.y58{bottom:106.582787pt;}
.yfe{bottom:108.018921pt;}
.y13a{bottom:110.136886pt;}
.y17a{bottom:110.143197pt;}
.y1f1{bottom:110.967676pt;}
.y1a1{bottom:111.576400pt;}
.yc1{bottom:112.411318pt;}
.y1f8{bottom:114.973980pt;}
.y226{bottom:119.060475pt;}
.y57{bottom:119.281867pt;}
.yfd{bottom:120.718000pt;}
.y139{bottom:121.550597pt;}
.y179{bottom:121.556908pt;}
.y26d{bottom:121.783466pt;}
.y21{bottom:123.790666pt;}
.y1f0{bottom:124.951482pt;}
.y1a0{bottom:125.484756pt;}
.y95{bottom:125.488658pt;}
.yc0{bottom:126.319674pt;}
.y1f7{bottom:128.957786pt;}
.y26c{bottom:132.365760pt;}
.y138{bottom:132.965158pt;}
.y221{bottom:132.968830pt;}
.y178{bottom:132.970619pt;}
.y1ef{bottom:138.859838pt;}
.y19f{bottom:139.469625pt;}
.y94{bottom:139.472464pt;}
.yfc{bottom:139.618219pt;}
.ybf{bottom:140.303480pt;}
.y53{bottom:141.958699pt;}
.y1f6{bottom:142.866142pt;}
.y26b{bottom:143.023715pt;}
.y137{bottom:144.378869pt;}
.y177{bottom:144.385180pt;}
.y225{bottom:146.952637pt;}
.y2a5{bottom:148.693165pt;}
.y22f{bottom:150.652000pt;}
.yfb{bottom:151.031930pt;}
.y1ee{bottom:152.843644pt;}
.y19e{bottom:153.377981pt;}
.y93{bottom:153.380820pt;}
.y26a{bottom:153.606859pt;}
.ybe{bottom:154.288349pt;}
.y52{bottom:154.733333pt;}
.y136{bottom:155.793430pt;}
.y176{bottom:155.798891pt;}
.y233{bottom:156.245333pt;}
.y1f5{bottom:156.849948pt;}
.y2a4{bottom:159.351119pt;}
.y220{bottom:160.860992pt;}
.yfa{bottom:162.446491pt;}
.y269{bottom:164.264813pt;}
.y1ed{bottom:166.752000pt;}
.y135{bottom:167.207141pt;}
.y175{bottom:167.213453pt;}
.y19d{bottom:167.361787pt;}
.ybd{bottom:168.196705pt;}
.y2a3{bottom:170.009074pt;}
.y22b{bottom:170.305333pt;}
.y1f4{bottom:170.757241pt;}
.yf9{bottom:173.860202pt;}
.y21f{bottom:174.845861pt;}
.y268{bottom:174.922767pt;}
.y18{bottom:175.052000pt;}
.y134{bottom:178.696513pt;}
.y174{bottom:178.702824pt;}
.y2a2{bottom:180.592218pt;}
.y19c{bottom:181.270143pt;}
.y92{bottom:181.274045pt;}
.ybc{bottom:182.180511pt;}
.yf8{bottom:185.274764pt;}
.y267{bottom:185.505061pt;}
.y20{bottom:186.238666pt;}
.y17{bottom:186.252002pt;}
.y21e{bottom:188.754217pt;}
.y133{bottom:190.111074pt;}
.y173{bottom:190.116535pt;}
.y2a1{bottom:191.250172pt;}
.y19b{bottom:195.255011pt;}
.ybb{bottom:196.088867pt;}
.y266{bottom:196.163866pt;}
.y1fe{bottom:196.686667pt;}
.yf7{bottom:196.764135pt;}
.y1f{bottom:197.438668pt;}
.y16{bottom:197.452004pt;}
.y200{bottom:200.693333pt;}
.y50{bottom:200.772121pt;}
.y132{bottom:201.524786pt;}
.y172{bottom:201.531097pt;}
.y2a0{bottom:201.832466pt;}
.y21d{bottom:202.738023pt;}
.y265{bottom:206.746159pt;}
.yf6{bottom:208.177847pt;}
.y1e{bottom:208.638670pt;}
.y15{bottom:208.651996pt;}
.y19a{bottom:209.163367pt;}
.y91{bottom:209.846322pt;}
.yba{bottom:210.073735pt;}
.y29f{bottom:212.491270pt;}
.y131{bottom:212.938497pt;}
.y171{bottom:212.944808pt;}
.y4f{bottom:214.756990pt;}
.y21c{bottom:216.646379pt;}
.y264{bottom:217.404114pt;}
.yf5{bottom:219.592408pt;}
.y199{bottom:223.147173pt;}
.y29e{bottom:223.149225pt;}
.y90{bottom:223.831191pt;}
.y130{bottom:224.353058pt;}
.y170{bottom:224.359369pt;}
.y263{bottom:228.062068pt;}
.y4e{bottom:228.665346pt;}
.y21b{bottom:230.630185pt;}
.yf4{bottom:231.006119pt;}
.y1d{bottom:231.038664pt;}
.y14{bottom:231.052000pt;}
.y29d{bottom:233.731519pt;}
.y16f{bottom:235.773080pt;}
.y198{bottom:237.055529pt;}
.y8f{bottom:237.739547pt;}
.yb9{bottom:237.965897pt;}
.y262{bottom:238.645212pt;}
.y12f{bottom:241.889333pt;}
.y1c{bottom:242.238666pt;}
.y13{bottom:242.252002pt;}
.yf3{bottom:242.419830pt;}
.y4d{bottom:242.649152pt;}
.y29c{bottom:244.389473pt;}
.y21a{bottom:244.539604pt;}
.y16e{bottom:247.186791pt;}
.y261{bottom:249.303167pt;}
.y197{bottom:251.040398pt;}
.y8e{bottom:251.723353pt;}
.y1d9{bottom:251.871414pt;}
.yb8{bottom:251.874253pt;}
.y1b{bottom:253.438668pt;}
.y12{bottom:253.451999pt;}
.yf2{bottom:253.834391pt;}
.y29b{bottom:254.972617pt;}
.y4c{bottom:256.557508pt;}
.y219{bottom:258.523410pt;}
.y16d{bottom:258.601353pt;}
.y12e{bottom:259.426699pt;}
.y260{bottom:259.885460pt;}
.y196{bottom:264.948754pt;}
.y29a{bottom:265.630571pt;}
.y8d{bottom:265.631709pt;}
.y1d8{bottom:265.855220pt;}
.yb7{bottom:265.859122pt;}
.y16c{bottom:270.090724pt;}
.y4b{bottom:270.541314pt;}
.y25f{bottom:270.543415pt;}
.yf1{bottom:271.370667pt;}
.y12d{bottom:272.201333pt;}
.y218{bottom:272.431766pt;}
.y1a{bottom:275.838667pt;}
.y11{bottom:275.852001pt;}
.y299{bottom:276.212865pt;}
.y195{bottom:278.932560pt;}
.y8c{bottom:279.615515pt;}
.y1d7{bottom:279.763576pt;}
.yb6{bottom:279.767478pt;}
.y25e{bottom:281.202219pt;}
.y16b{bottom:281.505286pt;}
.y4a{bottom:284.450733pt;}
.y217{bottom:286.415572pt;}
.y298{bottom:286.870820pt;}
.y19{bottom:287.038667pt;}
.y10{bottom:287.052000pt;}
.yf0{bottom:288.906699pt;}
.y25d{bottom:291.784513pt;}
.y194{bottom:292.840916pt;}
.y16a{bottom:292.918997pt;}
.y8b{bottom:293.524933pt;}
.y1d6{bottom:293.748444pt;}
.yb5{bottom:293.751284pt;}
.y297{bottom:297.529624pt;}
.y49{bottom:298.434539pt;}
.y216{bottom:300.324990pt;}
.yef{bottom:301.681333pt;}
.y25c{bottom:302.442468pt;}
.y121{bottom:302.443498pt;}
.y169{bottom:304.332708pt;}
.y193{bottom:306.824722pt;}
.y8a{bottom:307.508739pt;}
.y1d5{bottom:307.656800pt;}
.yb4{bottom:307.659640pt;}
.y296{bottom:308.111918pt;}
.yf{bottom:309.452000pt;}
.y48{bottom:312.342895pt;}
.y25b{bottom:313.025612pt;}
.y215{bottom:314.308796pt;}
.y168{bottom:315.747269pt;}
.y120{bottom:316.351854pt;}
.y295{bottom:318.769872pt;}
.y192{bottom:320.734140pt;}
.y89{bottom:321.492545pt;}
.y1d4{bottom:321.640606pt;}
.yb3{bottom:321.643446pt;}
.y25a{bottom:323.683566pt;}
.y47{bottom:326.326701pt;}
.y167{bottom:327.160980pt;}
.y214{bottom:328.217152pt;}
.y294{bottom:329.353016pt;}
.y11f{bottom:330.335660pt;}
.yed{bottom:331.923812pt;}
.y259{bottom:334.265860pt;}
.y191{bottom:334.717947pt;}
.y88{bottom:335.400901pt;}
.y1d3{bottom:335.548962pt;}
.yb2{bottom:335.552865pt;}
.y166{bottom:338.575541pt;}
.y293{bottom:340.010971pt;}
.y46{bottom:340.236119pt;}
.y213{bottom:342.200958pt;}
.ye{bottom:343.809333pt;}
.y11e{bottom:344.245078pt;}
.y258{bottom:344.923814pt;}
.yec{bottom:345.908681pt;}
.y190{bottom:348.626302pt;}
.y87{bottom:349.385770pt;}
.y1d2{bottom:349.533831pt;}
.yb1{bottom:349.536671pt;}
.y165{bottom:350.064913pt;}
.y292{bottom:350.668925pt;}
.y45{bottom:354.219925pt;}
.y257{bottom:355.582619pt;}
.y212{bottom:356.109314pt;}
.y291{bottom:361.251219pt;}
.y164{bottom:361.478624pt;}
.y18f{bottom:362.610108pt;}
.yd{bottom:362.706666pt;}
.y86{bottom:363.294126pt;}
.y1d1{bottom:363.442187pt;}
.yb0{bottom:363.445026pt;}
.y256{bottom:366.164912pt;}
.y44{bottom:368.128281pt;}
.y22e{bottom:368.957333pt;}
.y211{bottom:370.094183pt;}
.y232{bottom:371.301333pt;}
.y290{bottom:371.910023pt;}
.y11d{bottom:372.137240pt;}
.y163{bottom:372.893186pt;}
.yeb{bottom:373.800843pt;}
.y18e{bottom:376.519527pt;}
.y255{bottom:376.822867pt;}
.y85{bottom:377.277932pt;}
.y1d0{bottom:377.425993pt;}
.yaf{bottom:377.428833pt;}
.y43{bottom:382.112087pt;}
.y28f{bottom:382.492317pt;}
.y210{bottom:384.077989pt;}
.y162{bottom:384.306897pt;}
.y22a{bottom:384.377333pt;}
.y254{bottom:387.405161pt;}
.y18d{bottom:390.503333pt;}
.y84{bottom:391.186288pt;}
.y1cf{bottom:391.334349pt;}
.yae{bottom:391.338251pt;}
.y28e{bottom:393.150272pt;}
.y161{bottom:395.720608pt;}
.y42{bottom:396.021506pt;}
.y20f{bottom:397.986345pt;}
.y253{bottom:398.063965pt;}
.y28d{bottom:403.732565pt;}
.y11c{bottom:403.809355pt;}
.y18c{bottom:404.411689pt;}
.yea{bottom:404.641942pt;}
.y83{bottom:405.171157pt;}
.y1ce{bottom:405.319218pt;}
.yad{bottom:405.322057pt;}
.y160{bottom:407.135169pt;}
.y252{bottom:408.721920pt;}
.y1fd{bottom:409.852000pt;}
.y41{bottom:410.005312pt;}
.y1ff{bottom:411.968000pt;}
.y20e{bottom:411.971214pt;}
.y28c{bottom:414.391370pt;}
.y11b{bottom:417.793161pt;}
.y18b{bottom:418.395495pt;}
.y15f{bottom:418.548880pt;}
.ye9{bottom:418.550298pt;}
.y82{bottom:419.079513pt;}
.y1cd{bottom:419.227574pt;}
.yac{bottom:419.230413pt;}
.y251{bottom:419.304213pt;}
.y40{bottom:423.989118pt;}
.y28b{bottom:425.049324pt;}
.y20d{bottom:425.879570pt;}
.y250{bottom:429.963018pt;}
.y15e{bottom:429.963441pt;}
.y11a{bottom:431.702580pt;}
.y18a{bottom:432.303851pt;}
.ye8{bottom:432.534104pt;}
.y81{bottom:433.063319pt;}
.y1cc{bottom:433.211380pt;}
.yab{bottom:433.214219pt;}
.y28a{bottom:435.631618pt;}
.y3f{bottom:437.897474pt;}
.y20c{bottom:439.863376pt;}
.y24f{bottom:440.545312pt;}
.y15d{bottom:441.452813pt;}
.y119{bottom:445.686386pt;}
.y189{bottom:446.288720pt;}
.y289{bottom:446.289573pt;}
.ye7{bottom:446.442460pt;}
.y80{bottom:446.971674pt;}
.yc{bottom:446.990669pt;}
.y1cb{bottom:447.119735pt;}
.y24e{bottom:451.203266pt;}
.y3e{bottom:451.882343pt;}
.y15c{bottom:452.866524pt;}
.y20b{bottom:453.771732pt;}
.y288{bottom:456.872716pt;}
.y118{bottom:459.594742pt;}
.y188{bottom:460.197076pt;}
.ye6{bottom:460.427329pt;}
.y7f{bottom:460.956543pt;}
.y1ca{bottom:461.104604pt;}
.yaa{bottom:461.107444pt;}
.y24d{bottom:461.785560pt;}
.yb{bottom:462.990669pt;}
.y15b{bottom:464.281086pt;}
.y3d{bottom:465.790699pt;}
.y287{bottom:467.530671pt;}
.y20a{bottom:467.755538pt;}
.y24c{bottom:472.444365pt;}
.y117{bottom:473.578548pt;}
.y187{bottom:474.180882pt;}
.ye5{bottom:474.335684pt;}
.y7e{bottom:474.864899pt;}
.y1c9{bottom:475.012960pt;}
.ya9{bottom:475.015800pt;}
.y15a{bottom:475.694797pt;}
.y286{bottom:478.188625pt;}
.ya{bottom:478.990666pt;}
.y3c{bottom:479.774505pt;}
.y209{bottom:481.664956pt;}
.y24b{bottom:483.102319pt;}
.y159{bottom:487.109358pt;}
.y116{bottom:487.486904pt;}
.y186{bottom:488.165750pt;}
.ye4{bottom:488.319491pt;}
.y285{bottom:488.771769pt;}
.y7d{bottom:488.848705pt;}
.y1c8{bottom:488.996766pt;}
.ya8{bottom:488.999606pt;}
.y51{bottom:493.682861pt;}
.y24a{bottom:493.684613pt;}
.y9{bottom:494.990666pt;}
.y208{bottom:495.648762pt;}
.y158{bottom:498.523069pt;}
.y284{bottom:499.429724pt;}
.y115{bottom:501.471772pt;}
.y185{bottom:502.074106pt;}
.ye3{bottom:502.227846pt;}
.y7c{bottom:502.757061pt;}
.y1c7{bottom:502.905122pt;}
.ya7{bottom:502.907962pt;}
.y249{bottom:504.342567pt;}
.y3b{bottom:507.666667pt;}
.y207{bottom:509.557118pt;}
.y157{bottom:509.936780pt;}
.y283{bottom:510.012017pt;}
.y248{bottom:514.925711pt;}
.y114{bottom:515.380128pt;}
.y184{bottom:516.057912pt;}
.ye2{bottom:516.212715pt;}
.y7b{bottom:516.740867pt;}
.y1c6{bottom:516.888928pt;}
.ya6{bottom:516.892830pt;}
.y282{bottom:520.669972pt;}
.y156{bottom:521.351341pt;}
.y206{bottom:523.540924pt;}
.y247{bottom:525.583665pt;}
.y113{bottom:529.363934pt;}
.y183{bottom:529.966268pt;}
.ye1{bottom:530.121071pt;}
.y7a{bottom:530.650286pt;}
.y1c5{bottom:530.798347pt;}
.ya5{bottom:530.801186pt;}
.y281{bottom:531.328776pt;}
.y155{bottom:532.840713pt;}
.y246{bottom:536.241620pt;}
.y205{bottom:537.450343pt;}
.y280{bottom:541.911070pt;}
.y112{bottom:543.272290pt;}
.ye0{bottom:544.104877pt;}
.y154{bottom:544.254424pt;}
.y79{bottom:544.634092pt;}
.y1c4{bottom:544.782153pt;}
.ya4{bottom:544.784992pt;}
.y245{bottom:546.823914pt;}
.y204{bottom:551.434149pt;}
.y27f{bottom:552.569025pt;}
.y153{bottom:555.668986pt;}
.y111{bottom:557.257159pt;}
.y244{bottom:557.482718pt;}
.y182{bottom:557.859493pt;}
.ydf{bottom:558.013233pt;}
.y78{bottom:558.542448pt;}
.y1c3{bottom:558.690509pt;}
.ya3{bottom:558.693348pt;}
.y3a{bottom:560.504699pt;}
.y27e{bottom:563.151318pt;}
.y203{bottom:565.342505pt;}
.y152{bottom:567.082697pt;}
.y243{bottom:568.065012pt;}
.y110{bottom:571.165515pt;}
.yde{bottom:571.997039pt;}
.y77{bottom:572.526254pt;}
.y1c2{bottom:572.674315pt;}
.ya2{bottom:572.678217pt;}
.y39{bottom:573.279334pt;}
.y8{bottom:573.786667pt;}
.y27d{bottom:573.810123pt;}
.y151{bottom:578.497258pt;}
.y242{bottom:578.722966pt;}
.y202{bottom:579.326311pt;}
.y22d{bottom:584.390667pt;}
.y27c{bottom:584.392417pt;}
.y231{bottom:585.146667pt;}
.y10f{bottom:585.149321pt;}
.ydd{bottom:585.906458pt;}
.y38{bottom:586.053969pt;}
.y76{bottom:586.435672pt;}
.y1c1{bottom:586.583733pt;}
.ya1{bottom:586.586573pt;}
.y241{bottom:589.306110pt;}
.y150{bottom:589.910969pt;}
.y181{bottom:590.891838pt;}
.y7{bottom:592.685334pt;}
.y201{bottom:593.234667pt;}
.y27b{bottom:595.050371pt;}
.y31{bottom:595.352372pt;}
.y229{bottom:598.072000pt;}
.y37{bottom:598.753048pt;}
.ydc{bottom:599.890264pt;}
.y240{bottom:599.964065pt;}
.y75{bottom:600.419478pt;}
.y1c0{bottom:600.567539pt;}
.ya0{bottom:600.570379pt;}
.y14f{bottom:601.324680pt;}
.y180{bottom:604.800194pt;}
.y27a{bottom:605.708326pt;}
.y30{bottom:606.766934pt;}
.y23f{bottom:610.622019pt;}
.y36{bottom:611.527683pt;}
.y14e{bottom:612.814902pt;}
.y10e{bottom:613.042546pt;}
.ydb{bottom:613.798620pt;}
.y74{bottom:614.327834pt;}
.y1bf{bottom:614.475895pt;}
.y9f{bottom:614.478735pt;}
.y279{bottom:616.291469pt;}
.y2f{bottom:618.180645pt;}
.y17f{bottom:618.784000pt;}
.y1fc{bottom:619.917333pt;}
.y23e{bottom:621.204313pt;}
.y227{bottom:623.168000pt;}
.y14d{bottom:624.228613pt;}
.y35{bottom:624.302318pt;}
.y278{bottom:626.949424pt;}
.yda{bottom:627.782426pt;}
.y73{bottom:628.311640pt;}
.y1be{bottom:628.458639pt;}
.y9e{bottom:628.463604pt;}
.y2e{bottom:629.594356pt;}
.y23d{bottom:631.863118pt;}
.y14c{bottom:635.643174pt;}
.y34{bottom:637.076953pt;}
.y277{bottom:637.531718pt;}
.y10d{bottom:640.934707pt;}
.y2d{bottom:641.008917pt;}
.yd9{bottom:641.691844pt;}
.y72{bottom:642.221059pt;}
.y1bd{bottom:642.443508pt;}
.y23c{bottom:642.445411pt;}
.y9d{bottom:642.447410pt;}
.y6{bottom:645.598667pt;}
.y14b{bottom:647.056886pt;}
.y276{bottom:648.190522pt;}
.y33{bottom:649.776032pt;}
.y2c{bottom:652.422628pt;}
.y23b{bottom:653.103366pt;}
.y1eb{bottom:654.769358pt;}
.yd8{bottom:655.675650pt;}
.y1bc{bottom:656.351863pt;}
.yee{bottom:656.355766pt;}
.y14a{bottom:658.470597pt;}
.y275{bottom:658.848477pt;}
.y32{bottom:662.550667pt;}
.y23a{bottom:663.761320pt;}
.y2b{bottom:663.912000pt;}
.y1ea{bottom:666.183069pt;}
.y3{bottom:668.977329pt;}
.y274{bottom:669.430770pt;}
.yd7{bottom:669.584006pt;}
.y10c{bottom:669.734398pt;}
.y149{bottom:669.885158pt;}
.y71{bottom:670.113221pt;}
.y1bb{bottom:670.335669pt;}
.y9c{bottom:670.339572pt;}
.y239{bottom:674.344464pt;}
.y1e9{bottom:677.596780pt;}
.y273{bottom:680.088725pt;}
.y148{bottom:681.298869pt;}
.yd6{bottom:683.567812pt;}
.y10b{bottom:683.642754pt;}
.y1ba{bottom:684.244025pt;}
.y9b{bottom:684.248990pt;}
.y238{bottom:685.002418pt;}
.y2a{bottom:688.554667pt;}
.y1e8{bottom:689.087002pt;}
.y272{bottom:690.671869pt;}
.y147{bottom:692.713430pt;}
.y237{bottom:695.584712pt;}
.yd5{bottom:697.477231pt;}
.y10a{bottom:697.627623pt;}
.y70{bottom:698.005383pt;}
.y1b9{bottom:698.228894pt;}
.y9a{bottom:698.232796pt;}
.y1e7{bottom:700.500713pt;}
.y271{bottom:701.329823pt;}
.y146{bottom:704.202802pt;}
.y236{bottom:706.242667pt;}
.yd4{bottom:711.461037pt;}
.y109{bottom:711.535979pt;}
.y270{bottom:711.911267pt;}
.y1e6{bottom:711.914424pt;}
.y1b8{bottom:712.137250pt;}
.y99{bottom:712.141152pt;}
.y145{bottom:715.616513pt;}
.y26f{bottom:722.569221pt;}
.y1e5{bottom:723.328986pt;}
.yd3{bottom:725.369393pt;}
.y108{bottom:725.519785pt;}
.y1b7{bottom:726.121056pt;}
.y6f{bottom:726.124958pt;}
.y144{bottom:727.031074pt;}
.y235{bottom:730.733333pt;}
.y29{bottom:732.548000pt;}
.y26e{bottom:733.228026pt;}
.y1e4{bottom:734.742697pt;}
.y28{bottom:736.328000pt;}
.y143{bottom:738.444786pt;}
.yd2{bottom:739.353199pt;}
.y107{bottom:739.428141pt;}
.y1b6{bottom:740.029412pt;}
.y6e{bottom:740.033314pt;}
.y27{bottom:743.962667pt;}
.y1e3{bottom:746.157258pt;}
.y26{bottom:747.741333pt;}
.y142{bottom:749.858497pt;}
.yd1{bottom:753.261555pt;}
.y106{bottom:753.413009pt;}
.y1b5{bottom:754.013218pt;}
.y6d{bottom:754.018183pt;}
.y1e2{bottom:757.570969pt;}
.y141{bottom:761.273058pt;}
.y24{bottom:765.884000pt;}
.yd0{bottom:767.246424pt;}
.y105{bottom:767.321365pt;}
.y1b4{bottom:767.922637pt;}
.y6c{bottom:767.926539pt;}
.y1e1{bottom:768.984680pt;}
.y25{bottom:772.157333pt;}
.y140{bottom:778.809333pt;}
.y1e0{bottom:780.474902pt;}
.ycf{bottom:781.154779pt;}
.y104{bottom:781.305171pt;}
.y2{bottom:781.661334pt;}
.y1b3{bottom:781.906443pt;}
.y6b{bottom:781.910345pt;}
.y1df{bottom:791.888613pt;}
.y234{bottom:792.189333pt;}
.yce{bottom:795.138586pt;}
.y103{bottom:795.213527pt;}
.y1b2{bottom:795.814799pt;}
.y6a{bottom:795.818701pt;}
.y13f{bottom:796.346699pt;}
.y23{bottom:799.219748pt;}
.y22c{bottom:799.445333pt;}
.y230{bottom:800.806667pt;}
.y1de{bottom:803.303174pt;}
.y228{bottom:805.268051pt;}
.ycd{bottom:809.046941pt;}
.y13e{bottom:809.121333pt;}
.y102{bottom:809.197333pt;}
.y1b1{bottom:809.798605pt;}
.y69{bottom:809.803570pt;}
.y1dd{bottom:814.716886pt;}
.y22{bottom:822.198667pt;}
.ycc{bottom:823.031810pt;}
.y1b0{bottom:823.708023pt;}
.y68{bottom:823.711925pt;}
.y1dc{bottom:826.130597pt;}
.ycb{bottom:836.940166pt;}
.y1db{bottom:837.545158pt;}
.y1af{bottom:837.691829pt;}
.y67{bottom:837.695732pt;}
.y12c{bottom:848.958869pt;}
.yca{bottom:850.923972pt;}
.y1ae{bottom:851.600185pt;}
.y66{bottom:851.604087pt;}
.y1{bottom:859.312000pt;}
.y12b{bottom:860.373430pt;}
.y1ad{bottom:865.583991pt;}
.y65{bottom:865.588956pt;}
.y12a{bottom:871.862802pt;}
.yc9{bottom:878.817197pt;}
.y1ac{bottom:879.493410pt;}
.y64{bottom:879.497312pt;}
.y129{bottom:883.276513pt;}
.y56{bottom:892.194667pt;}
.y1ab{bottom:893.477216pt;}
.y63{bottom:893.481118pt;}
.y128{bottom:894.691074pt;}
.y127{bottom:906.104786pt;}
.yc8{bottom:906.709359pt;}
.y1aa{bottom:907.385572pt;}
.y62{bottom:907.389474pt;}
.y126{bottom:917.518497pt;}
.y1a9{bottom:921.369378pt;}
.y61{bottom:921.374343pt;}
.y125{bottom:928.933058pt;}
.y55{bottom:929.310667pt;}
.y1da{bottom:935.055622pt;}
.y1a8{bottom:935.277734pt;}
.y60{bottom:935.282699pt;}
.y124{bottom:946.469333pt;}
.y1a7{bottom:949.262602pt;}
.y5f{bottom:949.266505pt;}
.y1a6{bottom:963.170958pt;}
.y5e{bottom:963.174861pt;}
.y123{bottom:964.006699pt;}
.y54{bottom:966.500000pt;}
.y122{bottom:976.781333pt;}
.y1a5{bottom:977.154764pt;}
.y5d{bottom:977.158667pt;}
.y59{bottom:1002.226640pt;}
.y2a6{bottom:1003.083318pt;}
.yc6{bottom:1003.226640pt;}
.y17e{bottom:1003.235062pt;}
.y1ec{bottom:1003.236946pt;}
.yc5{bottom:1003.237333pt;}
.hd{height:20.907656pt;}
.h7{height:28.560000pt;}
.he{height:29.887031pt;}
.h14{height:29.887500pt;}
.h13{height:30.647691pt;}
.hf{height:32.689219pt;}
.hc{height:32.997656pt;}
.h10{height:33.623437pt;}
.h11{height:37.359844pt;}
.h6{height:40.800000pt;}
.h3{height:42.840000pt;}
.h2{height:48.960000pt;}
.hb{height:49.501875pt;}
.ha{height:63.044531pt;}
.h12{height:65.378906pt;}
.h5{height:69.360000pt;}
.h4{height:105.826671pt;}
.h9{height:1058.000000pt;}
.h15{height:1058.116000pt;}
.h8{height:1058.268000pt;}
.h0{height:1122.518667pt;}
.h1{height:1122.666667pt;}
.w2{width:566.928019pt;}
.w4{width:793.549333pt;}
.w0{width:793.700000pt;}
.w3{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:50.116533pt;}
.xb{left:55.785733pt;}
.x10{left:56.844000pt;}
.x1a{left:58.131243pt;}
.xd{left:66.065235pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x22{left:96.982101pt;}
.x1e{left:121.170565pt;}
.x24{left:129.637733pt;}
.x25{left:131.300667pt;}
.x6{left:135.760000pt;}
.x7{left:141.581333pt;}
.x15{left:145.283778pt;}
.x4{left:180.874667pt;}
.x19{left:196.913333pt;}
.x21{left:208.551850pt;}
.x12{left:215.130667pt;}
.x8{left:226.016000pt;}
.x28{left:230.324000pt;}
.x9{left:231.836000pt;}
.x14{left:263.480000pt;}
.xc{left:269.329333pt;}
.x2b{left:271.824000pt;}
.x29{left:274.092000pt;}
.x13{left:275.678667pt;}
.x2a{left:277.114667pt;}
.x2c{left:286.790667pt;}
.x2d{left:288.453333pt;}
.x2e{left:289.814667pt;}
.x2f{left:291.325333pt;}
.x30{left:292.989333pt;}
.x31{left:294.349333pt;}
.x11{left:304.554667pt;}
.x1b{left:318.232632pt;}
.xa{left:326.097333pt;}
.x23{left:369.108000pt;}
.x18{left:390.160000pt;}
.x3{left:404.408000pt;}
.xe{left:408.790162pt;}
.x1f{left:416.806667pt;}
.xf{left:424.738863pt;}
.x33{left:435.094092pt;}
.x16{left:441.671606pt;}
.x1c{left:455.957173pt;}
.x27{left:488.844000pt;}
.x26{left:491.338667pt;}
.x32{left:497.985120pt;}
.x20{left:515.601662pt;}
.x17{left:518.293333pt;}
.x34{left:551.124421pt;}
.x1d{left:656.648402pt;}
}




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