
    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_6edd9a65e1c2f4926fb41e98.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.976074;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_32a143f8590404195c56d114.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.971191;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_3eda7dc9cb471d62e2e13729.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.172852;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_7aca104d36e0b4aef07b23d8.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.971191;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_5c25d8e1ffaa5b518c7513d5.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.972168;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_23098b310fb416db9360b496.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.766602;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_a5b2c4780172428119dbb6de.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.850000;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_c45d66b2812a5300bebab5e2.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.166000;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_e60885704c99ac61c484cb78.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.739746;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_821f0c19bab75c8b005c5f3c.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_bcff3f974ea97603e5288729.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.682617;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_03355bca867f86fbb9f5ca35.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.934082;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_853c25e63ef94a780b0d97ba.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.776855;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.249529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249529,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);}
.v2{vertical-align:-19.440032px;}
.v3{vertical-align:-2.159982px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:16.559968px;}
.v6{vertical-align:19.440031px;}
.v1{vertical-align:22.320032px;}
.v4{vertical-align:30.959955px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.069995px;}
.ls6{letter-spacing:0.106308px;}
.ls2{letter-spacing:0.133871px;}
.ls11{letter-spacing:0.149251px;}
.lsf{letter-spacing:0.151411px;}
.ls13{letter-spacing:0.217041px;}
.ls14{letter-spacing:0.272526px;}
.lsd{letter-spacing:0.274179px;}
.lsb{letter-spacing:0.274246px;}
.ls3{letter-spacing:0.319317px;}
.ls5{letter-spacing:0.320554px;}
.ls4{letter-spacing:0.320689px;}
.ls17{letter-spacing:0.480497px;}
.ls18{letter-spacing:1.127598px;}
.ls16{letter-spacing:2.567630px;}
.lsa{letter-spacing:21.665083px;}
.ls19{letter-spacing:32.186157px;}
.ls1a{letter-spacing:36.785087px;}
.ls12{letter-spacing:46.864045px;}
.ls10{letter-spacing:46.865042px;}
.ls15{letter-spacing:55.504103px;}
.lsc{letter-spacing:55.505038px;}
.lse{letter-spacing:55.505101px;}
.ls1b{letter-spacing:64.446164px;}
.ls7{letter-spacing:159.269376px;}
.ls8{letter-spacing:211.829340px;}
.ls9{letter-spacing:215.429560px;}
.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;}
}
.ws12{word-spacing:-50.663700px;}
.ws10{word-spacing:-23.710664px;}
.wsd{word-spacing:-21.896766px;}
.ws3{word-spacing:-21.815106px;}
.ws1{word-spacing:-21.813843px;}
.ws2{word-spacing:-21.192366px;}
.ws7{word-spacing:-19.681044px;}
.wse{word-spacing:-19.679938px;}
.wsb{word-spacing:-17.850561px;}
.wsa{word-spacing:-17.341998px;}
.ws11{word-spacing:-14.045380px;}
.ws4{word-spacing:-13.752959px;}
.ws8{word-spacing:-13.752201px;}
.ws6{word-spacing:-12.804485px;}
.ws9{word-spacing:-12.803774px;}
.ws5{word-spacing:-12.453696px;}
.wsc{word-spacing:-11.900379px;}
.wsf{word-spacing:-11.855996px;}
.ws0{word-spacing:0.000000px;}
._3f{margin-left:-6.304725px;}
._31{margin-left:-5.295680px;}
._14{margin-left:-3.743426px;}
._13{margin-left:-2.673809px;}
._0{margin-left:-1.568015px;}
._1{width:1.056511px;}
._5{width:2.134206px;}
._17{width:3.213416px;}
._e{width:4.847278px;}
._1a{width:6.325719px;}
._16{width:7.393391px;}
._19{width:8.636350px;}
._4{width:9.850632px;}
._18{width:11.456519px;}
._f{width:12.926479px;}
._10{width:14.843347px;}
._11{width:16.502885px;}
._12{width:17.525651px;}
._2{width:19.503941px;}
._3{width:20.507914px;}
._1b{width:21.611658px;}
._1d{width:23.117002px;}
._15{width:24.857623px;}
._33{width:26.322707px;}
._34{width:27.397425px;}
._35{width:28.458305px;}
._3a{width:29.957862px;}
._1c{width:31.632388px;}
._3c{width:33.553446px;}
._3b{width:34.687156px;}
._41{width:36.056348px;}
._3e{width:37.426510px;}
._3d{width:38.752975px;}
._40{width:40.209562px;}
._2e{width:43.612842px;}
._2f{width:44.777003px;}
._30{width:46.715649px;}
._29{width:70.147918px;}
._21{width:92.576924px;}
._2a{width:108.457860px;}
._22{width:110.227190px;}
._20{width:148.953059px;}
._2d{width:159.269376px;}
._23{width:180.860987px;}
._2b{width:193.445153px;}
._26{width:198.149439px;}
._27{width:236.854817px;}
._1f{width:240.743437px;}
._24{width:258.067887px;}
._28{width:329.909299px;}
._2c{width:345.029502px;}
._25{width:355.829340px;}
._8{width:564.436093px;}
._b{width:568.705975px;}
._d{width:786.643636px;}
._39{width:870.686121px;}
._38{width:904.468737px;}
._c{width:912.617024px;}
._37{width:943.932526px;}
._36{width:995.296387px;}
._a{width:1082.901722px;}
._9{width:1096.077034px;}
._32{width:1172.022671px;}
._7{width:1212.342770px;}
._6{width:1250.349576px;}
._1e{width:1490.861933px;}
.fc4{color:rgb(5,99,193);}
.fc7{color:rgb(51,51,51);}
.fc6{color:rgb(64,64,64);}
.fc5{color:rgb(0,0,0);}
.fc3{color:rgb(43,87,154);}
.fc2{color:rgb(49,173,228);}
.fc1{color:rgb(195,210,38);}
.fc0{color:rgb(88,88,87);}
.fsb{font-size:2.702223px;}
.fs13{font-size:33.777765px;}
.fs11{font-size:33.904215px;}
.fsd{font-size:36.477990px;}
.fs9{font-size:36.480015px;}
.fsc{font-size:39.180060px;}
.fs7{font-size:39.182220px;}
.fs1{font-size:50.663700px;}
.fs12{font-size:50.666850px;}
.fs10{font-size:50.856300px;}
.fse{font-size:56.068200px;}
.fsa{font-size:56.071350px;}
.fs0{font-size:62.147700px;}
.fs5{font-size:62.151300px;}
.fs8{font-size:62.268480px;}
.fsf{font-size:62.383950px;}
.fs14{font-size:67.551750px;}
.fs3{font-size:72.955800px;}
.fs4{font-size:79.035746px;}
.fs2{font-size:89.843850px;}
.fs6{font-size:89.848800px;}
.y0{bottom:0.000000px;}
.yee{bottom:2.519989px;}
.y112{bottom:2.519990px;}
.ye7{bottom:2.520007px;}
.y10e{bottom:2.520022px;}
.y108{bottom:2.520024px;}
.y12e{bottom:2.520057px;}
.ydd{bottom:3.059993px;}
.y2{bottom:3.059997px;}
.y34{bottom:3.060001px;}
.y36{bottom:3.060002px;}
.y6d{bottom:4.312075px;}
.ya0{bottom:4.312123px;}
.y84{bottom:4.327658px;}
.y54{bottom:54.000000px;}
.ya{bottom:54.179970px;}
.y9{bottom:69.840019px;}
.y8{bottom:85.139992px;}
.ye2{bottom:93.059967px;}
.y7{bottom:100.799973px;}
.y188{bottom:105.120002px;}
.y15b{bottom:105.299973px;}
.y82{bottom:109.980011px;}
.ydb{bottom:110.159981px;}
.yb1{bottom:114.659981px;}
.y1de{bottom:118.259994px;}
.y206{bottom:118.440033px;}
.y268{bottom:121.139992px;}
.y187{bottom:122.399986px;}
.y15a{bottom:122.580025px;}
.y81{bottom:127.259994px;}
.yda{bottom:127.440033px;}
.y205{bottom:137.519989px;}
.y22a{bottom:138.059967px;}
.y186{bottom:139.500000px;}
.y80{bottom:139.860008px;}
.y267{bottom:141.659981px;}
.y26{bottom:142.740006px;}
.y1b9{bottom:144.360008px;}
.yd9{bottom:144.539977px;}
.yb0{bottom:148.500000px;}
.y1dd{bottom:149.759994px;}
.y133{bottom:153.179970px;}
.y132{bottom:155.700027px;}
.y204{bottom:156.240006px;}
.y1b8{bottom:156.600013px;}
.y159{bottom:156.779983px;}
.y175{bottom:157.139992px;}
.y229{bottom:158.580025px;}
.y131{bottom:160.919975px;}
.y185{bottom:161.460022px;}
.yd8{bottom:161.639992px;}
.y266{bottom:162.000000px;}
.y130{bottom:163.440033px;}
.yaf{bottom:168.840019px;}
.y1dc{bottom:170.279983px;}
.y7c{bottom:173.695146px;}
.y184{bottom:173.879998px;}
.yd7{bottom:174.059967px;}
.y203{bottom:175.139992px;}
.y25{bottom:175.679970px;}
.y243{bottom:178.919975px;}
.y228{bottom:179.100013px;}
.y12d{bottom:184.679970px;}
.y7f{bottom:186.469895px;}
.y12c{bottom:187.200027px;}
.yae{bottom:189.179970px;}
.y1db{bottom:190.620002px;}
.y183{bottom:190.799973px;}
.y265{bottom:193.500000px;}
.y202{bottom:193.860008px;}
.y129{bottom:195.120002px;}
.y1b7{bottom:195.840019px;}
.yd6{bottom:196.019989px;}
.y227{bottom:199.440033px;}
.y12f{bottom:200.159981px;}
.y7b{bottom:201.608881px;}
.y126{bottom:202.679970px;}
.y24{bottom:203.759994px;}
.y7e{bottom:207.534154px;}
.y12a{bottom:207.899986px;}
.y158{bottom:208.080025px;}
.y1b6{bottom:208.259994px;}
.yad{bottom:209.519989px;}
.y125{bottom:210.419975px;}
.y51{bottom:211.500000px;}
.y201{bottom:212.759994px;}
.y182{bottom:212.940033px;}
.yd5{bottom:213.120002px;}
.y264{bottom:213.840019px;}
.y127{bottom:218.159981px;}
.y226{bottom:219.600013px;}
.y1da{bottom:222.120002px;}
.y181{bottom:225.000000px;}
.y1a1{bottom:225.179970px;}
.y128{bottom:225.899986px;}
.y7d{bottom:228.411616px;}
.y174{bottom:228.779983px;}
.yac{bottom:230.039977px;}
.yd4{bottom:230.220017px;}
.y12b{bottom:231.120002px;}
.y200{bottom:231.659981px;}
.y50{bottom:232.200027px;}
.y23{bottom:233.639992px;}
.y263{bottom:234.179970px;}
.y225{bottom:239.940033px;}
.y242{bottom:240.120002px;}
.y180{bottom:242.279983px;}
.y1d9{bottom:242.460022px;}
.y157{bottom:242.820030px;}
.y122{bottom:247.139992px;}
.yd3{bottom:247.500000px;}
.y173{bottom:249.299973px;}
.y121{bottom:249.659981px;}
.yab{bottom:250.200027px;}
.y1ff{bottom:250.379998px;}
.y4f{bottom:252.539977px;}
.y11f{bottom:257.399986px;}
.y22{bottom:257.759994px;}
.y1a0{bottom:259.559967px;}
.yd2{bottom:259.919975px;}
.y224{bottom:260.279983px;}
.y1b5{bottom:262.440033px;}
.y124{bottom:262.620002px;}
.y1d8{bottom:262.980011px;}
.y17f{bottom:264.240006px;}
.y11d{bottom:265.139992px;}
.y262{bottom:265.679970px;}
.y1fe{bottom:269.460022px;}
.y172{bottom:269.639992px;}
.y123{bottom:270.360008px;}
.yaa{bottom:270.539977px;}
.y241{bottom:271.440033px;}
.y4e{bottom:272.879998px;}
.y7a{bottom:273.602916px;}
.y19f{bottom:276.659981px;}
.y156{bottom:276.840019px;}
.y11c{bottom:280.440033px;}
.y223{bottom:280.799973px;}
.y73{bottom:281.697837px;}
.y1b4{bottom:282.960022px;}
.y1d7{bottom:283.320030px;}
.y21{bottom:284.580025px;}
.y261{bottom:286.200027px;}
.y11e{bottom:288.179970px;}
.y171{bottom:289.799973px;}
.y240{bottom:292.139992px;}
.y4d{bottom:293.039977px;}
.y120{bottom:293.580025px;}
.y19e{bottom:293.759994px;}
.y155{bottom:297.179970px;}
.y222{bottom:300.960022px;}
.ya9{bottom:302.039977px;}
.y1b3{bottom:303.299973px;}
.y1d6{bottom:303.659981px;}
.yd1{bottom:304.740006px;}
.y79{bottom:305.998088px;}
.y78{bottom:306.000000px;}
.y260{bottom:306.539977px;}
.y1fd{bottom:306.899986px;}
.y17e{bottom:308.340019px;}
.y72{bottom:309.594089px;}
.y170{bottom:310.139992px;}
.y117{bottom:312.120002px;}
.y23f{bottom:312.299973px;}
.y20{bottom:312.840019px;}
.y19d{bottom:315.899986px;}
.y11b{bottom:317.159981px;}
.y154{bottom:317.700027px;}
.ya8{bottom:318.419975px;}
.y11a{bottom:319.679970px;}
.y221{bottom:321.299973px;}
.y1b2{bottom:323.460022px;}
.y1d5{bottom:323.820030px;}
.y4c{bottom:324.539977px;}
.yd0{bottom:325.080025px;}
.y1fc{bottom:325.980011px;}
.y77{bottom:326.340019px;}
.y25f{bottom:326.879998px;}
.y116{bottom:327.600013px;}
.y19c{bottom:328.500000px;}
.y17d{bottom:330.480011px;}
.y16f{bottom:330.659981px;}
.y119{bottom:335.340019px;}
.ya7{bottom:335.513382px;}
.ya4{bottom:339.124965px;}
.y115{bottom:342.899986px;}
.y23e{bottom:343.799973px;}
.y1b1{bottom:343.980011px;}
.y1fb{bottom:344.700027px;}
.y4b{bottom:345.059967px;}
.ycf{bottom:345.600013px;}
.y76{bottom:346.679970px;}
.y25e{bottom:347.220017px;}
.y153{bottom:349.019989px;}
.y118{bottom:350.639992px;}
.y16e{bottom:351.000000px;}
.y220{bottom:352.799973px;}
.y1d4{bottom:355.320030px;}
.y114{bottom:355.860008px;}
.y1f{bottom:359.460022px;}
.y1fa{bottom:363.600013px;}
.y1b0{bottom:364.320030px;}
.y4a{bottom:365.580025px;}
.yce{bottom:365.940033px;}
.y75{bottom:367.200027px;}
.ya6{bottom:367.924137px;}
.y152{bottom:369.539977px;}
.y16d{bottom:371.340019px;}
.y21f{bottom:373.320030px;}
.y110{bottom:374.579990px;}
.y1d3{bottom:375.840019px;}
.y25d{bottom:378.720017px;}
.y111{bottom:379.620002px;}
.y10f{bottom:382.139992px;}
.y1f9{bottom:382.500000px;}
.y1af{bottom:384.659981px;}
.y49{bottom:385.740006px;}
.y113{bottom:387.360008px;}
.y74{bottom:387.720017px;}
.y19b{bottom:388.440033px;}
.ya5{bottom:388.799604px;}
.y151{bottom:389.879998px;}
.y16c{bottom:391.500000px;}
.y1d2{bottom:396.360008px;}
.ycd{bottom:397.259994px;}
.y25c{bottom:399.240006px;}
.y1e{bottom:403.559967px;}
.y10c{bottom:403.560001px;}
.y21e{bottom:404.820030px;}
.y1ae{bottom:405.000000px;}
.y10b{bottom:406.079990px;}
.y48{bottom:406.080025px;}
.y19a{bottom:408.600013px;}
.y150{bottom:410.220017px;}
.y106{bottom:411.300007px;}
.y16b{bottom:411.840019px;}
.y105{bottom:413.819995px;}
.y1f8{bottom:413.820030px;}
.y1d1{bottom:416.700027px;}
.ycc{bottom:417.779983px;}
.y25b{bottom:419.399986px;}
.y71{bottom:419.404567px;}
.ya3{bottom:421.194824px;}
.y17c{bottom:421.200027px;}
.y10a{bottom:421.379998px;}
.y1ad{bottom:425.159981px;}
.y47{bottom:426.419975px;}
.y104{bottom:429.300007px;}
.y14f{bottom:430.559967px;}
.y16a{bottom:432.360008px;}
.y9e{bottom:433.975416px;}
.y10d{bottom:434.339985px;}
.y1f7{bottom:434.340019px;}
.y1d{bottom:435.240006px;}
.y23d{bottom:436.320030px;}
.yff{bottom:436.860008px;}
.ycb{bottom:438.120002px;}
.y25a{bottom:439.740006px;}
.y199{bottom:440.100013px;}
.y6b{bottom:440.638142px;}
.y103{bottom:444.600013px;}
.y1ac{bottom:445.679970px;}
.y21d{bottom:445.860008px;}
.y46{bottom:448.919975px;}
.y17b{bottom:449.820030px;}
.y14e{bottom:450.899986px;}
.y70{bottom:451.799740px;}
.yfd{bottom:452.339985px;}
.y169{bottom:452.700027px;}
.ya2{bottom:453.418734px;}
.y1f6{bottom:454.679970px;}
.y23c{bottom:457.019989px;}
.yca{bottom:458.460022px;}
.y102{bottom:460.079990px;}
.y259{bottom:460.259994px;}
.y198{bottom:460.620002px;}
.y9d{bottom:461.871669px;}
.y1ab{bottom:466.019989px;}
.y1c{bottom:466.919975px;}
.yfe{bottom:467.819995px;}
.y1d0{bottom:468.360008px;}
.y6a{bottom:468.534394px;}
.y14d{bottom:471.240006px;}
.y6f{bottom:472.862052px;}
.ya1{bottom:474.652308px;}
.y1f5{bottom:475.200027px;}
.y101{bottom:475.379998px;}
.y23b{bottom:477.360008px;}
.y17a{bottom:478.259994px;}
.yc9{bottom:478.799973px;}
.y197{bottom:481.139992px;}
.y258{bottom:482.759994px;}
.y109{bottom:483.120002px;}
.y168{bottom:484.200027px;}
.y1aa{bottom:486.360008px;}
.y1cf{bottom:488.879998px;}
.y100{bottom:490.860008px;}
.y9f{bottom:491.402497px;}
.y14c{bottom:491.580025px;}
.y45{bottom:493.019989px;}
.y6e{bottom:493.924410px;}
.y1f4{bottom:495.539977px;}
.y107{bottom:496.079990px;}
.y1b{bottom:498.419975px;}
.yc8{bottom:499.139992px;}
.y21c{bottom:499.500000px;}
.y196{bottom:501.299973px;}
.y167{bottom:504.539977px;}
.y1a9{bottom:506.700027px;}
.y23a{bottom:508.860008px;}
.y1ce{bottom:509.399986px;}
.y6c{bottom:510.659064px;}
.yf9{bottom:512.100013px;}
.y44{bottom:513.720017px;}
.yf6{bottom:514.620002px;}
.y1f3{bottom:515.700027px;}
.yc7{bottom:519.480011px;}
.y195{bottom:521.639992px;}
.yfc{bottom:522.360008px;}
.y14b{bottom:523.080025px;}
.y257{bottom:526.860008px;}
.y166{bottom:527.039977px;}
.y9c{bottom:527.938530px;}
.y239{bottom:529.379998px;}
.y1a{bottom:529.919975px;}
.yf5{bottom:530.100013px;}
.y1cd{bottom:530.460022px;}
.y21b{bottom:531.000000px;}
.y69{bottom:533.340019px;}
.y43{bottom:535.500000px;}
.y1f2{bottom:536.039977px;}
.yf8{bottom:537.839985px;}
.yc6{bottom:539.820030px;}
.y194{bottom:541.980011px;}
.y14a{bottom:543.600013px;}
.yf4{bottom:545.579990px;}
.y1a8{bottom:547.379998px;}
.y98{bottom:549.358902px;}
.y238{bottom:549.539977px;}
.y21a{bottom:551.519989px;}
.y68{bottom:552.240006px;}
.yef{bottom:553.319995px;}
.y42{bottom:554.940033px;}
.y1f1{bottom:556.559967px;}
.yfa{bottom:558.540012px;}
.y9b{bottom:560.333703px;}
.yf3{bottom:561.060001px;}
.y19{bottom:561.600013px;}
.y193{bottom:562.500000px;}
.y149{bottom:563.759994px;}
.y1cc{bottom:564.120002px;}
.yed{bottom:566.100013px;}
.y256{bottom:567.720017px;}
.yec{bottom:568.620002px;}
.y237{bottom:569.879998px;}
.yc5{bottom:571.320030px;}
.y219{bottom:571.679970px;}
.y41{bottom:574.019989px;}
.yf2{bottom:576.360008px;}
.y1f0{bottom:576.899986px;}
.y1a7{bottom:578.879998px;}
.y1cb{bottom:580.679970px;}
.y9a{bottom:581.224799px;}
.y192{bottom:582.840019px;}
.yf7{bottom:584.100013px;}
.y148{bottom:584.279983px;}
.y67{bottom:584.460022px;}
.y255{bottom:588.059967px;}
.y236{bottom:590.399986px;}
.yc4{bottom:591.659981px;}
.yf1{bottom:591.839985px;}
.y40{bottom:592.740006px;}
.y18{bottom:593.279983px;}
.y1ef{bottom:597.059967px;}
.y99{bottom:598.146250px;}
.y1a6{bottom:599.399986px;}
.yfb{bottom:599.579990px;}
.y1ca{bottom:600.299973px;}
.y191{bottom:603.000000px;}
.y218{bottom:603.179970px;}
.y147{bottom:604.620002px;}
.y66{bottom:604.980011px;}
.yf0{bottom:607.139992px;}
.y254{bottom:608.399986px;}
.y235{bottom:610.740006px;}
.y3f{bottom:611.639992px;}
.yc3{bottom:612.180004px;}
.y1ee{bottom:617.399986px;}
.y1a5{bottom:619.740006px;}
.y190{bottom:623.339985px;}
.y217{bottom:624.060001px;}
.ye9{bottom:624.600013px;}
.y17{bottom:624.959988px;}
.y65{bottom:625.319995px;}
.y253{bottom:628.740006px;}
.ye6{bottom:629.819996px;}
.y3e{bottom:630.540012px;}
.y234{bottom:630.899986px;}
.yeb{bottom:632.340002px;}
.yc2{bottom:632.519989px;}
.ye5{bottom:632.879998px;}
.y97{bottom:634.682283px;}
.y1ed{bottom:637.740006px;}
.y1c9{bottom:639.360008px;}
.yea{bottom:640.080008px;}
.ye8{bottom:641.159998px;}
.y165{bottom:643.500000px;}
.y18f{bottom:643.680004px;}
.y146{bottom:645.120002px;}
.y64{bottom:645.480011px;}
.y252{bottom:649.079990px;}
.y3d{bottom:649.259994px;}
.y1a4{bottom:650.519989px;}
.y93{bottom:651.774998px;}
.y233{bottom:652.139992px;}
.yc1{bottom:652.860008px;}
.y16{bottom:656.459988px;}
.y216{bottom:657.000000px;}
.y1c8{bottom:660.420010px;}
.ye4{bottom:664.020006px;}
.y164{bottom:664.199993px;}
.y145{bottom:665.459988px;}
.y63{bottom:666.000000px;}
.y96{bottom:667.077456px;}
.y3c{bottom:668.160015px;}
.y1ec{bottom:669.240006px;}
.y1a3{bottom:675.899986px;}
.y215{bottom:677.519989px;}
.y92{bottom:679.671250px;}
.y1c7{bottom:679.860008px;}
.y251{bottom:680.579990px;}
.yc0{bottom:684.360008px;}
.y163{bottom:684.540012px;}
.y144{bottom:685.980011px;}
.y232{bottom:686.519989px;}
.y3b{bottom:687.060001px;}
.y95{bottom:687.952969px;}
.y15{bottom:688.139992px;}
.y1eb{bottom:689.939999px;}
.ye3{bottom:692.280001px;}
.y62{bottom:697.500000px;}
.y214{bottom:698.579990px;}
.y1c6{bottom:698.939999px;}
.y250{bottom:701.100013px;}
.ybf{bottom:704.699993px;}
.y94{bottom:704.874421px;}
.y3a{bottom:705.959988px;}
.y143{bottom:706.319995px;}
.y231{bottom:707.040012px;}
.y1ea{bottom:710.100013px;}
.y136{bottom:714.240006px;}
.ye1{bottom:714.419992px;}
.y61{bottom:718.019989px;}
.y1c5{bottom:719.279983px;}
.y14{bottom:719.819995px;}
.y24f{bottom:721.259994px;}
.y39{bottom:724.680004px;}
.ybe{bottom:725.040012px;}
.y142{bottom:726.660015px;}
.y230{bottom:727.199993px;}
.y1e9{bottom:730.439999px;}
.y213{bottom:732.959988px;}
.ye0{bottom:733.500000px;}
.y162{bottom:736.199993px;}
.y1c4{bottom:738.180004px;}
.y60{bottom:738.360008px;}
.y38{bottom:740.519989px;}
.y91{bottom:741.426036px;}
.y141{bottom:746.819995px;}
.y22f{bottom:747.720017px;}
.ydf{bottom:748.979994px;}
.y1e8{bottom:750.779983px;}
.y13{bottom:751.500000px;}
.y135{bottom:752.219999px;}
.y24e{bottom:752.759994px;}
.y212{bottom:753.480011px;}
.ybd{bottom:756.540012px;}
.y161{bottom:756.720017px;}
.y1c3{bottom:757.079990px;}
.y5f{bottom:758.519989px;}
.y37{bottom:763.199993px;}
.y140{bottom:767.339985px;}
.y134{bottom:767.699993px;}
.y22e{bottom:768.060001px;}
.y8d{bottom:769.322289px;}
.y24d{bottom:773.459988px;}
.y90{bottom:773.821209px;}
.y211{bottom:774.000000px;}
.y1c2{bottom:775.980011px;}
.ybc{bottom:777.060001px;}
.y35{bottom:778.860008px;}
.y1e7{bottom:782.279983px;}
.y12{bottom:783.180004px;}
.y13f{bottom:787.680004px;}
.y22d{bottom:788.399986px;}
.y24c{bottom:793.800007px;}
.y210{bottom:794.339985px;}
.y1c1{bottom:794.699993px;}
.y8f{bottom:794.883521px;}
.ybb{bottom:797.399986px;}
.y33{bottom:798.480011px;}
.y5e{bottom:799.379998px;}
.y1e6{bottom:802.800007px;}
.y22c{bottom:808.560001px;}
.ydc{bottom:810.540003px;}
.yde{bottom:813.599997px;}
.y1c0{bottom:813.600013px;}
.y24b{bottom:814.139992px;}
.y20f{bottom:814.500000px;}
.y11{bottom:814.680004px;}
.y8e{bottom:815.759034px;}
.yba{bottom:817.740006px;}
.y13e{bottom:819.180004px;}
.y5d{bottom:819.720017px;}
.y32{bottom:821.160015px;}
.y18e{bottom:828.899986px;}
.y22b{bottom:829.079990px;}
.y1bf{bottom:832.500000px;}
.y1e5{bottom:834.120002px;}
.y20e{bottom:834.839985px;}
.yb9{bottom:838.079990px;}
.y13d{bottom:839.699993px;}
.y5c{bottom:839.879998px;}
.y31{bottom:840.600013px;}
.y24a{bottom:845.459988px;}
.y10{bottom:846.180004px;}
.y8c{bottom:848.154207px;}
.y18d{bottom:849.420010px;}
.y1be{bottom:851.220017px;}
.y20d{bottom:853.740006px;}
.y1e4{bottom:854.819995px;}
.yb8{bottom:858.420010px;}
.y13c{bottom:859.860008px;}
.y30{bottom:860.220017px;}
.y249{bottom:865.980011px;}
.y269{bottom:869.579990px;}
.y18c{bottom:869.759994px;}
.y1bd{bottom:870.300007px;}
.y20c{bottom:872.639992px;}
.y1e3{bottom:875.160015px;}
.yf{bottom:877.860008px;}
.y87{bottom:878.401110px;}
.y160{bottom:878.939999px;}
.y2f{bottom:879.660015px;}
.y8b{bottom:880.378141px;}
.y5b{bottom:880.740006px;}
.y248{bottom:886.319996px;}
.y179{bottom:887.579990px;}
.y1bc{bottom:889.019989px;}
.yb7{bottom:889.920010px;}
.y18b{bottom:890.100013px;}
.y13b{bottom:891.360008px;}
.y2e{bottom:898.740006px;}
.y15f{bottom:899.100013px;}
.y5a{bottom:901.080008px;}
.y8a{bottom:901.611691px;}
.y86{bottom:901.985311px;}
.y85{bottom:906.297386px;}
.y1e2{bottom:906.659998px;}
.y247{bottom:906.840002px;}
.ye{bottom:909.539995px;}
.y1bb{bottom:910.080008px;}
.yb6{bottom:910.259994px;}
.y13a{bottom:911.879998px;}
.y2d{bottom:917.460004px;}
.y178{bottom:919.080008px;}
.y59{bottom:921.419992px;}
.y89{bottom:922.502764px;}
.y1e1{bottom:927.000000px;}
.y20b{bottom:929.159998px;}
.y15e{bottom:930.599997px;}
.yb5{bottom:930.780001px;}
.y139{bottom:932.400003px;}
.y2c{bottom:936.180004px;}
.y1ba{bottom:938.340002px;}
.y88{bottom:939.237418px;}
.yd{bottom:941.219999px;}
.y58{bottom:941.580008px;}
.y1e0{bottom:947.340002px;}
.y20a{bottom:948.060001px;}
.y177{bottom:950.759994px;}
.yb4{bottom:951.120002px;}
.y138{bottom:952.560001px;}
.y2b{bottom:955.800007px;}
.y246{bottom:958.500000px;}
.y18a{bottom:962.280001px;}
.y209{bottom:966.780001px;}
.y1df{bottom:968.580008px;}
.y15d{bottom:971.460004px;}
.yc{bottom:972.719999px;}
.y137{bottom:972.900003px;}
.y57{bottom:973.080008px;}
.y2a{bottom:979.020006px;}
.y176{bottom:982.439999px;}
.yb3{bottom:982.620002px;}
.y189{bottom:982.800007px;}
.y208{bottom:985.680004px;}
.y56{bottom:993.599997px;}
.y245{bottom:999.360008px;}
.y1a2{bottom:1002.780001px;}
.y15c{bottom:1002.960004px;}
.yb2{bottom:1003.139992px;}
.yb{bottom:1004.400003px;}
.y207{bottom:1004.580008px;}
.y55{bottom:1016.280001px;}
.y83{bottom:1018.614171px;}
.y244{bottom:1020.419992px;}
.y29{bottom:1023.120002px;}
.y6{bottom:1023.300007px;}
.y53{bottom:1042.199993px;}
.y5{bottom:1042.379998px;}
.y4{bottom:1057.860000px;}
.y52{bottom:1060.920001px;}
.y28{bottom:1061.099997px;}
.y27{bottom:1076.579999px;}
.y1{bottom:1119.420001px;}
.y3{bottom:1122.479998px;}
.h19{height:0.720017px;}
.h1a{height:2.066251px;}
.h2f{height:15.120002px;}
.h2a{height:15.120003px;}
.h28{height:15.299973px;}
.h26{height:15.300007px;}
.h2d{height:15.300008px;}
.h30{height:15.300040px;}
.h2e{height:15.300042px;}
.h8{height:18.539978px;}
.h9{height:18.539979px;}
.ha{height:18.540012px;}
.h1{height:18.719999px;}
.h23{height:18.720000px;}
.h18{height:19.427783px;}
.h10{height:19.443318px;}
.h14{height:19.443330px;}
.h16{height:19.443341px;}
.h17{height:19.443365px;}
.h15{height:19.614557px;}
.h1f{height:27.892838px;}
.h13{height:27.894386px;}
.h3c{height:38.739919px;}
.h25{height:38.887190px;}
.h35{height:42.388084px;}
.h39{height:42.388219px;}
.h29{height:42.484774px;}
.h20{height:42.872462px;}
.h37{height:42.874870px;}
.h21{height:45.245225px;}
.h2{height:47.521142px;}
.hb{height:47.523894px;}
.h24{height:47.701790px;}
.h3{height:50.391581px;}
.h3b{height:51.653340px;}
.hf{height:52.180986px;}
.h1d{height:52.278796px;}
.h1c{height:52.278931px;}
.h1b{height:52.278936px;}
.h38{height:52.278999px;}
.h1e{height:52.279071px;}
.he{height:52.280583px;}
.h34{height:52.280650px;}
.hd{height:52.280655px;}
.h3a{height:52.280722px;}
.h3d{height:54.317090px;}
.h11{height:54.422652px;}
.h5{height:55.785538px;}
.h36{height:57.737045px;}
.h7{height:60.434559px;}
.h33{height:61.813899px;}
.h12{height:61.817480px;}
.h6{height:67.865447px;}
.h4{height:68.698960px;}
.hc{height:68.702745px;}
.h2c{height:69.127199px;}
.h31{height:69.127330px;}
.h32{height:69.846938px;}
.h27{height:69.847145px;}
.h2b{height:69.847213px;}
.h22{height:918.000000px;}
.h0{height:1188.000000px;}
.w1b{width:0.540012px;}
.w15{width:2.874475px;}
.w13{width:5.049779px;}
.wf{width:5.580025px;}
.wc{width:6.120003px;}
.w1e{width:7.199993px;}
.w1f{width:7.200027px;}
.w20{width:7.379997px;}
.w25{width:7.379998px;}
.w27{width:7.560036px;}
.w21{width:7.919975px;}
.w16{width:7.924277px;}
.w22{width:8.100013px;}
.w24{width:8.279983px;}
.w2a{width:8.279984px;}
.w2c{width:8.280052px;}
.w17{width:9.353726px;}
.w1{width:9.359991px;}
.w1d{width:9.360000px;}
.wa{width:9.899987px;}
.wd{width:9.900003px;}
.w5{width:9.900020px;}
.w3{width:11.159981px;}
.w7{width:11.159998px;}
.w12{width:36.715782px;}
.w14{width:40.134089px;}
.w26{width:57.059967px;}
.w29{width:59.220016px;}
.w2b{width:59.220017px;}
.w23{width:61.379998px;}
.wb{width:68.939999px;}
.w8{width:69.840019px;}
.w9{width:77.220017px;}
.w4{width:93.060001px;}
.w6{width:109.439999px;}
.we{width:115.020024px;}
.w19{width:126.182345px;}
.w28{width:127.800007px;}
.w10{width:145.979943px;}
.w2{width:172.980011px;}
.w1a{width:340.370605px;}
.w18{width:466.195564px;}
.w11{width:466.382010px;}
.w0{width:918.000000px;}
.w1c{width:1188.000000px;}
.x0{left:0.000000px;}
.x20{left:101.519998px;}
.x23{left:109.439999px;}
.x24{left:133.560001px;}
.x1{left:140.400003px;}
.xb{left:148.319996px;}
.x16{left:152.643147px;}
.x9{left:155.340002px;}
.x25{left:158.759994px;}
.x76{left:165.780001px;}
.x77{left:191.159998px;}
.xa{left:203.400003px;}
.x6{left:208.439999px;}
.x11{left:217.259994px;}
.x12{left:223.379998px;}
.x7{left:234.180005px;}
.x78{left:241.919992px;}
.x2f{left:246.240006px;}
.x4{left:257.039996px;}
.x30{left:261.539996px;}
.x50{left:263.340002px;}
.x51{left:265.500000px;}
.x31{left:267.659998px;}
.x72{left:271.979994px;}
.x15{left:283.673261px;}
.x1d{left:284.760901px;}
.x1e{left:287.821845px;}
.x71{left:293.939999px;}
.x17{left:301.324156px;}
.xd{left:321.300007px;}
.x26{left:333.720017px;}
.x1a{left:337.853492px;}
.x54{left:342.000000px;}
.x19{left:343.439999px;}
.x36{left:347.040012px;}
.x34{left:349.740006px;}
.x52{left:351.540012px;}
.x38{left:353.160015px;}
.x53{left:354.959988px;}
.x33{left:357.120002px;}
.x32{left:359.279983px;}
.x37{left:362.160015px;}
.x8{left:367.560001px;}
.x1b{left:382.866443px;}
.x35{left:384.660015px;}
.x1c{left:385.740918px;}
.x27{left:403.019989px;}
.x21{left:419.220017px;}
.x1f{left:427.506502px;}
.x5b{left:435.420010px;}
.x3a{left:437.399987px;}
.x58{left:439.740006px;}
.x3b{left:441.180005px;}
.x59{left:444.959988px;}
.x55{left:447.300007px;}
.x5a{left:448.379998px;}
.x57{left:449.639992px;}
.x2{left:458.100014px;}
.xc{left:466.199993px;}
.x39{left:469.620002px;}
.x5{left:483.839985px;}
.x73{left:507.600014px;}
.x56{left:508.680005px;}
.x5c{left:520.560001px;}
.x3d{left:528.839985px;}
.x3f{left:529.920010px;}
.x6d{left:531.540012px;}
.x3e{left:533.699993px;}
.xf{left:535.860008px;}
.x40{left:539.279983px;}
.x28{left:543.240006px;}
.x29{left:549.899987px;}
.x3c{left:555.839985px;}
.xe{left:559.259994px;}
.x5d{left:564.480011px;}
.x13{left:581.039978px;}
.x14{left:586.440033px;}
.x41{left:599.580025px;}
.x60{left:608.220017px;}
.x10{left:612.899987px;}
.x42{left:619.200027px;}
.x18{left:620.283702px;}
.x5f{left:621.360008px;}
.x5e{left:622.440033px;}
.x43{left:626.940033px;}
.x44{left:631.259994px;}
.x22{left:642.960023px;}
.x3{left:681.840019px;}
.x7a{left:692.460023px;}
.x61{left:693.539978px;}
.x79{left:702.360008px;}
.x46{left:711.000000px;}
.x62{left:717.299973px;}
.x47{left:731.700027px;}
.x45{left:734.220017px;}
.x6e{left:747.899987px;}
.x2a{left:793.799973px;}
.x48{left:802.440033px;}
.x65{left:806.220017px;}
.x67{left:813.779983px;}
.x66{left:814.860008px;}
.x63{left:816.120002px;}
.x2c{left:825.480011px;}
.x2b{left:826.740006px;}
.x75{left:844.559967px;}
.x64{left:873.000000px;}
.x74{left:874.080025px;}
.x49{left:886.500000px;}
.x4d{left:901.080025px;}
.x4b{left:902.700027px;}
.x4c{left:903.960023px;}
.x68{left:910.080025px;}
.x4e{left:916.019989px;}
.x4a{left:926.460023px;}
.x6f{left:938.700027px;}
.x2d{left:974.879998px;}
.x6b{left:982.980011px;}
.x69{left:987.480011px;}
.x6a{left:996.120002px;}
.x70{left:1003.679970px;}
.x4f{left:1008.179970px;}
.x2e{left:1009.440033px;}
.x6c{left:1068.299973px;}
@media print{
.v2{vertical-align:-17.280028pt;}
.v3{vertical-align:-1.919984pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:14.719972pt;}
.v6{vertical-align:17.280028pt;}
.v1{vertical-align:19.840028pt;}
.v4{vertical-align:27.519960pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.062218pt;}
.ls6{letter-spacing:0.094496pt;}
.ls2{letter-spacing:0.118996pt;}
.ls11{letter-spacing:0.132668pt;}
.lsf{letter-spacing:0.134588pt;}
.ls13{letter-spacing:0.192926pt;}
.ls14{letter-spacing:0.242246pt;}
.lsd{letter-spacing:0.243714pt;}
.lsb{letter-spacing:0.243774pt;}
.ls3{letter-spacing:0.283838pt;}
.ls5{letter-spacing:0.284937pt;}
.ls4{letter-spacing:0.285057pt;}
.ls17{letter-spacing:0.427109pt;}
.ls18{letter-spacing:1.002310pt;}
.ls16{letter-spacing:2.282338pt;}
.lsa{letter-spacing:19.257851pt;}
.ls19{letter-spacing:28.609918pt;}
.ls1a{letter-spacing:32.697855pt;}
.ls12{letter-spacing:41.656929pt;}
.ls10{letter-spacing:41.657815pt;}
.ls15{letter-spacing:49.336981pt;}
.lsc{letter-spacing:49.337811pt;}
.lse{letter-spacing:49.337867pt;}
.ls1b{letter-spacing:57.285479pt;}
.ls7{letter-spacing:141.572778pt;}
.ls8{letter-spacing:188.292746pt;}
.ls9{letter-spacing:191.492942pt;}
.ws12{word-spacing:-45.034400pt;}
.ws10{word-spacing:-21.076146pt;}
.wsd{word-spacing:-19.463792pt;}
.ws3{word-spacing:-19.391206pt;}
.ws1{word-spacing:-19.390082pt;}
.ws2{word-spacing:-18.837658pt;}
.ws7{word-spacing:-17.494261pt;}
.wse{word-spacing:-17.493278pt;}
.wsb{word-spacing:-15.867166pt;}
.wsa{word-spacing:-15.415110pt;}
.ws11{word-spacing:-12.484782pt;}
.ws4{word-spacing:-12.224853pt;}
.ws8{word-spacing:-12.224179pt;}
.ws6{word-spacing:-11.381765pt;}
.ws9{word-spacing:-11.381133pt;}
.ws5{word-spacing:-11.069952pt;}
.wsc{word-spacing:-10.578115pt;}
.wsf{word-spacing:-10.538663pt;}
.ws0{word-spacing:0.000000pt;}
._3f{margin-left:-5.604200pt;}
._31{margin-left:-4.707271pt;}
._14{margin-left:-3.327490pt;}
._13{margin-left:-2.376719pt;}
._0{margin-left:-1.393791pt;}
._1{width:0.939121pt;}
._5{width:1.897072pt;}
._17{width:2.856370pt;}
._e{width:4.308691pt;}
._1a{width:5.622861pt;}
._16{width:6.571904pt;}
._19{width:7.676755pt;}
._4{width:8.756117pt;}
._18{width:10.183572pt;}
._f{width:11.490203pt;}
._10{width:13.194086pt;}
._11{width:14.669231pt;}
._12{width:15.578357pt;}
._2{width:17.336837pt;}
._3{width:18.229257pt;}
._1b{width:19.210363pt;}
._1d{width:20.548447pt;}
._15{width:22.095665pt;}
._33{width:23.397962pt;}
._34{width:24.353267pt;}
._35{width:25.296271pt;}
._3a{width:26.629211pt;}
._1c{width:28.117678pt;}
._3c{width:29.825285pt;}
._3b{width:30.833028pt;}
._41{width:32.050087pt;}
._3e{width:33.268009pt;}
._3d{width:34.447089pt;}
._40{width:35.741833pt;}
._2e{width:38.766970pt;}
._2f{width:39.801780pt;}
._30{width:41.525022pt;}
._29{width:62.353705pt;}
._21{width:82.290599pt;}
._2a{width:96.406986pt;}
._22{width:97.979725pt;}
._20{width:132.402719pt;}
._2d{width:141.572778pt;}
._23{width:160.765322pt;}
._2b{width:171.951247pt;}
._26{width:176.132834pt;}
._27{width:210.537615pt;}
._1f{width:213.994166pt;}
._24{width:229.393677pt;}
._28{width:293.252710pt;}
._2c{width:306.692890pt;}
._25{width:316.292746pt;}
._8{width:501.720971pt;}
._b{width:505.516422pt;}
._d{width:699.238787pt;}
._39{width:773.943218pt;}
._38{width:803.972210pt;}
._c{width:811.215132pt;}
._37{width:839.051134pt;}
._36{width:884.707899pt;}
._a{width:962.579308pt;}
._9{width:974.290697pt;}
._32{width:1041.797930pt;}
._7{width:1077.638018pt;}
._6{width:1111.421846pt;}
._1e{width:1325.210607pt;}
.fsb{font-size:2.401976pt;}
.fs13{font-size:30.024680pt;}
.fs11{font-size:30.137080pt;}
.fsd{font-size:32.424880pt;}
.fs9{font-size:32.426680pt;}
.fsc{font-size:34.826720pt;}
.fs7{font-size:34.828640pt;}
.fs1{font-size:45.034400pt;}
.fs12{font-size:45.037200pt;}
.fs10{font-size:45.205600pt;}
.fse{font-size:49.838400pt;}
.fsa{font-size:49.841200pt;}
.fs0{font-size:55.242400pt;}
.fs5{font-size:55.245600pt;}
.fs8{font-size:55.349760pt;}
.fsf{font-size:55.452400pt;}
.fs14{font-size:60.046000pt;}
.fs3{font-size:64.849600pt;}
.fs4{font-size:70.253996pt;}
.fs2{font-size:79.861200pt;}
.fs6{font-size:79.865600pt;}
.y0{bottom:0.000000pt;}
.yee{bottom:2.239990pt;}
.y112{bottom:2.239991pt;}
.ye7{bottom:2.240006pt;}
.y10e{bottom:2.240020pt;}
.y108{bottom:2.240021pt;}
.y12e{bottom:2.240051pt;}
.ydd{bottom:2.719994pt;}
.y2{bottom:2.719997pt;}
.y34{bottom:2.720001pt;}
.y36{bottom:2.720002pt;}
.y6d{bottom:3.832956pt;}
.ya0{bottom:3.832998pt;}
.y84{bottom:3.846807pt;}
.y54{bottom:48.000000pt;}
.ya{bottom:48.159973pt;}
.y9{bottom:62.080017pt;}
.y8{bottom:75.679993pt;}
.ye2{bottom:82.719971pt;}
.y7{bottom:89.599976pt;}
.y188{bottom:93.440002pt;}
.y15b{bottom:93.599976pt;}
.y82{bottom:97.760010pt;}
.ydb{bottom:97.919983pt;}
.yb1{bottom:101.919983pt;}
.y1de{bottom:105.119995pt;}
.y206{bottom:105.280029pt;}
.y268{bottom:107.679993pt;}
.y187{bottom:108.799988pt;}
.y15a{bottom:108.960022pt;}
.y81{bottom:113.119995pt;}
.yda{bottom:113.280029pt;}
.y205{bottom:122.239990pt;}
.y22a{bottom:122.719971pt;}
.y186{bottom:124.000000pt;}
.y80{bottom:124.320007pt;}
.y267{bottom:125.919983pt;}
.y26{bottom:126.880005pt;}
.y1b9{bottom:128.320007pt;}
.yd9{bottom:128.479980pt;}
.yb0{bottom:132.000000pt;}
.y1dd{bottom:133.119995pt;}
.y133{bottom:136.159973pt;}
.y132{bottom:138.400024pt;}
.y204{bottom:138.880005pt;}
.y1b8{bottom:139.200012pt;}
.y159{bottom:139.359985pt;}
.y175{bottom:139.679993pt;}
.y229{bottom:140.960022pt;}
.y131{bottom:143.039978pt;}
.y185{bottom:143.520020pt;}
.yd8{bottom:143.679993pt;}
.y266{bottom:144.000000pt;}
.y130{bottom:145.280029pt;}
.yaf{bottom:150.080017pt;}
.y1dc{bottom:151.359985pt;}
.y7c{bottom:154.395685pt;}
.y184{bottom:154.559998pt;}
.yd7{bottom:154.719971pt;}
.y203{bottom:155.679993pt;}
.y25{bottom:156.159973pt;}
.y243{bottom:159.039978pt;}
.y228{bottom:159.200012pt;}
.y12d{bottom:164.159973pt;}
.y7f{bottom:165.751018pt;}
.y12c{bottom:166.400024pt;}
.yae{bottom:168.159973pt;}
.y1db{bottom:169.440002pt;}
.y183{bottom:169.599976pt;}
.y265{bottom:172.000000pt;}
.y202{bottom:172.320007pt;}
.y129{bottom:173.440002pt;}
.y1b7{bottom:174.080017pt;}
.yd6{bottom:174.239990pt;}
.y227{bottom:177.280029pt;}
.y12f{bottom:177.919983pt;}
.y7b{bottom:179.207894pt;}
.y126{bottom:180.159973pt;}
.y24{bottom:181.119995pt;}
.y7e{bottom:184.474804pt;}
.y12a{bottom:184.799988pt;}
.y158{bottom:184.960022pt;}
.y1b6{bottom:185.119995pt;}
.yad{bottom:186.239990pt;}
.y125{bottom:187.039978pt;}
.y51{bottom:188.000000pt;}
.y201{bottom:189.119995pt;}
.y182{bottom:189.280029pt;}
.yd5{bottom:189.440002pt;}
.y264{bottom:190.080017pt;}
.y127{bottom:193.919983pt;}
.y226{bottom:195.200012pt;}
.y1da{bottom:197.440002pt;}
.y181{bottom:200.000000pt;}
.y1a1{bottom:200.159973pt;}
.y128{bottom:200.799988pt;}
.y7d{bottom:203.032547pt;}
.y174{bottom:203.359985pt;}
.yac{bottom:204.479980pt;}
.yd4{bottom:204.640015pt;}
.y12b{bottom:205.440002pt;}
.y200{bottom:205.919983pt;}
.y50{bottom:206.400024pt;}
.y23{bottom:207.679993pt;}
.y263{bottom:208.159973pt;}
.y225{bottom:213.280029pt;}
.y242{bottom:213.440002pt;}
.y180{bottom:215.359985pt;}
.y1d9{bottom:215.520020pt;}
.y157{bottom:215.840027pt;}
.y122{bottom:219.679993pt;}
.yd3{bottom:220.000000pt;}
.y173{bottom:221.599976pt;}
.y121{bottom:221.919983pt;}
.yab{bottom:222.400024pt;}
.y1ff{bottom:222.559998pt;}
.y4f{bottom:224.479980pt;}
.y11f{bottom:228.799988pt;}
.y22{bottom:229.119995pt;}
.y1a0{bottom:230.719971pt;}
.yd2{bottom:231.039978pt;}
.y224{bottom:231.359985pt;}
.y1b5{bottom:233.280029pt;}
.y124{bottom:233.440002pt;}
.y1d8{bottom:233.760010pt;}
.y17f{bottom:234.880005pt;}
.y11d{bottom:235.679993pt;}
.y262{bottom:236.159973pt;}
.y1fe{bottom:239.520020pt;}
.y172{bottom:239.679993pt;}
.y123{bottom:240.320007pt;}
.yaa{bottom:240.479980pt;}
.y241{bottom:241.280029pt;}
.y4e{bottom:242.559998pt;}
.y7a{bottom:243.202592pt;}
.y19f{bottom:245.919983pt;}
.y156{bottom:246.080017pt;}
.y11c{bottom:249.280029pt;}
.y223{bottom:249.599976pt;}
.y73{bottom:250.398077pt;}
.y1b4{bottom:251.520020pt;}
.y1d7{bottom:251.840027pt;}
.y21{bottom:252.960022pt;}
.y261{bottom:254.400024pt;}
.y11e{bottom:256.159973pt;}
.y171{bottom:257.599976pt;}
.y240{bottom:259.679993pt;}
.y4d{bottom:260.479980pt;}
.y120{bottom:260.960022pt;}
.y19e{bottom:261.119995pt;}
.y155{bottom:264.159973pt;}
.y222{bottom:267.520020pt;}
.ya9{bottom:268.479980pt;}
.y1b3{bottom:269.599976pt;}
.y1d6{bottom:269.919983pt;}
.yd1{bottom:270.880005pt;}
.y79{bottom:271.998301pt;}
.y78{bottom:272.000000pt;}
.y260{bottom:272.479980pt;}
.y1fd{bottom:272.799988pt;}
.y17e{bottom:274.080017pt;}
.y72{bottom:275.194746pt;}
.y170{bottom:275.679993pt;}
.y117{bottom:277.440002pt;}
.y23f{bottom:277.599976pt;}
.y20{bottom:278.080017pt;}
.y19d{bottom:280.799988pt;}
.y11b{bottom:281.919983pt;}
.y154{bottom:282.400024pt;}
.ya8{bottom:283.039978pt;}
.y11a{bottom:284.159973pt;}
.y221{bottom:285.599976pt;}
.y1b2{bottom:287.520020pt;}
.y1d5{bottom:287.840027pt;}
.y4c{bottom:288.479980pt;}
.yd0{bottom:288.960022pt;}
.y1fc{bottom:289.760010pt;}
.y77{bottom:290.080017pt;}
.y25f{bottom:290.559998pt;}
.y116{bottom:291.200012pt;}
.y19c{bottom:292.000000pt;}
.y17d{bottom:293.760010pt;}
.y16f{bottom:293.919983pt;}
.y119{bottom:298.080017pt;}
.ya7{bottom:298.234117pt;}
.ya4{bottom:301.444414pt;}
.y115{bottom:304.799988pt;}
.y23e{bottom:305.599976pt;}
.y1b1{bottom:305.760010pt;}
.y1fb{bottom:306.400024pt;}
.y4b{bottom:306.719971pt;}
.ycf{bottom:307.200012pt;}
.y76{bottom:308.159973pt;}
.y25e{bottom:308.640015pt;}
.y153{bottom:310.239990pt;}
.y118{bottom:311.679993pt;}
.y16e{bottom:312.000000pt;}
.y220{bottom:313.599976pt;}
.y1d4{bottom:315.840027pt;}
.y114{bottom:316.320007pt;}
.y1f{bottom:319.520020pt;}
.y1fa{bottom:323.200012pt;}
.y1b0{bottom:323.840027pt;}
.y4a{bottom:324.960022pt;}
.yce{bottom:325.280029pt;}
.y75{bottom:326.400024pt;}
.ya6{bottom:327.043678pt;}
.y152{bottom:328.479980pt;}
.y16d{bottom:330.080017pt;}
.y21f{bottom:331.840027pt;}
.y110{bottom:332.959991pt;}
.y1d3{bottom:334.080017pt;}
.y25d{bottom:336.640015pt;}
.y111{bottom:337.440002pt;}
.y10f{bottom:339.679993pt;}
.y1f9{bottom:340.000000pt;}
.y1af{bottom:341.919983pt;}
.y49{bottom:342.880005pt;}
.y113{bottom:344.320007pt;}
.y74{bottom:344.640015pt;}
.y19b{bottom:345.280029pt;}
.ya5{bottom:345.599648pt;}
.y151{bottom:346.559998pt;}
.y16c{bottom:348.000000pt;}
.y1d2{bottom:352.320007pt;}
.ycd{bottom:353.119995pt;}
.y25c{bottom:354.880005pt;}
.y1e{bottom:358.719971pt;}
.y10c{bottom:358.720001pt;}
.y21e{bottom:359.840027pt;}
.y1ae{bottom:360.000000pt;}
.y10b{bottom:360.959991pt;}
.y48{bottom:360.960022pt;}
.y19a{bottom:363.200012pt;}
.y150{bottom:364.640015pt;}
.y106{bottom:365.600006pt;}
.y16b{bottom:366.080017pt;}
.y105{bottom:367.839996pt;}
.y1f8{bottom:367.840027pt;}
.y1d1{bottom:370.400024pt;}
.ycc{bottom:371.359985pt;}
.y25b{bottom:372.799988pt;}
.y71{bottom:372.804060pt;}
.ya3{bottom:374.395399pt;}
.y17c{bottom:374.400024pt;}
.y10a{bottom:374.559998pt;}
.y1ad{bottom:377.919983pt;}
.y47{bottom:379.039978pt;}
.y104{bottom:381.600006pt;}
.y14f{bottom:382.719971pt;}
.y16a{bottom:384.320007pt;}
.y9e{bottom:385.755925pt;}
.y10d{bottom:386.079987pt;}
.y1f7{bottom:386.080017pt;}
.y1d{bottom:386.880005pt;}
.y23d{bottom:387.840027pt;}
.yff{bottom:388.320007pt;}
.ycb{bottom:389.440002pt;}
.y25a{bottom:390.880005pt;}
.y199{bottom:391.200012pt;}
.y6b{bottom:391.678348pt;}
.y103{bottom:395.200012pt;}
.y1ac{bottom:396.159973pt;}
.y21d{bottom:396.320007pt;}
.y46{bottom:399.039978pt;}
.y17b{bottom:399.840027pt;}
.y14e{bottom:400.799988pt;}
.y70{bottom:401.599769pt;}
.yfd{bottom:402.079987pt;}
.y169{bottom:402.400024pt;}
.ya2{bottom:403.038875pt;}
.y1f6{bottom:404.159973pt;}
.y23c{bottom:406.239990pt;}
.yca{bottom:407.520020pt;}
.y102{bottom:408.959991pt;}
.y259{bottom:409.119995pt;}
.y198{bottom:409.440002pt;}
.y9d{bottom:410.552594pt;}
.y1ab{bottom:414.239990pt;}
.y1c{bottom:415.039978pt;}
.yfe{bottom:415.839996pt;}
.y1d0{bottom:416.320007pt;}
.y6a{bottom:416.475017pt;}
.y14d{bottom:418.880005pt;}
.y6f{bottom:420.321824pt;}
.ya1{bottom:421.913163pt;}
.y1f5{bottom:422.400024pt;}
.y101{bottom:422.559998pt;}
.y23b{bottom:424.320007pt;}
.y17a{bottom:425.119995pt;}
.yc9{bottom:425.599976pt;}
.y197{bottom:427.679993pt;}
.y258{bottom:429.119995pt;}
.y109{bottom:429.440002pt;}
.y168{bottom:430.400024pt;}
.y1aa{bottom:432.320007pt;}
.y1cf{bottom:434.559998pt;}
.y100{bottom:436.320007pt;}
.y9f{bottom:436.802220pt;}
.y14c{bottom:436.960022pt;}
.y45{bottom:438.239990pt;}
.y6e{bottom:439.043920pt;}
.y1f4{bottom:440.479980pt;}
.y107{bottom:440.959991pt;}
.y1b{bottom:443.039978pt;}
.yc8{bottom:443.679993pt;}
.y21c{bottom:444.000000pt;}
.y196{bottom:445.599976pt;}
.y167{bottom:448.479980pt;}
.y1a9{bottom:450.400024pt;}
.y23a{bottom:452.320007pt;}
.y1ce{bottom:452.799988pt;}
.y6c{bottom:453.919168pt;}
.yf9{bottom:455.200012pt;}
.y44{bottom:456.640015pt;}
.yf6{bottom:457.440002pt;}
.y1f3{bottom:458.400024pt;}
.yc7{bottom:461.760010pt;}
.y195{bottom:463.679993pt;}
.yfc{bottom:464.320007pt;}
.y14b{bottom:464.960022pt;}
.y257{bottom:468.320007pt;}
.y166{bottom:468.479980pt;}
.y9c{bottom:469.278693pt;}
.y239{bottom:470.559998pt;}
.y1a{bottom:471.039978pt;}
.yf5{bottom:471.200012pt;}
.y1cd{bottom:471.520020pt;}
.y21b{bottom:472.000000pt;}
.y69{bottom:474.080017pt;}
.y43{bottom:476.000000pt;}
.y1f2{bottom:476.479980pt;}
.yf8{bottom:478.079987pt;}
.yc6{bottom:479.840027pt;}
.y194{bottom:481.760010pt;}
.y14a{bottom:483.200012pt;}
.yf4{bottom:484.959991pt;}
.y1a8{bottom:486.559998pt;}
.y98{bottom:488.319024pt;}
.y238{bottom:488.479980pt;}
.y21a{bottom:490.239990pt;}
.y68{bottom:490.880005pt;}
.yef{bottom:491.839996pt;}
.y42{bottom:493.280029pt;}
.y1f1{bottom:494.719971pt;}
.yfa{bottom:496.480011pt;}
.y9b{bottom:498.074402pt;}
.yf3{bottom:498.720001pt;}
.y19{bottom:499.200012pt;}
.y193{bottom:500.000000pt;}
.y149{bottom:501.119995pt;}
.y1cc{bottom:501.440002pt;}
.yed{bottom:503.200012pt;}
.y256{bottom:504.640015pt;}
.yec{bottom:505.440002pt;}
.y237{bottom:506.559998pt;}
.yc5{bottom:507.840027pt;}
.y219{bottom:508.159973pt;}
.y41{bottom:510.239990pt;}
.yf2{bottom:512.320007pt;}
.y1f0{bottom:512.799988pt;}
.y1a7{bottom:514.559998pt;}
.y1cb{bottom:516.159973pt;}
.y9a{bottom:516.644265pt;}
.y192{bottom:518.080017pt;}
.yf7{bottom:519.200012pt;}
.y148{bottom:519.359985pt;}
.y67{bottom:519.520020pt;}
.y255{bottom:522.719971pt;}
.y236{bottom:524.799988pt;}
.yc4{bottom:525.919983pt;}
.yf1{bottom:526.079987pt;}
.y40{bottom:526.880005pt;}
.y18{bottom:527.359985pt;}
.y1ef{bottom:530.719971pt;}
.y99{bottom:531.685556pt;}
.y1a6{bottom:532.799988pt;}
.yfb{bottom:532.959991pt;}
.y1ca{bottom:533.599976pt;}
.y191{bottom:536.000000pt;}
.y218{bottom:536.159973pt;}
.y147{bottom:537.440002pt;}
.y66{bottom:537.760010pt;}
.yf0{bottom:539.679993pt;}
.y254{bottom:540.799988pt;}
.y235{bottom:542.880005pt;}
.y3f{bottom:543.679993pt;}
.yc3{bottom:544.160004pt;}
.y1ee{bottom:548.799988pt;}
.y1a5{bottom:550.880005pt;}
.y190{bottom:554.079987pt;}
.y217{bottom:554.720001pt;}
.ye9{bottom:555.200012pt;}
.y17{bottom:555.519989pt;}
.y65{bottom:555.839996pt;}
.y253{bottom:558.880005pt;}
.ye6{bottom:559.839996pt;}
.y3e{bottom:560.480011pt;}
.y234{bottom:560.799988pt;}
.yeb{bottom:562.080002pt;}
.yc2{bottom:562.239990pt;}
.ye5{bottom:562.559998pt;}
.y97{bottom:564.162029pt;}
.y1ed{bottom:566.880005pt;}
.y1c9{bottom:568.320007pt;}
.yea{bottom:568.960007pt;}
.ye8{bottom:569.919998pt;}
.y165{bottom:572.000000pt;}
.y18f{bottom:572.160004pt;}
.y146{bottom:573.440002pt;}
.y64{bottom:573.760010pt;}
.y252{bottom:576.959991pt;}
.y3d{bottom:577.119995pt;}
.y1a4{bottom:578.239990pt;}
.y93{bottom:579.355554pt;}
.y233{bottom:579.679993pt;}
.yc1{bottom:580.320007pt;}
.y16{bottom:583.519989pt;}
.y216{bottom:584.000000pt;}
.y1c8{bottom:587.040009pt;}
.ye4{bottom:590.240005pt;}
.y164{bottom:590.399994pt;}
.y145{bottom:591.519989pt;}
.y63{bottom:592.000000pt;}
.y96{bottom:592.957739pt;}
.y3c{bottom:593.920013pt;}
.y1ec{bottom:594.880005pt;}
.y1a3{bottom:600.799988pt;}
.y215{bottom:602.239990pt;}
.y92{bottom:604.152222pt;}
.y1c7{bottom:604.320007pt;}
.y251{bottom:604.959991pt;}
.yc0{bottom:608.320007pt;}
.y163{bottom:608.480011pt;}
.y144{bottom:609.760010pt;}
.y232{bottom:610.239990pt;}
.y3b{bottom:610.720001pt;}
.y95{bottom:611.513751pt;}
.y15{bottom:611.679993pt;}
.y1eb{bottom:613.279999pt;}
.ye3{bottom:615.360001pt;}
.y62{bottom:620.000000pt;}
.y214{bottom:620.959991pt;}
.y1c6{bottom:621.279999pt;}
.y250{bottom:623.200012pt;}
.ybf{bottom:626.399994pt;}
.y94{bottom:626.555041pt;}
.y3a{bottom:627.519989pt;}
.y143{bottom:627.839996pt;}
.y231{bottom:628.480011pt;}
.y1ea{bottom:631.200012pt;}
.y136{bottom:634.880005pt;}
.ye1{bottom:635.039993pt;}
.y61{bottom:638.239990pt;}
.y1c5{bottom:639.359985pt;}
.y14{bottom:639.839996pt;}
.y24f{bottom:641.119995pt;}
.y39{bottom:644.160004pt;}
.ybe{bottom:644.480011pt;}
.y142{bottom:645.920013pt;}
.y230{bottom:646.399994pt;}
.y1e9{bottom:649.279999pt;}
.y213{bottom:651.519989pt;}
.ye0{bottom:652.000000pt;}
.y162{bottom:654.399994pt;}
.y1c4{bottom:656.160004pt;}
.y60{bottom:656.320007pt;}
.y38{bottom:658.239990pt;}
.y91{bottom:659.045365pt;}
.y141{bottom:663.839996pt;}
.y22f{bottom:664.640015pt;}
.ydf{bottom:665.759995pt;}
.y1e8{bottom:667.359985pt;}
.y13{bottom:668.000000pt;}
.y135{bottom:668.639999pt;}
.y24e{bottom:669.119995pt;}
.y212{bottom:669.760010pt;}
.ybd{bottom:672.480011pt;}
.y161{bottom:672.640015pt;}
.y1c3{bottom:672.959991pt;}
.y5f{bottom:674.239990pt;}
.y37{bottom:678.399994pt;}
.y140{bottom:682.079987pt;}
.y134{bottom:682.399994pt;}
.y22e{bottom:682.720001pt;}
.y8d{bottom:683.842034pt;}
.y24d{bottom:687.519989pt;}
.y90{bottom:687.841075pt;}
.y211{bottom:688.000000pt;}
.y1c2{bottom:689.760010pt;}
.ybc{bottom:690.720001pt;}
.y35{bottom:692.320007pt;}
.y1e7{bottom:695.359985pt;}
.y12{bottom:696.160004pt;}
.y13f{bottom:700.160004pt;}
.y22d{bottom:700.799988pt;}
.y24c{bottom:705.600006pt;}
.y210{bottom:706.079987pt;}
.y1c1{bottom:706.399994pt;}
.y8f{bottom:706.563129pt;}
.ybb{bottom:708.799988pt;}
.y33{bottom:709.760010pt;}
.y5e{bottom:710.559998pt;}
.y1e6{bottom:713.600006pt;}
.y22c{bottom:718.720001pt;}
.ydc{bottom:720.480003pt;}
.yde{bottom:723.199997pt;}
.y1c0{bottom:723.200012pt;}
.y24b{bottom:723.679993pt;}
.y20f{bottom:724.000000pt;}
.y11{bottom:724.160004pt;}
.y8e{bottom:725.119141pt;}
.yba{bottom:726.880005pt;}
.y13e{bottom:728.160004pt;}
.y5d{bottom:728.640015pt;}
.y32{bottom:729.920013pt;}
.y18e{bottom:736.799988pt;}
.y22b{bottom:736.959991pt;}
.y1bf{bottom:740.000000pt;}
.y1e5{bottom:741.440002pt;}
.y20e{bottom:742.079987pt;}
.yb9{bottom:744.959991pt;}
.y13d{bottom:746.399994pt;}
.y5c{bottom:746.559998pt;}
.y31{bottom:747.200012pt;}
.y24a{bottom:751.519989pt;}
.y10{bottom:752.160004pt;}
.y8c{bottom:753.914851pt;}
.y18d{bottom:755.040009pt;}
.y1be{bottom:756.640015pt;}
.y20d{bottom:758.880005pt;}
.y1e4{bottom:759.839996pt;}
.yb8{bottom:763.040009pt;}
.y13c{bottom:764.320007pt;}
.y30{bottom:764.640015pt;}
.y249{bottom:769.760010pt;}
.y269{bottom:772.959991pt;}
.y18c{bottom:773.119995pt;}
.y1bd{bottom:773.600006pt;}
.y20c{bottom:775.679993pt;}
.y1e3{bottom:777.920013pt;}
.yf{bottom:780.320007pt;}
.y87{bottom:780.800987pt;}
.y160{bottom:781.279999pt;}
.y2f{bottom:781.920013pt;}
.y8b{bottom:782.558347pt;}
.y5b{bottom:782.880005pt;}
.y248{bottom:787.839996pt;}
.y179{bottom:788.959991pt;}
.y1bc{bottom:790.239990pt;}
.yb7{bottom:791.040009pt;}
.y18b{bottom:791.200012pt;}
.y13b{bottom:792.320007pt;}
.y2e{bottom:798.880005pt;}
.y15f{bottom:799.200012pt;}
.y5a{bottom:800.960007pt;}
.y8a{bottom:801.432615pt;}
.y86{bottom:801.764721pt;}
.y85{bottom:805.597677pt;}
.y1e2{bottom:805.919998pt;}
.y247{bottom:806.080002pt;}
.ye{bottom:808.479996pt;}
.y1bb{bottom:808.960007pt;}
.yb6{bottom:809.119995pt;}
.y13a{bottom:810.559998pt;}
.y2d{bottom:815.520004pt;}
.y178{bottom:816.960007pt;}
.y59{bottom:819.039993pt;}
.y89{bottom:820.002457pt;}
.y1e1{bottom:824.000000pt;}
.y20b{bottom:825.919998pt;}
.y15e{bottom:827.199997pt;}
.yb5{bottom:827.360001pt;}
.y139{bottom:828.800003pt;}
.y2c{bottom:832.160004pt;}
.y1ba{bottom:834.080002pt;}
.y88{bottom:834.877705pt;}
.yd{bottom:836.639999pt;}
.y58{bottom:836.960007pt;}
.y1e0{bottom:842.080002pt;}
.y20a{bottom:842.720001pt;}
.y177{bottom:845.119995pt;}
.yb4{bottom:845.440002pt;}
.y138{bottom:846.720001pt;}
.y2b{bottom:849.600006pt;}
.y246{bottom:852.000000pt;}
.y18a{bottom:855.360001pt;}
.y209{bottom:859.360001pt;}
.y1df{bottom:860.960007pt;}
.y15d{bottom:863.520004pt;}
.yc{bottom:864.639999pt;}
.y137{bottom:864.800003pt;}
.y57{bottom:864.960007pt;}
.y2a{bottom:870.240005pt;}
.y176{bottom:873.279999pt;}
.yb3{bottom:873.440002pt;}
.y189{bottom:873.600006pt;}
.y208{bottom:876.160004pt;}
.y56{bottom:883.199997pt;}
.y245{bottom:888.320007pt;}
.y1a2{bottom:891.360001pt;}
.y15c{bottom:891.520004pt;}
.yb2{bottom:891.679993pt;}
.yb{bottom:892.800003pt;}
.y207{bottom:892.960007pt;}
.y55{bottom:903.360001pt;}
.y83{bottom:905.434819pt;}
.y244{bottom:907.039993pt;}
.y29{bottom:909.440002pt;}
.y6{bottom:909.600006pt;}
.y53{bottom:926.399994pt;}
.y5{bottom:926.559998pt;}
.y4{bottom:940.320000pt;}
.y52{bottom:943.040001pt;}
.y28{bottom:943.199997pt;}
.y27{bottom:956.959999pt;}
.y1{bottom:995.040001pt;}
.y3{bottom:997.759998pt;}
.h19{height:0.640015pt;}
.h1a{height:1.836667pt;}
.h2f{height:13.440002pt;}
.h2a{height:13.440003pt;}
.h28{height:13.599976pt;}
.h26{height:13.600006pt;}
.h2d{height:13.600007pt;}
.h30{height:13.600036pt;}
.h2e{height:13.600037pt;}
.h8{height:16.479980pt;}
.h9{height:16.479981pt;}
.ha{height:16.480011pt;}
.h1{height:16.639999pt;}
.h23{height:16.640000pt;}
.h18{height:17.269140pt;}
.h10{height:17.282949pt;}
.h14{height:17.282960pt;}
.h16{height:17.282970pt;}
.h17{height:17.282991pt;}
.h15{height:17.435162pt;}
.h1f{height:24.793634pt;}
.h13{height:24.795010pt;}
.h3c{height:34.435484pt;}
.h25{height:34.566391pt;}
.h35{height:37.678297pt;}
.h39{height:37.678417pt;}
.h29{height:37.764243pt;}
.h20{height:38.108855pt;}
.h37{height:38.110996pt;}
.h21{height:40.217978pt;}
.h2{height:42.241015pt;}
.hb{height:42.243462pt;}
.h24{height:42.401591pt;}
.h3{height:44.792516pt;}
.h3b{height:45.914080pt;}
.hf{height:46.383099pt;}
.h1d{height:46.470041pt;}
.h1c{height:46.470161pt;}
.h1b{height:46.470165pt;}
.h38{height:46.470221pt;}
.h1e{height:46.470285pt;}
.he{height:46.471629pt;}
.h34{height:46.471689pt;}
.hd{height:46.471693pt;}
.h3a{height:46.471753pt;}
.h3d{height:48.281858pt;}
.h11{height:48.375690pt;}
.h5{height:49.587145pt;}
.h36{height:51.321818pt;}
.h7{height:53.719608pt;}
.h33{height:54.945688pt;}
.h12{height:54.948871pt;}
.h6{height:60.324842pt;}
.h4{height:61.065742pt;}
.hc{height:61.069106pt;}
.h2c{height:61.446399pt;}
.h31{height:61.446515pt;}
.h32{height:62.086167pt;}
.h27{height:62.086351pt;}
.h2b{height:62.086411pt;}
.h22{height:816.000000pt;}
.h0{height:1056.000000pt;}
.w1b{width:0.480011pt;}
.w15{width:2.555089pt;}
.w13{width:4.488692pt;}
.wf{width:4.960022pt;}
.wc{width:5.440003pt;}
.w1e{width:6.399994pt;}
.w1f{width:6.400024pt;}
.w20{width:6.559997pt;}
.w25{width:6.559998pt;}
.w27{width:6.720032pt;}
.w21{width:7.039978pt;}
.w16{width:7.043802pt;}
.w22{width:7.200012pt;}
.w24{width:7.359985pt;}
.w2a{width:7.359986pt;}
.w2c{width:7.360046pt;}
.w17{width:8.314424pt;}
.w1{width:8.319992pt;}
.w1d{width:8.320000pt;}
.wa{width:8.799988pt;}
.wd{width:8.800003pt;}
.w5{width:8.800018pt;}
.w3{width:9.919983pt;}
.w7{width:9.919998pt;}
.w12{width:32.636250pt;}
.w14{width:35.674745pt;}
.w26{width:50.719971pt;}
.w29{width:52.640014pt;}
.w2b{width:52.640015pt;}
.w23{width:54.559998pt;}
.wb{width:61.279999pt;}
.w8{width:62.080017pt;}
.w9{width:68.640015pt;}
.w4{width:82.720001pt;}
.w6{width:97.279999pt;}
.we{width:102.240021pt;}
.w19{width:112.162085pt;}
.w28{width:113.600006pt;}
.w10{width:129.759949pt;}
.w2{width:153.760010pt;}
.w1a{width:302.551649pt;}
.w18{width:414.396057pt;}
.w11{width:414.561787pt;}
.w0{width:816.000000pt;}
.w1c{width:1056.000000pt;}
.x0{left:0.000000pt;}
.x20{left:90.239998pt;}
.x23{left:97.279999pt;}
.x24{left:118.720001pt;}
.x1{left:124.800003pt;}
.xb{left:131.839996pt;}
.x16{left:135.682798pt;}
.x9{left:138.080002pt;}
.x25{left:141.119995pt;}
.x76{left:147.360001pt;}
.x77{left:169.919998pt;}
.xa{left:180.800003pt;}
.x6{left:185.279999pt;}
.x11{left:193.119995pt;}
.x12{left:198.559998pt;}
.x7{left:208.160004pt;}
.x78{left:215.039993pt;}
.x2f{left:218.880005pt;}
.x4{left:228.479996pt;}
.x30{left:232.479996pt;}
.x50{left:234.080002pt;}
.x51{left:236.000000pt;}
.x31{left:237.919998pt;}
.x72{left:241.759995pt;}
.x15{left:252.154010pt;}
.x1d{left:253.120801pt;}
.x1e{left:255.841640pt;}
.x71{left:261.279999pt;}
.x17{left:267.843694pt;}
.xd{left:285.600006pt;}
.x26{left:296.640015pt;}
.x1a{left:300.314215pt;}
.x54{left:304.000000pt;}
.x19{left:305.279999pt;}
.x36{left:308.480011pt;}
.x34{left:310.880005pt;}
.x52{left:312.480011pt;}
.x38{left:313.920013pt;}
.x53{left:315.519989pt;}
.x33{left:317.440002pt;}
.x32{left:319.359985pt;}
.x37{left:321.920013pt;}
.x8{left:326.720001pt;}
.x1b{left:340.325727pt;}
.x35{left:341.920013pt;}
.x1c{left:342.880816pt;}
.x27{left:358.239990pt;}
.x21{left:372.640015pt;}
.x1f{left:380.005779pt;}
.x5b{left:387.040009pt;}
.x3a{left:388.799988pt;}
.x58{left:390.880005pt;}
.x3b{left:392.160004pt;}
.x59{left:395.519989pt;}
.x55{left:397.600006pt;}
.x5a{left:398.559998pt;}
.x57{left:399.679993pt;}
.x2{left:407.200012pt;}
.xc{left:414.399994pt;}
.x39{left:417.440002pt;}
.x5{left:430.079987pt;}
.x73{left:451.200012pt;}
.x56{left:452.160004pt;}
.x5c{left:462.720001pt;}
.x3d{left:470.079987pt;}
.x3f{left:471.040009pt;}
.x6d{left:472.480011pt;}
.x3e{left:474.399994pt;}
.xf{left:476.320007pt;}
.x40{left:479.359985pt;}
.x28{left:482.880005pt;}
.x29{left:488.799988pt;}
.x3c{left:494.079987pt;}
.xe{left:497.119995pt;}
.x5d{left:501.760010pt;}
.x13{left:516.479980pt;}
.x14{left:521.280029pt;}
.x41{left:532.960022pt;}
.x60{left:540.640015pt;}
.x10{left:544.799988pt;}
.x42{left:550.400024pt;}
.x18{left:551.363291pt;}
.x5f{left:552.320007pt;}
.x5e{left:553.280029pt;}
.x43{left:557.280029pt;}
.x44{left:561.119995pt;}
.x22{left:571.520020pt;}
.x3{left:606.080017pt;}
.x7a{left:615.520020pt;}
.x61{left:616.479980pt;}
.x79{left:624.320007pt;}
.x46{left:632.000000pt;}
.x62{left:637.599976pt;}
.x47{left:650.400024pt;}
.x45{left:652.640015pt;}
.x6e{left:664.799988pt;}
.x2a{left:705.599976pt;}
.x48{left:713.280029pt;}
.x65{left:716.640015pt;}
.x67{left:723.359985pt;}
.x66{left:724.320007pt;}
.x63{left:725.440002pt;}
.x2c{left:733.760010pt;}
.x2b{left:734.880005pt;}
.x75{left:750.719971pt;}
.x64{left:776.000000pt;}
.x74{left:776.960022pt;}
.x49{left:788.000000pt;}
.x4d{left:800.960022pt;}
.x4b{left:802.400024pt;}
.x4c{left:803.520020pt;}
.x68{left:808.960022pt;}
.x4e{left:814.239990pt;}
.x4a{left:823.520020pt;}
.x6f{left:834.400024pt;}
.x2d{left:866.559998pt;}
.x6b{left:873.760010pt;}
.x69{left:877.760010pt;}
.x6a{left:885.440002pt;}
.x70{left:892.159973pt;}
.x4f{left:896.159973pt;}
.x2e{left:897.280029pt;}
.x6c{left:949.599976pt;}
}




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