
    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_8f5a8bf8a0ab9f1a3fe23461.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_e0c84238d7b197de55415e00.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.188000;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_64493c6589fcf840737956bf.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_00cfacda377c39d4e8f16168.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_b6755791dc0f2b0e71d7cd4e.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_887c3330bb8d1e65626ba899.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_3cc2c28325fdb274551caad3.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_3f06786e11d3b40214c72806.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.483000;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_8d05dc0a71fddc69531cf05a.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_7193f16795722a93d8c18a30.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_44ae2fad0a17ecf72a8973b9.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_87095523df1aed9b4d23a910.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.999000;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_d5c224990bdc0318b6e2cd0f.woff2')format("woff");}.ffd{font-family:ffd;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;}
.m3{transform:matrix(0.249979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249979,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.268005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268005,0.000000,0.000000,0.250000,0,0);}
.m5{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);}
.m1{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);}
.m2{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);}
.v4{vertical-align:-7.148019px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:3.060518px;}
.v1{vertical-align:4.080539px;}
.v5{vertical-align:12.242074px;}
.v2{vertical-align:16.322154px;}
.ls8{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.000006px;}
.ls9{letter-spacing:0.000012px;}
.ls4{letter-spacing:0.000066px;}
.ls7{letter-spacing:0.000126px;}
.lsa{letter-spacing:0.000132px;}
.ls2{letter-spacing:0.000186px;}
.ls23{letter-spacing:0.137719px;}
.ls22{letter-spacing:0.160673px;}
.ls1{letter-spacing:0.258231px;}
.ls15{letter-spacing:0.290932px;}
.lsc{letter-spacing:0.334744px;}
.ls20{letter-spacing:0.664706px;}
.ls16{letter-spacing:2.799654px;}
.ls18{letter-spacing:3.231141px;}
.ls5{letter-spacing:4.174686px;}
.ls6{letter-spacing:4.217826px;}
.ls17{letter-spacing:7.751719px;}
.ls11{letter-spacing:8.076899px;}
.lsf{letter-spacing:8.081681px;}
.lse{letter-spacing:8.091246px;}
.ls19{letter-spacing:8.096028px;}
.ls1a{letter-spacing:8.124720px;}
.ls1b{letter-spacing:10.463147px;}
.ls10{letter-spacing:10.995978px;}
.ls13{letter-spacing:11.358028px;}
.ls1c{letter-spacing:11.361854px;}
.ls12{letter-spacing:11.698501px;}
.ls14{letter-spacing:11.702327px;}
.ls21{letter-spacing:12.838512px;}
.ls0{letter-spacing:19.038201px;}
.lsb{letter-spacing:21.327988px;}
.lsd{letter-spacing:21.332770px;}
.ls1e{letter-spacing:21.690812px;}
.ls1f{letter-spacing:202.084150px;}
.ls1d{letter-spacing:214.597492px;}
.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;}
}
.wsd{word-spacing:-47.820600px;}
.ws17{word-spacing:-40.083227px;}
.ws1f{word-spacing:-40.078445px;}
.ws1a{word-spacing:-40.040188px;}
.wsc{word-spacing:-39.743701px;}
.ws1c{word-spacing:-39.686316px;}
.wsa{word-spacing:-38.256000px;}
.ws32{word-spacing:-38.255400px;}
.ws6{word-spacing:-24.230394px;}
.ws2e{word-spacing:-21.538128px;}
.ws9{word-spacing:-21.270336px;}
.ws0{word-spacing:-18.565183px;}
.ws3{word-spacing:-14.011436px;}
.ws5{word-spacing:-13.437589px;}
.ws2d{word-spacing:-12.610134px;}
.ws8{word-spacing:-11.955150px;}
.ws31{word-spacing:-11.208832px;}
.ws30{word-spacing:-9.563850px;}
.ws11{word-spacing:-9.107319px;}
.ws20{word-spacing:-6.049306px;}
.ws21{word-spacing:-6.001485px;}
.ws1b{word-spacing:-5.982357px;}
.wsf{word-spacing:-5.944101px;}
.ws19{word-spacing:-5.814985px;}
.ws22{word-spacing:-5.805421px;}
.ws1e{word-spacing:-5.776728px;}
.ws18{word-spacing:-5.049855px;}
.wsb{word-spacing:-5.021163px;}
.ws23{word-spacing:-4.495136px;}
.ws24{word-spacing:-4.380367px;}
.ws25{word-spacing:-3.337878px;}
.ws7{word-spacing:0.000000px;}
.ws16{word-spacing:1.762233px;}
.ws4{word-spacing:1.941014px;}
.ws2f{word-spacing:15.842965px;}
.ws2{word-spacing:16.182491px;}
.ws1{word-spacing:43.517894px;}
.ws13{word-spacing:125.929126px;}
.ws27{word-spacing:160.963421px;}
.ws2c{word-spacing:178.251036px;}
.ws2b{word-spacing:178.480569px;}
.ws15{word-spacing:189.853899px;}
.ws2a{word-spacing:191.104851px;}
.ws14{word-spacing:202.707714px;}
.ws29{word-spacing:224.892020px;}
.ws28{word-spacing:237.742009px;}
.wse{word-spacing:263.467596px;}
.ws10{word-spacing:585.438913px;}
.ws26{word-spacing:985.630387px;}
.ws1d{word-spacing:1072.831251px;}
.ws12{word-spacing:1117.531959px;}
._6{margin-left:-17.343592px;}
._12{margin-left:-12.555834px;}
._10{margin-left:-5.016147px;}
._b{margin-left:-3.997880px;}
._a{margin-left:-2.974402px;}
._5{margin-left:-1.312182px;}
._0{width:1.759195px;}
._1{width:3.453832px;}
._9{width:5.173168px;}
._8{width:6.331614px;}
._3{width:7.913964px;}
._c{width:9.228385px;}
._2{width:10.442124px;}
._7{width:11.492136px;}
._f{width:12.830267px;}
._3c{width:14.049692px;}
._15{width:15.503439px;}
._e{width:17.028916px;}
._d{width:19.042163px;}
._11{width:20.318240px;}
._13{width:22.030950px;}
._16{width:24.077672px;}
._2e{width:28.367180px;}
._14{width:29.854401px;}
._2f{width:38.218224px;}
._3d{width:40.250599px;}
._4{width:62.071249px;}
._1b{width:67.822999px;}
._1a{width:72.845933px;}
._28{width:77.960680px;}
._35{width:136.992587px;}
._1e{width:146.456973px;}
._1d{width:150.068283px;}
._25{width:157.505133px;}
._21{width:167.707848px;}
._3a{width:172.367356px;}
._23{width:173.404077px;}
._34{width:180.297700px;}
._33{width:188.671807px;}
._2b{width:194.337432px;}
._1c{width:196.231074px;}
._17{width:199.788826px;}
._32{width:201.292264px;}
._2c{width:202.811003px;}
._22{width:220.829296px;}
._39{width:223.476570px;}
._2a{width:224.570675px;}
._38{width:236.330385px;}
._36{width:254.004379px;}
._18{width:278.606427px;}
._24{width:285.270518px;}
._19{width:290.779295px;}
._31{width:297.079960px;}
._20{width:303.338543px;}
._2d{width:304.589495px;}
._29{width:305.798365px;}
._3b{width:310.809823px;}
._27{width:314.317843px;}
._30{width:345.205253px;}
._37{width:353.885403px;}
._1f{width:384.631268px;}
._26{width:395.610568px;}
.fc2{color:rgb(12,118,159);}
.fc1{color:rgb(33,150,209);}
.fc0{color:rgb(0,0,0);}
.fsc{font-size:26.761800px;}
.fsb{font-size:30.108600px;}
.fsa{font-size:31.083000px;}
.fs9{font-size:35.867400px;}
.fs3{font-size:38.255400px;}
.fs8{font-size:38.256000px;}
.fs4{font-size:41.842200px;}
.fs2{font-size:42.237000px;}
.fs5{font-size:43.038000px;}
.fs6{font-size:47.820600px;}
.fs1{font-size:63.362400px;}
.fs0{font-size:80.697000px;}
.fs7{font-size:83.685000px;}
.y0{bottom:0.000000px;}
.y7c{bottom:47.430000px;}
.y174{bottom:78.406200px;}
.y1cc{bottom:78.413314px;}
.y20c{bottom:78.414645px;}
.y8e{bottom:78.416181px;}
.y173{bottom:78.491250px;}
.y11a{bottom:83.763750px;}
.y11b{bottom:85.294350px;}
.y119{bottom:85.294907px;}
.y79{bottom:85.296303px;}
.y3a{bottom:93.494940px;}
.y3b{bottom:93.495030px;}
.y193{bottom:93.803835px;}
.y1cb{bottom:94.145096px;}
.y20b{bottom:94.147622px;}
.y8d{bottom:94.147962px;}
.y117{bottom:96.604650px;}
.y118{bottom:98.220450px;}
.y116{bottom:98.220925px;}
.y78{bottom:98.222803px;}
.y39{bottom:105.629970px;}
.y114{bottom:109.445550px;}
.y192{bottom:109.535616px;}
.yce{bottom:109.701218px;}
.y1ca{bottom:109.791997px;}
.y20a{bottom:109.794522px;}
.y8c{bottom:109.794863px;}
.y115{bottom:111.061350px;}
.y113{bottom:111.061825px;}
.y77{bottom:111.063228px;}
.y37{bottom:119.905636px;}
.y111{bottom:122.286600px;}
.y171{bottom:123.307050px;}
.ycc{bottom:123.477150px;}
.y112{bottom:123.902250px;}
.y110{bottom:123.902875px;}
.y76{bottom:123.904609px;}
.y191{bottom:125.182517px;}
.ycd{bottom:125.433000px;}
.ycb{bottom:125.436670px;}
.y1c9{bottom:125.524974px;}
.y209{bottom:125.526304px;}
.y8b{bottom:125.526645px;}
.y36{bottom:134.192100px;}
.y10e{bottom:135.127500px;}
.y10f{bottom:136.743300px;}
.y10d{bottom:136.744190px;}
.y75{bottom:136.745034px;}
.y190{bottom:140.915494px;}
.yca{bottom:141.084766px;}
.y1c8{bottom:141.171874px;}
.y208{bottom:141.173205px;}
.y8a{bottom:141.174740px;}
.y22e{bottom:143.721328px;}
.y13d{bottom:144.571253px;}
.y74{bottom:149.585459px;}
.y22d{bottom:155.711527px;}
.y10c{bottom:156.472500px;}
.y18f{bottom:156.562394px;}
.yc9{bottom:156.816548px;}
.y1c7{bottom:156.903656px;}
.y207{bottom:156.906182px;}
.y89{bottom:156.906522px;}
.y32{bottom:159.703536px;}
.y13c{bottom:160.303034px;}
.y73{bottom:162.426841px;}
.y22c{bottom:167.616607px;}
.y175{bottom:168.207000px;}
.y27d{bottom:168.381715px;}
.y18e{bottom:172.294176px;}
.yc8{bottom:172.548330px;}
.y1c6{bottom:172.550557px;}
.y206{bottom:172.553082px;}
.y88{bottom:172.553423px;}
.y31{bottom:174.075000px;}
.y10a{bottom:174.415500px;}
.y72{bottom:175.267266px;}
.y13b{bottom:175.949935px;}
.y10b{bottom:176.202000px;}
.y109{bottom:176.202036px;}
.y22b{bottom:179.606806px;}
.y27c{bottom:180.372870px;}
.y18d{bottom:187.941077px;}
.y71{bottom:188.108647px;}
.yc7{bottom:188.195230px;}
.y1c5{bottom:188.283534px;}
.y205{bottom:188.284864px;}
.y87{bottom:188.285205px;}
.y108{bottom:190.573500px;}
.y22a{bottom:191.597961px;}
.y13a{bottom:191.682912px;}
.y27b{bottom:192.277951px;}
.y229{bottom:203.503041px;}
.y18c{bottom:203.674054px;}
.yc6{bottom:203.928207px;}
.y1c4{bottom:203.930434px;}
.y204{bottom:203.931764px;}
.y86{bottom:203.933300px;}
.y27a{bottom:204.268149px;}
.y96{bottom:204.953075px;}
.y139{bottom:207.329812px;}
.y70{bottom:207.836957px;}
.y228{bottom:215.493240px;}
.y279{bottom:216.259304px;}
.y18b{bottom:219.320954px;}
.y1c3{bottom:219.662216px;}
.y203{bottom:219.664742px;}
.y85{bottom:219.665082px;}
.y95{bottom:220.599975px;}
.y6f{bottom:220.762500px;}
.y138{bottom:223.061594px;}
.y2f{bottom:224.677078px;}
.y107{bottom:225.439718px;}
.y227{bottom:227.399277px;}
.y278{bottom:228.164385px;}
.yc5{bottom:233.181264px;}
.y18a{bottom:235.052736px;}
.y1c2{bottom:235.309116px;}
.y202{bottom:235.311642px;}
.y84{bottom:235.311983px;}
.y94{bottom:236.332952px;}
.y137{bottom:238.708495px;}
.y105{bottom:239.215500px;}
.y226{bottom:239.389476px;}
.y277{bottom:240.154584px;}
.y6e{bottom:240.406536px;}
.y2e{bottom:240.410055px;}
.y106{bottom:241.171500px;}
.y104{bottom:241.173599px;}
.y189{bottom:250.699637px;}
.y1c1{bottom:251.042094px;}
.y83{bottom:251.043764px;}
.y225{bottom:251.379674px;}
.y93{bottom:251.979853px;}
.y276{bottom:252.059664px;}
.y136{bottom:254.441472px;}
.y6d{bottom:254.778000px;}
.y2d{bottom:256.056956px;}
.y103{bottom:256.820499px;}
.y224{bottom:263.284755px;}
.y275{bottom:264.050819px;}
.y188{bottom:266.432614px;}
.y1c0{bottom:266.688994px;}
.y201{bottom:266.690324px;}
.y82{bottom:266.691860px;}
.y92{bottom:267.711635px;}
.y135{bottom:270.088372px;}
.y2c{bottom:271.788738px;}
.y223{bottom:275.275910px;}
.y274{bottom:276.041018px;}
.y187{bottom:282.079514px;}
.y1bf{bottom:282.420776px;}
.y81{bottom:282.423642px;}
.y134{bottom:285.820154px;}
.y222{bottom:287.180991px;}
.y2b{bottom:287.435638px;}
.y273{bottom:287.946099px;}
.y186{bottom:297.811296px;}
.y1be{bottom:298.067676px;}
.y80{bottom:298.070543px;}
.y200{bottom:298.580687px;}
.y91{bottom:299.091512px;}
.y221{bottom:299.171189px;}
.y272{bottom:299.936297px;}
.y2a{bottom:303.168615px;}
.y146{bottom:310.396356px;}
.y220{bottom:311.076270px;}
.y271{bottom:311.842334px;}
.y185{bottom:313.458197px;}
.y1bd{bottom:313.799458px;}
.y7f{bottom:313.802324px;}
.y1ff{bottom:314.227587px;}
.y90{bottom:314.738413px;}
.y11d{bottom:315.156000px;}
.y133{bottom:317.198836px;}
.y29{bottom:318.815516px;}
.y21f{bottom:323.067425px;}
.y270{bottom:323.832533px;}
.y145{bottom:326.128138px;}
.y184{bottom:329.189978px;}
.y1bc{bottom:329.447554px;}
.y7e{bottom:329.449225px;}
.y1fe{bottom:329.959369px;}
.y8f{bottom:330.470195px;}
.y28{bottom:334.547298px;}
.y21e{bottom:335.057624px;}
.y26f{bottom:335.737613px;}
.y144{bottom:341.775038px;}
.y183{bottom:344.838074px;}
.y1bb{bottom:345.179336px;}
.y1fd{bottom:345.606270px;}
.y6c{bottom:346.117095px;}
.y21d{bottom:346.962704px;}
.y26e{bottom:347.728769px;}
.y27{bottom:350.194198px;}
.y132{bottom:357.508016px;}
.y21c{bottom:358.952903px;}
.y26d{bottom:359.718967px;}
.y196{bottom:360.569856px;}
.y1ba{bottom:360.826236px;}
.y7d{bottom:360.829102px;}
.y1fc{bottom:361.338051px;}
.y6b{bottom:361.848877px;}
.y26{bottom:365.925980px;}
.y101{bottom:367.965000px;}
.y102{bottom:369.921000px;}
.y100{bottom:369.922318px;}
.y21b{bottom:370.858940px;}
.y26c{bottom:371.624048px;}
.y131{bottom:373.154916px;}
.y182{bottom:376.216756px;}
.y1b9{bottom:376.558018px;}
.y1fb{bottom:377.071029px;}
.y6a{bottom:377.496973px;}
.y25{bottom:381.574076px;}
.y21a{bottom:382.849138px;}
.y26b{bottom:383.614246px;}
.yff{bottom:385.654100px;}
.y130{bottom:388.886698px;}
.y195{bottom:391.948538px;}
.y1b8{bottom:392.206114px;}
.y1fa{bottom:392.717929px;}
.y69{bottom:393.228754px;}
.y219{bottom:394.839337px;}
.y26a{bottom:395.520283px;}
.yc4{bottom:397.050505px;}
.y24{bottom:397.305858px;}
.yfd{bottom:399.345000px;}
.yfe{bottom:401.301000px;}
.yfc{bottom:401.302476px;}
.y12f{bottom:404.533598px;}
.y218{bottom:406.745374px;}
.y269{bottom:407.510482px;}
.y181{bottom:407.596634px;}
.y1b7{bottom:407.937896px;}
.y1f9{bottom:408.449711px;}
.y68{bottom:408.875655px;}
.y23{bottom:412.952758px;}
.yfb{bottom:417.034258px;}
.y217{bottom:418.735573px;}
.yc2{bottom:418.818000px;}
.y268{bottom:419.500681px;}
.y12e{bottom:420.266576px;}
.yc3{bottom:420.775500px;}
.yc1{bottom:420.776976px;}
.y194{bottom:423.328416px;}
.y1b6{bottom:423.584796px;}
.y1f8{bottom:424.096611px;}
.y67{bottom:424.607437px;}
.y22{bottom:428.684540px;}
.y216{bottom:430.640653px;}
.y267{bottom:431.405761px;}
.yfa{bottom:432.681158px;}
.y12d{bottom:435.913476px;}
.yc0{bottom:436.508758px;}
.y180{bottom:438.975316px;}
.y1b5{bottom:439.316578px;}
.y1f7{bottom:439.829589px;}
.y66{bottom:440.255532px;}
.y215{bottom:442.630852px;}
.y266{bottom:443.396916px;}
.y21{bottom:444.332636px;}
.yf9{bottom:448.414136px;}
.y12c{bottom:451.645258px;}
.ybf{bottom:452.155658px;}
.y214{bottom:454.622007px;}
.y17f{bottom:454.707098px;}
.y1b4{bottom:454.963478px;}
.y265{bottom:455.301997px;}
.y1f6{bottom:455.476489px;}
.y65{bottom:455.987314px;}
.y20{bottom:460.064417px;}
.yf8{bottom:464.061036px;}
.y213{bottom:466.527088px;}
.y12b{bottom:467.292158px;}
.y264{bottom:467.292196px;}
.ybe{bottom:467.888636px;}
.y17e{bottom:470.355194px;}
.y1b3{bottom:470.696456px;}
.y1f5{bottom:471.208271px;}
.y64{bottom:471.634215px;}
.y1f{bottom:475.711318px;}
.y212{bottom:478.517286px;}
.y263{bottom:479.282394px;}
.yf7{bottom:479.792818px;}
.y12a{bottom:483.025136px;}
.y17d{bottom:486.086976px;}
.y1b2{bottom:486.343356px;}
.y1f4{bottom:486.855171px;}
.y63{bottom:487.365997px;}
.y211{bottom:490.422367px;}
.y262{bottom:491.188431px;}
.y30{bottom:491.443100px;}
.yf6{bottom:495.439718px;}
.y129{bottom:498.672036px;}
.ybd{bottom:499.267318px;}
.y17c{bottom:501.733876px;}
.y1b1{bottom:502.075138px;}
.y210{bottom:502.413522px;}
.y1f3{bottom:502.588149px;}
.y62{bottom:503.014092px;}
.y261{bottom:503.178630px;}
.y1e{bottom:507.090000px;}
.yf4{bottom:509.130000px;}
.yf5{bottom:511.171500px;}
.yf3{bottom:511.172767px;}
.y20f{bottom:514.318603px;}
.y128{bottom:514.403818px;}
.ybc{bottom:514.914218px;}
.y260{bottom:515.083711px;}
.y17b{bottom:517.465658px;}
.y1b0{bottom:517.722038px;}
.y1f2{bottom:518.235049px;}
.y61{bottom:518.745874px;}
.y20e{bottom:526.308801px;}
.yf2{bottom:526.819667px;}
.y25f{bottom:527.074866px;}
.yba{bottom:528.604500px;}
.y127{bottom:530.050718px;}
.ybb{bottom:530.646000px;}
.yb9{bottom:530.647040px;}
.y17a{bottom:533.112559px;}
.y1af{bottom:533.455016px;}
.y1f1{bottom:533.966831px;}
.y60{bottom:534.392775px;}
.y20d{bottom:538.299000px;}
.y25e{bottom:538.978989px;}
.yf1{bottom:542.552645px;}
.y125{bottom:543.741000px;}
.y126{bottom:545.782500px;}
.y124{bottom:545.783758px;}
.yb8{bottom:546.295136px;}
.y179{bottom:548.845536px;}
.y1ae{bottom:549.186798px;}
.y1f0{bottom:549.613731px;}
.y5f{bottom:550.124557px;}
.y25d{bottom:550.969188px;}
.y143{bottom:561.429400px;}
.y123{bottom:561.430658px;}
.yb7{bottom:562.026917px;}
.y25c{bottom:562.959387px;}
.y178{bottom:564.492436px;}
.y1ad{bottom:564.833698px;}
.y1ef{bottom:565.346709px;}
.y5e{bottom:565.771457px;}
.y1d{bottom:566.619430px;}
.yf0{bottom:573.931327px;}
.y25b{bottom:574.865424px;}
.y142{bottom:577.161182px;}
.y122{bottom:577.163636px;}
.yb6{bottom:577.673818px;}
.y177{bottom:580.224218px;}
.y1ac{bottom:580.565480px;}
.y1c{bottom:580.990894px;}
.y1ee{bottom:580.993609px;}
.y5d{bottom:581.504434px;}
.y25a{bottom:586.855623px;}
.y141{bottom:592.808083px;}
.y121{bottom:592.810536px;}
.yb5{bottom:593.405600px;}
.y1b{bottom:595.362359px;}
.y176{bottom:595.956000px;}
.y1ab{bottom:596.213576px;}
.y1ed{bottom:596.725391px;}
.y5c{bottom:597.151335px;}
.y259{bottom:598.760703px;}
.yb3{bottom:607.096500px;}
.yef{bottom:608.201960px;}
.y140{bottom:608.539864px;}
.y120{bottom:608.542318px;}
.yb4{bottom:609.052500px;}
.yb2{bottom:609.052536px;}
.y1a{bottom:609.648823px;}
.y258{bottom:610.750902px;}
.y1aa{bottom:611.945358px;}
.y1ec{bottom:612.372291px;}
.y5b{bottom:612.883116px;}
.y257{bottom:622.742057px;}
.yee{bottom:623.933742px;}
.y19{bottom:624.020287px;}
.y13f{bottom:624.187960px;}
.y11f{bottom:624.189218px;}
.yb1{bottom:624.784318px;}
.y1a9{bottom:627.592258px;}
.y1eb{bottom:628.104073px;}
.y5a{bottom:628.530017px;}
.y197{bottom:629.547000px;}
.y172{bottom:629.971500px;}
.y256{bottom:634.647138px;}
.y10{bottom:635.415305px;}
.y18{bottom:638.391751px;}
.yed{bottom:639.581838px;}
.y13e{bottom:639.919742px;}
.y11e{bottom:639.921000px;}
.yb0{bottom:640.431218px;}
.y1a8{bottom:643.324040px;}
.y1ea{bottom:643.752169px;}
.y59{bottom:644.262994px;}
.y255{bottom:646.637336px;}
.yf{bottom:648.256687px;}
.y17{bottom:652.678215px;}
.yae{bottom:654.208500px;}
.yec{bottom:655.313620px;}
.yaf{bottom:656.163000px;}
.yad{bottom:656.164598px;}
.y254{bottom:658.543373px;}
.y1a7{bottom:658.972136px;}
.y1e9{bottom:659.483951px;}
.y58{bottom:659.909894px;}
.ye{bottom:661.097112px;}
.y16{bottom:667.049679px;}
.y253{bottom:670.533572px;}
.yeb{bottom:670.960520px;}
.yd{bottom:673.938493px;}
.y1a6{bottom:674.703917px;}
.y1e8{bottom:675.130851px;}
.y57{bottom:675.641676px;}
.y16f{bottom:680.401916px;}
.y15{bottom:681.421143px;}
.y252{bottom:682.438653px;}
.yc{bottom:686.778918px;}
.yac{bottom:687.544476px;}
.y1a5{bottom:690.350818px;}
.y1e7{bottom:690.862633px;}
.y56{bottom:691.288577px;}
.y16e{bottom:693.328415px;}
.y251{bottom:694.428851px;}
.yea{bottom:695.198005px;}
.y14{bottom:695.792608px;}
.yb{bottom:699.619343px;}
.yab{bottom:703.276258px;}
.y1a4{bottom:706.082600px;}
.y16d{bottom:706.168840px;}
.y250{bottom:706.420006px;}
.y1e6{bottom:706.510729px;}
.y55{bottom:707.021554px;}
.y13{bottom:710.079072px;}
.ya{bottom:712.460724px;}
.ye8{bottom:716.967000px;}
.y24f{bottom:718.325087px;}
.ye9{bottom:718.923000px;}
.yaa{bottom:718.923158px;}
.ye7{bottom:718.923218px;}
.y16c{bottom:719.009265px;}
.y1a2{bottom:719.773500px;}
.y1a3{bottom:721.729500px;}
.y1a1{bottom:721.732366px;}
.y1e5{bottom:722.242511px;}
.y54{bottom:722.753336px;}
.y12{bottom:724.450536px;}
.y24e{bottom:730.315286px;}
.y16b{bottom:731.850647px;}
.ye5{bottom:732.613500px;}
.ye6{bottom:734.655000px;}
.ye4{bottom:734.656100px;}
.ya9{bottom:734.656136px;}
.y1a0{bottom:737.465344px;}
.y1e4{bottom:737.889411px;}
.y53{bottom:738.400236px;}
.y11{bottom:738.822000px;}
.y9{bottom:740.182500px;}
.y24d{bottom:742.220366px;}
.y16a{bottom:744.691072px;}
.ye2{bottom:748.347000px;}
.ye3{bottom:750.303000px;}
.ya8{bottom:750.303036px;}
.ye1{bottom:750.304258px;}
.y19f{bottom:753.112244px;}
.y52{bottom:754.132018px;}
.y24c{bottom:754.211521px;}
.y169{bottom:757.532453px;}
.ya7{bottom:766.034818px;}
.y24b{bottom:766.201720px;}
.y8{bottom:768.075000px;}
.y19e{bottom:768.844026px;}
.y1e3{bottom:769.269289px;}
.y51{bottom:769.780114px;}
.y168{bottom:770.372878px;}
.y24a{bottom:778.106800px;}
.ya6{bottom:781.681718px;}
.ye0{bottom:781.684136px;}
.y167{bottom:783.213303px;}
.y19d{bottom:784.490926px;}
.y50{bottom:785.511896px;}
.y249{bottom:790.096999px;}
.ya4{bottom:795.373500px;}
.y166{bottom:796.139803px;}
.ya5{bottom:797.413500px;}
.ydf{bottom:797.415917px;}
.ya3{bottom:797.416676px;}
.y19c{bottom:800.223903px;}
.y1e2{bottom:801.158456px;}
.y4f{bottom:801.158796px;}
.y248{bottom:802.003036px;}
.y165{bottom:808.980228px;}
.yde{bottom:813.062818px;}
.ya2{bottom:813.064772px;}
.y247{bottom:813.993235px;}
.y19b{bottom:815.870804px;}
.y1e1{bottom:816.890238px;}
.y4e{bottom:816.890578px;}
.y7{bottom:817.569000px;}
.y164{bottom:821.821609px;}
.y246{bottom:825.898315px;}
.ydd{bottom:828.794600px;}
.ya1{bottom:828.796554px;}
.y19a{bottom:831.602586px;}
.y1e0{bottom:832.537138px;}
.y4d{bottom:832.537478px;}
.y163{bottom:834.662034px;}
.y245{bottom:837.889470px;}
.y6{bottom:842.230500px;}
.y5{bottom:842.232190px;}
.ydb{bottom:842.485500px;}
.ydc{bottom:844.441500px;}
.ya0{bottom:844.443454px;}
.yda{bottom:844.443672px;}
.y199{bottom:847.249486px;}
.y162{bottom:847.502459px;}
.y1df{bottom:848.270115px;}
.y4c{bottom:848.270456px;}
.y244{bottom:849.879669px;}
.yd9{bottom:860.175454px;}
.y161{bottom:860.343841px;}
.y3{bottom:861.619500px;}
.y243{bottom:861.784750px;}
.y1de{bottom:863.917016px;}
.y4b{bottom:863.917356px;}
.y4{bottom:868.677000px;}
.y160{bottom:873.184266px;}
.y242{bottom:873.774948px;}
.y198{bottom:878.629364px;}
.y1dd{bottom:879.648798px;}
.y4a{bottom:879.649138px;}
.y241{bottom:885.680985px;}
.y15f{bottom:886.109809px;}
.y1dc{bottom:895.295698px;}
.y49{bottom:895.296038px;}
.y240{bottom:897.671184px;}
.y2{bottom:899.122216px;}
.y15e{bottom:905.753957px;}
.y23f{bottom:909.661383px;}
.y1db{bottom:911.027480px;}
.y48{bottom:911.029016px;}
.y15d{bottom:918.679500px;}
.y11c{bottom:918.936000px;}
.y23e{bottom:921.566463px;}
.y1{bottom:924.973500px;}
.y1da{bottom:926.675576px;}
.y47{bottom:926.675916px;}
.y23d{bottom:933.557618px;}
.y15c{bottom:938.410036px;}
.y1d9{bottom:942.407358px;}
.y46{bottom:942.407698px;}
.y23c{bottom:945.462699px;}
.y15b{bottom:952.696500px;}
.y23b{bottom:957.452898px;}
.y1d8{bottom:958.054258px;}
.y45{bottom:958.054598px;}
.y23a{bottom:969.358934px;}
.y1d7{bottom:973.786040px;}
.y9f{bottom:973.787417px;}
.y44{bottom:973.787576px;}
.yd8{bottom:973.787636px;}
.y239{bottom:981.349133px;}
.y1d6{bottom:989.434136px;}
.y9e{bottom:989.434318px;}
.y43{bottom:989.434476px;}
.yd7{bottom:989.434536px;}
.y159{bottom:992.070000px;}
.y238{bottom:993.339332px;}
.y158{bottom:993.685075px;}
.y15a{bottom:993.685500px;}
.y35{bottom:1003.719000px;}
.y156{bottom:1004.910000px;}
.y1d5{bottom:1005.165917px;}
.y9d{bottom:1005.166100px;}
.y42{bottom:1005.166258px;}
.yd6{bottom:1005.166318px;}
.y237{bottom:1005.244412px;}
.y157{bottom:1006.525500px;}
.y155{bottom:1006.526575px;}
.y236{bottom:1017.235568px;}
.y153{bottom:1017.751500px;}
.y9b{bottom:1018.857000px;}
.y154{bottom:1019.367000px;}
.y152{bottom:1019.368075px;}
.y1d4{bottom:1020.812818px;}
.y9c{bottom:1020.813000px;}
.y41{bottom:1020.813158px;}
.y9a{bottom:1020.813218px;}
.y235{bottom:1029.140648px;}
.y150{bottom:1030.591500px;}
.y14f{bottom:1032.208075px;}
.y151{bottom:1032.208500px;}
.y98{bottom:1034.503500px;}
.y1d3{bottom:1036.544600px;}
.y99{bottom:1036.545000px;}
.yd5{bottom:1036.545917px;}
.y40{bottom:1036.546136px;}
.y234{bottom:1041.130847px;}
.y14d{bottom:1043.518500px;}
.y14e{bottom:1045.048500px;}
.y14c{bottom:1045.049690px;}
.y34{bottom:1045.474500px;}
.y1d1{bottom:1050.235500px;}
.y1d0{bottom:1052.188974px;}
.y1d2{bottom:1052.191500px;}
.yd4{bottom:1052.192818px;}
.y3f{bottom:1052.193036px;}
.y233{bottom:1053.121046px;}
.y14b{bottom:1064.778000px;}
.y232{bottom:1065.027082px;}
.y1cf{bottom:1067.920756px;}
.yd3{bottom:1067.924600px;}
.y3e{bottom:1067.924818px;}
.y231{bottom:1077.017281px;}
.yd1{bottom:1081.615500px;}
.y149{bottom:1082.721000px;}
.y1ce{bottom:1083.567656px;}
.yd2{bottom:1083.571500px;}
.y3d{bottom:1083.571718px;}
.y14a{bottom:1084.507500px;}
.y148{bottom:1084.507536px;}
.y33{bottom:1087.312500px;}
.y230{bottom:1088.922362px;}
.yd0{bottom:1097.263500px;}
.y147{bottom:1098.879000px;}
.ycf{bottom:1099.294737px;}
.y1cd{bottom:1099.300634px;}
.y3c{bottom:1099.303500px;}
.y22f{bottom:1100.912560px;}
.y38{bottom:1127.504970px;}
.y7b{bottom:1128.629970px;}
.y7a{bottom:1128.632958px;}
.y27e{bottom:1128.635292px;}
.y170{bottom:1128.638525px;}
.y97{bottom:1128.642000px;}
.hf{height:23.521113px;}
.he{height:26.462637px;}
.hd{height:31.524082px;}
.h6{height:33.622910px;}
.hc{height:33.623438px;}
.hb{height:34.478653px;}
.h7{height:36.775371px;}
.h4{height:37.122363px;}
.h8{height:37.826367px;}
.h9{height:42.029824px;}
.h10{height:45.620852px;}
.h3{height:55.689609px;}
.h5{height:60.549109px;}
.h2{height:70.925098px;}
.ha{height:73.551270px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:56.381100px;}
.x23{left:62.928936px;}
.x12{left:63.949500px;}
.x19{left:65.395200px;}
.xe{left:74.323389px;}
.x20{left:85.378865px;}
.x28{left:87.845550px;}
.x74{left:94.137855px;}
.x29{left:95.669250px;}
.x2a{left:105.788850px;}
.x2b{left:111.826650px;}
.x9{left:114.297390px;}
.x75{left:116.758194px;}
.x60{left:122.200643px;}
.x2{left:132.574386px;}
.x1e{left:141.843835px;}
.x2c{left:144.226650px;}
.x2e{left:152.815500px;}
.x2d{left:157.918500px;}
.x35{left:159.279000px;}
.x2f{left:160.725000px;}
.x32{left:163.956000px;}
.x54{left:167.272500px;}
.x55{left:171.694500px;}
.x31{left:174.415500px;}
.xa{left:180.287745px;}
.x25{left:183.259500px;}
.x58{left:192.954000px;}
.x26{left:196.270500px;}
.x68{left:201.202500px;}
.x33{left:204.180000px;}
.x69{left:215.149500px;}
.x76{left:216.168167px;}
.x34{left:221.782500px;}
.x1f{left:232.325507px;}
.xb{left:245.166240px;}
.x3{left:246.613500px;}
.x15{left:252.907500px;}
.x27{left:258.775500px;}
.x13{left:260.302843px;}
.x59{left:264.558000px;}
.x4{left:265.918500px;}
.xc{left:267.362089px;}
.x5a{left:270.936000px;}
.x5b{left:288.453000px;}
.x5d{left:293.811000px;}
.x5c{left:294.831000px;}
.x17{left:298.005000px;}
.x5f{left:299.169000px;}
.x5e{left:300.189000px;}
.x5{left:301.803795px;}
.xd{left:302.995500px;}
.x16{left:304.866000px;}
.x6a{left:313.965000px;}
.x6b{left:326.466000px;}
.x61{left:328.932000px;}
.x6{left:332.417339px;}
.x14{left:342.624000px;}
.x30{left:346.448255px;}
.x62{left:357.336000px;}
.x64{left:380.125500px;}
.x1a{left:389.136304px;}
.x66{left:392.371500px;}
.x63{left:398.835000px;}
.x65{left:401.130000px;}
.x56{left:409.890000px;}
.x57{left:417.033000px;}
.x67{left:441.629970px;}
.x22{left:444.315030px;}
.xf{left:459.888932px;}
.x83{left:464.905735px;}
.x24{left:466.436767px;}
.x50{left:468.907500px;}
.x7{left:474.773643px;}
.x10{left:477.831221px;}
.x3f{left:501.052500px;}
.x1b{left:505.808580px;}
.x40{left:514.998000px;}
.x39{left:528.264000px;}
.x6c{left:538.895563px;}
.x51{left:542.721000px;}
.x3a{left:544.081500px;}
.x7b{left:548.072974px;}
.x52{left:552.585000px;}
.x81{left:554.451106px;}
.x4d{left:556.923000px;}
.x53{left:557.943000px;}
.x7f{left:559.298065px;}
.x8{left:560.322387px;}
.x3b{left:566.617500px;}
.x3c{left:570.529500px;}
.x43{left:572.400000px;}
.x6f{left:579.458192px;}
.x36{left:581.839500px;}
.x21{left:585.224985px;}
.x44{left:586.431000px;}
.x37{left:593.830500px;}
.x3d{left:595.360500px;}
.x38{left:598.422000px;}
.x3e{left:599.782500px;}
.x1c{left:602.157674px;}
.x80{left:603.518438px;}
.x18{left:608.550015px;}
.x79{left:621.801650px;}
.x84{left:625.713265px;}
.x7c{left:629.030008px;}
.x6d{left:640.685297px;}
.x4e{left:643.323000px;}
.x70{left:648.593628px;}
.x41{left:651.231000px;}
.x4f{left:659.140500px;}
.x1d{left:661.854269px;}
.x42{left:663.732000px;}
.x6e{left:667.556887px;}
.x85{left:678.266621px;}
.x7d{left:699.951694px;}
.x71{left:708.885841px;}
.x7a{left:716.619572px;}
.x4b{left:718.923000px;}
.x7e{left:720.360950px;}
.x4c{left:727.767000px;}
.x82{left:730.820933px;}
.x11{left:738.305247px;}
.x45{left:746.560500px;}
.x47{left:749.026500px;}
.x46{left:750.982500px;}
.x48{left:753.448500px;}
.x72{left:761.949970px;}
.x77{left:784.224515px;}
.x78{left:801.317028px;}
.x49{left:804.132000px;}
.x4a{left:822.075000px;}
.x73{left:830.151709px;}
@media print{
.v4{vertical-align:-6.353795pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:2.720461pt;}
.v1{vertical-align:3.627145pt;}
.v5{vertical-align:10.881843pt;}
.v2{vertical-align:14.508582pt;}
.ls8{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.000005pt;}
.ls9{letter-spacing:0.000011pt;}
.ls4{letter-spacing:0.000059pt;}
.ls7{letter-spacing:0.000112pt;}
.lsa{letter-spacing:0.000117pt;}
.ls2{letter-spacing:0.000165pt;}
.ls23{letter-spacing:0.122417pt;}
.ls22{letter-spacing:0.142820pt;}
.ls1{letter-spacing:0.229539pt;}
.ls15{letter-spacing:0.258606pt;}
.lsc{letter-spacing:0.297550pt;}
.ls20{letter-spacing:0.590850pt;}
.ls16{letter-spacing:2.488581pt;}
.ls18{letter-spacing:2.872125pt;}
.ls5{letter-spacing:3.710832pt;}
.ls6{letter-spacing:3.749179pt;}
.ls17{letter-spacing:6.890417pt;}
.ls11{letter-spacing:7.179466pt;}
.lsf{letter-spacing:7.183717pt;}
.lse{letter-spacing:7.192218pt;}
.ls19{letter-spacing:7.196469pt;}
.ls1a{letter-spacing:7.221973pt;}
.ls1b{letter-spacing:9.300575pt;}
.ls10{letter-spacing:9.774203pt;}
.ls13{letter-spacing:10.096025pt;}
.ls1c{letter-spacing:10.099426pt;}
.ls12{letter-spacing:10.398668pt;}
.ls14{letter-spacing:10.402068pt;}
.ls21{letter-spacing:11.412011pt;}
.ls0{letter-spacing:16.922845pt;}
.lsb{letter-spacing:18.958211pt;}
.lsd{letter-spacing:18.962462pt;}
.ls1e{letter-spacing:19.280722pt;}
.ls1f{letter-spacing:179.630356pt;}
.ls1d{letter-spacing:190.753326pt;}
.wsd{word-spacing:-42.507200pt;}
.ws17{word-spacing:-35.629535pt;}
.ws1f{word-spacing:-35.625284pt;}
.ws1a{word-spacing:-35.591279pt;}
.wsc{word-spacing:-35.327734pt;}
.ws1c{word-spacing:-35.276725pt;}
.wsa{word-spacing:-34.005333pt;}
.ws32{word-spacing:-34.004800pt;}
.ws6{word-spacing:-21.538128pt;}
.ws2e{word-spacing:-19.145003pt;}
.ws9{word-spacing:-18.906965pt;}
.ws0{word-spacing:-16.502385pt;}
.ws3{word-spacing:-12.454610pt;}
.ws5{word-spacing:-11.944523pt;}
.ws2d{word-spacing:-11.209008pt;}
.ws8{word-spacing:-10.626800pt;}
.ws31{word-spacing:-9.963406pt;}
.ws30{word-spacing:-8.501200pt;}
.ws11{word-spacing:-8.095395pt;}
.ws20{word-spacing:-5.377161pt;}
.ws21{word-spacing:-5.334654pt;}
.ws1b{word-spacing:-5.317651pt;}
.wsf{word-spacing:-5.283645pt;}
.ws19{word-spacing:-5.168876pt;}
.ws22{word-spacing:-5.160374pt;}
.ws1e{word-spacing:-5.134870pt;}
.ws18{word-spacing:-4.488760pt;}
.wsb{word-spacing:-4.463256pt;}
.ws23{word-spacing:-3.995677pt;}
.ws24{word-spacing:-3.893660pt;}
.ws25{word-spacing:-2.967003pt;}
.ws7{word-spacing:0.000000pt;}
.ws16{word-spacing:1.566429pt;}
.ws4{word-spacing:1.725346pt;}
.ws2f{word-spacing:14.082635pt;}
.ws2{word-spacing:14.384436pt;}
.ws1{word-spacing:38.682572pt;}
.ws13{word-spacing:111.937001pt;}
.ws27{word-spacing:143.078596pt;}
.ws2c{word-spacing:158.445366pt;}
.ws2b{word-spacing:158.649394pt;}
.ws15{word-spacing:168.759021pt;}
.ws2a{word-spacing:169.870978pt;}
.ws14{word-spacing:180.184634pt;}
.ws29{word-spacing:199.904018pt;}
.ws28{word-spacing:211.326230pt;}
.wse{word-spacing:234.193418pt;}
.ws10{word-spacing:520.390145pt;}
.ws26{word-spacing:876.115899pt;}
.ws1d{word-spacing:953.627778pt;}
.ws12{word-spacing:993.361741pt;}
._6{margin-left:-15.416526pt;}
._12{margin-left:-11.160741pt;}
._10{margin-left:-4.458797pt;}
._b{margin-left:-3.553671pt;}
._a{margin-left:-2.643913pt;}
._5{margin-left:-1.166384pt;}
._0{width:1.563729pt;}
._1{width:3.070073pt;}
._9{width:4.598371pt;}
._8{width:5.628102pt;}
._3{width:7.034634pt;}
._c{width:8.203009pt;}
._2{width:9.281888pt;}
._7{width:10.215232pt;}
._f{width:11.404682pt;}
._3c{width:12.488615pt;}
._15{width:13.780834pt;}
._e{width:15.136814pt;}
._d{width:16.926367pt;}
._11{width:18.060658pt;}
._13{width:19.583067pt;}
._16{width:21.402375pt;}
._2e{width:25.215271pt;}
._14{width:26.537245pt;}
._2f{width:33.971754pt;}
._3d{width:35.778310pt;}
._4{width:55.174444pt;}
._1b{width:60.287110pt;}
._1a{width:64.751940pt;}
._28{width:69.298382pt;}
._35{width:121.771189pt;}
._1e{width:130.183976pt;}
._1d{width:133.394029pt;}
._25{width:140.004563pt;}
._21{width:149.073643pt;}
._3a{width:153.215427pt;}
._23{width:154.136957pt;}
._34{width:160.264622pt;}
._33{width:167.708273pt;}
._2b{width:172.744384pt;}
._1c{width:174.427622pt;}
._17{width:177.590068pt;}
._32{width:178.926457pt;}
._2c{width:180.276447pt;}
._22{width:196.292708pt;}
._39{width:198.645840pt;}
._2a{width:199.618377pt;}
._38{width:210.071453pt;}
._36{width:225.781671pt;}
._18{width:247.650157pt;}
._24{width:253.573794pt;}
._19{width:258.470485pt;}
._31{width:264.071075pt;}
._20{width:269.634261pt;}
._2d{width:270.746218pt;}
._29{width:271.820769pt;}
._3b{width:276.275398pt;}
._27{width:279.393638pt;}
._30{width:306.849114pt;}
._37{width:314.564803pt;}
._1f{width:341.894461pt;}
._26{width:351.653838pt;}
.fsc{font-size:23.788267pt;}
.fsb{font-size:26.763200pt;}
.fsa{font-size:27.629333pt;}
.fs9{font-size:31.882133pt;}
.fs3{font-size:34.004800pt;}
.fs8{font-size:34.005333pt;}
.fs4{font-size:37.193067pt;}
.fs2{font-size:37.544000pt;}
.fs5{font-size:38.256000pt;}
.fs6{font-size:42.507200pt;}
.fs1{font-size:56.322133pt;}
.fs0{font-size:71.730667pt;}
.fs7{font-size:74.386667pt;}
.y0{bottom:0.000000pt;}
.y7c{bottom:42.160000pt;}
.y174{bottom:69.694400pt;}
.y1cc{bottom:69.700724pt;}
.y20c{bottom:69.701906pt;}
.y8e{bottom:69.703272pt;}
.y173{bottom:69.770000pt;}
.y11a{bottom:74.456667pt;}
.y11b{bottom:75.817200pt;}
.y119{bottom:75.817695pt;}
.y79{bottom:75.818936pt;}
.y3a{bottom:83.106613pt;}
.y3b{bottom:83.106693pt;}
.y193{bottom:83.381186pt;}
.y1cb{bottom:83.684530pt;}
.y20b{bottom:83.686775pt;}
.y8d{bottom:83.687078pt;}
.y117{bottom:85.870800pt;}
.y118{bottom:87.307067pt;}
.y116{bottom:87.307489pt;}
.y78{bottom:87.309158pt;}
.y39{bottom:93.893307pt;}
.y114{bottom:97.284933pt;}
.y192{bottom:97.364992pt;}
.yce{bottom:97.512194pt;}
.y1ca{bottom:97.592886pt;}
.y20a{bottom:97.595131pt;}
.y8c{bottom:97.595434pt;}
.y115{bottom:98.721200pt;}
.y113{bottom:98.721622pt;}
.y77{bottom:98.722869pt;}
.y37{bottom:106.582787pt;}
.y111{bottom:108.699200pt;}
.y171{bottom:109.606267pt;}
.ycc{bottom:109.757467pt;}
.y112{bottom:110.135333pt;}
.y110{bottom:110.135889pt;}
.y76{bottom:110.137430pt;}
.y191{bottom:111.273348pt;}
.ycd{bottom:111.496000pt;}
.ycb{bottom:111.499262pt;}
.y1c9{bottom:111.577755pt;}
.y209{bottom:111.578937pt;}
.y8b{bottom:111.579240pt;}
.y36{bottom:119.281867pt;}
.y10e{bottom:120.113333pt;}
.y10f{bottom:121.549600pt;}
.y10d{bottom:121.550391pt;}
.y75{bottom:121.551141pt;}
.y190{bottom:125.258217pt;}
.yca{bottom:125.408681pt;}
.y1c8{bottom:125.486110pt;}
.y208{bottom:125.487293pt;}
.y8a{bottom:125.488658pt;}
.y22e{bottom:127.752291pt;}
.y13d{bottom:128.507780pt;}
.y74{bottom:132.964853pt;}
.y22d{bottom:138.410246pt;}
.y10c{bottom:139.086667pt;}
.y18f{bottom:139.166573pt;}
.yc9{bottom:139.392487pt;}
.y1c7{bottom:139.469917pt;}
.y207{bottom:139.472162pt;}
.y89{bottom:139.472464pt;}
.y32{bottom:141.958699pt;}
.y13c{bottom:142.491586pt;}
.y73{bottom:144.379414pt;}
.y22c{bottom:148.992540pt;}
.y175{bottom:149.517333pt;}
.y27d{bottom:149.672636pt;}
.y18e{bottom:153.150379pt;}
.yc8{bottom:153.376293pt;}
.y1c6{bottom:153.378272pt;}
.y206{bottom:153.380518pt;}
.y88{bottom:153.380820pt;}
.y31{bottom:154.733333pt;}
.y10a{bottom:155.036000pt;}
.y72{bottom:155.793125pt;}
.y13b{bottom:156.399942pt;}
.y10b{bottom:156.624000pt;}
.y109{bottom:156.624032pt;}
.y22b{bottom:159.650494pt;}
.y27c{bottom:160.331440pt;}
.y18d{bottom:167.058735pt;}
.y71{bottom:167.207686pt;}
.yc7{bottom:167.284649pt;}
.y1c5{bottom:167.363141pt;}
.y205{bottom:167.364324pt;}
.y87{bottom:167.364626pt;}
.y108{bottom:169.398667pt;}
.y22a{bottom:170.309299pt;}
.y13a{bottom:170.384811pt;}
.y27b{bottom:170.913734pt;}
.y229{bottom:180.891592pt;}
.y18c{bottom:181.043604pt;}
.yc6{bottom:181.269518pt;}
.y1c4{bottom:181.271497pt;}
.y204{bottom:181.272680pt;}
.y86{bottom:181.274045pt;}
.y27a{bottom:181.571688pt;}
.y96{bottom:182.180511pt;}
.y139{bottom:184.293167pt;}
.y70{bottom:184.743962pt;}
.y228{bottom:191.549547pt;}
.y279{bottom:192.230493pt;}
.y18b{bottom:194.951959pt;}
.y1c3{bottom:195.255303pt;}
.y203{bottom:195.257548pt;}
.y85{bottom:195.257851pt;}
.y95{bottom:196.088867pt;}
.y6f{bottom:196.233333pt;}
.y138{bottom:198.276973pt;}
.y2f{bottom:199.712958pt;}
.y107{bottom:200.390861pt;}
.y227{bottom:202.132691pt;}
.y278{bottom:202.812787pt;}
.yc5{bottom:207.272234pt;}
.y18a{bottom:208.935766pt;}
.y1c2{bottom:209.163659pt;}
.y202{bottom:209.165904pt;}
.y84{bottom:209.166207pt;}
.y94{bottom:210.073735pt;}
.y137{bottom:212.185329pt;}
.y105{bottom:212.636000pt;}
.y226{bottom:212.790645pt;}
.y277{bottom:213.470741pt;}
.y6e{bottom:213.694699pt;}
.y2e{bottom:213.697827pt;}
.y106{bottom:214.374667pt;}
.y104{bottom:214.376532pt;}
.y189{bottom:222.844121pt;}
.y1c1{bottom:223.148528pt;}
.y83{bottom:223.150013pt;}
.y225{bottom:223.448600pt;}
.y93{bottom:223.982091pt;}
.y276{bottom:224.053035pt;}
.y136{bottom:226.170197pt;}
.y6d{bottom:226.469333pt;}
.y2d{bottom:227.606183pt;}
.y103{bottom:228.284888pt;}
.y224{bottom:234.030893pt;}
.y275{bottom:234.711839pt;}
.y188{bottom:236.828990pt;}
.y1c0{bottom:237.056884pt;}
.y201{bottom:237.058066pt;}
.y82{bottom:237.059431pt;}
.y92{bottom:237.965897pt;}
.y135{bottom:240.078553pt;}
.y2c{bottom:241.589989pt;}
.y223{bottom:244.689698pt;}
.y274{bottom:245.369794pt;}
.y187{bottom:250.737346pt;}
.y1bf{bottom:251.040690pt;}
.y81{bottom:251.043238pt;}
.y134{bottom:254.062359pt;}
.y222{bottom:255.271992pt;}
.y2b{bottom:255.498345pt;}
.y273{bottom:255.952088pt;}
.y186{bottom:264.721152pt;}
.y1be{bottom:264.949046pt;}
.y80{bottom:264.951593pt;}
.y200{bottom:265.405055pt;}
.y91{bottom:265.859122pt;}
.y221{bottom:265.929946pt;}
.y272{bottom:266.610042pt;}
.y2a{bottom:269.483214pt;}
.y146{bottom:275.907872pt;}
.y220{bottom:276.512240pt;}
.y271{bottom:277.193186pt;}
.y185{bottom:278.629508pt;}
.y1bd{bottom:278.932852pt;}
.y7f{bottom:278.935399pt;}
.y1ff{bottom:279.313411pt;}
.y90{bottom:279.767478pt;}
.y11d{bottom:280.138667pt;}
.y133{bottom:281.954521pt;}
.y29{bottom:283.391570pt;}
.y21f{bottom:287.171044pt;}
.y270{bottom:287.851140pt;}
.y145{bottom:289.891678pt;}
.y184{bottom:292.613314pt;}
.y1bc{bottom:292.842270pt;}
.y7e{bottom:292.843755pt;}
.y1fe{bottom:293.297217pt;}
.y8f{bottom:293.751284pt;}
.y28{bottom:297.375376pt;}
.y21e{bottom:297.828999pt;}
.y26f{bottom:298.433434pt;}
.y144{bottom:303.800034pt;}
.y183{bottom:306.522733pt;}
.y1bb{bottom:306.826076pt;}
.y1fd{bottom:307.205573pt;}
.y6c{bottom:307.659640pt;}
.y21d{bottom:308.411293pt;}
.y26e{bottom:309.092239pt;}
.y27{bottom:311.283732pt;}
.y132{bottom:317.784903pt;}
.y21c{bottom:319.069247pt;}
.y26d{bottom:319.750193pt;}
.y196{bottom:320.506539pt;}
.y1ba{bottom:320.734432pt;}
.y7d{bottom:320.736980pt;}
.y1fc{bottom:321.189379pt;}
.y6b{bottom:321.643446pt;}
.y26{bottom:325.267538pt;}
.y101{bottom:327.080000pt;}
.y102{bottom:328.818667pt;}
.y100{bottom:328.819838pt;}
.y21b{bottom:329.652391pt;}
.y26c{bottom:330.332487pt;}
.y131{bottom:331.693259pt;}
.y182{bottom:334.414895pt;}
.y1b9{bottom:334.718238pt;}
.y1fb{bottom:335.174248pt;}
.y6a{bottom:335.552865pt;}
.y25{bottom:339.176956pt;}
.y21a{bottom:340.310345pt;}
.y26b{bottom:340.990441pt;}
.yff{bottom:342.803644pt;}
.y130{bottom:345.677065pt;}
.y195{bottom:348.398701pt;}
.y1b8{bottom:348.627657pt;}
.y1fa{bottom:349.082604pt;}
.y69{bottom:349.536671pt;}
.y219{bottom:350.968300pt;}
.y26a{bottom:351.573585pt;}
.yc4{bottom:352.933782pt;}
.y24{bottom:353.160762pt;}
.yfd{bottom:354.973333pt;}
.yfe{bottom:356.712000pt;}
.yfc{bottom:356.713312pt;}
.y12f{bottom:359.585421pt;}
.y218{bottom:361.551444pt;}
.y269{bottom:362.231540pt;}
.y181{bottom:362.308119pt;}
.y1b7{bottom:362.611463pt;}
.y1f9{bottom:363.066410pt;}
.y68{bottom:363.445026pt;}
.y23{bottom:367.069118pt;}
.yfb{bottom:370.697118pt;}
.y217{bottom:372.209398pt;}
.yc2{bottom:372.282667pt;}
.y268{bottom:372.889494pt;}
.y12e{bottom:373.570289pt;}
.yc3{bottom:374.022667pt;}
.yc1{bottom:374.023979pt;}
.y194{bottom:376.291925pt;}
.y1b6{bottom:376.519819pt;}
.y1f8{bottom:376.974766pt;}
.y67{bottom:377.428833pt;}
.y22{bottom:381.052924pt;}
.y216{bottom:382.791692pt;}
.y267{bottom:383.471788pt;}
.yfa{bottom:384.605474pt;}
.y12d{bottom:387.478645pt;}
.yc0{bottom:388.007785pt;}
.y180{bottom:390.200281pt;}
.y1b5{bottom:390.503625pt;}
.y1f7{bottom:390.959634pt;}
.y66{bottom:391.338251pt;}
.y215{bottom:393.449646pt;}
.y266{bottom:394.130592pt;}
.y21{bottom:394.962343pt;}
.yf9{bottom:398.590343pt;}
.y12c{bottom:401.462451pt;}
.ybf{bottom:401.916141pt;}
.y214{bottom:404.108451pt;}
.y17f{bottom:404.184087pt;}
.y1b4{bottom:404.411981pt;}
.y265{bottom:404.712886pt;}
.y1f6{bottom:404.867990pt;}
.y65{bottom:405.322057pt;}
.y20{bottom:408.946149pt;}
.yf8{bottom:412.498699pt;}
.y213{bottom:414.690745pt;}
.y12b{bottom:415.370807pt;}
.y264{bottom:415.370841pt;}
.ybe{bottom:415.901009pt;}
.y17e{bottom:418.093506pt;}
.y1b3{bottom:418.396850pt;}
.y1f5{bottom:418.851796pt;}
.y64{bottom:419.230413pt;}
.y1f{bottom:422.854505pt;}
.y212{bottom:425.348699pt;}
.y263{bottom:426.028795pt;}
.yf7{bottom:426.482505pt;}
.y12a{bottom:429.355676pt;}
.y17d{bottom:432.077312pt;}
.y1b2{bottom:432.305205pt;}
.y1f4{bottom:432.760152pt;}
.y63{bottom:433.214219pt;}
.y211{bottom:435.930993pt;}
.y262{bottom:436.611939pt;}
.y30{bottom:436.838311pt;}
.yf6{bottom:440.390861pt;}
.y129{bottom:443.264032pt;}
.ybd{bottom:443.793171pt;}
.y17c{bottom:445.985668pt;}
.y1b1{bottom:446.289012pt;}
.y210{bottom:446.589797pt;}
.y1f3{bottom:446.745021pt;}
.y62{bottom:447.123638pt;}
.y261{bottom:447.269893pt;}
.y1e{bottom:450.746667pt;}
.yf4{bottom:452.560000pt;}
.yf5{bottom:454.374667pt;}
.yf3{bottom:454.375793pt;}
.y20f{bottom:457.172091pt;}
.y128{bottom:457.247838pt;}
.ybc{bottom:457.701527pt;}
.y260{bottom:457.852187pt;}
.y17b{bottom:459.969474pt;}
.y1b0{bottom:460.197367pt;}
.y1f2{bottom:460.653377pt;}
.y61{bottom:461.107444pt;}
.y20e{bottom:467.830046pt;}
.yf2{bottom:468.284149pt;}
.y25f{bottom:468.510992pt;}
.yba{bottom:469.870667pt;}
.y127{bottom:471.156194pt;}
.ybb{bottom:471.685333pt;}
.yb9{bottom:471.686258pt;}
.y17a{bottom:473.877830pt;}
.y1af{bottom:474.182236pt;}
.y1f1{bottom:474.637183pt;}
.y60{bottom:475.015800pt;}
.y20d{bottom:478.488000pt;}
.y25e{bottom:479.092434pt;}
.yf1{bottom:482.269018pt;}
.y125{bottom:483.325333pt;}
.y126{bottom:485.140000pt;}
.y124{bottom:485.141118pt;}
.yb8{bottom:485.595676pt;}
.y179{bottom:487.862699pt;}
.y1ae{bottom:488.166042pt;}
.y1f0{bottom:488.545539pt;}
.y5f{bottom:488.999606pt;}
.y25d{bottom:489.750390pt;}
.y143{bottom:499.048356pt;}
.y123{bottom:499.049474pt;}
.yb7{bottom:499.579482pt;}
.y25c{bottom:500.408344pt;}
.y178{bottom:501.771054pt;}
.y1ad{bottom:502.074398pt;}
.y1ef{bottom:502.530408pt;}
.y5e{bottom:502.907962pt;}
.y1d{bottom:503.661716pt;}
.yf0{bottom:510.161180pt;}
.y25b{bottom:510.991488pt;}
.y142{bottom:513.032162pt;}
.y122{bottom:513.034343pt;}
.yb6{bottom:513.487838pt;}
.y177{bottom:515.754861pt;}
.y1ac{bottom:516.058204pt;}
.y1c{bottom:516.436351pt;}
.y1ee{bottom:516.438763pt;}
.y5d{bottom:516.892830pt;}
.y25a{bottom:521.649443pt;}
.y141{bottom:526.940518pt;}
.y121{bottom:526.942699pt;}
.yb5{bottom:527.471644pt;}
.y1b{bottom:529.210985pt;}
.y176{bottom:529.738667pt;}
.y1ab{bottom:529.967623pt;}
.y1ed{bottom:530.422570pt;}
.y5c{bottom:530.801186pt;}
.y259{bottom:532.231736pt;}
.yb3{bottom:539.641333pt;}
.yef{bottom:540.623964pt;}
.y140{bottom:540.924324pt;}
.y120{bottom:540.926505pt;}
.yb4{bottom:541.380000pt;}
.yb2{bottom:541.380032pt;}
.y1a{bottom:541.910065pt;}
.y258{bottom:542.889691pt;}
.y1aa{bottom:543.951429pt;}
.y1ec{bottom:544.330925pt;}
.y5b{bottom:544.784992pt;}
.y257{bottom:553.548495pt;}
.yee{bottom:554.607771pt;}
.y19{bottom:554.684699pt;}
.y13f{bottom:554.833742pt;}
.y11f{bottom:554.834861pt;}
.yb1{bottom:555.363838pt;}
.y1a9{bottom:557.859785pt;}
.y1eb{bottom:558.314732pt;}
.y5a{bottom:558.693348pt;}
.y197{bottom:559.597333pt;}
.y172{bottom:559.974667pt;}
.y256{bottom:564.130789pt;}
.y10{bottom:564.813605pt;}
.y18{bottom:567.459334pt;}
.yed{bottom:568.517189pt;}
.y13e{bottom:568.817549pt;}
.y11e{bottom:568.818667pt;}
.yb0{bottom:569.272194pt;}
.y1a8{bottom:571.843591pt;}
.y1ea{bottom:572.224150pt;}
.y59{bottom:572.678217pt;}
.y255{bottom:574.788743pt;}
.yf{bottom:576.228166pt;}
.y17{bottom:580.158413pt;}
.yae{bottom:581.518667pt;}
.yec{bottom:582.500995pt;}
.yaf{bottom:583.256000pt;}
.yad{bottom:583.257421pt;}
.y254{bottom:585.371887pt;}
.y1a7{bottom:585.753009pt;}
.y1e9{bottom:586.207956pt;}
.y58{bottom:586.586573pt;}
.ye{bottom:587.641877pt;}
.y16{bottom:592.933048pt;}
.y253{bottom:596.029842pt;}
.yeb{bottom:596.409351pt;}
.yd{bottom:599.056438pt;}
.y1a6{bottom:599.736816pt;}
.y1e8{bottom:600.116312pt;}
.y57{bottom:600.570379pt;}
.y16f{bottom:604.801703pt;}
.y15{bottom:605.707683pt;}
.y252{bottom:606.612136pt;}
.yc{bottom:610.470149pt;}
.yac{bottom:611.150645pt;}
.y1a5{bottom:613.645171pt;}
.y1e7{bottom:614.100118pt;}
.y56{bottom:614.478735pt;}
.y16e{bottom:616.291925pt;}
.y251{bottom:617.270090pt;}
.yea{bottom:617.953782pt;}
.y14{bottom:618.482318pt;}
.yb{bottom:621.883860pt;}
.yab{bottom:625.134451pt;}
.y1a4{bottom:627.628977pt;}
.y16d{bottom:627.705636pt;}
.y250{bottom:627.928895pt;}
.y1e6{bottom:628.009537pt;}
.y55{bottom:628.463604pt;}
.y13{bottom:631.181397pt;}
.ya{bottom:633.298422pt;}
.ye8{bottom:637.304000pt;}
.y24f{bottom:638.511188pt;}
.ye9{bottom:639.042667pt;}
.yaa{bottom:639.042807pt;}
.ye7{bottom:639.042861pt;}
.y16c{bottom:639.119347pt;}
.y1a2{bottom:639.798667pt;}
.y1a3{bottom:641.537333pt;}
.y1a1{bottom:641.539881pt;}
.y1e5{bottom:641.993343pt;}
.y54{bottom:642.447410pt;}
.y12{bottom:643.956032pt;}
.y24e{bottom:649.169143pt;}
.y16b{bottom:650.533908pt;}
.ye5{bottom:651.212000pt;}
.ye6{bottom:653.026667pt;}
.ye4{bottom:653.027644pt;}
.ya9{bottom:653.027676pt;}
.y1a0{bottom:655.524750pt;}
.y1e4{bottom:655.901699pt;}
.y53{bottom:656.355766pt;}
.y11{bottom:656.730667pt;}
.y9{bottom:657.940000pt;}
.y24d{bottom:659.751437pt;}
.y16a{bottom:661.947619pt;}
.ye2{bottom:665.197333pt;}
.ye3{bottom:666.936000pt;}
.ya8{bottom:666.936032pt;}
.ye1{bottom:666.937118pt;}
.y19f{bottom:669.433106pt;}
.y52{bottom:670.339572pt;}
.y24c{bottom:670.410241pt;}
.y169{bottom:673.362180pt;}
.ya7{bottom:680.919838pt;}
.y24b{bottom:681.068196pt;}
.y8{bottom:682.733333pt;}
.y19e{bottom:683.416912pt;}
.y1e3{bottom:683.794923pt;}
.y51{bottom:684.248990pt;}
.y168{bottom:684.775892pt;}
.y24a{bottom:691.650489pt;}
.ya6{bottom:694.828194pt;}
.ye0{bottom:694.830343pt;}
.y167{bottom:696.189603pt;}
.y19d{bottom:697.325268pt;}
.y50{bottom:698.232796pt;}
.y249{bottom:702.308444pt;}
.ya4{bottom:706.998667pt;}
.y166{bottom:707.679825pt;}
.ya5{bottom:708.812000pt;}
.ydf{bottom:708.814149pt;}
.ya3{bottom:708.814823pt;}
.y19c{bottom:711.310136pt;}
.y1e2{bottom:712.140850pt;}
.y4f{bottom:712.141152pt;}
.y248{bottom:712.891588pt;}
.y165{bottom:719.093536pt;}
.yde{bottom:722.722505pt;}
.ya2{bottom:722.724242pt;}
.y247{bottom:723.549542pt;}
.y19b{bottom:725.218492pt;}
.y1e1{bottom:726.124656pt;}
.y4e{bottom:726.124958pt;}
.y7{bottom:726.728000pt;}
.y164{bottom:730.508097pt;}
.y246{bottom:734.131836pt;}
.ydd{bottom:736.706311pt;}
.ya1{bottom:736.708048pt;}
.y19a{bottom:739.202298pt;}
.y1e0{bottom:740.033012pt;}
.y4d{bottom:740.033314pt;}
.y163{bottom:741.921808pt;}
.y245{bottom:744.790640pt;}
.y6{bottom:748.649333pt;}
.y5{bottom:748.650835pt;}
.ydb{bottom:748.876000pt;}
.ydc{bottom:750.614667pt;}
.ya0{bottom:750.616404pt;}
.yda{bottom:750.616598pt;}
.y199{bottom:753.110654pt;}
.y162{bottom:753.335519pt;}
.y1df{bottom:754.017880pt;}
.y4c{bottom:754.018183pt;}
.y244{bottom:755.448595pt;}
.yd9{bottom:764.600404pt;}
.y161{bottom:764.750080pt;}
.y3{bottom:765.884000pt;}
.y243{bottom:766.030889pt;}
.y1de{bottom:767.926236pt;}
.y4b{bottom:767.926539pt;}
.y4{bottom:772.157333pt;}
.y160{bottom:776.163792pt;}
.y242{bottom:776.688843pt;}
.y198{bottom:781.003879pt;}
.y1dd{bottom:781.910042pt;}
.y4a{bottom:781.910345pt;}
.y241{bottom:787.271987pt;}
.y15f{bottom:787.653163pt;}
.y1dc{bottom:795.818398pt;}
.y49{bottom:795.818701pt;}
.y240{bottom:797.929941pt;}
.y2{bottom:799.219748pt;}
.y15e{bottom:805.114628pt;}
.y23f{bottom:808.587896pt;}
.y1db{bottom:809.802204pt;}
.y48{bottom:809.803570pt;}
.y15d{bottom:816.604000pt;}
.y11c{bottom:816.832000pt;}
.y23e{bottom:819.170190pt;}
.y1{bottom:822.198667pt;}
.y1da{bottom:823.711623pt;}
.y47{bottom:823.711925pt;}
.y23d{bottom:829.828994pt;}
.y15c{bottom:834.142254pt;}
.y1d9{bottom:837.695429pt;}
.y46{bottom:837.695732pt;}
.y23c{bottom:840.411288pt;}
.y15b{bottom:846.841333pt;}
.y23b{bottom:851.069242pt;}
.y1d8{bottom:851.603785pt;}
.y45{bottom:851.604087pt;}
.y23a{bottom:861.652386pt;}
.y1d7{bottom:865.587591pt;}
.y9f{bottom:865.588816pt;}
.y44{bottom:865.588956pt;}
.yd8{bottom:865.589009pt;}
.y239{bottom:872.310341pt;}
.y1d6{bottom:879.497009pt;}
.y9e{bottom:879.497171pt;}
.y43{bottom:879.497312pt;}
.yd7{bottom:879.497365pt;}
.y159{bottom:881.840000pt;}
.y238{bottom:882.968295pt;}
.y158{bottom:883.275622pt;}
.y15a{bottom:883.276000pt;}
.y35{bottom:892.194667pt;}
.y156{bottom:893.253333pt;}
.y1d5{bottom:893.480816pt;}
.y9d{bottom:893.480977pt;}
.y42{bottom:893.481118pt;}
.yd6{bottom:893.481171pt;}
.y237{bottom:893.550589pt;}
.y157{bottom:894.689333pt;}
.y155{bottom:894.690289pt;}
.y236{bottom:904.209393pt;}
.y153{bottom:904.668000pt;}
.y9b{bottom:905.650667pt;}
.y154{bottom:906.104000pt;}
.y152{bottom:906.104956pt;}
.y1d4{bottom:907.389171pt;}
.y9c{bottom:907.389333pt;}
.y41{bottom:907.389474pt;}
.y9a{bottom:907.389527pt;}
.y235{bottom:914.791687pt;}
.y150{bottom:916.081333pt;}
.y14f{bottom:917.518289pt;}
.y151{bottom:917.518667pt;}
.y98{bottom:919.558667pt;}
.y1d3{bottom:921.372977pt;}
.y99{bottom:921.373333pt;}
.yd5{bottom:921.374149pt;}
.y40{bottom:921.374343pt;}
.y234{bottom:925.449642pt;}
.y14d{bottom:927.572000pt;}
.y14e{bottom:928.932000pt;}
.y14c{bottom:928.933058pt;}
.y34{bottom:929.310667pt;}
.y1d1{bottom:933.542667pt;}
.y1d0{bottom:935.279088pt;}
.y1d2{bottom:935.281333pt;}
.yd4{bottom:935.282505pt;}
.y3f{bottom:935.282699pt;}
.y233{bottom:936.107596pt;}
.y14b{bottom:946.469333pt;}
.y232{bottom:946.690740pt;}
.y1cf{bottom:949.262894pt;}
.yd3{bottom:949.266311pt;}
.y3e{bottom:949.266505pt;}
.y231{bottom:957.348694pt;}
.yd1{bottom:961.436000pt;}
.y149{bottom:962.418667pt;}
.y1ce{bottom:963.171250pt;}
.yd2{bottom:963.174667pt;}
.y3d{bottom:963.174861pt;}
.y14a{bottom:964.006667pt;}
.y148{bottom:964.006699pt;}
.y33{bottom:966.500000pt;}
.y230{bottom:967.930988pt;}
.yd0{bottom:975.345333pt;}
.y147{bottom:976.781333pt;}
.ycf{bottom:977.150877pt;}
.y1cd{bottom:977.156119pt;}
.y3c{bottom:977.158667pt;}
.y22f{bottom:978.588943pt;}
.y38{bottom:1002.226640pt;}
.y7b{bottom:1003.226640pt;}
.y7a{bottom:1003.229296pt;}
.y27e{bottom:1003.231371pt;}
.y170{bottom:1003.234244pt;}
.y97{bottom:1003.237333pt;}
.hf{height:20.907656pt;}
.he{height:23.522344pt;}
.hd{height:28.021406pt;}
.h6{height:29.887031pt;}
.hc{height:29.887500pt;}
.hb{height:30.647691pt;}
.h7{height:32.689219pt;}
.h4{height:32.997656pt;}
.h8{height:33.623437pt;}
.h9{height:37.359844pt;}
.h10{height:40.551869pt;}
.h3{height:49.501875pt;}
.h5{height:53.821431pt;}
.h2{height:63.044531pt;}
.ha{height:65.378906pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:50.116533pt;}
.x23{left:55.936832pt;}
.x12{left:56.844000pt;}
.x19{left:58.129067pt;}
.xe{left:66.065235pt;}
.x20{left:75.892324pt;}
.x28{left:78.084933pt;}
.x74{left:83.678093pt;}
.x29{left:85.039333pt;}
.x2a{left:94.034533pt;}
.x2b{left:99.401467pt;}
.x9{left:101.597680pt;}
.x75{left:103.785061pt;}
.x60{left:108.622794pt;}
.x2{left:117.843899pt;}
.x1e{left:126.083409pt;}
.x2c{left:128.201467pt;}
.x2e{left:135.836000pt;}
.x2d{left:140.372000pt;}
.x35{left:141.581333pt;}
.x2f{left:142.866667pt;}
.x32{left:145.738667pt;}
.x54{left:148.686667pt;}
.x55{left:152.617333pt;}
.x31{left:155.036000pt;}
.xa{left:160.255773pt;}
.x25{left:162.897333pt;}
.x58{left:171.514667pt;}
.x26{left:174.462667pt;}
.x68{left:178.846667pt;}
.x33{left:181.493333pt;}
.x69{left:191.244000pt;}
.x76{left:192.149482pt;}
.x34{left:197.140000pt;}
.x1f{left:206.511562pt;}
.xb{left:217.925547pt;}
.x3{left:219.212000pt;}
.x15{left:224.806667pt;}
.x27{left:230.022667pt;}
.x13{left:231.380305pt;}
.x59{left:235.162667pt;}
.x4{left:236.372000pt;}
.xc{left:237.655190pt;}
.x5a{left:240.832000pt;}
.x5b{left:256.402667pt;}
.x5d{left:261.165333pt;}
.x5c{left:262.072000pt;}
.x17{left:264.893333pt;}
.x5f{left:265.928000pt;}
.x5e{left:266.834667pt;}
.x5{left:268.270040pt;}
.xd{left:269.329333pt;}
.x16{left:270.992000pt;}
.x6a{left:279.080000pt;}
.x6b{left:290.192000pt;}
.x61{left:292.384000pt;}
.x6{left:295.482079pt;}
.x14{left:304.554667pt;}
.x30{left:307.954005pt;}
.x62{left:317.632000pt;}
.x64{left:337.889333pt;}
.x1a{left:345.898937pt;}
.x66{left:348.774667pt;}
.x63{left:354.520000pt;}
.x65{left:356.560000pt;}
.x56{left:364.346667pt;}
.x57{left:370.696000pt;}
.x67{left:392.559973pt;}
.x22{left:394.946693pt;}
.xf{left:408.790162pt;}
.x83{left:413.249542pt;}
.x24{left:414.610460pt;}
.x50{left:416.806667pt;}
.x7{left:422.021016pt;}
.x10{left:424.738863pt;}
.x3f{left:445.380000pt;}
.x1b{left:449.607626pt;}
.x40{left:457.776000pt;}
.x39{left:469.568000pt;}
.x6c{left:479.018278pt;}
.x51{left:482.418667pt;}
.x3a{left:483.628000pt;}
.x7b{left:487.175977pt;}
.x52{left:491.186667pt;}
.x81{left:492.845427pt;}
.x4d{left:495.042667pt;}
.x53{left:495.949333pt;}
.x7f{left:497.153836pt;}
.x8{left:498.064344pt;}
.x3b{left:503.660000pt;}
.x3c{left:507.137333pt;}
.x43{left:508.800000pt;}
.x6f{left:515.073948pt;}
.x36{left:517.190667pt;}
.x21{left:520.199987pt;}
.x44{left:521.272000pt;}
.x37{left:527.849333pt;}
.x3d{left:529.209333pt;}
.x38{left:531.930667pt;}
.x3e{left:533.140000pt;}
.x1c{left:535.251266pt;}
.x80{left:536.460834pt;}
.x18{left:540.933347pt;}
.x79{left:552.712578pt;}
.x84{left:556.189569pt;}
.x7c{left:559.137785pt;}
.x6d{left:569.498042pt;}
.x4e{left:571.842667pt;}
.x70{left:576.527670pt;}
.x41{left:578.872000pt;}
.x4f{left:585.902667pt;}
.x1d{left:588.314906pt;}
.x42{left:589.984000pt;}
.x6e{left:593.383900pt;}
.x85{left:602.903663pt;}
.x7d{left:622.179284pt;}
.x71{left:630.120747pt;}
.x7a{left:636.995175pt;}
.x4b{left:639.042667pt;}
.x7e{left:640.320845pt;}
.x4c{left:646.904000pt;}
.x82{left:649.618607pt;}
.x11{left:656.271331pt;}
.x45{left:663.609333pt;}
.x47{left:665.801333pt;}
.x46{left:667.540000pt;}
.x48{left:669.732000pt;}
.x72{left:677.288862pt;}
.x77{left:697.088458pt;}
.x78{left:712.281802pt;}
.x49{left:714.784000pt;}
.x4a{left:730.733333pt;}
.x73{left:737.912631pt;}
}




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