
    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_d7aa867ca1c8cadc124880da.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.287000;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_972cb602ff45861117abd790.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_44f4682ac171cc8fa22b8fce.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_9fd846e4036f6b3c77f69d22.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.953125;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_c9f6a395d6e48656d5efeada.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.299000;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_71fdcda03e50a3c2d5fd330d.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.953125;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_72fd08306a83cebec8335c49.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.065000;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_68dc09d4a3a6604ed324a738.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.953125;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_d2e7042eea90aa34f078a6ad.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.968262;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_5f2bedce196a95e3d114306e.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.740000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,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);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-16.863228px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:25.294841px;}
.v1{vertical-align:33.726455px;}
.v3{vertical-align:46.373876px;}
.v4{vertical-align:92.747752px;}
.ls1{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.049425px;}
.ls2{letter-spacing:0.063743px;}
.ls0{letter-spacing:0.843149px;}
.ls3{letter-spacing:235.621364px;}
.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;}
}
.ws3{word-spacing:-19.763703px;}
.wsc{word-spacing:-19.006544px;}
.ws4{word-spacing:-18.108492px;}
.ws0{word-spacing:-13.327602px;}
.ws5{word-spacing:-0.902170px;}
.ws7{word-spacing:-0.059021px;}
.ws1{word-spacing:0.000000px;}
.ws2{word-spacing:84.231427px;}
.wsb{word-spacing:142.282296px;}
.ws8{word-spacing:142.309518px;}
.wsa{word-spacing:177.660301px;}
.ws9{word-spacing:177.989682px;}
.ws6{word-spacing:2419.129749px;}
._2{margin-left:-20.235922px;}
._4{margin-left:-10.117958px;}
._7{margin-left:-8.767085px;}
._6{margin-left:-7.419824px;}
._1{margin-left:-5.396796px;}
._5{margin-left:-4.049308px;}
._0{margin-left:-2.698116px;}
._3{margin-left:-1.123941px;}
._8{width:16.874842px;}
._a{width:241.495205px;}
._9{width:243.520756px;}
.fc3{color:rgb(109,111,114);}
.fc4{color:transparent;}
.fc1{color:rgb(217,48,37);}
.fc2{color:rgb(0,0,0);}
.fc0{color:rgb(32,33,36);}
.fs2{font-size:47.969997px;}
.fs7{font-size:50.589683px;}
.fs1{font-size:59.021297px;}
.fs5{font-size:61.803728px;}
.fs6{font-size:63.705825px;}
.fs4{font-size:67.452910px;}
.fs8{font-size:93.169332px;}
.fs3{font-size:101.179366px;}
.fs0{font-size:134.905821px;}
.y0{bottom:0.000000px;}
.y6{bottom:2.250000px;}
.y18a{bottom:3.162089px;}
.y190{bottom:6.522579px;}
.y30{bottom:21.742625px;}
.y7{bottom:22.005022px;}
.y111{bottom:30.564279px;}
.y136{bottom:30.564536px;}
.yfe{bottom:30.564751px;}
.y1{bottom:42.202281px;}
.y153{bottom:46.374134px;}
.y2f{bottom:47.037466px;}
.y135{bottom:53.751474px;}
.yfd{bottom:53.751689px;}
.yd7{bottom:54.459161px;}
.y152{bottom:69.561072px;}
.y2e{bottom:72.332308px;}
.y110{bottom:75.884204px;}
.y134{bottom:76.938411px;}
.yfc{bottom:76.938627px;}
.y151{bottom:92.748010px;}
.y2d{bottom:97.627149px;}
.y133{bottom:100.125349px;}
.yfb{bottom:100.125565px;}
.y150{bottom:115.934947px;}
.y10f{bottom:121.204128px;}
.y2c{bottom:122.921990px;}
.y132{bottom:123.312287px;}
.yfa{bottom:123.312503px;}
.y14f{bottom:139.121885px;}
.y10e{bottom:144.391066px;}
.y131{bottom:146.499225px;}
.yf9{bottom:146.499441px;}
.y2b{bottom:148.216832px;}
.y88{bottom:154.540504px;}
.y14e{bottom:162.308823px;}
.y130{bottom:169.686163px;}
.y2a{bottom:173.511673px;}
.y9c{bottom:179.835573px;}
.y10d{bottom:181.279376px;}
.y14d{bottom:185.495761px;}
.y87{bottom:188.266960px;}
.ybb{bottom:190.375066px;}
.yf8{bottom:191.819365px;}
.y167{bottom:203.022543px;}
.y4b{bottom:204.076249px;}
.y10c{bottom:204.466314px;}
.y64{bottom:209.346091px;}
.ya1{bottom:211.454125px;}
.y12f{bottom:215.006087px;}
.yf7{bottom:215.006303px;}
.y29{bottom:215.669742px;}
.y86{bottom:221.993415px;}
.yba{bottom:224.101521px;}
.y4a{bottom:227.263187px;}
.y14c{bottom:230.815685px;}
.y166{bottom:236.748998px;}
.y12e{bottom:238.193025px;}
.yf6{bottom:238.193241px;}
.y28{bottom:240.964584px;}
.y68{bottom:240.964642px;}
.ya0{bottom:245.180580px;}
.y137{bottom:249.440650px;}
.y49{bottom:250.450124px;}
.y14b{bottom:254.002623px;}
.y85{bottom:255.719870px;}
.yb9{bottom:257.827976px;}
.y12d{bottom:261.379963px;}
.yf5{bottom:261.380179px;}
.y115{bottom:265.249977px;}
.y27{bottom:266.259425px;}
.y165{bottom:270.475454px;}
.y48{bottom:273.637062px;}
.y67{bottom:274.691098px;}
.y14a{bottom:277.189561px;}
.y9f{bottom:278.907035px;}
.y12c{bottom:284.566901px;}
.yf4{bottom:284.567117px;}
.y84{bottom:289.446325px;}
.y26{bottom:291.554266px;}
.yb8{bottom:291.554431px;}
.y149{bottom:300.376499px;}
.y164{bottom:304.201909px;}
.y12b{bottom:307.753839px;}
.yf3{bottom:307.754055px;}
.y66{bottom:308.417553px;}
.y47{bottom:312.633276px;}
.y9e{bottom:312.633490px;}
.y25{bottom:316.849108px;}
.y83{bottom:323.172780px;}
.y148{bottom:323.563437px;}
.yb7{bottom:325.280886px;}
.y46{bottom:335.820214px;}
.y24{bottom:342.143949px;}
.y65{bottom:342.144008px;}
.y9d{bottom:346.359945px;}
.y163{bottom:350.575785px;}
.y12a{bottom:353.073763px;}
.yf2{bottom:353.073979px;}
.y82{bottom:356.899235px;}
.y178{bottom:357.953530px;}
.y45{bottom:359.007152px;}
.y147{bottom:368.883361px;}
.yb6{bottom:371.654762px;}
.y129{bottom:376.260701px;}
.yf1{bottom:376.260917px;}
.y44{bottom:382.194090px;}
.y23{bottom:384.302018px;}
.y63{bottom:388.517884px;}
.y81{bottom:390.625691px;}
.y182{bottom:391.679985px;}
.y146{bottom:392.070299px;}
.y9b{bottom:392.733821px;}
.y16f{bottom:399.057564px;}
.y128{bottom:399.447639px;}
.yf0{bottom:399.447855px;}
.y43{bottom:405.381028px;}
.y22{bottom:409.596859px;}
.y145{bottom:415.257237px;}
.yc0{bottom:420.136542px;}
.yef{bottom:422.634793px;}
.y80{bottom:424.352146px;}
.y16e{bottom:424.352405px;}
.y181{bottom:426.460392px;}
.y62{bottom:428.568049px;}
.y9a{bottom:432.783987px;}
.y6b{bottom:436.999663px;}
.yb5{bottom:436.999769px;}
.ya5{bottom:441.215601px;}
.y162{bottom:441.215633px;}
.y42{bottom:443.323290px;}
.y127{bottom:444.767563px;}
.ybf{bottom:445.431383px;}
.yee{bottom:445.821730px;}
.y16d{bottom:449.647247px;}
.y21{bottom:451.754928px;}
.y7f{bottom:458.078601px;}
.y144{bottom:460.577161px;}
.y180{bottom:461.240799px;}
.y41{bottom:466.510228px;}
.y126{bottom:467.954501px;}
.y20{bottom:477.049770px;}
.y143{bottom:483.764099px;}
.y40{bottom:489.697166px;}
.y125{bottom:491.141439px;}
.yed{bottom:491.141655px;}
.y7e{bottom:491.805056px;}
.y17f{bottom:496.021206px;}
.y1f{bottom:502.344611px;}
.y142{bottom:506.951037px;}
.y124{bottom:514.328377px;}
.yec{bottom:514.328593px;}
.y7d{bottom:525.531511px;}
.y1e{bottom:527.639453px;}
.y3f{bottom:528.693380px;}
.y141{bottom:530.137975px;}
.y61{bottom:530.801366px;}
.y17e{bottom:530.801613px;}
.y99{bottom:535.017304px;}
.y123{bottom:537.515315px;}
.yeb{bottom:537.515530px;}
.yb4{bottom:539.233086px;}
.y161{bottom:543.448950px;}
.yce{bottom:547.664424px;}
.y3e{bottom:551.880318px;}
.y1d{bottom:552.934294px;}
.y140{bottom:553.324913px;}
.y7c{bottom:559.257966px;}
.yea{bottom:560.702468px;}
.y10b{bottom:561.410855px;}
.y60{bottom:564.527822px;}
.y17d{bottom:565.582020px;}
.y98{bottom:568.743759px;}
.yb3{bottom:572.959542px;}
.y3d{bottom:575.067255px;}
.y160{bottom:577.175405px;}
.y1c{bottom:578.229135px;}
.ycd{bottom:581.390879px;}
.y122{bottom:582.835239px;}
.ye9{bottom:583.889406px;}
.y7b{bottom:592.984422px;}
.y3c{bottom:598.254193px;}
.y5f{bottom:598.254277px;}
.y13f{bottom:598.644837px;}
.y17c{bottom:600.362427px;}
.y97{bottom:602.470214px;}
.y1b{bottom:603.523977px;}
.y121{bottom:606.022177px;}
.yb2{bottom:606.685997px;}
.ye8{bottom:607.076344px;}
.y15f{bottom:610.901860px;}
.ycc{bottom:615.117334px;}
.y3b{bottom:621.441131px;}
.y13e{bottom:621.831775px;}
.y7a{bottom:626.710877px;}
.y120{bottom:629.209115px;}
.y5e{bottom:631.980732px;}
.y18f{bottom:632.879996px;}
.y17b{bottom:635.142834px;}
.y96{bottom:636.196670px;}
.yb1{bottom:640.412452px;}
.y3a{bottom:644.628069px;}
.y15e{bottom:644.628316px;}
.y13d{bottom:645.018713px;}
.y1a{bottom:645.682046px;}
.ycb{bottom:648.843789px;}
.y11f{bottom:652.396053px;}
.ye7{bottom:652.396268px;}
.y79{bottom:660.437332px;}
.y5d{bottom:665.707187px;}
.y13c{bottom:668.205651px;}
.y17a{bottom:669.923240px;}
.y19{bottom:670.976887px;}
.yb0{bottom:674.138907px;}
.y11e{bottom:675.582991px;}
.ye6{bottom:675.583206px;}
.yca{bottom:682.570244px;}
.y95{bottom:682.570545px;}
.y189{bottom:689.992025px;}
.y39{bottom:691.001945px;}
.y15d{bottom:691.002192px;}
.y13b{bottom:691.392589px;}
.y78{bottom:694.163787px;}
.y18{bottom:696.271728px;}
.ye5{bottom:698.770144px;}
.y5c{bottom:699.433642px;}
.y179{bottom:713.135261px;}
.y38{bottom:714.188883px;}
.yaf{bottom:720.512783px;}
.y11d{bottom:720.902915px;}
.y17{bottom:721.566570px;}
.ye4{bottom:721.957082px;}
.y77{bottom:727.890242px;}
.yc9{bottom:728.944120px;}
.ya4{bottom:731.052325px;}
.y5b{bottom:733.160097px;}
.y13a{bottom:736.712513px;}
.y37{bottom:737.375821px;}
.y16c{bottom:739.483971px;}
.y11c{bottom:744.089853px;}
.ye3{bottom:745.144020px;}
.y16{bottom:746.861411px;}
.y94{bottom:747.915552px;}
.y187{bottom:752.131475px;}
.ya3{bottom:756.347166px;}
.y15c{bottom:756.347198px;}
.y139{bottom:759.899451px;}
.y36{bottom:760.562759px;}
.y76{bottom:761.616697px;}
.y106{bottom:763.725054px;}
.y16b{bottom:764.778812px;}
.y11b{bottom:767.276791px;}
.ye2{bottom:768.330958px;}
.ybe{bottom:768.994562px;}
.yd2{bottom:777.425899px;}
.y186{bottom:777.426316px;}
.y5a{bottom:779.533973px;}
.y138{bottom:783.086389px;}
.yae{bottom:785.857790px;}
.y15{bottom:789.019480px;}
.ye1{bottom:791.517896px;}
.yc8{bottom:794.289127px;}
.ybd{bottom:794.289404px;}
.y177{bottom:794.289544px;}
.y75{bottom:795.343153px;}
.yd1{bottom:802.720741px;}
.y185{bottom:802.721158px;}
.y10a{bottom:802.721268px;}
.y11a{bottom:803.111149px;}
.y35{bottom:809.044538px;}
.y14{bottom:814.314321px;}
.y117{bottom:814.704618px;}
.y59{bottom:819.584139px;}
.y105{bottom:819.584495px;}
.y119{bottom:826.298087px;}
.y6a{bottom:828.015753px;}
.y109{bottom:828.016109px;}
.y74{bottom:829.069608px;}
.y34{bottom:834.339380px;}
.ye0{bottom:836.837820px;}
.y116{bottom:837.891556px;}
.y13{bottom:839.609163px;}
.y118{bottom:849.485025px;}
.y8d{bottom:856.472580px;}
.y15b{bottom:858.580516px;}
.ydf{bottom:860.024758px;}
.y73{bottom:862.796063px;}
.y12{bottom:864.904004px;}
.y15a{bottom:881.767454px;}
.yde{bottom:883.211696px;}
.yad{bottom:888.091107px;}
.y93{bottom:888.091132px;}
.y11{bottom:890.198846px;}
.yc7{bottom:896.522444px;}
.y72{bottom:896.522518px;}
.y176{bottom:896.522861px;}
.y33{bottom:902.846242px;}
.ydd{bottom:906.398634px;}
.y10{bottom:915.493687px;}
.y159{bottom:915.493909px;}
.y58{bottom:921.817456px;}
.yac{bottom:921.817562px;}
.y92{bottom:921.817587px;}
.y104{bottom:921.817812px;}
.ydc{bottom:929.585572px;}
.yc6{bottom:930.248899px;}
.y71{bottom:930.248973px;}
.y175{bottom:930.249316px;}
.yf{bottom:940.788528px;}
.y32{bottom:949.220118px;}
.y158{bottom:949.220364px;}
.ydb{bottom:952.772510px;}
.y57{bottom:955.543911px;}
.yab{bottom:955.544017px;}
.y91{bottom:955.544042px;}
.y103{bottom:955.544268px;}
.yc5{bottom:963.975355px;}
.y70{bottom:963.975428px;}
.y174{bottom:963.975771px;}
.y157{bottom:972.407302px;}
.yda{bottom:975.959448px;}
.ye{bottom:982.946597px;}
.y56{bottom:989.270366px;}
.yaa{bottom:989.270473px;}
.y90{bottom:989.270497px;}
.y102{bottom:989.270723px;}
.yc4{bottom:997.701810px;}
.y6f{bottom:997.701884px;}
.y173{bottom:997.702227px;}
.y51{bottom:999.809800px;}
.y156{bottom:1006.133757px;}
.yd{bottom:1008.241439px;}
.yd9{bottom:1011.793806px;}
.y4{bottom:1017.727029px;}
.y55{bottom:1022.996822px;}
.ya9{bottom:1022.996928px;}
.y8f{bottom:1022.996952px;}
.y101{bottom:1022.997178px;}
.y50{bottom:1025.104642px;}
.yc3{bottom:1031.428265px;}
.y6e{bottom:1031.428339px;}
.y172{bottom:1031.428682px;}
.yc{bottom:1033.536280px;}
.yd8{bottom:1034.980744px;}
.y155{bottom:1052.507633px;}
.y3{bottom:1055.669291px;}
.y54{bottom:1056.723277px;}
.ya8{bottom:1056.723383px;}
.y8e{bottom:1056.723408px;}
.yb{bottom:1058.831121px;}
.y4f{bottom:1067.262711px;}
.y100{bottom:1069.371054px;}
.y18e{bottom:1075.694378px;}
.yc2{bottom:1077.802141px;}
.y6d{bottom:1077.802215px;}
.y171{bottom:1077.802558px;}
.ya{bottom:1084.125963px;}
.yd4{bottom:1087.287790px;}
.y4e{bottom:1092.557552px;}
.y2{bottom:1097.827360px;}
.y18d{bottom:1100.989219px;}
.y16a{bottom:1100.989412px;}
.y53{bottom:1103.097153px;}
.ya7{bottom:1103.097259px;}
.y8c{bottom:1103.097283px;}
.y9{bottom:1109.420804px;}
.y113{bottom:1112.583158px;}
.y108{bottom:1117.852833px;}
.yd0{bottom:1126.283920px;}
.y8a{bottom:1126.283994px;}
.yd6{bottom:1126.284003px;}
.y18c{bottom:1126.284060px;}
.y169{bottom:1126.284254px;}
.y184{bottom:1126.284337px;}
.y4d{bottom:1134.715621px;}
.yff{bottom:1134.716061px;}
.yc1{bottom:1143.147148px;}
.y6c{bottom:1143.147222px;}
.yd3{bottom:1143.147231px;}
.y8{bottom:1143.147259px;}
.y188{bottom:1143.147288px;}
.y52{bottom:1143.147318px;}
.ya6{bottom:1143.147424px;}
.y8b{bottom:1143.147449px;}
.y154{bottom:1143.147481px;}
.y170{bottom:1143.147565px;}
.y107{bottom:1143.147674px;}
.y112{bottom:1143.147758px;}
.ycf{bottom:1151.578761px;}
.y89{bottom:1151.578835px;}
.yd5{bottom:1151.578845px;}
.y31{bottom:1151.578873px;}
.y18b{bottom:1151.578902px;}
.y69{bottom:1151.578932px;}
.ybc{bottom:1151.579038px;}
.ya2{bottom:1151.579063px;}
.y168{bottom:1151.579095px;}
.y183{bottom:1151.579178px;}
.y114{bottom:1151.579372px;}
.y4c{bottom:1160.010462px;}
.y5{bottom:1226.879972px;}
.h5{height:13.499999px;}
.h6{height:34.946892px;}
.h18{height:35.279999px;}
.h17{height:38.461004px;}
.h4{height:44.265972px;}
.ha{height:50.589683px;}
.he{height:56.053368px;}
.hc{height:65.079326px;}
.hf{height:65.820971px;}
.hd{height:67.082234px;}
.h8{height:71.027915px;}
.h9{height:71.837350px;}
.hb{height:75.884524px;}
.h16{height:77.993435px;}
.h19{height:92.749438px;}
.h7{height:105.563805px;}
.h14{height:111.453202px;}
.h3{height:142.055829px;}
.h11{height:157.827078px;}
.h12{height:225.545617px;}
.h13{height:870.564060px;}
.h15{height:886.373387px;}
.h10{height:1056.059956px;}
.h2{height:1177.927691px;}
.h0{height:1262.879970px;}
.h1{height:1263.000000px;}
.w6{width:67.499997px;}
.wc{width:73.124997px;}
.w9{width:74.249997px;}
.w3{width:141.749994px;}
.we{width:203.759992px;}
.w7{width:636.586821px;}
.wa{width:678.184208px;}
.wd{width:726.172782px;}
.w4{width:750.374969px;}
.w2{width:807.820274px;}
.w8{width:817.874966px;}
.wb{width:818.999966px;}
.w5{width:824.624966px;}
.w0{width:892.439940px;}
.w1{width:892.500000px;}
.x0{left:0.000000px;}
.x15{left:7.674085px;}
.x8{left:8.806646px;}
.x4{left:35.999999px;}
.x1{left:42.749998px;}
.x9{left:73.776621px;}
.x3{left:75.884524px;}
.x24{left:78.540319px;}
.xe{left:88.531945px;}
.x2{left:93.801703px;}
.xa{left:115.720606px;}
.x10{left:129.932486px;}
.x21{left:140.472003px;}
.x5{left:141.749994px;}
.x1a{left:153.415848px;}
.x13{left:160.381814px;}
.xc{left:166.606712px;}
.x17{left:171.201282px;}
.x12{left:172.386061px;}
.x11{left:180.818593px;}
.x16{left:183.618151px;}
.x22{left:204.252549px;}
.x6{left:230.273428px;}
.x1d{left:324.633604px;}
.x1c{left:336.012984px;}
.x23{left:354.599985px;}
.x1b{left:367.236304px;}
.x1e{left:469.041453px;}
.xd{left:470.737662px;}
.x14{left:479.745649px;}
.x18{left:490.565128px;}
.x1f{left:518.643056px;}
.xf{left:658.242261px;}
.xb{left:759.158139px;}
.x19{left:817.874966px;}
.x20{left:818.999966px;}
.x7{left:824.624966px;}
@media print{
.v2{vertical-align:-14.989536pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:22.484303pt;}
.v1{vertical-align:29.979071pt;}
.v3{vertical-align:41.221223pt;}
.v4{vertical-align:82.442446pt;}
.ls1{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.043934pt;}
.ls2{letter-spacing:0.056660pt;}
.ls0{letter-spacing:0.749465pt;}
.ls3{letter-spacing:209.441212pt;}
.ws3{word-spacing:-17.567736pt;}
.wsc{word-spacing:-16.894706pt;}
.ws4{word-spacing:-16.096438pt;}
.ws0{word-spacing:-11.846757pt;}
.ws5{word-spacing:-0.801929pt;}
.ws7{word-spacing:-0.052463pt;}
.ws1{word-spacing:0.000000pt;}
.ws2{word-spacing:74.872379pt;}
.wsb{word-spacing:126.473152pt;}
.ws8{word-spacing:126.497349pt;}
.wsa{word-spacing:157.920267pt;}
.ws9{word-spacing:158.213050pt;}
.ws6{word-spacing:2150.337554pt;}
._2{margin-left:-17.987486pt;}
._4{margin-left:-8.993740pt;}
._7{margin-left:-7.792965pt;}
._6{margin-left:-6.595399pt;}
._1{margin-left:-4.797152pt;}
._5{margin-left:-3.599385pt;}
._0{margin-left:-2.398326pt;}
._3{margin-left:-0.999059pt;}
._8{width:14.999860pt;}
._a{width:214.662405pt;}
._9{width:216.462894pt;}
.fs2{font-size:42.639997pt;}
.fs7{font-size:44.968607pt;}
.fs1{font-size:52.463375pt;}
.fs5{font-size:54.936647pt;}
.fs6{font-size:56.627400pt;}
.fs4{font-size:59.958143pt;}
.fs8{font-size:82.817184pt;}
.fs3{font-size:89.937214pt;}
.fs0{font-size:119.916285pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:2.000000pt;}
.y18a{bottom:2.810746pt;}
.y190{bottom:5.797848pt;}
.y30{bottom:19.326778pt;}
.y7{bottom:19.560019pt;}
.y111{bottom:27.168248pt;}
.y136{bottom:27.168476pt;}
.yfe{bottom:27.168668pt;}
.y1{bottom:37.513139pt;}
.y153{bottom:41.221452pt;}
.y2f{bottom:41.811081pt;}
.y135{bottom:47.779088pt;}
.yfd{bottom:47.779279pt;}
.yd7{bottom:48.408143pt;}
.y152{bottom:61.832064pt;}
.y2e{bottom:64.295385pt;}
.y110{bottom:67.452625pt;}
.y134{bottom:68.389699pt;}
.yfc{bottom:68.389891pt;}
.y151{bottom:82.442675pt;}
.y2d{bottom:86.779688pt;}
.y133{bottom:89.000311pt;}
.yfb{bottom:89.000502pt;}
.y150{bottom:103.053287pt;}
.y10f{bottom:107.737002pt;}
.y2c{bottom:109.263992pt;}
.y132{bottom:109.610922pt;}
.yfa{bottom:109.611114pt;}
.y14f{bottom:123.663898pt;}
.y10e{bottom:128.347614pt;}
.y131{bottom:130.221534pt;}
.yf9{bottom:130.221725pt;}
.y2b{bottom:131.748295pt;}
.y88{bottom:137.369337pt;}
.y14e{bottom:144.274510pt;}
.y130{bottom:150.832145pt;}
.y2a{bottom:154.232598pt;}
.y9c{bottom:159.853843pt;}
.y10d{bottom:161.137223pt;}
.y14d{bottom:164.885121pt;}
.y87{bottom:167.348408pt;}
.ybb{bottom:169.222281pt;}
.yf8{bottom:170.506102pt;}
.y167{bottom:180.464483pt;}
.y4b{bottom:181.401110pt;}
.y10c{bottom:181.747835pt;}
.y64{bottom:186.085414pt;}
.ya1{bottom:187.959222pt;}
.y12f{bottom:191.116522pt;}
.yf7{bottom:191.116714pt;}
.y29{bottom:191.706438pt;}
.y86{bottom:197.327480pt;}
.yba{bottom:199.201352pt;}
.y4a{bottom:202.011721pt;}
.y14c{bottom:205.169498pt;}
.y166{bottom:210.443554pt;}
.y12e{bottom:211.727134pt;}
.yf6{bottom:211.727325pt;}
.y28{bottom:214.190741pt;}
.y68{bottom:214.190793pt;}
.ya0{bottom:217.938293pt;}
.y137{bottom:221.725022pt;}
.y49{bottom:222.622333pt;}
.y14b{bottom:225.780110pt;}
.y85{bottom:227.306551pt;}
.yb9{bottom:229.180423pt;}
.y12d{bottom:232.337745pt;}
.yf5{bottom:232.337937pt;}
.y115{bottom:235.777757pt;}
.y27{bottom:236.675044pt;}
.y165{bottom:240.422625pt;}
.y48{bottom:243.232944pt;}
.y67{bottom:244.169864pt;}
.y14a{bottom:246.390721pt;}
.y9f{bottom:247.917365pt;}
.y12c{bottom:252.948357pt;}
.yf4{bottom:252.948548pt;}
.y84{bottom:257.285622pt;}
.y26{bottom:259.159348pt;}
.yb8{bottom:259.159494pt;}
.y149{bottom:267.001333pt;}
.y164{bottom:270.401697pt;}
.y12b{bottom:273.558968pt;}
.yf3{bottom:273.559160pt;}
.y66{bottom:274.148936pt;}
.y47{bottom:277.896246pt;}
.y9e{bottom:277.896436pt;}
.y25{bottom:281.643651pt;}
.y83{bottom:287.264694pt;}
.y148{bottom:287.611944pt;}
.yb7{bottom:289.138566pt;}
.y46{bottom:298.506857pt;}
.y24{bottom:304.127955pt;}
.y65{bottom:304.128007pt;}
.y9d{bottom:307.875507pt;}
.y163{bottom:311.622920pt;}
.y12a{bottom:313.843345pt;}
.yf2{bottom:313.843537pt;}
.y82{bottom:317.243765pt;}
.y178{bottom:318.180916pt;}
.y45{bottom:319.117468pt;}
.y147{bottom:327.896321pt;}
.yb6{bottom:330.359789pt;}
.y129{bottom:334.453957pt;}
.yf1{bottom:334.454148pt;}
.y44{bottom:339.728080pt;}
.y23{bottom:341.601794pt;}
.y63{bottom:345.349230pt;}
.y81{bottom:347.222836pt;}
.y182{bottom:348.159987pt;}
.y146{bottom:348.506933pt;}
.y9b{bottom:349.096730pt;}
.y16f{bottom:354.717835pt;}
.y128{bottom:355.064568pt;}
.yf0{bottom:355.064760pt;}
.y43{bottom:360.338691pt;}
.y22{bottom:364.086097pt;}
.y145{bottom:369.117544pt;}
.yc0{bottom:373.454704pt;}
.yef{bottom:375.675371pt;}
.y80{bottom:377.201907pt;}
.y16e{bottom:377.202138pt;}
.y181{bottom:379.075904pt;}
.y62{bottom:380.949377pt;}
.y9a{bottom:384.696877pt;}
.y6b{bottom:388.444145pt;}
.yb5{bottom:388.444239pt;}
.ya5{bottom:392.191645pt;}
.y162{bottom:392.191674pt;}
.y42{bottom:394.065147pt;}
.y127{bottom:395.348945pt;}
.ybf{bottom:395.939007pt;}
.yee{bottom:396.285983pt;}
.y16d{bottom:399.686442pt;}
.y21{bottom:401.559936pt;}
.y7f{bottom:407.180979pt;}
.y144{bottom:409.401921pt;}
.y180{bottom:409.991821pt;}
.y41{bottom:414.675758pt;}
.y126{bottom:415.959557pt;}
.y20{bottom:424.044240pt;}
.y143{bottom:430.012533pt;}
.y40{bottom:435.286370pt;}
.y125{bottom:436.570168pt;}
.yed{bottom:436.570360pt;}
.y7e{bottom:437.160050pt;}
.y17f{bottom:440.907739pt;}
.y1f{bottom:446.528543pt;}
.y142{bottom:450.623144pt;}
.y124{bottom:457.180780pt;}
.yec{bottom:457.180971pt;}
.y7d{bottom:467.139121pt;}
.y1e{bottom:469.012847pt;}
.y3f{bottom:469.949671pt;}
.y141{bottom:471.233756pt;}
.y61{bottom:471.823437pt;}
.y17e{bottom:471.823656pt;}
.y99{bottom:475.570937pt;}
.y123{bottom:477.791391pt;}
.yeb{bottom:477.791583pt;}
.yb4{bottom:479.318299pt;}
.y161{bottom:483.065733pt;}
.yce{bottom:486.812821pt;}
.y3e{bottom:490.560282pt;}
.y1d{bottom:491.497150pt;}
.y140{bottom:491.844367pt;}
.y7c{bottom:497.118192pt;}
.yea{bottom:498.402194pt;}
.y10b{bottom:499.031871pt;}
.y60{bottom:501.802508pt;}
.y17d{bottom:502.739573pt;}
.y98{bottom:505.550008pt;}
.yb3{bottom:509.297370pt;}
.y3d{bottom:511.170894pt;}
.y160{bottom:513.044805pt;}
.y1c{bottom:513.981454pt;}
.ycd{bottom:516.791892pt;}
.y122{bottom:518.075768pt;}
.ye9{bottom:519.012806pt;}
.y7b{bottom:527.097264pt;}
.y3c{bottom:531.781505pt;}
.y5f{bottom:531.781579pt;}
.y13f{bottom:532.128744pt;}
.y17c{bottom:533.655490pt;}
.y97{bottom:535.529080pt;}
.y1b{bottom:536.465757pt;}
.y121{bottom:538.686380pt;}
.yb2{bottom:539.276442pt;}
.ye8{bottom:539.623417pt;}
.y15f{bottom:543.023876pt;}
.ycc{bottom:546.770963pt;}
.y3b{bottom:552.392117pt;}
.y13e{bottom:552.739356pt;}
.y7a{bottom:557.076335pt;}
.y120{bottom:559.296991pt;}
.y5e{bottom:561.760651pt;}
.y18f{bottom:562.559997pt;}
.y17b{bottom:564.571408pt;}
.y96{bottom:565.508151pt;}
.yb1{bottom:569.255513pt;}
.y3a{bottom:573.002728pt;}
.y15e{bottom:573.002947pt;}
.y13d{bottom:573.349967pt;}
.y1a{bottom:573.939596pt;}
.ycb{bottom:576.750035pt;}
.y11f{bottom:579.907603pt;}
.ye7{bottom:579.907794pt;}
.y79{bottom:587.055406pt;}
.y5d{bottom:591.739722pt;}
.y13c{bottom:593.960579pt;}
.y17a{bottom:595.487325pt;}
.y19{bottom:596.423900pt;}
.yb0{bottom:599.234584pt;}
.y11e{bottom:600.518214pt;}
.ye6{bottom:600.518406pt;}
.yca{bottom:606.729106pt;}
.y95{bottom:606.729374pt;}
.y189{bottom:613.326244pt;}
.y39{bottom:614.223951pt;}
.y15d{bottom:614.224170pt;}
.y13b{bottom:614.571190pt;}
.y78{bottom:617.034477pt;}
.y18{bottom:618.908203pt;}
.ye5{bottom:621.129017pt;}
.y5c{bottom:621.718793pt;}
.y179{bottom:633.898010pt;}
.y38{bottom:634.834563pt;}
.yaf{bottom:640.455807pt;}
.y11d{bottom:640.802591pt;}
.y17{bottom:641.392506pt;}
.ye4{bottom:641.739629pt;}
.y77{bottom:647.013549pt;}
.yc9{bottom:647.950329pt;}
.ya4{bottom:649.824289pt;}
.y5b{bottom:651.697864pt;}
.y13a{bottom:654.855567pt;}
.y37{bottom:655.445174pt;}
.y16c{bottom:657.319085pt;}
.y11c{bottom:661.413203pt;}
.ye3{bottom:662.350240pt;}
.y16{bottom:663.876810pt;}
.y94{bottom:664.813824pt;}
.y187{bottom:668.561311pt;}
.ya3{bottom:672.308592pt;}
.y15c{bottom:672.308621pt;}
.y139{bottom:675.466179pt;}
.y36{bottom:676.055786pt;}
.y76{bottom:676.992620pt;}
.y106{bottom:678.866714pt;}
.y16b{bottom:679.803389pt;}
.y11b{bottom:682.023814pt;}
.ye2{bottom:682.960852pt;}
.ybe{bottom:683.550722pt;}
.yd2{bottom:691.045244pt;}
.y186{bottom:691.045614pt;}
.y5a{bottom:692.919087pt;}
.y138{bottom:696.076790pt;}
.yae{bottom:698.540258pt;}
.y15{bottom:701.350649pt;}
.ye1{bottom:703.571463pt;}
.yc8{bottom:706.034780pt;}
.ybd{bottom:706.035025pt;}
.y177{bottom:706.035150pt;}
.y75{bottom:706.971691pt;}
.yd1{bottom:713.529547pt;}
.y185{bottom:713.529918pt;}
.y10a{bottom:713.530016pt;}
.y11a{bottom:713.876577pt;}
.y35{bottom:719.150701pt;}
.y14{bottom:723.834952pt;}
.y117{bottom:724.181883pt;}
.y59{bottom:728.519235pt;}
.y105{bottom:728.519551pt;}
.y119{bottom:734.487189pt;}
.y6a{bottom:736.014002pt;}
.y109{bottom:736.014319pt;}
.y74{bottom:736.950762pt;}
.y34{bottom:741.635004pt;}
.ye0{bottom:743.855840pt;}
.y116{bottom:744.792494pt;}
.y13{bottom:746.319256pt;}
.y118{bottom:755.097800pt;}
.y8d{bottom:761.308960pt;}
.y15b{bottom:763.182681pt;}
.ydf{bottom:764.466452pt;}
.y73{bottom:766.929834pt;}
.y12{bottom:768.803559pt;}
.y15a{bottom:783.793292pt;}
.yde{bottom:785.077063pt;}
.yad{bottom:789.414317pt;}
.y93{bottom:789.414339pt;}
.y11{bottom:791.287863pt;}
.yc7{bottom:796.908839pt;}
.y72{bottom:796.908905pt;}
.y176{bottom:796.909210pt;}
.y33{bottom:802.529993pt;}
.ydd{bottom:805.687675pt;}
.y10{bottom:813.772166pt;}
.y159{bottom:813.772363pt;}
.y58{bottom:819.393294pt;}
.yac{bottom:819.393389pt;}
.y92{bottom:819.393411pt;}
.y104{bottom:819.393611pt;}
.ydc{bottom:826.298286pt;}
.yc6{bottom:826.887911pt;}
.y71{bottom:826.887976pt;}
.y175{bottom:826.888281pt;}
.yf{bottom:836.256470pt;}
.y32{bottom:843.751216pt;}
.y158{bottom:843.751435pt;}
.ydb{bottom:846.908898pt;}
.y57{bottom:849.372366pt;}
.yab{bottom:849.372460pt;}
.y91{bottom:849.372482pt;}
.y103{bottom:849.372682pt;}
.yc5{bottom:856.866982pt;}
.y70{bottom:856.867047pt;}
.y174{bottom:856.867352pt;}
.y157{bottom:864.362046pt;}
.yda{bottom:867.519509pt;}
.ye{bottom:873.730309pt;}
.y56{bottom:879.351437pt;}
.yaa{bottom:879.351531pt;}
.y90{bottom:879.351553pt;}
.y102{bottom:879.351754pt;}
.yc4{bottom:886.846053pt;}
.y6f{bottom:886.846119pt;}
.y173{bottom:886.846424pt;}
.y51{bottom:888.719822pt;}
.y156{bottom:894.341117pt;}
.yd{bottom:896.214612pt;}
.yd9{bottom:899.372272pt;}
.y4{bottom:904.646248pt;}
.y55{bottom:909.330508pt;}
.ya9{bottom:909.330602pt;}
.y8f{bottom:909.330624pt;}
.y101{bottom:909.330825pt;}
.y50{bottom:911.204126pt;}
.yc3{bottom:916.825124pt;}
.y6e{bottom:916.825190pt;}
.y172{bottom:916.825495pt;}
.yc{bottom:918.698916pt;}
.yd8{bottom:919.982884pt;}
.y155{bottom:935.562340pt;}
.y3{bottom:938.372703pt;}
.y54{bottom:939.309579pt;}
.ya8{bottom:939.309674pt;}
.y8e{bottom:939.309696pt;}
.yb{bottom:941.183219pt;}
.y4f{bottom:948.677965pt;}
.y100{bottom:950.552048pt;}
.y18e{bottom:956.172780pt;}
.yc2{bottom:958.046347pt;}
.y6d{bottom:958.046413pt;}
.y171{bottom:958.046718pt;}
.ya{bottom:963.667523pt;}
.yd4{bottom:966.478035pt;}
.y4e{bottom:971.162268pt;}
.y2{bottom:975.846542pt;}
.y18d{bottom:978.657084pt;}
.y16a{bottom:978.657255pt;}
.y53{bottom:980.530802pt;}
.ya7{bottom:980.530897pt;}
.y8c{bottom:980.530919pt;}
.y9{bottom:986.151826pt;}
.y113{bottom:988.962807pt;}
.y108{bottom:993.646963pt;}
.yd0{bottom:1001.141262pt;}
.y8a{bottom:1001.141328pt;}
.yd6{bottom:1001.141336pt;}
.y18c{bottom:1001.141387pt;}
.y169{bottom:1001.141559pt;}
.y184{bottom:1001.141633pt;}
.y4d{bottom:1008.636108pt;}
.yff{bottom:1008.636498pt;}
.yc1{bottom:1016.130798pt;}
.y6c{bottom:1016.130864pt;}
.yd3{bottom:1016.130872pt;}
.y8{bottom:1016.130897pt;}
.y188{bottom:1016.130923pt;}
.y52{bottom:1016.130949pt;}
.ya6{bottom:1016.131044pt;}
.y8b{bottom:1016.131066pt;}
.y154{bottom:1016.131094pt;}
.y170{bottom:1016.131168pt;}
.y107{bottom:1016.131266pt;}
.y112{bottom:1016.131340pt;}
.ycf{bottom:1023.625566pt;}
.y89{bottom:1023.625631pt;}
.yd5{bottom:1023.625640pt;}
.y31{bottom:1023.625665pt;}
.y18b{bottom:1023.625690pt;}
.y69{bottom:1023.625717pt;}
.ybc{bottom:1023.625812pt;}
.ya2{bottom:1023.625834pt;}
.y168{bottom:1023.625862pt;}
.y183{bottom:1023.625936pt;}
.y114{bottom:1023.626108pt;}
.y4c{bottom:1031.120411pt;}
.y5{bottom:1090.559975pt;}
.h5{height:12.000000pt;}
.h6{height:31.063904pt;}
.h18{height:31.359999pt;}
.h17{height:34.187559pt;}
.h4{height:39.347531pt;}
.ha{height:44.968607pt;}
.he{height:49.825216pt;}
.hc{height:57.848290pt;}
.hf{height:58.507529pt;}
.hd{height:59.628652pt;}
.h8{height:63.135924pt;}
.h9{height:63.855422pt;}
.hb{height:67.452910pt;}
.h16{height:69.327498pt;}
.h19{height:82.443945pt;}
.h7{height:93.834493pt;}
.h14{height:99.069513pt;}
.h3{height:126.271848pt;}
.h11{height:140.290736pt;}
.h12{height:200.484993pt;}
.h13{height:773.834720pt;}
.h15{height:787.887455pt;}
.h10{height:938.719961pt;}
.h2{height:1047.046836pt;}
.h0{height:1122.559973pt;}
.h1{height:1122.666667pt;}
.w6{width:59.999997pt;}
.wc{width:64.999997pt;}
.w9{width:65.999997pt;}
.w3{width:125.999995pt;}
.we{width:181.119992pt;}
.w7{width:565.854952pt;}
.wa{width:602.830407pt;}
.wd{width:645.486917pt;}
.w4{width:666.999972pt;}
.w2{width:718.062466pt;}
.w8{width:726.999970pt;}
.wb{width:727.999970pt;}
.w5{width:732.999969pt;}
.w0{width:793.279947pt;}
.w1{width:793.333333pt;}
.x0{left:0.000000pt;}
.x15{left:6.821409pt;}
.x8{left:7.828130pt;}
.x4{left:31.999999pt;}
.x1{left:37.999998pt;}
.x9{left:65.579218pt;}
.x3{left:67.452910pt;}
.x24{left:69.813617pt;}
.xe{left:78.695062pt;}
.x2{left:83.379292pt;}
.xa{left:102.862761pt;}
.x10{left:115.495543pt;}
.x21{left:124.864003pt;}
.x5{left:125.999995pt;}
.x1a{left:136.369643pt;}
.x13{left:142.561613pt;}
.xc{left:148.094855pt;}
.x17{left:152.178918pt;}
.x12{left:153.232054pt;}
.x11{left:160.727638pt;}
.x16{left:163.216134pt;}
.x22{left:181.557822pt;}
.x6{left:204.687491pt;}
.x1d{left:288.563204pt;}
.x1c{left:298.678208pt;}
.x23{left:315.199987pt;}
.x1b{left:326.432270pt;}
.x1e{left:416.925736pt;}
.xd{left:418.433477pt;}
.x14{left:426.440577pt;}
.x18{left:436.057891pt;}
.x1f{left:461.016050pt;}
.xf{left:585.104232pt;}
.xb{left:674.807234pt;}
.x19{left:726.999970pt;}
.x20{left:727.999970pt;}
.x7{left:732.999969pt;}
}




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