
    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_89fc0633967a9674227059d3.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.906000;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_db445267c7e4cc425958b893.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.890000;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_ef48b2233b46a4843862e348.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.897000;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_ade8ec6153c9564c699de435.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.112305;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_788c7a14c65eb43658f0f678.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.130371;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_ba99c666d4f60c80e9de53cd.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.921387;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_ff34b977a9f12ea274ed3a5c.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.924316;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_599bbf2ff29338392b2e4609.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.897461;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_dff706586158bba8e13c8fef.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.019043;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_e5d3c4aeb951900a035d3ccd.woff2')format("woff");}.ffa{font-family:ffa;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;}
.m6{transform:matrix(0.249575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249575,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249579,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.249579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249579,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249580,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249580,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249581,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249581,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249581,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.249585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249585,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);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.037834px;}
.ls1{letter-spacing:0.297382px;}
.ls2{letter-spacing:0.396966px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4{word-spacing:-12.689326px;}
.ws9{word-spacing:-10.266515px;}
.ws7{word-spacing:-10.247455px;}
.ws8{word-spacing:-10.228681px;}
.ws6{word-spacing:-8.459551px;}
.ws1{word-spacing:-0.059776px;}
.ws5{word-spacing:0.000000px;}
.ws0{word-spacing:14.884124px;}
.ws3{word-spacing:18.302193px;}
.ws2{word-spacing:24.112413px;}
._12{margin-left:-3.704705px;}
._1{margin-left:-2.603845px;}
._0{margin-left:-1.075961px;}
._2{width:1.179610px;}
._5{width:2.699687px;}
._8{width:4.218150px;}
._17{width:5.436438px;}
._7{width:7.243968px;}
._6{width:8.261249px;}
._1a{width:9.531594px;}
._10{width:11.062531px;}
._11{width:12.103478px;}
._16{width:15.250550px;}
._1d{width:17.025034px;}
._1e{width:18.339777px;}
._1b{width:19.790773px;}
._1c{width:21.678244px;}
._13{width:24.772289px;}
._1f{width:28.641432px;}
._14{width:30.379109px;}
._15{width:31.854416px;}
._19{width:39.150893px;}
._18{width:40.696534px;}
._9{width:51.012902px;}
._20{width:79.663494px;}
._21{width:81.095314px;}
._b{width:274.760983px;}
._a{width:289.697124px;}
._e{width:329.558390px;}
._f{width:345.091889px;}
._d{width:349.062344px;}
._3{width:501.951986px;}
._22{width:998.799279px;}
._c{width:1026.833379px;}
._4{width:1029.630697px;}
.fc4{color:rgb(31,55,99);}
.fc3{color:rgb(5,99,193);}
.fc1{color:rgb(47,84,150);}
.fc2{color:rgb(68,84,106);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:33.838202px;}
.fs8{font-size:45.259650px;}
.fs6{font-size:45.342719px;}
.fs4{font-size:50.757303px;}
.fs7{font-size:56.068200px;}
.fs2{font-size:56.171887px;}
.fs0{font-size:59.775600px;}
.fsa{font-size:67.551750px;}
.fs9{font-size:72.955800px;}
.fs3{font-size:73.089514px;}
.fs1{font-size:96.837000px;}
.y0{bottom:0.000000px;}
.yb{bottom:0.887187px;}
.y47{bottom:0.900055px;}
.yc{bottom:2.879873px;}
.y3e{bottom:3.054655px;}
.y45{bottom:3.058101px;}
.ya0{bottom:3.059966px;}
.y48{bottom:3.059967px;}
.y5c{bottom:3.059984px;}
.y50{bottom:3.060001px;}
.y4a{bottom:3.060002px;}
.y74{bottom:3.060035px;}
.y82{bottom:3.060036px;}
.y43{bottom:3.061547px;}
.y63{bottom:3.779983px;}
.y5f{bottom:3.779984px;}
.y52{bottom:3.780000px;}
.y4c{bottom:3.780001px;}
.ya9{bottom:3.780017px;}
.y66{bottom:3.780018px;}
.y40{bottom:3.784112px;}
.y55{bottom:4.859991px;}
.ya{bottom:20.142226px;}
.y46{bottom:20.160049px;}
.yc8{bottom:62.100013px;}
.y1b{bottom:62.813664px;}
.yf3{bottom:63.360008px;}
.y1a{bottom:77.397390px;}
.y94{bottom:83.700027px;}
.yc7{bottom:86.399986px;}
.yf2{bottom:87.659981px;}
.y19{bottom:91.977258px;}
.y44{bottom:100.808368px;}
.y93{bottom:104.220017px;}
.yc6{bottom:110.700027px;}
.yf1{bottom:112.139992px;}
.y18{bottom:116.447717px;}
.y42{bottom:121.505835px;}
.y92{bottom:124.919975px;}
.yc5{bottom:135.000000px;}
.yf0{bottom:136.440033px;}
.y95{bottom:141.840019px;}
.y91{bottom:142.559967px;}
.y41{bottom:145.088368px;}
.yc4{bottom:159.480011px;}
.yef{bottom:160.559967px;}
.y3f{bottom:161.986220px;}
.y3d{bottom:162.731180px;}
.y8f{bottom:166.139992px;}
.yc3{bottom:183.600013px;}
.yee{bottom:185.039977px;}
.y8e{bottom:186.840019px;}
.y3c{bottom:187.029844px;}
.y3b{bottom:200.509271px;}
.y3a{bottom:200.518875px;}
.y8d{bottom:207.539977px;}
.yc2{bottom:207.899986px;}
.yed{bottom:209.340019px;}
.y8c{bottom:228.059967px;}
.y39{bottom:229.136465px;}
.yec{bottom:233.639992px;}
.yc1{bottom:236.159981px;}
.y8b{bottom:248.759994px;}
.yeb{bottom:257.940033px;}
.y37{bottom:258.111668px;}
.y38{bottom:258.118083px;}
.y90{bottom:265.860008px;}
.yc0{bottom:266.039977px;}
.y8a{bottom:266.580025px;}
.y36{bottom:274.306872px;}
.yea{bottom:282.240006px;}
.y88{bottom:290.159981px;}
.ybf{bottom:290.340019px;}
.y35{bottom:290.690575px;}
.y34{bottom:290.693313px;}
.ye9{bottom:306.720017px;}
.y87{bottom:310.860008px;}
.ybe{bottom:311.759994px;}
.y33{bottom:311.934221px;}
.y17{bottom:323.629488px;}
.y89{bottom:327.779983px;}
.y86{bottom:328.500000px;}
.ye8{bottom:330.840019px;}
.y24{bottom:332.454098px;}
.y84{bottom:352.080025px;}
.ye7{bottom:355.139992px;}
.y23{bottom:361.253665px;}
.y2c{bottom:363.228201px;}
.y83{bottom:372.779983px;}
.ye6{bottom:379.620002px;}
.ybd{bottom:387.000000px;}
.y85{bottom:389.700027px;}
.y21{bottom:389.700926px;}
.y81{bottom:390.419975px;}
.y2a{bottom:392.934443px;}
.y22{bottom:394.016114px;}
.y2b{bottom:397.258656px;}
.y1f{bottom:403.916742px;}
.ye5{bottom:403.919975px;}
.y1e{bottom:404.458914px;}
.y28{bottom:407.156713px;}
.y27{bottom:407.878264px;}
.y20{bottom:408.775437px;}
.y13{bottom:410.395372px;}
.ybc{bottom:411.299973px;}
.y29{bottom:412.196124px;}
.y7f{bottom:414.000000px;}
.y1d{bottom:419.216901px;}
.y26{bottom:422.458132px;}
.ye4{bottom:428.039977px;}
.y7e{bottom:434.700027px;}
.ybb{bottom:435.779983px;}
.y1c{bottom:439.010057px;}
.y12{bottom:439.020753px;}
.y25{bottom:441.349964px;}
.y80{bottom:451.620002px;}
.y7d{bottom:452.340019px;}
.ye3{bottom:452.519989px;}
.yb9{bottom:459.000000px;}
.y11{bottom:467.638343px;}
.yb8{bottom:476.460022px;}
.ye2{bottom:476.820030px;}
.yba{bottom:479.519989px;}
.y7b{bottom:489.600013px;}
.y10{bottom:496.437909px;}
.yb7{bottom:498.960022px;}
.ye1{bottom:501.299973px;}
.y7c{bottom:506.340019px;}
.y7a{bottom:510.120002px;}
.yf{bottom:511.017778px;}
.yb6{bottom:518.399986px;}
.ye0{bottom:525.419975px;}
.y78{bottom:530.820030px;}
.ye{bottom:536.940141px;}
.yb5{bottom:539.100013px;}
.ydf{bottom:549.720017px;}
.y77{bottom:551.519989px;}
.yb4{bottom:559.799973px;}
.y79{bottom:568.440033px;}
.y76{bottom:572.220017px;}
.yde{bottom:574.200027px;}
.yb3{bottom:580.320030px;}
.y75{bottom:592.919975px;}
.ydd{bottom:598.500000px;}
.yb1{bottom:601.019989px;}
.y73{bottom:610.559967px;}
.yb0{bottom:618.660015px;}
.yb2{bottom:621.720017px;}
.ydc{bottom:622.620002px;}
.y71{bottom:634.139992px;}
.ydb{bottom:647.100013px;}
.y72{bottom:651.060001px;}
.y70{bottom:651.779983px;}
.yaf{bottom:663.120002px;}
.yda{bottom:671.399986px;}
.y6f{bottom:671.759994px;}
.y6e{bottom:672.480011px;}
.yae{bottom:683.819995px;}
.y16{bottom:694.255580px;}
.yd9{bottom:695.879998px;}
.yad{bottom:704.339985px;}
.y6d{bottom:709.019989px;}
.y15{bottom:709.021320px;}
.yd8{bottom:720.000000px;}
.y6b{bottom:723.240006px;}
.yac{bottom:725.040012px;}
.y9{bottom:728.895000px;}
.y14{bottom:734.937591px;}
.y6a{bottom:743.939999px;}
.yd7{bottom:744.300007px;}
.y6c{bottom:745.560001px;}
.yab{bottom:745.740006px;}
.y69{bottom:764.639992px;}
.yaa{bottom:766.259994px;}
.y32{bottom:768.417334px;}
.yd6{bottom:768.779983px;}
.y68{bottom:782.279983px;}
.y31{bottom:782.458938px;}
.y2f{bottom:783.179216px;}
.y8{bottom:786.021000px;}
.ya7{bottom:786.959988px;}
.y30{bottom:787.320180px;}
.yd5{bottom:792.899986px;}
.y2e{bottom:797.941098px;}
.ya8{bottom:803.879998px;}
.ya6{bottom:804.600013px;}
.y67{bottom:805.860008px;}
.yd4{bottom:817.199993px;}
.y2d{bottom:817.733184px;}
.y7{bottom:821.886000px;}
.y65{bottom:822.779983px;}
.y64{bottom:823.500000px;}
.ya5{bottom:824.579990px;}
.ya4{bottom:825.300007px;}
.yd3{bottom:841.680004px;}
.ya3{bottom:845.100013px;}
.ya2{bottom:845.819995px;}
.y61{bottom:847.259994px;}
.y6{bottom:861.079500px;}
.y62{bottom:864.000000px;}
.yd2{bottom:865.980011px;}
.y60{bottom:867.779983px;}
.ya1{bottom:869.579990px;}
.y5{bottom:884.167500px;}
.y9f{bottom:887.220017px;}
.yd1{bottom:890.279983px;}
.y5d{bottom:901.620002px;}
.y9d{bottom:910.800007px;}
.yd0{bottom:914.580008px;}
.y5e{bottom:918.360008px;}
.y5b{bottom:919.080008px;}
.y4{bottom:928.552500px;}
.y9c{bottom:931.680004px;}
.ycf{bottom:938.879998px;}
.y59{bottom:942.840002px;}
.y9e{bottom:948.599997px;}
.y9b{bottom:949.319996px;}
.y5a{bottom:959.759994px;}
.y58{bottom:960.479994px;}
.yce{bottom:963.360008px;}
.y99{bottom:972.900003px;}
.y56{bottom:984.060001px;}
.ycd{bottom:987.479994px;}
.y98{bottom:993.599997px;}
.y54{bottom:999.900003px;}
.y57{bottom:1000.979994px;}
.y53{bottom:1001.699993px;}
.y9a{bottom:1010.520006px;}
.y97{bottom:1011.240006px;}
.ycc{bottom:1011.780001px;}
.yd{bottom:1019.337384px;}
.y51{bottom:1021.680004px;}
.y4f{bottom:1022.400003px;}
.ycb{bottom:1036.259994px;}
.y4e{bottom:1045.980002px;}
.yca{bottom:1060.560001px;}
.y4d{bottom:1063.620002px;}
.y96{bottom:1066.680004px;}
.y3{bottom:1068.721500px;}
.y4b{bottom:1083.599997px;}
.y49{bottom:1084.319996px;}
.yc9{bottom:1084.860000px;}
.y2{bottom:1086.654000px;}
.y1{bottom:1104.586500px;}
.he{height:13.674936px;}
.h13{height:13.678382px;}
.h26{height:13.679970px;}
.h28{height:13.679971px;}
.h1f{height:13.679986px;}
.h1b{height:13.679995px;}
.h1e{height:13.680003px;}
.h16{height:13.680004px;}
.h24{height:13.680038px;}
.h12{height:13.681828px;}
.h10{height:14.399532px;}
.h27{height:14.399985px;}
.h20{height:14.399986px;}
.h19{height:14.400003px;}
.h23{height:14.400020px;}
.h22{height:14.400021px;}
.h25{height:14.579956px;}
.h21{height:14.579990px;}
.h6{height:15.479463px;}
.h1c{height:15.479994px;}
.h15{height:15.659912px;}
.hb{height:30.335420px;}
.hc{height:35.242620px;}
.h8{height:35.812648px;}
.ha{height:36.779218px;}
.h17{height:38.055233px;}
.hd{height:38.125079px;}
.h29{height:40.574569px;}
.h1{height:41.125613px;}
.h4{height:41.304940px;}
.h18{height:45.016556px;}
.hf{height:45.099179px;}
.h9{height:45.503129px;}
.h14{height:50.264265px;}
.h5{height:50.357219px;}
.h1a{height:55.767052px;}
.h11{height:55.870183px;}
.h1d{height:61.342719px;}
.h2a{height:64.319293px;}
.h2{height:66.139671px;}
.h3{height:66.914367px;}
.h7{height:69.592067px;}
.h0{height:1188.000000px;}
.w39{width:2.699960px;}
.w20{width:2.699993px;}
.w18{width:3.419975px;}
.w61{width:3.420009px;}
.w42{width:3.420010px;}
.w1c{width:3.420044px;}
.w9{width:3.422575px;}
.wc{width:5.574151px;}
.w3b{width:5.579956px;}
.w16{width:5.579990px;}
.wf{width:5.579991px;}
.w14{width:5.580025px;}
.w3{width:5.581065px;}
.w5{width:5.581098px;}
.w41{width:6.300007px;}
.wd{width:6.479993px;}
.w1{width:6.482595px;}
.w32{width:6.659981px;}
.w3d{width:6.660015px;}
.w2b{width:6.660016px;}
.w12{width:7.199958px;}
.w29{width:7.199960px;}
.w25{width:7.200027px;}
.w1e{width:7.200028px;}
.w7{width:7.200497px;}
.w30{width:8.460022px;}
.w22{width:9.180004px;}
.w3a{width:10.259994px;}
.w40{width:14.220016px;}
.w60{width:18.540012px;}
.w49{width:20.339984px;}
.w59{width:25.919975px;}
.w4{width:26.458303px;}
.w62{width:30.959988px;}
.w17{width:31.679970px;}
.w33{width:31.680004px;}
.w1f{width:34.200010px;}
.w10{width:35.459988px;}
.w15{width:35.639992px;}
.wa{width:36.176853px;}
.w63{width:40.500000px;}
.w47{width:42.120002px;}
.w5e{width:42.479978px;}
.w34{width:43.919975px;}
.w4c{width:44.459988px;}
.w3e{width:44.639992px;}
.w58{width:44.819995px;}
.w2e{width:46.259994px;}
.w21{width:47.160015px;}
.w13{width:49.139992px;}
.w1b{width:49.319997px;}
.w31{width:51.299972px;}
.w57{width:58.139992px;}
.w2f{width:59.039979px;}
.w5d{width:60.120037px;}
.w54{width:60.660016px;}
.w4a{width:60.840019px;}
.w36{width:61.199993px;}
.w4e{width:64.439999px;}
.w51{width:64.620002px;}
.w43{width:68.399985px;}
.w56{width:70.379998px;}
.w5f{width:71.639992px;}
.w2c{width:72.540012px;}
.w44{width:72.900021px;}
.w5b{width:73.079990px;}
.w5a{width:74.520022px;}
.w8{width:75.238184px;}
.w1a{width:75.419975px;}
.w19{width:77.400054px;}
.w6{width:81.005068px;}
.w23{width:81.360008px;}
.w1d{width:82.620003px;}
.w2a{width:82.800007px;}
.w4d{width:83.879963px;}
.w4f{width:84.780018px;}
.w11{width:84.960022px;}
.w37{width:87.120002px;}
.w35{width:87.300007px;}
.w45{width:87.659981px;}
.w38{width:88.560002px;}
.w24{width:90.000000px;}
.w50{width:90.900021px;}
.w3f{width:91.620037px;}
.w2d{width:92.159981px;}
.w5c{width:92.879998px;}
.w53{width:95.940016px;}
.w3c{width:97.740006px;}
.w27{width:99.000000px;}
.w28{width:103.680038px;}
.w55{width:105.839984px;}
.we{width:115.379998px;}
.w52{width:119.159981px;}
.w48{width:128.340019px;}
.w4b{width:136.800007px;}
.w46{width:138.240006px;}
.w2{width:142.921183px;}
.w26{width:156.599997px;}
.wb{width:175.859913px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x1{left:82.488000px;}
.x2{left:165.781892px;}
.x4{left:171.901789px;}
.x7c{left:185.759994px;}
.x18{left:225.898200px;}
.x26{left:241.384388px;}
.x40{left:250.919992px;}
.x68{left:254.879998px;}
.x61{left:256.500000px;}
.x1c{left:257.762926px;}
.x21{left:260.824235px;}
.x22{left:272.163212px;}
.x63{left:280.259994px;}
.x5c{left:282.060001px;}
.x5d{left:283.139992px;}
.x39{left:287.280001px;}
.x32{left:291.420010px;}
.x70{left:294.120002px;}
.x66{left:297.360008px;}
.x57{left:298.620002px;}
.x45{left:302.579990px;}
.x2c{left:304.740006px;}
.x4c{left:306.000000px;}
.x49{left:307.800007px;}
.x78{left:311.220017px;}
.x52{left:313.560001px;}
.x3a{left:321.480011px;}
.x3b{left:324.000000px;}
.x7a{left:325.439999px;}
.x5b{left:329.040012px;}
.x1b{left:330.841879px;}
.x19{left:344.156156px;}
.x23{left:347.042204px;}
.x24{left:350.105588px;}
.x4d{left:352.259994px;}
.x2d{left:353.519989px;}
.x50{left:354.779983px;}
.x7b{left:356.399987px;}
.x58{left:359.639992px;}
.x6d{left:361.259994px;}
.x71{left:364.319996px;}
.x33{left:366.839985px;}
.x3c{left:370.800007px;}
.x67{left:375.120002px;}
.x6f{left:376.920010px;}
.x64{left:378.000000px;}
.x69{left:383.220017px;}
.x25{left:385.923282px;}
.x6c{left:397.439999px;}
.x1d{left:400.324951px;}
.x6a{left:403.199993px;}
.x41{left:407.339985px;}
.x27{left:417.068179px;}
.xe{left:427.132281px;}
.xf{left:431.459350px;}
.x42{left:433.439999px;}
.x5f{left:435.779983px;}
.x46{left:437.579990px;}
.x59{left:439.379998px;}
.x6e{left:440.639992px;}
.x3d{left:442.259994px;}
.x65{left:444.600014px;}
.x1a{left:446.765048px;}
.x5{left:451.975954px;}
.x6b{left:454.319996px;}
.x5e{left:455.579990px;}
.x34{left:457.019989px;}
.x62{left:458.279983px;}
.x53{left:459.720017px;}
.x11{left:461.329988px;}
.x5a{left:462.600014px;}
.x28{left:463.860008px;}
.x12{left:465.657528px;}
.xa{left:467.273145px;}
.x1e{left:468.544645px;}
.x77{left:481.680005px;}
.xb{left:494.099330px;}
.x29{left:499.319996px;}
.x13{left:500.929626px;}
.x54{left:503.459988px;}
.x35{left:506.160015px;}
.x4e{left:511.199993px;}
.x72{left:513.180005px;}
.x14{left:516.595308px;}
.x4f{left:545.939999px;}
.x36{left:552.240006px;}
.x79{left:554.759994px;}
.x2e{left:556.379998px;}
.x43{left:559.259994px;}
.x47{left:565.019989px;}
.x3e{left:566.100014px;}
.x55{left:567.540012px;}
.x2a{left:568.620002px;}
.x76{left:569.699993px;}
.x1f{left:570.782670px;}
.x4a{left:572.579990px;}
.x73{left:573.839985px;}
.x37{left:583.919975px;}
.x2f{left:587.879998px;}
.x30{left:591.299973px;}
.x15{left:594.345072px;}
.x31{left:597.960023px;}
.x51{left:611.100014px;}
.x8{left:616.145914px;}
.x75{left:625.320030px;}
.x74{left:648.360008px;}
.x4b{left:649.440033px;}
.x20{left:651.784778px;}
.x2b{left:653.580025px;}
.x56{left:654.659981px;}
.x3f{left:655.919975px;}
.x48{left:657.179970px;}
.x60{left:659.340019px;}
.x44{left:662.940033px;}
.x38{left:669.779983px;}
.xc{left:681.464297px;}
.x16{left:686.685821px;}
.xd{left:690.837563px;}
.x10{left:692.283859px;}
.x17{left:711.172460px;}
.x7{left:748.262134px;}
.x6{left:749.524255px;}
.x9{left:751.684834px;}
.x3{left:756.172118px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.033630pt;}
.ls1{letter-spacing:0.264340pt;}
.ls2{letter-spacing:0.352858pt;}
.ws4{word-spacing:-11.279401pt;}
.ws9{word-spacing:-9.125791pt;}
.ws7{word-spacing:-9.108848pt;}
.ws8{word-spacing:-9.092161pt;}
.ws6{word-spacing:-7.519600pt;}
.ws1{word-spacing:-0.053134pt;}
.ws5{word-spacing:0.000000pt;}
.ws0{word-spacing:13.230333pt;}
.ws3{word-spacing:16.268616pt;}
.ws2{word-spacing:21.433256pt;}
._12{margin-left:-3.293071pt;}
._1{margin-left:-2.314529pt;}
._0{margin-left:-0.956410pt;}
._2{width:1.048542pt;}
._5{width:2.399722pt;}
._8{width:3.749467pt;}
._17{width:4.832389pt;}
._7{width:6.439083pt;}
._6{width:7.343332pt;}
._1a{width:8.472528pt;}
._10{width:9.833361pt;}
._11{width:10.758647pt;}
._16{width:13.556045pt;}
._1d{width:15.133364pt;}
._1e{width:16.302024pt;}
._1b{width:17.591798pt;}
._1c{width:19.269550pt;}
._13{width:22.019812pt;}
._1f{width:25.459051pt;}
._14{width:27.003652pt;}
._15{width:28.315036pt;}
._19{width:34.800794pt;}
._18{width:36.174696pt;}
._9{width:45.344802pt;}
._20{width:70.811995pt;}
._21{width:72.084724pt;}
._b{width:244.231985pt;}
._a{width:257.508554pt;}
._e{width:292.940791pt;}
._f{width:306.748346pt;}
._d{width:310.277639pt;}
._3{width:446.179543pt;}
._22{width:887.821582pt;}
._c{width:912.740782pt;}
._4{width:915.227286pt;}
.fs5{font-size:30.078402pt;}
.fs8{font-size:40.230800pt;}
.fs6{font-size:40.304639pt;}
.fs4{font-size:45.117603pt;}
.fs7{font-size:49.838400pt;}
.fs2{font-size:49.930567pt;}
.fs0{font-size:53.133867pt;}
.fsa{font-size:60.046000pt;}
.fs9{font-size:64.849600pt;}
.fs3{font-size:64.968457pt;}
.fs1{font-size:86.077333pt;}
.y0{bottom:0.000000pt;}
.yb{bottom:0.788611pt;}
.y47{bottom:0.800049pt;}
.yc{bottom:2.559887pt;}
.y3e{bottom:2.715249pt;}
.y45{bottom:2.718312pt;}
.ya0{bottom:2.719970pt;}
.y48{bottom:2.719971pt;}
.y5c{bottom:2.719986pt;}
.y50{bottom:2.720001pt;}
.y4a{bottom:2.720002pt;}
.y74{bottom:2.720031pt;}
.y82{bottom:2.720032pt;}
.y43{bottom:2.721375pt;}
.y63{bottom:3.359985pt;}
.y5f{bottom:3.359986pt;}
.y52{bottom:3.360000pt;}
.y4c{bottom:3.360001pt;}
.ya9{bottom:3.360015pt;}
.y66{bottom:3.360016pt;}
.y40{bottom:3.363656pt;}
.y55{bottom:4.319992pt;}
.ya{bottom:17.904201pt;}
.y46{bottom:17.920044pt;}
.yc8{bottom:55.200012pt;}
.y1b{bottom:55.834368pt;}
.yf3{bottom:56.320007pt;}
.y1a{bottom:68.797680pt;}
.y94{bottom:74.400024pt;}
.yc7{bottom:76.799988pt;}
.yf2{bottom:77.919983pt;}
.y19{bottom:81.757563pt;}
.y44{bottom:89.607438pt;}
.y93{bottom:92.640015pt;}
.yc6{bottom:98.400024pt;}
.yf1{bottom:99.679993pt;}
.y18{bottom:103.509082pt;}
.y42{bottom:108.005187pt;}
.y92{bottom:111.039978pt;}
.yc5{bottom:120.000000pt;}
.yf0{bottom:121.280029pt;}
.y95{bottom:126.080017pt;}
.y91{bottom:126.719971pt;}
.y41{bottom:128.967438pt;}
.yc4{bottom:141.760010pt;}
.yef{bottom:142.719971pt;}
.y3f{bottom:143.987751pt;}
.y3d{bottom:144.649938pt;}
.y8f{bottom:147.679993pt;}
.yc3{bottom:163.200012pt;}
.yee{bottom:164.479980pt;}
.y8e{bottom:166.080017pt;}
.y3c{bottom:166.248750pt;}
.y3b{bottom:178.230463pt;}
.y3a{bottom:178.239000pt;}
.y8d{bottom:184.479980pt;}
.yc2{bottom:184.799988pt;}
.yed{bottom:186.080017pt;}
.y8c{bottom:202.719971pt;}
.y39{bottom:203.676858pt;}
.yec{bottom:207.679993pt;}
.yc1{bottom:209.919983pt;}
.y8b{bottom:221.119995pt;}
.yeb{bottom:229.280029pt;}
.y37{bottom:229.432593pt;}
.y38{bottom:229.438296pt;}
.y90{bottom:236.320007pt;}
.yc0{bottom:236.479980pt;}
.y8a{bottom:236.960022pt;}
.y36{bottom:243.828331pt;}
.yea{bottom:250.880005pt;}
.y88{bottom:257.919983pt;}
.ybf{bottom:258.080017pt;}
.y35{bottom:258.391623pt;}
.y34{bottom:258.394056pt;}
.ye9{bottom:272.640015pt;}
.y87{bottom:276.320007pt;}
.ybe{bottom:277.119995pt;}
.y33{bottom:277.274863pt;}
.y17{bottom:287.670656pt;}
.y89{bottom:291.359985pt;}
.y86{bottom:292.000000pt;}
.ye8{bottom:294.080017pt;}
.y24{bottom:295.514754pt;}
.y84{bottom:312.960022pt;}
.ye7{bottom:315.679993pt;}
.y23{bottom:321.114369pt;}
.y2c{bottom:322.869512pt;}
.y83{bottom:331.359985pt;}
.ye6{bottom:337.440002pt;}
.ybd{bottom:344.000000pt;}
.y85{bottom:346.400024pt;}
.y21{bottom:346.400823pt;}
.y81{bottom:347.039978pt;}
.y2a{bottom:349.275060pt;}
.y22{bottom:350.236546pt;}
.y2b{bottom:353.118806pt;}
.y1f{bottom:359.037104pt;}
.ye5{bottom:359.039978pt;}
.y1e{bottom:359.519034pt;}
.y28{bottom:361.917078pt;}
.y27{bottom:362.558457pt;}
.y20{bottom:363.355944pt;}
.y13{bottom:364.795887pt;}
.ybc{bottom:365.599976pt;}
.y29{bottom:366.396554pt;}
.y7f{bottom:368.000000pt;}
.y1d{bottom:372.637245pt;}
.y26{bottom:375.518340pt;}
.ye4{bottom:380.479980pt;}
.y7e{bottom:386.400024pt;}
.ybb{bottom:387.359985pt;}
.y1c{bottom:390.231162pt;}
.y12{bottom:390.240669pt;}
.y25{bottom:392.311080pt;}
.y80{bottom:401.440002pt;}
.y7d{bottom:402.080017pt;}
.ye3{bottom:402.239990pt;}
.yb9{bottom:408.000000pt;}
.y11{bottom:415.678527pt;}
.yb8{bottom:423.520020pt;}
.ye2{bottom:423.840027pt;}
.yba{bottom:426.239990pt;}
.y7b{bottom:435.200012pt;}
.y10{bottom:441.278142pt;}
.yb7{bottom:443.520020pt;}
.ye1{bottom:445.599976pt;}
.y7c{bottom:450.080017pt;}
.y7a{bottom:453.440002pt;}
.yf{bottom:454.238025pt;}
.yb6{bottom:460.799988pt;}
.ye0{bottom:467.039978pt;}
.y78{bottom:471.840027pt;}
.ye{bottom:477.280125pt;}
.yb5{bottom:479.200012pt;}
.ydf{bottom:488.640015pt;}
.y77{bottom:490.239990pt;}
.yb4{bottom:497.599976pt;}
.y79{bottom:505.280029pt;}
.y76{bottom:508.640015pt;}
.yde{bottom:510.400024pt;}
.yb3{bottom:515.840027pt;}
.y75{bottom:527.039978pt;}
.ydd{bottom:532.000000pt;}
.yb1{bottom:534.239990pt;}
.y73{bottom:542.719971pt;}
.yb0{bottom:549.920013pt;}
.yb2{bottom:552.640015pt;}
.ydc{bottom:553.440002pt;}
.y71{bottom:563.679993pt;}
.ydb{bottom:575.200012pt;}
.y72{bottom:578.720001pt;}
.y70{bottom:579.359985pt;}
.yaf{bottom:589.440002pt;}
.yda{bottom:596.799988pt;}
.y6f{bottom:597.119995pt;}
.y6e{bottom:597.760010pt;}
.yae{bottom:607.839996pt;}
.y16{bottom:617.116071pt;}
.yd9{bottom:618.559998pt;}
.yad{bottom:626.079987pt;}
.y6d{bottom:630.239990pt;}
.y15{bottom:630.241173pt;}
.yd8{bottom:640.000000pt;}
.y6b{bottom:642.880005pt;}
.yac{bottom:644.480011pt;}
.y9{bottom:647.906667pt;}
.y14{bottom:653.277858pt;}
.y6a{bottom:661.279999pt;}
.yd7{bottom:661.600006pt;}
.y6c{bottom:662.720001pt;}
.yab{bottom:662.880005pt;}
.y69{bottom:679.679993pt;}
.yaa{bottom:681.119995pt;}
.y32{bottom:683.037630pt;}
.yd6{bottom:683.359985pt;}
.y68{bottom:695.359985pt;}
.y31{bottom:695.519056pt;}
.y2f{bottom:696.159303pt;}
.y8{bottom:698.685333pt;}
.ya7{bottom:699.519989pt;}
.y30{bottom:699.840160pt;}
.yd5{bottom:704.799988pt;}
.y2e{bottom:709.280976pt;}
.ya8{bottom:714.559998pt;}
.ya6{bottom:715.200012pt;}
.y67{bottom:716.320007pt;}
.yd4{bottom:726.399994pt;}
.y2d{bottom:726.873941pt;}
.y7{bottom:730.565333pt;}
.y65{bottom:731.359985pt;}
.y64{bottom:732.000000pt;}
.ya5{bottom:732.959991pt;}
.ya4{bottom:733.600006pt;}
.yd3{bottom:748.160004pt;}
.ya3{bottom:751.200012pt;}
.ya2{bottom:751.839996pt;}
.y61{bottom:753.119995pt;}
.y6{bottom:765.404000pt;}
.y62{bottom:768.000000pt;}
.yd2{bottom:769.760010pt;}
.y60{bottom:771.359985pt;}
.ya1{bottom:772.959991pt;}
.y5{bottom:785.926667pt;}
.y9f{bottom:788.640015pt;}
.yd1{bottom:791.359985pt;}
.y5d{bottom:801.440002pt;}
.y9d{bottom:809.600006pt;}
.yd0{bottom:812.960007pt;}
.y5e{bottom:816.320007pt;}
.y5b{bottom:816.960007pt;}
.y4{bottom:825.380000pt;}
.y9c{bottom:828.160004pt;}
.ycf{bottom:834.559998pt;}
.y59{bottom:838.080002pt;}
.y9e{bottom:843.199997pt;}
.y9b{bottom:843.839996pt;}
.y5a{bottom:853.119995pt;}
.y58{bottom:853.759995pt;}
.yce{bottom:856.320007pt;}
.y99{bottom:864.800003pt;}
.y56{bottom:874.720001pt;}
.ycd{bottom:877.759995pt;}
.y98{bottom:883.199997pt;}
.y54{bottom:888.800003pt;}
.y57{bottom:889.759995pt;}
.y53{bottom:890.399994pt;}
.y9a{bottom:898.240005pt;}
.y97{bottom:898.880005pt;}
.ycc{bottom:899.360001pt;}
.yd{bottom:906.077674pt;}
.y51{bottom:908.160004pt;}
.y4f{bottom:908.800003pt;}
.ycb{bottom:921.119995pt;}
.y4e{bottom:929.760002pt;}
.yca{bottom:942.720001pt;}
.y4d{bottom:945.440002pt;}
.y96{bottom:948.160004pt;}
.y3{bottom:949.974667pt;}
.y4b{bottom:963.199997pt;}
.y49{bottom:963.839996pt;}
.yc9{bottom:964.320000pt;}
.y2{bottom:965.914667pt;}
.y1{bottom:981.854667pt;}
.he{height:12.155499pt;}
.h13{height:12.158562pt;}
.h26{height:12.159973pt;}
.h28{height:12.159974pt;}
.h1f{height:12.159988pt;}
.h1b{height:12.159996pt;}
.h1e{height:12.160003pt;}
.h16{height:12.160004pt;}
.h24{height:12.160034pt;}
.h12{height:12.161625pt;}
.h10{height:12.799584pt;}
.h27{height:12.799987pt;}
.h20{height:12.799988pt;}
.h19{height:12.800003pt;}
.h23{height:12.800018pt;}
.h22{height:12.800019pt;}
.h25{height:12.959961pt;}
.h21{height:12.959991pt;}
.h6{height:13.759523pt;}
.h1c{height:13.759995pt;}
.h15{height:13.919922pt;}
.hb{height:26.964817pt;}
.hc{height:31.326773pt;}
.h8{height:31.833465pt;}
.ha{height:32.692638pt;}
.h17{height:33.826874pt;}
.hd{height:33.888959pt;}
.h29{height:36.066284pt;}
.h1{height:36.556100pt;}
.h4{height:36.715502pt;}
.h18{height:40.014717pt;}
.hf{height:40.088159pt;}
.h9{height:40.447226pt;}
.h14{height:44.679347pt;}
.h5{height:44.761973pt;}
.h1a{height:49.570713pt;}
.h11{height:49.662385pt;}
.h1d{height:54.526861pt;}
.h2a{height:57.172705pt;}
.h2{height:58.790819pt;}
.h3{height:59.479437pt;}
.h7{height:61.859615pt;}
.h0{height:1056.000000pt;}
.w39{width:2.399964pt;}
.w20{width:2.399994pt;}
.w18{width:3.039978pt;}
.w61{width:3.040008pt;}
.w42{width:3.040009pt;}
.w1c{width:3.040039pt;}
.w9{width:3.042289pt;}
.wc{width:4.954801pt;}
.w3b{width:4.959961pt;}
.w16{width:4.959991pt;}
.wf{width:4.959992pt;}
.w14{width:4.960022pt;}
.w3{width:4.960946pt;}
.w5{width:4.960976pt;}
.w41{width:5.600006pt;}
.wd{width:5.759994pt;}
.w1{width:5.762306pt;}
.w32{width:5.919983pt;}
.w3d{width:5.920013pt;}
.w2b{width:5.920014pt;}
.w12{width:6.399963pt;}
.w29{width:6.399964pt;}
.w25{width:6.400024pt;}
.w1e{width:6.400025pt;}
.w7{width:6.400442pt;}
.w30{width:7.520020pt;}
.w22{width:8.160004pt;}
.w3a{width:9.119995pt;}
.w40{width:12.640014pt;}
.w60{width:16.480011pt;}
.w49{width:18.079986pt;}
.w59{width:23.039978pt;}
.w4{width:23.518492pt;}
.w62{width:27.519989pt;}
.w17{width:28.159973pt;}
.w33{width:28.160004pt;}
.w1f{width:30.400009pt;}
.w10{width:31.519989pt;}
.w15{width:31.679993pt;}
.wa{width:32.157203pt;}
.w63{width:36.000000pt;}
.w47{width:37.440002pt;}
.w5e{width:37.759980pt;}
.w34{width:39.039978pt;}
.w4c{width:39.519989pt;}
.w3e{width:39.679993pt;}
.w58{width:39.839996pt;}
.w2e{width:41.119995pt;}
.w21{width:41.920013pt;}
.w13{width:43.679993pt;}
.w1b{width:43.839997pt;}
.w31{width:45.599975pt;}
.w57{width:51.679993pt;}
.w2f{width:52.479981pt;}
.w5d{width:53.440033pt;}
.w54{width:53.920014pt;}
.w4a{width:54.080017pt;}
.w36{width:54.399994pt;}
.w4e{width:57.279999pt;}
.w51{width:57.440002pt;}
.w43{width:60.799987pt;}
.w56{width:62.559998pt;}
.w5f{width:63.679993pt;}
.w2c{width:64.480011pt;}
.w44{width:64.800019pt;}
.w5b{width:64.959991pt;}
.w5a{width:66.240020pt;}
.w8{width:66.878386pt;}
.w1a{width:67.039978pt;}
.w19{width:68.800048pt;}
.w6{width:72.004505pt;}
.w23{width:72.320007pt;}
.w1d{width:73.440003pt;}
.w2a{width:73.600006pt;}
.w4d{width:74.559967pt;}
.w4f{width:75.360016pt;}
.w11{width:75.520020pt;}
.w37{width:77.440002pt;}
.w35{width:77.600006pt;}
.w45{width:77.919983pt;}
.w38{width:78.720002pt;}
.w24{width:80.000000pt;}
.w50{width:80.800019pt;}
.w3f{width:81.440033pt;}
.w2d{width:81.919983pt;}
.w5c{width:82.559998pt;}
.w53{width:85.280014pt;}
.w3c{width:86.880005pt;}
.w27{width:88.000000pt;}
.w28{width:92.160034pt;}
.w55{width:94.079986pt;}
.we{width:102.559998pt;}
.w52{width:105.919983pt;}
.w48{width:114.080017pt;}
.w4b{width:121.600006pt;}
.w46{width:122.880005pt;}
.w2{width:127.041051pt;}
.w26{width:139.199997pt;}
.wb{width:156.319923pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x1{left:73.322667pt;}
.x2{left:147.361682pt;}
.x4{left:152.801590pt;}
.x7c{left:165.119995pt;}
.x18{left:200.798400pt;}
.x26{left:214.563900pt;}
.x40{left:223.039993pt;}
.x68{left:226.559998pt;}
.x61{left:228.000000pt;}
.x1c{left:229.122601pt;}
.x21{left:231.843765pt;}
.x22{left:241.922855pt;}
.x63{left:249.119995pt;}
.x5c{left:250.720001pt;}
.x5d{left:251.679993pt;}
.x39{left:255.360001pt;}
.x32{left:259.040009pt;}
.x70{left:261.440002pt;}
.x66{left:264.320007pt;}
.x57{left:265.440002pt;}
.x45{left:268.959991pt;}
.x2c{left:270.880005pt;}
.x4c{left:272.000000pt;}
.x49{left:273.600006pt;}
.x78{left:276.640015pt;}
.x52{left:278.720001pt;}
.x3a{left:285.760010pt;}
.x3b{left:288.000000pt;}
.x7a{left:289.279999pt;}
.x5b{left:292.480011pt;}
.x1b{left:294.081670pt;}
.x19{left:305.916583pt;}
.x23{left:308.481959pt;}
.x24{left:311.204967pt;}
.x4d{left:313.119995pt;}
.x2d{left:314.239990pt;}
.x50{left:315.359985pt;}
.x7b{left:316.799988pt;}
.x58{left:319.679993pt;}
.x6d{left:321.119995pt;}
.x71{left:323.839996pt;}
.x33{left:326.079987pt;}
.x3c{left:329.600006pt;}
.x67{left:333.440002pt;}
.x6f{left:335.040009pt;}
.x64{left:336.000000pt;}
.x69{left:340.640015pt;}
.x25{left:343.042918pt;}
.x6c{left:353.279999pt;}
.x1d{left:355.844401pt;}
.x6a{left:358.399994pt;}
.x41{left:362.079987pt;}
.x27{left:370.727270pt;}
.xe{left:379.673139pt;}
.xf{left:383.519422pt;}
.x42{left:385.279999pt;}
.x5f{left:387.359985pt;}
.x46{left:388.959991pt;}
.x59{left:390.559998pt;}
.x6e{left:391.679993pt;}
.x3d{left:393.119995pt;}
.x65{left:395.200012pt;}
.x1a{left:397.124487pt;}
.x5{left:401.756403pt;}
.x6b{left:403.839996pt;}
.x5e{left:404.959991pt;}
.x34{left:406.239990pt;}
.x62{left:407.359985pt;}
.x53{left:408.640015pt;}
.x11{left:410.071100pt;}
.x5a{left:411.200012pt;}
.x28{left:412.320007pt;}
.x12{left:413.917803pt;}
.xa{left:415.353906pt;}
.x1e{left:416.484129pt;}
.x77{left:428.160004pt;}
.xb{left:439.199404pt;}
.x29{left:443.839996pt;}
.x13{left:445.270779pt;}
.x54{left:447.519989pt;}
.x35{left:449.920013pt;}
.x4e{left:454.399994pt;}
.x72{left:456.160004pt;}
.x14{left:459.195830pt;}
.x4f{left:485.279999pt;}
.x36{left:490.880005pt;}
.x79{left:493.119995pt;}
.x2e{left:494.559998pt;}
.x43{left:497.119995pt;}
.x47{left:502.239990pt;}
.x3e{left:503.200012pt;}
.x55{left:504.480011pt;}
.x2a{left:505.440002pt;}
.x76{left:506.399994pt;}
.x1f{left:507.362373pt;}
.x4a{left:508.959991pt;}
.x73{left:510.079987pt;}
.x37{left:519.039978pt;}
.x2f{left:522.559998pt;}
.x30{left:525.599976pt;}
.x15{left:528.306731pt;}
.x31{left:531.520020pt;}
.x51{left:543.200012pt;}
.x8{left:547.685257pt;}
.x75{left:555.840027pt;}
.x74{left:576.320007pt;}
.x4b{left:577.280029pt;}
.x20{left:579.364247pt;}
.x2b{left:580.960022pt;}
.x56{left:581.919983pt;}
.x3f{left:583.039978pt;}
.x48{left:584.159973pt;}
.x60{left:586.080017pt;}
.x44{left:589.280029pt;}
.x38{left:595.359985pt;}
.xc{left:605.746042pt;}
.x16{left:610.387396pt;}
.xd{left:614.077834pt;}
.x10{left:615.363430pt;}
.x17{left:632.153298pt;}
.x7{left:665.121897pt;}
.x6{left:666.243782pt;}
.x9{left:668.164297pt;}
.x3{left:672.152994pt;}
}




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