
    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_62f5030931c7227fd6b2295a.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.964000;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_67b6fc3defda74ab0aa76595.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.938965;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_d6c99dbe753be6370abd06cb.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_f0fd2527bc6c713133252062.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.007324;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_824e7105bd3a8f7891dfa0dd.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.005859;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_c67f7203eb9b86ad49d97397.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.005371;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_7b377d64d3c1e3494e94b70a.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.005371;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_a847568a1c7ada0644125ad1.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.871094;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_8a7e69aaf23f3fcb51e7d7f6.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.958008;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_190665de865e1c516bfc75e8.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.769531;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_8fb8e087790cca72841ab5fa.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.935547;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_05099a43291c29fe32c6b1ca.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.873535;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_c94862b31312da53d13248fd.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.861816;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_f06e0fcdab34db30ad629501.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.861816;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-195.567374px;}
.v1{vertical-align:-75.125612px;}
.v8{vertical-align:-69.289049px;}
.v7{vertical-align:-30.656570px;}
.v4{vertical-align:-12.247907px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:18.845447px;}
.v6{vertical-align:41.859001px;}
.v3{vertical-align:162.529070px;}
.ls0{letter-spacing:0.000000px;}
.ls7{letter-spacing:52.532340px;}
.ls6{letter-spacing:80.972095px;}
.ls5{letter-spacing:81.000442px;}
.ls3{letter-spacing:84.009370px;}
.ls4{letter-spacing:108.000444px;}
.ls2{letter-spacing:160.789978px;}
.ls1{letter-spacing:160.811730px;}
.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;}
}
.ws7{word-spacing:-49.728003px;}
.wsf{word-spacing:-41.317322px;}
.ws0{word-spacing:-41.280003px;}
.ws6{word-spacing:-28.462500px;}
.wsc{word-spacing:-28.254000px;}
.wsd{word-spacing:-24.930001px;}
.ws1{word-spacing:-23.268000px;}
.wsa{word-spacing:-16.620000px;}
.ws8{word-spacing:-0.324000px;}
.ws2{word-spacing:0.000000px;}
.wsb{word-spacing:180.287435px;}
.ws9{word-spacing:483.051158px;}
.ws3{word-spacing:706.101921px;}
.ws4{word-spacing:1184.829594px;}
.wse{word-spacing:1333.115285px;}
.ws5{word-spacing:3195.355535px;}
._f{margin-left:-5838.730162px;}
._15{margin-left:-1590.362382px;}
._25{margin-left:-39.474480px;}
._24{margin-left:-30.240000px;}
._4{margin-left:-25.200000px;}
._12{margin-left:-23.232001px;}
._7{margin-left:-19.968001px;}
._d{margin-left:-18.070802px;}
._3{margin-left:-16.800000px;}
._e{margin-left:-15.762000px;}
._26{margin-left:-14.250000px;}
._9{margin-left:-13.217869px;}
._23{margin-left:-9.581520px;}
._0{margin-left:-7.200000px;}
._8{margin-left:-5.568000px;}
._2{margin-left:-4.320000px;}
._5{margin-left:-2.352000px;}
._b{margin-left:-1.242001px;}
._6{width:1.392000px;}
._a{width:2.658000px;}
._c{width:4.033179px;}
._1{width:7.200000px;}
._1f{width:11.106480px;}
._20{width:13.482083px;}
._21{width:27.838321px;}
._22{width:30.299792px;}
._1a{width:42.106321px;}
._1b{width:43.183681px;}
._16{width:47.022241px;}
._17{width:62.932801px;}
._18{width:64.419361px;}
._1d{width:91.291922px;}
._1c{width:92.301603px;}
._19{width:129.577923px;}
._11{width:528.824492px;}
._14{width:781.176679px;}
._13{width:1642.970209px;}
._10{width:2353.217907px;}
._1e{width:2644.360483px;}
.fce{color:rgb(251,255,255);}
.fcd{color:rgb(0,151,167);}
.fc0{color:rgb(255,255,255);}
.fc2{color:rgb(69,69,69);}
.fc3{color:rgb(0,0,0);}
.fcc{color:rgb(33,33,33);}
.fc1{color:rgb(255,0,255);}
.fc5{color:rgb(240,83,43);}
.fcf{color:rgb(89,89,89);}
.fca{color:rgb(31,73,125);}
.fc7{color:rgb(146,208,80);}
.fc8{color:rgb(255,0,0);}
.fc6{color:rgb(86,88,98);}
.fc9{color:rgb(193,255,114);}
.fc4{color:transparent;}
.fcb{color:rgb(0,0,255);}
.fse{font-size:20.039999px;}
.fs3a{font-size:34.320000px;}
.fs19{font-size:41.340001px;}
.fs11{font-size:42.599998px;}
.fs10{font-size:43.139998px;}
.fs42{font-size:43.920001px;}
.fs43{font-size:48.360003px;}
.fsa{font-size:48.840005px;}
.fs38{font-size:52.620005px;}
.fs34{font-size:54.000002px;}
.fs41{font-size:57.120005px;}
.fs3f{font-size:57.360003px;}
.fs31{font-size:60.000000px;}
.fs40{font-size:66.000004px;}
.fs6{font-size:67.440008px;}
.fs12{font-size:79.020007px;}
.fs1b{font-size:82.560000px;}
.fs4{font-size:84.000000px;}
.fs13{font-size:86.760003px;}
.fs26{font-size:88.560003px;}
.fs36{font-size:90.000003px;}
.fsd{font-size:99.720003px;}
.fs35{font-size:102.000000px;}
.fs24{font-size:103.125000px;}
.fsc{font-size:105.839999px;}
.fs2b{font-size:107.520002px;}
.fs14{font-size:108.840000px;}
.fs23{font-size:112.500004px;}
.fsb{font-size:113.700010px;}
.fs2d{font-size:113.759999px;}
.fs9{font-size:120.000001px;}
.fs2e{font-size:126.000004px;}
.fs18{font-size:126.540004px;}
.fs2f{font-size:126.600012px;}
.fs28{font-size:132.000007px;}
.fs2c{font-size:132.840000px;}
.fs16{font-size:138.000001px;}
.fs1e{font-size:144.000005px;}
.fs3c{font-size:144.240003px;}
.fs3e{font-size:149.160006px;}
.fsf{font-size:149.940005px;}
.fs30{font-size:151.920005px;}
.fs1{font-size:167.999999px;}
.fs1c{font-size:172.500000px;}
.fs3{font-size:174.000012px;}
.fs17{font-size:180.000006px;}
.fs8{font-size:189.000006px;}
.fs2{font-size:192.000012px;}
.fs32{font-size:198.000006px;}
.fs20{font-size:203.940007px;}
.fs1f{font-size:204.000001px;}
.fs3d{font-size:216.480022px;}
.fs37{font-size:228.000013px;}
.fs3b{font-size:240.000002px;}
.fs5{font-size:244.200023px;}
.fs22{font-size:264.000014px;}
.fs25{font-size:266.940009px;}
.fs33{font-size:282.000015px;}
.fs21{font-size:288.000009px;}
.fs2a{font-size:299.999998px;}
.fs1d{font-size:302.940010px;}
.fs27{font-size:324.000010px;}
.fs39{font-size:347.940011px;}
.fs29{font-size:360.000012px;}
.fs1a{font-size:364.500012px;}
.fs15{font-size:389.940024px;}
.fs45{font-size:408.000001px;}
.fs7{font-size:426.000002px;}
.fs0{font-size:480.000003px;}
.fs44{font-size:672.000007px;}
.y0{bottom:0.000000px;}
.y93{bottom:30.644739px;}
.ycc{bottom:31.994289px;}
.y117{bottom:37.734877px;}
.yf7{bottom:39.203107px;}
.y11f{bottom:41.010161px;}
.y107{bottom:44.132138px;}
.y1a{bottom:44.324965px;}
.y49{bottom:47.496810px;}
.y4f{bottom:47.514315px;}
.y10e{bottom:48.723938px;}
.y6a{bottom:53.448940px;}
.y16f{bottom:56.335812px;}
.y8{bottom:56.708513px;}
.y50{bottom:58.008003px;}
.yed{bottom:59.355818px;}
.yf5{bottom:61.650864px;}
.y158{bottom:70.589101px;}
.ybf{bottom:72.196568px;}
.ya{bottom:77.084856px;}
.yd6{bottom:77.407625px;}
.yab{bottom:77.596192px;}
.y74{bottom:78.356101px;}
.ye3{bottom:79.436106px;}
.yf6{bottom:84.563109px;}
.ya1{bottom:86.894854px;}
.y8a{bottom:91.913702px;}
.y10b{bottom:92.826920px;}
.y84{bottom:97.055885px;}
.y9{bottom:102.284854px;}
.yb2{bottom:104.313508px;}
.yd5{bottom:107.644217px;}
.y31{bottom:108.175354px;}
.ye8{bottom:108.390308px;}
.yaa{bottom:109.474075px;}
.y48{bottom:109.596812px;}
.y4e{bottom:109.614317px;}
.y7{bottom:116.738492px;}
.y173{bottom:120.463739px;}
.y10a{bottom:128.826921px;}
.ybe{bottom:134.314143px;}
.yd4{bottom:137.880821px;}
.yf4{bottom:140.954287px;}
.ya9{bottom:141.351952px;}
.y157{bottom:142.589107px;}
.y16e{bottom:142.735799px;}
.y29{bottom:147.235556px;}
.y11e{bottom:155.768130px;}
.y89{bottom:157.575004px;}
.y63{bottom:164.782553px;}
.y109{bottom:164.826923px;}
.ye7{bottom:165.951599px;}
.yb1{bottom:166.431071px;}
.y16b{bottom:167.657591px;}
.yd3{bottom:168.117413px;}
.y47{bottom:171.696803px;}
.y4d{bottom:171.714308px;}
.y11d{bottom:171.968130px;}
.yf3{bottom:172.832175px;}
.ya8{bottom:173.229829px;}
.y83{bottom:176.255888px;}
.y6{bottom:176.768472px;}
.y58{bottom:178.705596px;}
.y16d{bottom:185.935805px;}
.y76{bottom:185.939967px;}
.y11c{bottom:188.168131px;}
.y12{bottom:192.440127px;}
.y28{bottom:194.863546px;}
.y57{bottom:196.075587px;}
.ybd{bottom:196.431734px;}
.yd2{bottom:198.354007px;}
.y11b{bottom:204.368131px;}
.y111{bottom:204.541224px;}
.yf2{bottom:204.710041px;}
.y172{bottom:206.863726px;}
.y16a{bottom:210.857582px;}
.y11a{bottom:220.568125px;}
.y62{bottom:226.882545px;}
.y142{bottom:226.902176px;}
.y148{bottom:227.318145px;}
.y16c{bottom:229.135806px;}
.yb7{bottom:231.428140px;}
.y46{bottom:233.796795px;}
.y4c{bottom:233.814300px;}
.yf1{bottom:236.587913px;}
.y119{bottom:236.768128px;}
.y27{bottom:242.491538px;}
.y88{bottom:243.236523px;}
.y171{bottom:250.063732px;}
.y118{bottom:252.968126px;}
.y82{bottom:255.455891px;}
.y11{bottom:255.727983px;}
.y13e{bottom:256.129452px;}
.ybc{bottom:258.549314px;}
.y110{bottom:260.971232px;}
.y7c{bottom:262.551693px;}
.y181{bottom:267.261393px;}
.yf0{bottom:268.465796px;}
.y169{bottom:278.057569px;}
.y164{bottom:280.286075px;}
.y141{bottom:284.463264px;}
.y155{bottom:284.879300px;}
.yb0{bottom:290.666209px;}
.y170{bottom:293.263733px;}
.yb6{bottom:293.545962px;}
.ydd{bottom:295.837570px;}
.y175{bottom:298.024558px;}
.y4b{bottom:299.889657px;}
.yef{bottom:300.343673px;}
.y64{bottom:304.666623px;}
.y5{bottom:304.928498px;}
.y26{bottom:305.544436px;}
.y43{bottom:307.969154px;}
.y70{bottom:310.669902px;}
.ye1{bottom:312.609571px;}
.y13d{bottom:313.690742px;}
.y10f{bottom:317.401228px;}
.y168{bottom:321.257565px;}
.y3b{bottom:321.803375px;}
.y163{bottom:323.558071px;}
.y7b{bottom:328.629470px;}
.yee{bottom:332.221551px;}
.y81{bottom:334.655893px;}
.y180{bottom:337.641388px;}
.ya7{bottom:349.759922px;}
.ye4{bottom:350.161098px;}
.y42{bottom:350.412835px;}
.ycb{bottom:351.729794px;}
.y3a{bottom:352.637296px;}
.yaf{bottom:352.783772px;}
.y25{bottom:353.172426px;}
.y108{bottom:353.401229px;}
.y174{bottom:355.624555px;}
.yb5{bottom:355.663775px;}
.ydc{bottom:356.335110px;}
.y167{bottom:364.457560px;}
.y162{bottom:366.830071px;}
.y4a{bottom:370.089650px;}
.y4{bottom:371.168512px;}
.y166{bottom:371.958773px;}
.y10{bottom:382.303661px;}
.y3f{bottom:393.399052px;}
.y19{bottom:395.566005px;}
.y156{bottom:397.542170px;}
.y24{bottom:400.800416px;}
.y121{bottom:409.407197px;}
.y60{bottom:409.912748px;}
.y6e{bottom:409.912815px;}
.y143{bottom:420.349137px;}
.y3e{bottom:424.232974px;}
.y165{bottom:429.558770px;}
.y14c{bottom:429.568063px;}
.y1c{bottom:430.933293px;}
.yce{bottom:433.098452px;}
.y56{bottom:436.374785px;}
.y3{bottom:437.408514px;}
.y6f{bottom:437.911063px;}
.ye0{bottom:438.616667px;}
.y17f{bottom:444.090148px;}
.yf{bottom:445.591505px;}
.y23{bottom:448.428408px;}
.yca{bottom:448.929785px;}
.y1b{bottom:451.435249px;}
.y14a{bottom:455.103314px;}
.y17d{bottom:456.431668px;}
.y92{bottom:459.612291px;}
.y7a{bottom:460.807063px;}
.y3d{bottom:463.186697px;}
.y120{bottom:465.711303px;}
.y5f{bottom:472.012740px;}
.y6d{bottom:472.012807px;}
.y18{bottom:474.927873px;}
.y160{bottom:477.104388px;}
.ycd{bottom:480.622206px;}
.y55{bottom:481.932605px;}
.ybb{bottom:487.006619px;}
.yd1{bottom:487.407840px;}
.y75{bottom:489.145477px;}
.y14b{bottom:489.757928px;}
.ye5{bottom:490.225481px;}
.y3c{bottom:494.020618px;}
.ya6{bottom:501.336725px;}
.y22{bottom:503.379101px;}
.y14d{bottom:513.752671px;}
.y15f{bottom:520.376367px;}
.y12f{bottom:521.066757px;}
.y41{bottom:525.174719px;}
.y79{bottom:526.903077px;}
.ya5{bottom:533.214608px;}
.y71{bottom:534.261809px;}
.yd0{bottom:535.341809px;}
.y91{bottom:538.812282px;}
.yc9{bottom:546.129789px;}
.y61{bottom:549.796863px;}
.y21{bottom:551.007091px;}
.y134{bottom:552.360815px;}
.y138{bottom:552.653678px;}
.y147{bottom:553.069703px;}
.y17{bottom:554.289729px;}
.y40{bottom:559.014504px;}
.y2{bottom:559.088489px;}
.y15e{bottom:563.648357px;}
.ya4{bottom:565.092485px;}
.y17a{bottom:565.583874px;}
.ye{bottom:572.167194px;}
.yf8{bottom:574.993891px;}
.y131{bottom:577.169705px;}
.y2a{bottom:578.364604px;}
.y12e{bottom:589.466747px;}
.y130{bottom:596.123643px;}
.ya3{bottom:596.970363px;}
.y179{bottom:598.481418px;}
.y20{bottom:598.635082px;}
.y54{bottom:599.438730px;}
.y17b{bottom:599.840823px;}
.y32{bottom:604.069864px;}
.yf9{bottom:606.477918px;}
.y17e{bottom:611.961708px;}
.y90{bottom:618.012285px;}
.y128{bottom:618.293017px;}
.y100{bottom:618.950546px;}
.y13c{bottom:624.130125px;}
.y113{bottom:625.792584px;}
.yd{bottom:635.455039px;}
.y2b{bottom:638.421977px;}
.yc8{bottom:643.329780px;}
.y1f{bottom:646.263073px;}
.y127{bottom:648.893014px;}
.y68{bottom:649.379508px;}
.y15d{bottom:650.192359px;}
.y53{bottom:654.098787px;}
.y5d{bottom:655.066523px;}
.y78{bottom:659.095058px;}
.y33{bottom:663.039599px;}
.y116{bottom:666.389504px;}
.y126{bottom:679.493011px;}
.y178{bottom:681.408174px;}
.y150{bottom:682.982500px;}
.y136{bottom:684.325772px;}
.ya0{bottom:686.061340px;}
.y15c{bottom:693.464361px;}
.yd8{bottom:693.632357px;}
.y12d{bottom:693.866796px;}
.y2c{bottom:694.354439px;}
.y67{bottom:694.583090px;}
.y106{bottom:694.724993px;}
.y8f{bottom:697.212265px;}
.yff{bottom:698.312413px;}
.y133{bottom:698.501852px;}
.y135{bottom:698.743672px;}
.y114{bottom:704.388607px;}
.y8b{bottom:705.022296px;}
.y103{bottom:712.490541px;}
.y154{bottom:713.786453px;}
.y5c{bottom:717.166515px;}
.y149{bottom:723.293571px;}
.y77{bottom:725.191053px;}
.yd7{bottom:728.923340px;}
.y66{bottom:729.268939px;}
.y145{bottom:729.735284px;}
.y9f{bottom:730.986349px;}
.y15b{bottom:736.736351px;}
.y177{bottom:737.013056px;}
.yc7{bottom:740.529778px;}
.y45{bottom:745.448869px;}
.y105{bottom:752.286250px;}
.y140{bottom:757.721326px;}
.y102{bottom:758.048362px;}
.y14f{bottom:760.372412px;}
.yc{bottom:762.030728px;}
.y9e{bottom:763.048850px;}
.ye9{bottom:764.933026px;}
.y13b{bottom:770.271140px;}
.y153{bottom:771.347608px;}
.y8e{bottom:776.412267px;}
.yfe{bottom:777.674270px;}
.y15a{bottom:780.008341px;}
.y115{bottom:785.246635px;}
.y36{bottom:791.250658px;}
.y52{bottom:794.480679px;}
.y5e{bottom:794.950639px;}
.y9d{bottom:795.111351px;}
.yc0{bottom:796.367598px;}
.y12c{bottom:798.266799px;}
.y1e{bottom:801.423531px;}
.y34{bottom:804.044125px;}
.y35{bottom:809.160547px;}
.yec{bottom:814.004290px;}
.y13f{bottom:815.282583px;}
.y159{bottom:823.280340px;}
.yb{bottom:825.318582px;}
.y9c{bottom:827.173852px;}
.y14e{bottom:836.120296px;}
.ya2{bottom:838.900251px;}
.yde{bottom:839.605848px;}
.y30{bottom:842.631009px;}
.y132{bottom:844.642894px;}
.y1d{bottom:845.775404px;}
.yfb{bottom:852.474836px;}
.y17c{bottom:855.165926px;}
.y8d{bottom:855.612270px;}
.y123{bottom:859.117924px;}
.y125{bottom:859.154861px;}
.yea{bottom:859.935454px;}
.y12b{bottom:866.666801px;}
.y161{bottom:871.162263px;}
.y9b{bottom:874.236338px;}
.y144{bottom:875.876326px;}
.y14{bottom:878.203750px;}
.y5a{bottom:878.523053px;}
.y6c{bottom:878.523075px;}
.yb4{bottom:879.532519px;}
.y1{bottom:879.563858px;}
.ye2{bottom:879.933774px;}
.y87{bottom:884.284111px;}
.y44{bottom:885.830761px;}
.y122{bottom:889.717922px;}
.y124{bottom:889.754856px;}
.y80{bottom:892.980001px;}
.y7e{bottom:897.172707px;}
.yfa{bottom:898.032656px;}
.y9a{bottom:906.298817px;}
.y13{bottom:906.535633px;}
.yba{bottom:911.570750px;}
.yae{bottom:914.471417px;}
.y13a{bottom:916.412177px;}
.y152{bottom:930.532727px;}
.yc6{bottom:931.608418px;}
.ydf{bottom:932.688423px;}
.y8c{bottom:934.812272px;}
.y51{bottom:934.862571px;}
.y99{bottom:938.361318px;}
.y16{bottom:939.933072px;}
.y59{bottom:940.623045px;}
.y6b{bottom:940.623067px;}
.y2f{bottom:941.573787px;}
.y10d{bottom:944.812330px;}
.yc2{bottom:956.813785px;}
.yeb{bottom:957.672161px;}
.yda{bottom:959.513043px;}
.ye6{bottom:960.318784px;}
.y39{bottom:966.191381px;}
.y86{bottom:969.945630px;}
.yb9{bottom:974.552752px;}
.yad{bottom:977.453419px;}
.y7f{bottom:979.379992px;}
.yb3{bottom:979.666530px;}
.y7d{bottom:982.834226px;}
.y98{bottom:985.423816px;}
.y2e{bottom:1000.055333px;}
.y129{bottom:1011.761207px;}
.y97{bottom:1017.486317px;}
.y5b{bottom:1018.407168px;}
.y38{bottom:1024.672927px;}
.y12a{bottom:1025.140978px;}
.y10c{bottom:1025.182333px;}
.yb8{bottom:1037.534754px;}
.y146{bottom:1039.538000px;}
.yac{bottom:1040.435421px;}
.y112{bottom:1050.231144px;}
.y176{bottom:1053.711185px;}
.y85{bottom:1055.607149px;}
.y2d{bottom:1058.536879px;}
.y139{bottom:1062.553218px;}
.y96{bottom:1064.548814px;}
.y73{bottom:1070.319346px;}
.yc5{bottom:1071.423912px;}
.y104{bottom:1073.742525px;}
.y151{bottom:1076.673769px;}
.y15{bottom:1077.957077px;}
.y65{bottom:1080.712089px;}
.y37{bottom:1083.154473px;}
.y137{bottom:1083.472885px;}
.yc1{bottom:1088.015199px;}
.yd9{bottom:1089.095199px;}
.yc3{bottom:1090.274057px;}
.ydb{bottom:1091.354057px;}
.y95{bottom:1096.611315px;}
.yfd{bottom:1110.683096px;}
.y101{bottom:1122.456486px;}
.y94{bottom:1128.673816px;}
.y69{bottom:1129.603933px;}
.y72{bottom:1132.436926px;}
.yc4{bottom:1133.541492px;}
.ycf{bottom:1134.621497px;}
.yfc{bottom:1145.368945px;}
.hf{height:15.333339px;}
.h49{height:26.259492px;}
.h1b{height:31.630752px;}
.h12{height:32.594823px;}
.h11{height:33.007997px;}
.h55{height:33.604806px;}
.h56{height:37.002014px;}
.hb{height:37.369281px;}
.h40{height:39.313478px;}
.h47{height:40.261498px;}
.h54{height:43.704613px;}
.h39{height:43.710938px;}
.h52{height:43.888245px;}
.h53{height:50.499026px;}
.h7{height:51.600827px;}
.h13{height:60.461109px;}
.h30{height:61.154297px;}
.h5{height:61.195312px;}
.h1d{height:63.169687px;}
.h31{height:64.271484px;}
.h29{height:64.474104px;}
.h42{height:65.566408px;}
.h14{height:66.383264px;}
.h41{height:74.258789px;}
.he{height:76.299436px;}
.h27{height:77.343750px;}
.hd{height:80.982069px;}
.h35{height:82.875937px;}
.h15{height:83.277481px;}
.h4a{height:83.319551px;}
.h26{height:84.375003px;}
.h34{height:84.528109px;}
.hc{height:86.996052px;}
.h3b{height:87.421876px;}
.h36{height:91.792972px;}
.ha{height:91.816407px;}
.h37{height:92.230087px;}
.h3e{height:96.164068px;}
.h1a{height:96.820403px;}
.h3f{height:97.081861px;}
.h51{height:99.773441px;}
.h4e{height:99.939729px;}
.h4d{height:100.291877px;}
.h2d{height:100.998052px;}
.h4b{height:105.028689px;}
.h17{height:105.588868px;}
.h20{height:110.179691px;}
.h38{height:110.676097px;}
.h10{height:114.724603px;}
.h19{height:116.402343px;}
.h2{height:126.000000px;}
.h2e{height:128.542968px;}
.h4{height:130.500009px;}
.h1e{height:131.986084px;}
.h50{height:133.500008px;}
.h3a{height:137.188481px;}
.h18{height:137.724614px;}
.h33{height:139.875009px;}
.h3{height:144.000009px;}
.h9{height:144.610844px;}
.h2a{height:146.906259px;}
.h4f{height:150.521265px;}
.h22{height:152.955005px;}
.h21{height:153.000000px;}
.h46{height:155.859384px;}
.h23{height:156.041987px;}
.h45{height:157.974619px;}
.h44{height:158.531259px;}
.h6{height:177.903532px;}
.h43{height:182.917979px;}
.h4c{height:183.632814px;}
.h3c{height:195.389659px;}
.h25{height:201.996105px;}
.h2b{height:204.245602px;}
.h24{height:220.359382px;}
.h28{height:227.003174px;}
.h32{height:229.541014px;}
.h1f{height:231.790525px;}
.h3d{height:235.880867px;}
.h2c{height:247.904305px;}
.h48{height:266.221678px;}
.h2f{height:275.449228px;}
.h1c{height:278.892343px;}
.h16{height:298.357431px;}
.h58{height:306.000001px;}
.h8{height:310.347657px;}
.h1{height:360.000003px;}
.h57{height:504.000005px;}
.h0{height:1215.000000px;}
.w0{width:2160.000000px;}
.x0{left:0.000000px;}
.x99{left:25.489962px;}
.x78{left:27.757205px;}
.xe7{left:37.015747px;}
.x5f{left:38.022659px;}
.x25{left:49.148387px;}
.xe8{left:54.000002px;}
.xdd{left:57.732285px;}
.x77{left:61.399805px;}
.xe9{left:75.375002px;}
.xe0{left:79.107286px;}
.x5a{left:82.172601px;}
.xa7{left:83.754925px;}
.xda{left:85.499766px;}
.xa{left:87.368141px;}
.xe1{left:89.276150px;}
.xdb{left:90.682090px;}
.x2{left:92.220477px;}
.xac{left:95.004926px;}
.x8{left:100.683899px;}
.xbe{left:107.147085px;}
.xb{left:108.689969px;}
.x36{left:110.959377px;}
.xcc{left:118.116416px;}
.xab{left:119.754926px;}
.xd7{left:129.568733px;}
.x35{left:139.264290px;}
.x55{left:146.700002px;}
.xcd{left:150.867189px;}
.x70{left:170.077809px;}
.xbc{left:178.877256px;}
.x54{left:183.340078px;}
.xe{left:185.924413px;}
.x64{left:189.419805px;}
.x81{left:190.680631px;}
.xbd{left:191.978950px;}
.xaa{left:193.260831px;}
.xe2{left:197.872926px;}
.xc3{left:200.081979px;}
.xc4{left:208.830586px;}
.x6f{left:213.633428px;}
.x58{left:220.272901px;}
.x76{left:226.957141px;}
.x65{left:230.488635px;}
.x8c{left:233.362281px;}
.x4{left:236.363985px;}
.x74{left:247.074481px;}
.xc5{left:249.961848px;}
.x5{left:251.957944px;}
.x1e{left:258.008566px;}
.x59{left:264.375245px;}
.x38{left:284.190900px;}
.xd{left:297.880570px;}
.x39{left:303.142334px;}
.xe4{left:304.642354px;}
.x4f{left:306.630966px;}
.x75{left:313.984929px;}
.xc{left:345.575149px;}
.x56{left:356.231593px;}
.x4b{left:370.558834px;}
.x73{left:371.847439px;}
.x84{left:375.545643px;}
.x94{left:379.934886px;}
.x6{left:383.136774px;}
.xce{left:393.869790px;}
.x95{left:396.487565px;}
.x1d{left:401.940182px;}
.x9b{left:404.627030px;}
.x98{left:406.406938px;}
.x5e{left:413.446547px;}
.x83{left:414.858845px;}
.x1f{left:421.108506px;}
.xe3{left:427.572188px;}
.x7a{left:438.316510px;}
.xc2{left:446.931887px;}
.xc8{left:458.384087px;}
.x7b{left:469.476836px;}
.xb1{left:495.955073px;}
.xad{left:507.451786px;}
.xb4{left:513.639073px;}
.xb2{left:514.993044px;}
.x3{left:540.000130px;}
.x97{left:551.498271px;}
.x7{left:554.828362px;}
.x79{left:559.292013px;}
.x18{left:569.555151px;}
.x96{left:599.490987px;}
.x49{left:608.482201px;}
.x20{left:633.606995px;}
.x37{left:636.516065px;}
.xd2{left:641.523753px;}
.xae{left:661.785771px;}
.x82{left:663.580067px;}
.x26{left:666.014904px;}
.x1b{left:671.289765px;}
.x1c{left:689.877276px;}
.x27{left:693.522990px;}
.x21{left:696.110917px;}
.xa6{left:709.942928px;}
.x22{left:722.494166px;}
.x28{left:731.716084px;}
.x2a{left:738.083604px;}
.x1a{left:754.520438px;}
.x29{left:758.496204px;}
.x4e{left:772.120539px;}
.x4d{left:790.331134px;}
.xdf{left:797.899751px;}
.x47{left:812.708109px;}
.x8e{left:814.570717px;}
.x5c{left:818.772403px;}
.x19{left:824.167240px;}
.xaf{left:828.247358px;}
.x48{left:831.798083px;}
.x8a{left:838.818197px;}
.x8b{left:843.975179px;}
.xd6{left:851.345183px;}
.x8d{left:860.193472px;}
.x6d{left:872.840052px;}
.x88{left:891.315713px;}
.x85{left:899.493799px;}
.x86{left:903.014024px;}
.x6b{left:904.204715px;}
.xd5{left:907.956367px;}
.xc9{left:919.521138px;}
.x1{left:932.787424px;}
.xd1{left:940.497900px;}
.xcf{left:941.744502px;}
.x6c{left:963.254596px;}
.xba{left:968.543233px;}
.xd4{left:976.440372px;}
.xd0{left:977.744503px;}
.xbb{left:980.834583px;}
.x23{left:986.734089px;}
.xd3{left:990.592890px;}
.xb0{left:994.737632px;}
.x6e{left:1014.891512px;}
.x87{left:1016.738133px;}
.x4a{left:1025.194252px;}
.x89{left:1037.705928px;}
.xbf{left:1041.843042px;}
.xf{left:1048.514146px;}
.xc0{left:1049.778227px;}
.x16{left:1081.545166px;}
.x60{left:1114.762425px;}
.x62{left:1121.512426px;}
.x63{left:1122.935138px;}
.x24{left:1127.328314px;}
.x2b{left:1147.193105px;}
.x6a{left:1150.810334px;}
.x91{left:1154.508538px;}
.x61{left:1158.750037px;}
.x5b{left:1182.428385px;}
.x10{left:1192.174393px;}
.xdc{left:1196.010826px;}
.x2c{left:1198.428732px;}
.x68{left:1199.467005px;}
.x7f{left:1202.479696px;}
.x2d{left:1205.930941px;}
.xb3{left:1210.372510px;}
.x7e{left:1215.768763px;}
.x7d{left:1217.825398px;}
.x93{left:1218.882195px;}
.xc1{left:1220.436170px;}
.x50{left:1222.385026px;}
.xd9{left:1229.174252px;}
.xc7{left:1231.888370px;}
.x66{left:1236.985728px;}
.x57{left:1251.000040px;}
.x51{left:1253.545353px;}
.x2e{left:1255.873664px;}
.x67{left:1306.085622px;}
.x9a{left:1308.532559px;}
.xd8{left:1314.537061px;}
.x46{left:1318.570467px;}
.x14{left:1326.614438px;}
.x12{left:1330.512600px;}
.x72{left:1336.122848px;}
.x80{left:1337.407187px;}
.x8f{left:1339.821053px;}
.x69{left:1341.518465px;}
.xc6{left:1376.778137px;}
.x5d{left:1395.408980px;}
.x15{left:1402.052546px;}
.x71{left:1415.311240px;}
.x13{left:1446.318035px;}
.xca{left:1453.803690px;}
.xde{left:1462.798284px;}
.xa2{left:1484.928576px;}
.x7c{left:1492.406710px;}
.xcb{left:1527.721013px;}
.xa8{left:1530.774308px;}
.xa9{left:1546.449293px;}
.xb5{left:1552.249608px;}
.xe5{left:1555.735606px;}
.xe6{left:1567.665163px;}
.xb6{left:1574.184714px;}
.xb8{left:1585.569403px;}
.xa1{left:1587.863371px;}
.xb9{left:1598.313543px;}
.xb7{left:1606.826232px;}
.x30{left:1610.268310px;}
.x31{left:1630.013214px;}
.x52{left:1645.994694px;}
.x90{left:1651.507857px;}
.xa0{left:1653.051300px;}
.x2f{left:1668.955638px;}
.x17{left:1672.448898px;}
.x3a{left:1693.810044px;}
.x53{left:1696.535536px;}
.x92{left:1699.716919px;}
.x32{left:1700.892662px;}
.x33{left:1709.184958px;}
.x34{left:1722.906876px;}
.x11{left:1740.395834px;}
.x9{left:1749.230848px;}
.x3d{left:1754.029811px;}
.x4c{left:1755.298761px;}
.x3e{left:1765.986244px;}
.xa5{left:1771.390079px;}
.x3b{left:1775.433443px;}
.x9c{left:1792.689717px;}
.x40{left:1817.567079px;}
.x9d{left:1822.251422px;}
.x44{left:1853.812184px;}
.x45{left:1872.100095px;}
.x3f{left:1877.750779px;}
.x41{left:1880.464391px;}
.x43{left:1885.067194px;}
.xa3{left:1900.684827px;}
.x42{left:1905.919711px;}
.xa4{left:1930.246532px;}
.x3c{left:1937.845975px;}
.x9e{left:1968.881829px;}
.x9f{left:1987.971802px;}
@media print{
.v2{vertical-align:-173.837666pt;}
.v1{vertical-align:-66.778322pt;}
.v8{vertical-align:-61.590266pt;}
.v7{vertical-align:-27.250285pt;}
.v4{vertical-align:-10.887028pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:16.751509pt;}
.v6{vertical-align:37.208001pt;}
.v3{vertical-align:144.470285pt;}
.ls0{letter-spacing:0.000000pt;}
.ls7{letter-spacing:46.695413pt;}
.ls6{letter-spacing:71.975195pt;}
.ls5{letter-spacing:72.000393pt;}
.ls3{letter-spacing:74.674995pt;}
.ls4{letter-spacing:96.000395pt;}
.ls2{letter-spacing:142.924425pt;}
.ls1{letter-spacing:142.943760pt;}
.ws7{word-spacing:-44.202669pt;}
.wsf{word-spacing:-36.726508pt;}
.ws0{word-spacing:-36.693336pt;}
.ws6{word-spacing:-25.300000pt;}
.wsc{word-spacing:-25.114667pt;}
.wsd{word-spacing:-22.160001pt;}
.ws1{word-spacing:-20.682667pt;}
.wsa{word-spacing:-14.773333pt;}
.ws8{word-spacing:-0.288000pt;}
.ws2{word-spacing:0.000000pt;}
.wsb{word-spacing:160.255498pt;}
.ws9{word-spacing:429.378807pt;}
.ws3{word-spacing:627.646152pt;}
.ws4{word-spacing:1053.181862pt;}
.wse{word-spacing:1184.991365pt;}
.ws5{word-spacing:2840.316031pt;}
._f{margin-left:-5189.982366pt;}
._15{margin-left:-1413.655451pt;}
._25{margin-left:-35.088427pt;}
._24{margin-left:-26.880000pt;}
._4{margin-left:-22.400000pt;}
._12{margin-left:-20.650668pt;}
._7{margin-left:-17.749334pt;}
._d{margin-left:-16.062935pt;}
._3{margin-left:-14.933333pt;}
._e{margin-left:-14.010667pt;}
._26{margin-left:-12.666667pt;}
._9{margin-left:-11.749217pt;}
._23{margin-left:-8.516906pt;}
._0{margin-left:-6.400000pt;}
._8{margin-left:-4.949334pt;}
._2{margin-left:-3.840000pt;}
._5{margin-left:-2.090667pt;}
._b{margin-left:-1.104001pt;}
._6{width:1.237333pt;}
._a{width:2.362667pt;}
._c{width:3.585048pt;}
._1{width:6.400000pt;}
._1f{width:9.872427pt;}
._20{width:11.984074pt;}
._21{width:24.745174pt;}
._22{width:26.933148pt;}
._1a{width:37.427841pt;}
._1b{width:38.385494pt;}
._16{width:41.797548pt;}
._17{width:55.940268pt;}
._18{width:57.261654pt;}
._1d{width:81.148375pt;}
._1c{width:82.045869pt;}
._19{width:115.180376pt;}
._11{width:470.066215pt;}
._14{width:694.379270pt;}
._13{width:1460.417963pt;}
._10{width:2091.749251pt;}
._1e{width:2350.542652pt;}
.fse{font-size:17.813333pt;}
.fs3a{font-size:30.506667pt;}
.fs19{font-size:36.746667pt;}
.fs11{font-size:37.866665pt;}
.fs10{font-size:38.346665pt;}
.fs42{font-size:39.040001pt;}
.fs43{font-size:42.986669pt;}
.fsa{font-size:43.413337pt;}
.fs38{font-size:46.773337pt;}
.fs34{font-size:48.000002pt;}
.fs41{font-size:50.773338pt;}
.fs3f{font-size:50.986670pt;}
.fs31{font-size:53.333334pt;}
.fs40{font-size:58.666670pt;}
.fs6{font-size:59.946674pt;}
.fs12{font-size:70.240006pt;}
.fs1b{font-size:73.386666pt;}
.fs4{font-size:74.666666pt;}
.fs13{font-size:77.120002pt;}
.fs26{font-size:78.720003pt;}
.fs36{font-size:80.000003pt;}
.fsd{font-size:88.640003pt;}
.fs35{font-size:90.666667pt;}
.fs24{font-size:91.666667pt;}
.fsc{font-size:94.079999pt;}
.fs2b{font-size:95.573335pt;}
.fs14{font-size:96.746667pt;}
.fs23{font-size:100.000003pt;}
.fsb{font-size:101.066675pt;}
.fs2d{font-size:101.119999pt;}
.fs9{font-size:106.666667pt;}
.fs2e{font-size:112.000004pt;}
.fs18{font-size:112.480004pt;}
.fs2f{font-size:112.533344pt;}
.fs28{font-size:117.333340pt;}
.fs2c{font-size:118.080000pt;}
.fs16{font-size:122.666668pt;}
.fs1e{font-size:128.000004pt;}
.fs3c{font-size:128.213336pt;}
.fs3e{font-size:132.586672pt;}
.fsf{font-size:133.280004pt;}
.fs30{font-size:135.040004pt;}
.fs1{font-size:149.333333pt;}
.fs1c{font-size:153.333333pt;}
.fs3{font-size:154.666677pt;}
.fs17{font-size:160.000005pt;}
.fs8{font-size:168.000005pt;}
.fs2{font-size:170.666677pt;}
.fs32{font-size:176.000006pt;}
.fs20{font-size:181.280006pt;}
.fs1f{font-size:181.333334pt;}
.fs3d{font-size:192.426686pt;}
.fs37{font-size:202.666678pt;}
.fs3b{font-size:213.333335pt;}
.fs5{font-size:217.066687pt;}
.fs22{font-size:234.666680pt;}
.fs25{font-size:237.280008pt;}
.fs33{font-size:250.666680pt;}
.fs21{font-size:256.000008pt;}
.fs2a{font-size:266.666665pt;}
.fs1d{font-size:269.280009pt;}
.fs27{font-size:288.000009pt;}
.fs39{font-size:309.280010pt;}
.fs29{font-size:320.000010pt;}
.fs1a{font-size:324.000010pt;}
.fs15{font-size:346.613355pt;}
.fs45{font-size:362.666668pt;}
.fs7{font-size:378.666668pt;}
.fs0{font-size:426.666670pt;}
.fs44{font-size:597.333339pt;}
.y0{bottom:0.000000pt;}
.y93{bottom:27.239768pt;}
.ycc{bottom:28.439368pt;}
.y117{bottom:33.542113pt;}
.yf7{bottom:34.847207pt;}
.y11f{bottom:36.453477pt;}
.y107{bottom:39.228567pt;}
.y1a{bottom:39.399969pt;}
.y49{bottom:42.219387pt;}
.y4f{bottom:42.234947pt;}
.y10e{bottom:43.310167pt;}
.y6a{bottom:47.510169pt;}
.y16f{bottom:50.076277pt;}
.y8{bottom:50.407567pt;}
.y50{bottom:51.562669pt;}
.yed{bottom:52.760727pt;}
.yf5{bottom:54.800768pt;}
.y158{bottom:62.745867pt;}
.ybf{bottom:64.174727pt;}
.ya{bottom:68.519872pt;}
.yd6{bottom:68.806778pt;}
.yab{bottom:68.974393pt;}
.y74{bottom:69.649868pt;}
.ye3{bottom:70.609872pt;}
.yf6{bottom:75.167208pt;}
.ya1{bottom:77.239870pt;}
.y8a{bottom:81.701068pt;}
.y10b{bottom:82.512818pt;}
.y84{bottom:86.271898pt;}
.y9{bottom:90.919870pt;}
.yb2{bottom:92.723118pt;}
.yd5{bottom:95.683749pt;}
.y31{bottom:96.155871pt;}
.ye8{bottom:96.346941pt;}
.yaa{bottom:97.310289pt;}
.y48{bottom:97.419389pt;}
.y4e{bottom:97.434949pt;}
.y7{bottom:103.767549pt;}
.y173{bottom:107.078879pt;}
.y10a{bottom:114.512819pt;}
.ybe{bottom:119.390349pt;}
.yd4{bottom:122.560729pt;}
.yf4{bottom:125.292699pt;}
.ya9{bottom:125.646179pt;}
.y157{bottom:126.745872pt;}
.y16e{bottom:126.876266pt;}
.y29{bottom:130.876050pt;}
.y11e{bottom:138.460560pt;}
.y89{bottom:140.066670pt;}
.y63{bottom:146.473380pt;}
.y109{bottom:146.512820pt;}
.ye7{bottom:147.512532pt;}
.yb1{bottom:147.938730pt;}
.y16b{bottom:149.028970pt;}
.yd3{bottom:149.437700pt;}
.y47{bottom:152.619380pt;}
.y4d{bottom:152.634940pt;}
.y11d{bottom:152.860560pt;}
.yf3{bottom:153.628600pt;}
.ya8{bottom:153.982070pt;}
.y83{bottom:156.671900pt;}
.y6{bottom:157.127530pt;}
.y58{bottom:158.849419pt;}
.y16d{bottom:165.276271pt;}
.y76{bottom:165.279971pt;}
.y11c{bottom:167.260561pt;}
.y12{bottom:171.057891pt;}
.y28{bottom:173.212041pt;}
.y57{bottom:174.289411pt;}
.ybd{bottom:174.605986pt;}
.yd2{bottom:176.314673pt;}
.y11b{bottom:181.660561pt;}
.y111{bottom:181.814421pt;}
.yf2{bottom:181.964481pt;}
.y172{bottom:183.878867pt;}
.y16a{bottom:187.428961pt;}
.y11a{bottom:196.060556pt;}
.y62{bottom:201.673373pt;}
.y142{bottom:201.690823pt;}
.y148{bottom:202.060573pt;}
.y16c{bottom:203.676272pt;}
.yb7{bottom:205.713902pt;}
.y46{bottom:207.819373pt;}
.y4c{bottom:207.834933pt;}
.yf1{bottom:210.300367pt;}
.y119{bottom:210.460558pt;}
.y27{bottom:215.548033pt;}
.y88{bottom:216.210242pt;}
.y171{bottom:222.278873pt;}
.y118{bottom:224.860557pt;}
.y82{bottom:227.071903pt;}
.y11{bottom:227.313763pt;}
.y13e{bottom:227.670624pt;}
.ybc{bottom:229.821613pt;}
.y110{bottom:231.974429pt;}
.y7c{bottom:233.379283pt;}
.y181{bottom:237.565683pt;}
.yf0{bottom:238.636263pt;}
.y169{bottom:247.162283pt;}
.y164{bottom:249.143177pt;}
.y141{bottom:252.856235pt;}
.y155{bottom:253.226045pt;}
.yb0{bottom:258.369964pt;}
.y170{bottom:260.678874pt;}
.yb6{bottom:260.929744pt;}
.ydd{bottom:262.966729pt;}
.y175{bottom:264.910718pt;}
.y4b{bottom:266.568584pt;}
.yef{bottom:266.972154pt;}
.y64{bottom:270.814776pt;}
.y5{bottom:271.047554pt;}
.y26{bottom:271.595054pt;}
.y43{bottom:273.750359pt;}
.y70{bottom:276.151024pt;}
.ye1{bottom:277.875174pt;}
.y13d{bottom:278.836215pt;}
.y10f{bottom:282.134424pt;}
.y168{bottom:285.562280pt;}
.y3b{bottom:286.047445pt;}
.y163{bottom:287.607175pt;}
.y7b{bottom:292.115085pt;}
.yee{bottom:295.308045pt;}
.y81{bottom:297.471905pt;}
.y180{bottom:300.125678pt;}
.ya7{bottom:310.897708pt;}
.ye4{bottom:311.254309pt;}
.y42{bottom:311.478075pt;}
.ycb{bottom:312.648705pt;}
.y3a{bottom:313.455374pt;}
.yaf{bottom:313.585575pt;}
.y25{bottom:313.931045pt;}
.y108{bottom:314.134425pt;}
.y174{bottom:316.110716pt;}
.yb5{bottom:316.145578pt;}
.ydc{bottom:316.742320pt;}
.y167{bottom:323.962276pt;}
.y162{bottom:326.071174pt;}
.y4a{bottom:328.968578pt;}
.y4{bottom:329.927566pt;}
.y166{bottom:330.630020pt;}
.y10{bottom:339.825476pt;}
.y3f{bottom:349.688047pt;}
.y19{bottom:351.614227pt;}
.y156{bottom:353.370818pt;}
.y24{bottom:356.267037pt;}
.y121{bottom:363.917508pt;}
.y60{bottom:364.366887pt;}
.y6e{bottom:364.366947pt;}
.y143{bottom:373.643677pt;}
.y3e{bottom:377.095977pt;}
.y165{bottom:381.830018pt;}
.y14c{bottom:381.838279pt;}
.y1c{bottom:383.051816pt;}
.yce{bottom:384.976402pt;}
.y56{bottom:387.888698pt;}
.y3{bottom:388.807568pt;}
.y6f{bottom:389.254278pt;}
.ye0{bottom:389.881482pt;}
.y17f{bottom:394.746798pt;}
.yf{bottom:396.081338pt;}
.y23{bottom:398.603029pt;}
.yca{bottom:399.048698pt;}
.y1b{bottom:401.275777pt;}
.y14a{bottom:404.536279pt;}
.y17d{bottom:405.717038pt;}
.y92{bottom:408.544259pt;}
.y7a{bottom:409.606279pt;}
.y3d{bottom:411.721509pt;}
.y120{bottom:413.965603pt;}
.y5f{bottom:419.566880pt;}
.y6d{bottom:419.566940pt;}
.y18{bottom:422.158109pt;}
.y160{bottom:424.092789pt;}
.ycd{bottom:427.219739pt;}
.y55{bottom:428.384538pt;}
.ybb{bottom:432.894772pt;}
.yd1{bottom:433.251413pt;}
.y75{bottom:434.795979pt;}
.y14b{bottom:435.340380pt;}
.ye5{bottom:435.755983pt;}
.y3c{bottom:439.129438pt;}
.ya6{bottom:445.632645pt;}
.y22{bottom:447.448090pt;}
.y14d{bottom:456.669041pt;}
.y15f{bottom:462.556770pt;}
.y12f{bottom:463.170450pt;}
.y41{bottom:466.821972pt;}
.y79{bottom:468.358290pt;}
.ya5{bottom:473.968541pt;}
.y71{bottom:474.899386pt;}
.yd0{bottom:475.859386pt;}
.y91{bottom:478.944251pt;}
.yc9{bottom:485.448701pt;}
.y61{bottom:488.708323pt;}
.y21{bottom:489.784081pt;}
.y134{bottom:490.987391pt;}
.y138{bottom:491.247714pt;}
.y147{bottom:491.617514pt;}
.y17{bottom:492.701981pt;}
.y40{bottom:496.901781pt;}
.y2{bottom:496.967545pt;}
.y15e{bottom:501.020761pt;}
.ya4{bottom:502.304432pt;}
.y17a{bottom:502.741222pt;}
.ye{bottom:508.593062pt;}
.yf8{bottom:511.105681pt;}
.y131{bottom:513.039738pt;}
.y2a{bottom:514.101870pt;}
.y12e{bottom:523.970442pt;}
.y130{bottom:529.887682pt;}
.ya3{bottom:530.640322pt;}
.y179{bottom:531.983482pt;}
.y20{bottom:532.120072pt;}
.y54{bottom:532.834426pt;}
.y17b{bottom:533.191843pt;}
.y32{bottom:536.950991pt;}
.yf9{bottom:539.091483pt;}
.y17e{bottom:543.965963pt;}
.y90{bottom:549.344253pt;}
.y128{bottom:549.593793pt;}
.y100{bottom:550.178263pt;}
.y13c{bottom:554.782333pt;}
.y113{bottom:556.260074pt;}
.yd{bottom:564.848924pt;}
.y2b{bottom:567.486202pt;}
.yc8{bottom:571.848694pt;}
.y1f{bottom:574.456065pt;}
.y127{bottom:576.793790pt;}
.y68{bottom:577.226229pt;}
.y15d{bottom:577.948764pt;}
.y53{bottom:581.421144pt;}
.y5d{bottom:582.281354pt;}
.y78{bottom:585.862274pt;}
.y33{bottom:589.368532pt;}
.y116{bottom:592.346225pt;}
.y126{bottom:603.993787pt;}
.y178{bottom:605.696155pt;}
.y150{bottom:607.095556pt;}
.y136{bottom:608.289575pt;}
.ya0{bottom:609.832302pt;}
.y15c{bottom:616.412765pt;}
.yd8{bottom:616.562095pt;}
.y12d{bottom:616.770485pt;}
.y2c{bottom:617.203946pt;}
.y67{bottom:617.407191pt;}
.y106{bottom:617.533327pt;}
.y8f{bottom:619.744235pt;}
.yff{bottom:620.722145pt;}
.y133{bottom:620.890535pt;}
.y135{bottom:621.105486pt;}
.y114{bottom:626.123206pt;}
.y8b{bottom:626.686485pt;}
.y103{bottom:633.324926pt;}
.y154{bottom:634.476847pt;}
.y5c{bottom:637.481347pt;}
.y149{bottom:642.927619pt;}
.y77{bottom:644.614269pt;}
.yd7{bottom:647.931858pt;}
.y66{bottom:648.239057pt;}
.y145{bottom:648.653586pt;}
.y9f{bottom:649.765643pt;}
.y15b{bottom:654.876756pt;}
.y177{bottom:655.122716pt;}
.yc7{bottom:658.248692pt;}
.y45{bottom:662.621217pt;}
.y105{bottom:668.698889pt;}
.y140{bottom:673.530068pt;}
.y102{bottom:673.820766pt;}
.y14f{bottom:675.886588pt;}
.yc{bottom:677.360647pt;}
.y9e{bottom:678.265644pt;}
.ye9{bottom:679.940467pt;}
.y13b{bottom:684.685457pt;}
.y153{bottom:685.642318pt;}
.y8e{bottom:690.144238pt;}
.yfe{bottom:691.266018pt;}
.y15a{bottom:693.340748pt;}
.y115{bottom:697.997009pt;}
.y36{bottom:703.333918pt;}
.y52{bottom:706.205048pt;}
.y5e{bottom:706.622790pt;}
.y9d{bottom:706.765645pt;}
.yc0{bottom:707.882309pt;}
.y12c{bottom:709.570488pt;}
.y1e{bottom:712.376472pt;}
.y34{bottom:714.705889pt;}
.y35{bottom:719.253819pt;}
.yec{bottom:723.559369pt;}
.y13f{bottom:724.695630pt;}
.y159{bottom:731.804747pt;}
.yb{bottom:733.616517pt;}
.y9c{bottom:735.265646pt;}
.y14e{bottom:743.218041pt;}
.ya2{bottom:745.689112pt;}
.yde{bottom:746.316309pt;}
.y30{bottom:749.005341pt;}
.y132{bottom:750.793683pt;}
.y1d{bottom:751.800359pt;}
.yfb{bottom:757.755410pt;}
.y17c{bottom:760.147490pt;}
.y8d{bottom:760.544240pt;}
.y123{bottom:763.660377pt;}
.y125{bottom:763.693210pt;}
.yea{bottom:764.387070pt;}
.y12b{bottom:770.370490pt;}
.y161{bottom:774.366456pt;}
.y9b{bottom:777.098967pt;}
.y144{bottom:778.556734pt;}
.y14{bottom:780.625555pt;}
.y5a{bottom:780.909380pt;}
.y6c{bottom:780.909400pt;}
.yb4{bottom:781.806683pt;}
.y1{bottom:781.834540pt;}
.ye2{bottom:782.163354pt;}
.y87{bottom:786.030321pt;}
.y44{bottom:787.405121pt;}
.y122{bottom:790.860375pt;}
.y124{bottom:790.893206pt;}
.y80{bottom:793.760001pt;}
.y7e{bottom:797.486851pt;}
.yfa{bottom:798.251250pt;}
.y9a{bottom:805.598948pt;}
.y13{bottom:805.809451pt;}
.yba{bottom:810.285111pt;}
.yae{bottom:812.863481pt;}
.y13a{bottom:814.588602pt;}
.y152{bottom:827.140202pt;}
.yc6{bottom:828.096372pt;}
.ydf{bottom:829.056376pt;}
.y8c{bottom:830.944242pt;}
.y51{bottom:830.988952pt;}
.y99{bottom:834.098949pt;}
.y16{bottom:835.496064pt;}
.y59{bottom:836.109373pt;}
.y6b{bottom:836.109393pt;}
.y2f{bottom:836.954477pt;}
.y10d{bottom:839.833182pt;}
.yc2{bottom:850.501143pt;}
.yeb{bottom:851.264143pt;}
.yda{bottom:852.900483pt;}
.ye6{bottom:853.616697pt;}
.y39{bottom:858.836783pt;}
.y86{bottom:862.173893pt;}
.yb9{bottom:866.269113pt;}
.yad{bottom:868.847483pt;}
.y7f{bottom:870.559993pt;}
.yb3{bottom:870.814693pt;}
.y7d{bottom:873.630423pt;}
.y98{bottom:875.932280pt;}
.y2e{bottom:888.938074pt;}
.y129{bottom:899.343295pt;}
.y97{bottom:904.432281pt;}
.y5b{bottom:905.250816pt;}
.y38{bottom:910.820380pt;}
.y12a{bottom:911.236425pt;}
.y10c{bottom:911.273185pt;}
.yb8{bottom:922.253115pt;}
.y146{bottom:924.033778pt;}
.yac{bottom:924.831485pt;}
.y112{bottom:933.538794pt;}
.y176{bottom:936.632164pt;}
.y85{bottom:938.317465pt;}
.y2d{bottom:940.921671pt;}
.y139{bottom:944.491750pt;}
.y96{bottom:946.265613pt;}
.y73{bottom:951.394974pt;}
.yc5{bottom:952.376811pt;}
.y104{bottom:954.437800pt;}
.y151{bottom:957.043350pt;}
.y15{bottom:958.184068pt;}
.y65{bottom:960.632968pt;}
.y37{bottom:962.803976pt;}
.y137{bottom:963.087009pt;}
.yc1{bottom:967.124621pt;}
.yd9{bottom:968.084621pt;}
.yc3{bottom:969.132495pt;}
.ydb{bottom:970.092495pt;}
.y95{bottom:974.765614pt;}
.yfd{bottom:987.273863pt;}
.y101{bottom:997.739098pt;}
.y94{bottom:1003.265615pt;}
.y69{bottom:1004.092385pt;}
.y72{bottom:1006.610601pt;}
.yc4{bottom:1007.592438pt;}
.ycf{bottom:1008.552442pt;}
.yfc{bottom:1018.105729pt;}
.hf{height:13.629635pt;}
.h49{height:23.341771pt;}
.h1b{height:28.116224pt;}
.h12{height:28.973176pt;}
.h11{height:29.340442pt;}
.h55{height:29.870938pt;}
.h56{height:32.890679pt;}
.hb{height:33.217139pt;}
.h40{height:34.945314pt;}
.h47{height:35.787998pt;}
.h54{height:38.848545pt;}
.h39{height:38.854167pt;}
.h52{height:39.011773pt;}
.h53{height:44.888023pt;}
.h7{height:45.867401pt;}
.h13{height:53.743208pt;}
.h30{height:54.359375pt;}
.h5{height:54.395833pt;}
.h1d{height:56.150833pt;}
.h31{height:57.130208pt;}
.h29{height:57.310314pt;}
.h42{height:58.281252pt;}
.h14{height:59.007346pt;}
.h41{height:66.007813pt;}
.he{height:67.821721pt;}
.h27{height:68.750000pt;}
.hd{height:71.984062pt;}
.h35{height:73.667499pt;}
.h15{height:74.024427pt;}
.h4a{height:74.061823pt;}
.h26{height:75.000002pt;}
.h34{height:75.136096pt;}
.hc{height:77.329824pt;}
.h3b{height:77.708334pt;}
.h36{height:81.593753pt;}
.ha{height:81.614584pt;}
.h37{height:81.982299pt;}
.h3e{height:85.479171pt;}
.h1a{height:86.062581pt;}
.h3f{height:86.294987pt;}
.h51{height:88.687503pt;}
.h4e{height:88.835314pt;}
.h4d{height:89.148335pt;}
.h2d{height:89.776047pt;}
.h4b{height:93.358834pt;}
.h17{height:93.856772pt;}
.h20{height:97.937503pt;}
.h38{height:98.378753pt;}
.h10{height:101.977425pt;}
.h19{height:103.468750pt;}
.h2{height:112.000000pt;}
.h2e{height:114.260416pt;}
.h4{height:116.000008pt;}
.h1e{height:117.320963pt;}
.h50{height:118.666674pt;}
.h3a{height:121.945316pt;}
.h18{height:122.421879pt;}
.h33{height:124.333341pt;}
.h3{height:128.000008pt;}
.h9{height:128.542973pt;}
.h2a{height:130.583342pt;}
.h4f{height:133.796680pt;}
.h22{height:135.960004pt;}
.h21{height:136.000000pt;}
.h46{height:138.541675pt;}
.h23{height:138.703989pt;}
.h45{height:140.421883pt;}
.h44{height:140.916675pt;}
.h6{height:158.136473pt;}
.h43{height:162.593759pt;}
.h4c{height:163.229168pt;}
.h3c{height:173.679697pt;}
.h25{height:179.552093pt;}
.h2b{height:181.551646pt;}
.h24{height:195.875006pt;}
.h28{height:201.780599pt;}
.h32{height:204.036457pt;}
.h1f{height:206.036022pt;}
.h3d{height:209.671882pt;}
.h2c{height:220.359382pt;}
.h48{height:236.641492pt;}
.h2f{height:244.843758pt;}
.h1c{height:247.904305pt;}
.h16{height:265.206605pt;}
.h58{height:272.000001pt;}
.h8{height:275.864584pt;}
.h1{height:320.000002pt;}
.h57{height:448.000004pt;}
.h0{height:1080.000000pt;}
.w0{width:1920.000000pt;}
.x0{left:0.000000pt;}
.x99{left:22.657744pt;}
.x78{left:24.673071pt;}
.xe7{left:32.902886pt;}
.x5f{left:33.797919pt;}
.x25{left:43.687455pt;}
.xe8{left:48.000002pt;}
.xdd{left:51.317587pt;}
.x77{left:54.577605pt;}
.xe9{left:67.000002pt;}
.xe0{left:70.317587pt;}
.x5a{left:73.042312pt;}
.xa7{left:74.448822pt;}
.xda{left:75.999792pt;}
.xa{left:77.660569pt;}
.xe1{left:79.356578pt;}
.xdb{left:80.606303pt;}
.x2{left:81.973758pt;}
.xac{left:84.448823pt;}
.x8{left:89.496799pt;}
.xbe{left:95.241853pt;}
.xb{left:96.613306pt;}
.x36{left:98.630557pt;}
.xcc{left:104.992369pt;}
.xab{left:106.448823pt;}
.xd7{left:115.172207pt;}
.x35{left:123.790480pt;}
.x55{left:130.400002pt;}
.xcd{left:134.104168pt;}
.x70{left:151.180275pt;}
.xbc{left:159.002005pt;}
.x54{left:162.968958pt;}
.xe{left:165.266145pt;}
.x64{left:168.373160pt;}
.x81{left:169.493894pt;}
.xbd{left:170.647955pt;}
.xaa{left:171.787405pt;}
.xe2{left:175.887046pt;}
.xc3{left:177.850648pt;}
.xc4{left:185.627188pt;}
.x6f{left:189.896380pt;}
.x58{left:195.798134pt;}
.x76{left:201.739680pt;}
.x65{left:204.878787pt;}
.x8c{left:207.433139pt;}
.x4{left:210.101320pt;}
.x74{left:219.621761pt;}
.xc5{left:222.188309pt;}
.x5{left:223.962617pt;}
.x1e{left:229.340947pt;}
.x59{left:235.000218pt;}
.x38{left:252.614134pt;}
.xd{left:264.782728pt;}
.x39{left:269.459853pt;}
.xe4{left:270.793204pt;}
.x4f{left:272.560859pt;}
.x75{left:279.097715pt;}
.xc{left:307.177910pt;}
.x56{left:316.650305pt;}
.x4b{left:329.385631pt;}
.x73{left:330.531057pt;}
.x84{left:333.818350pt;}
.x94{left:337.719899pt;}
.x6{left:340.566021pt;}
.xce{left:350.106480pt;}
.x95{left:352.433391pt;}
.x1d{left:357.280161pt;}
.x9b{left:359.668472pt;}
.x98{left:361.250612pt;}
.x5e{left:367.508042pt;}
.x83{left:368.763418pt;}
.x1f{left:374.318672pt;}
.xe3{left:380.064167pt;}
.x7a{left:389.614675pt;}
.xc2{left:397.272789pt;}
.xc8{left:407.452522pt;}
.x7b{left:417.312743pt;}
.xb1{left:440.848954pt;}
.xad{left:451.068254pt;}
.xb4{left:456.568065pt;}
.xb2{left:457.771595pt;}
.x3{left:480.000115pt;}
.x97{left:490.220686pt;}
.x7{left:493.180766pt;}
.x79{left:497.148456pt;}
.x18{left:506.271245pt;}
.x96{left:532.880877pt;}
.x49{left:540.873067pt;}
.x20{left:563.206218pt;}
.x37{left:565.792058pt;}
.xd2{left:570.243336pt;}
.xae{left:588.254019pt;}
.x82{left:589.848949pt;}
.x26{left:592.013248pt;}
.x1b{left:596.702013pt;}
.x1c{left:613.224246pt;}
.x27{left:616.464880pt;}
.x21{left:618.765260pt;}
.xa6{left:631.060380pt;}
.x22{left:642.217037pt;}
.x28{left:650.414297pt;}
.x2a{left:656.074315pt;}
.x1a{left:670.684834pt;}
.x29{left:674.218848pt;}
.x4e{left:686.329368pt;}
.x4d{left:702.516563pt;}
.xdf{left:709.244223pt;}
.x47{left:722.407208pt;}
.x8e{left:724.062859pt;}
.x5c{left:727.797692pt;}
.x19{left:732.593102pt;}
.xaf{left:736.219874pt;}
.x48{left:739.376074pt;}
.x8a{left:745.616175pt;}
.x8b{left:750.200159pt;}
.xd6{left:756.751274pt;}
.x8d{left:764.616419pt;}
.x6d{left:775.857824pt;}
.x88{left:792.280634pt;}
.x85{left:799.550044pt;}
.x86{left:802.679133pt;}
.x6b{left:803.737525pt;}
.xd5{left:807.072326pt;}
.xc9{left:817.352123pt;}
.x1{left:829.144377pt;}
.xd1{left:835.998134pt;}
.xcf{left:837.106224pt;}
.x6c{left:856.226307pt;}
.xba{left:860.927319pt;}
.xd4{left:867.946998pt;}
.xd0{left:869.106225pt;}
.xbb{left:871.852963pt;}
.x23{left:877.096968pt;}
.xd3{left:880.527013pt;}
.xb0{left:884.211228pt;}
.x6e{left:902.125789pt;}
.x87{left:903.767229pt;}
.x4a{left:911.283779pt;}
.x89{left:922.405270pt;}
.xbf{left:926.082704pt;}
.xf{left:932.012574pt;}
.xc0{left:933.136202pt;}
.x16{left:961.373481pt;}
.x60{left:990.899934pt;}
.x62{left:996.899934pt;}
.x63{left:998.164567pt;}
.x24{left:1002.069612pt;}
.x2b{left:1019.727205pt;}
.x6a{left:1022.942519pt;}
.x91{left:1026.229812pt;}
.x61{left:1030.000033pt;}
.x5b{left:1051.047454pt;}
.x10{left:1059.710572pt;}
.xdc{left:1063.120734pt;}
.x2c{left:1065.269984pt;}
.x68{left:1066.192893pt;}
.x7f{left:1068.870841pt;}
.x2d{left:1071.938614pt;}
.xb3{left:1075.886675pt;}
.x7e{left:1080.683345pt;}
.x7d{left:1082.511465pt;}
.x93{left:1083.450840pt;}
.xc1{left:1084.832151pt;}
.x50{left:1086.564468pt;}
.xd9{left:1092.599335pt;}
.xc7{left:1095.011884pt;}
.x66{left:1099.542869pt;}
.x57{left:1112.000036pt;}
.x51{left:1114.262536pt;}
.x2e{left:1116.332146pt;}
.x67{left:1160.964997pt;}
.x9a{left:1163.140052pt;}
.xd8{left:1168.477387pt;}
.x46{left:1172.062638pt;}
.x14{left:1179.212833pt;}
.x12{left:1182.677867pt;}
.x72{left:1187.664754pt;}
.x80{left:1188.806388pt;}
.x8f{left:1190.952047pt;}
.x69{left:1192.460858pt;}
.xc6{left:1223.802788pt;}
.x5d{left:1240.363538pt;}
.x15{left:1246.268930pt;}
.x71{left:1258.054436pt;}
.x13{left:1285.616031pt;}
.xca{left:1292.269946pt;}
.xde{left:1300.265142pt;}
.xa2{left:1319.936512pt;}
.x7c{left:1326.583742pt;}
.xcb{left:1357.974233pt;}
.xa8{left:1360.688274pt;}
.xa9{left:1374.621594pt;}
.xb5{left:1379.777430pt;}
.xe5{left:1382.876094pt;}
.xe6{left:1393.480145pt;}
.xb6{left:1399.275302pt;}
.xb8{left:1409.395025pt;}
.xa1{left:1411.434107pt;}
.xb9{left:1420.723149pt;}
.xb7{left:1428.289984pt;}
.x30{left:1431.349609pt;}
.x31{left:1448.900634pt;}
.x52{left:1463.106395pt;}
.x90{left:1468.006984pt;}
.xa0{left:1469.378933pt;}
.x2f{left:1483.516122pt;}
.x17{left:1486.621243pt;}
.x3a{left:1505.608928pt;}
.x53{left:1508.031587pt;}
.x92{left:1510.859484pt;}
.x32{left:1511.904588pt;}
.x33{left:1519.275519pt;}
.x34{left:1531.472779pt;}
.x11{left:1547.018520pt;}
.x9{left:1554.871865pt;}
.x3d{left:1559.137610pt;}
.x4c{left:1560.265565pt;}
.x3e{left:1569.765550pt;}
.xa5{left:1574.568959pt;}
.x3b{left:1578.163061pt;}
.x9c{left:1593.501971pt;}
.x40{left:1615.615182pt;}
.x9d{left:1619.779042pt;}
.x44{left:1647.833053pt;}
.x45{left:1664.088973pt;}
.x3f{left:1669.111803pt;}
.x41{left:1671.523903pt;}
.x43{left:1675.615284pt;}
.xa3{left:1689.497624pt;}
.x42{left:1694.150854pt;}
.xa4{left:1715.774695pt;}
.x3c{left:1722.529755pt;}
.x9e{left:1750.117181pt;}
.x9f{left:1767.086047pt;}
}




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