
    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_af124e5971b4870685fcd9a6.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.122070;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_2896c984ed1651910de6a4ed.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.135254;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_5fe2bf73a53d0fa0bb4357d7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.100098;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_69486de430070922ab3ee01d.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.035156;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_e7292ff83e381650fcbd58be.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_0e4e00c839971fc16f565a2c.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_1ceb7a5689b4cf6a6e69653e.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.927734;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_f5df439951cfac9705575910.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.942383;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);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls10{letter-spacing:0.432401px;}
.ls11{letter-spacing:0.846722px;}
.ls7{letter-spacing:46.197737px;}
.lsa{letter-spacing:60.548806px;}
.lsc{letter-spacing:63.803278px;}
.lsf{letter-spacing:83.048640px;}
.ls8{letter-spacing:88.662848px;}
.ls3{letter-spacing:90.145039px;}
.lse{letter-spacing:94.547615px;}
.ls6{letter-spacing:104.413875px;}
.ls5{letter-spacing:113.917613px;}
.lsd{letter-spacing:122.851648px;}
.lsb{letter-spacing:122.929360px;}
.ls1{letter-spacing:132.169859px;}
.ls4{letter-spacing:132.234560px;}
.ls9{letter-spacing:158.902216px;}
.ls2{letter-spacing:162.378994px;}
.sc_{text-shadow:none;}
.sc2{text-shadow:-0.015em 0 rgb(64,64,64),0 0.015em rgb(64,64,64),0.015em 0 rgb(64,64,64),0 -0.015em  rgb(64,64,64);}
.sc1{text-shadow:-0.015em 0 rgb(192,0,0),0 0.015em rgb(192,0,0),0.015em 0 rgb(192,0,0),0 -0.015em  rgb(192,0,0);}
.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;}
.sc2{-webkit-text-stroke:0.015em rgb(64,64,64);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(192,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws36{word-spacing:-65.739004px;}
.ws41{word-spacing:-50.515806px;}
.ws1{word-spacing:-47.839783px;}
.ws27{word-spacing:-41.818945px;}
.ws39{word-spacing:-35.961067px;}
.ws2{word-spacing:-34.333805px;}
.wse{word-spacing:-29.940563px;}
.ws1e{word-spacing:-13.547549px;}
.ws63{word-spacing:-3.977994px;}
.ws6a{word-spacing:-2.864156px;}
.ws54{word-spacing:-2.649607px;}
.ws15{word-spacing:-2.645987px;}
.ws57{word-spacing:-2.517127px;}
.ws71{word-spacing:-2.386796px;}
.ws3a{word-spacing:-2.227677px;}
.ws67{word-spacing:-2.205241px;}
.ws43{word-spacing:-2.068557px;}
.ws74{word-spacing:-2.012502px;}
.ws13{word-spacing:-1.722245px;}
.ws70{word-spacing:-1.591198px;}
.ws1b{word-spacing:-1.587592px;}
.ws49{word-spacing:-1.518491px;}
.ws4{word-spacing:-1.457284px;}
.ws3d{word-spacing:-1.272958px;}
.ws1f{word-spacing:-1.164234px;}
.ws3b{word-spacing:-1.113838px;}
.ws56{word-spacing:-1.059843px;}
.wsb{word-spacing:-0.927363px;}
.ws40{word-spacing:-0.795599px;}
.ws14{word-spacing:-0.740876px;}
.ws7{word-spacing:-0.662402px;}
.ws28{word-spacing:-0.555119px;}
.ws12{word-spacing:-0.529921px;}
.ws4a{word-spacing:-0.477359px;}
.ws5{word-spacing:-0.397441px;}
.ws1a{word-spacing:-0.317518px;}
.ws10{word-spacing:-0.132480px;}
.ws19{word-spacing:-0.105839px;}
.ws0{word-spacing:0.000000px;}
.ws4d{word-spacing:0.029213px;}
.ws23{word-spacing:0.211679px;}
.ws55{word-spacing:0.264961px;}
.ws1c{word-spacing:0.317518px;}
.ws80{word-spacing:0.326538px;}
.ws1d{word-spacing:0.397441px;}
.ws2d{word-spacing:0.423361px;}
.ws2a{word-spacing:0.555119px;}
.ws18{word-spacing:0.662402px;}
.ws21{word-spacing:0.740876px;}
.ws58{word-spacing:0.927363px;}
.ws20{word-spacing:0.952555px;}
.ws5a{word-spacing:0.976497px;}
.ws3c{word-spacing:1.113838px;}
.ws22{word-spacing:1.192323px;}
.ws30{word-spacing:1.481763px;}
.ws16{word-spacing:1.799271px;}
.ws64{word-spacing:1.909437px;}
.ws7f{word-spacing:2.001136px;}
.ws78{word-spacing:3.175207px;}
.ws11{word-spacing:3.312009px;}
.ws47{word-spacing:3.500635px;}
.ws48{word-spacing:3.977994px;}
.ws3e{word-spacing:5.569192px;}
.wsf{word-spacing:6.226577px;}
.ws5d{word-spacing:6.888979px;}
.ws5c{word-spacing:7.411540px;}
.ws5b{word-spacing:9.141145px;}
.ws6d{word-spacing:10.342785px;}
.ws3{word-spacing:10.465949px;}
.ws24{word-spacing:12.320674px;}
.wsc{word-spacing:12.585635px;}
.ws7d{word-spacing:15.876034px;}
.ws7c{word-spacing:16.144839px;}
.ws17{word-spacing:16.295085px;}
.ws2c{word-spacing:18.839561px;}
.ws6{word-spacing:20.534457px;}
.ws34{word-spacing:26.460057px;}
.ws37{word-spacing:26.573001px;}
.ws59{word-spacing:28.085838px;}
.ws5e{word-spacing:29.543122px;}
.ws8{word-spacing:29.808082px;}
.ws79{word-spacing:30.270305px;}
.wsd{word-spacing:31.132886px;}
.wsa{word-spacing:35.372258px;}
.ws51{word-spacing:38.684267px;}
.ws75{word-spacing:39.160884px;}
.ws38{word-spacing:40.257301px;}
.ws4b{word-spacing:41.689379px;}
.ws4c{word-spacing:43.121457px;}
.ws65{word-spacing:44.871774px;}
.ws29{word-spacing:44.964618px;}
.ws4e{word-spacing:45.349133px;}
.ws66{word-spacing:46.144732px;}
.ws4f{word-spacing:46.462972px;}
.ws53{word-spacing:48.355334px;}
.ws52{word-spacing:48.813336px;}
.ws60{word-spacing:51.004941px;}
.ws5f{word-spacing:51.534862px;}
.ws50{word-spacing:55.906714px;}
.ws46{word-spacing:58.078715px;}
.ws45{word-spacing:59.015349px;}
.ws44{word-spacing:59.192553px;}
.ws35{word-spacing:60.752291px;}
.ws61{word-spacing:62.852308px;}
.ws62{word-spacing:63.647906px;}
.ws72{word-spacing:66.671182px;}
.ws73{word-spacing:66.989422px;}
.ws6f{word-spacing:74.308931px;}
.ws2e{word-spacing:78.956810px;}
.ws3f{word-spacing:87.038512px;}
.ws7e{word-spacing:87.847389px;}
.ws9{word-spacing:88.629365px;}
.ws7b{word-spacing:95.044525px;}
.ws26{word-spacing:95.295384px;}
.ws68{word-spacing:95.790099px;}
.ws69{word-spacing:96.585698px;}
.ws6c{word-spacing:101.836650px;}
.ws6b{word-spacing:102.154890px;}
.ws33{word-spacing:104.358465px;}
.ws2f{word-spacing:106.898630px;}
.ws32{word-spacing:109.862157px;}
.ws31{word-spacing:117.482653px;}
.ws42{word-spacing:118.066867px;}
.ws6e{word-spacing:145.594586px;}
.ws76{word-spacing:212.738859px;}
.ws77{word-spacing:219.512633px;}
.ws2b{word-spacing:236.235389px;}
.ws7a{word-spacing:236.447070px;}
.ws25{word-spacing:269.469221px;}
._19{margin-left:-20.700081px;}
._4a{margin-left:-19.044038px;}
._46{margin-left:-17.304517px;}
._36{margin-left:-16.230216px;}
._4{margin-left:-15.157471px;}
._32{margin-left:-13.948544px;}
._1b{margin-left:-11.216814px;}
._1a{margin-left:-8.974030px;}
._11{margin-left:-5.564175px;}
._2{margin-left:-4.106891px;}
._3{margin-left:-2.881448px;}
._1{margin-left:-1.324804px;}
._0{width:1.059843px;}
._a{width:2.086566px;}
._12{width:4.080972px;}
._1d{width:5.106257px;}
._16{width:23.496367px;}
._17{width:25.173257px;}
._15{width:26.611828px;}
._13{width:27.820877px;}
._14{width:29.245041px;}
._8{width:30.602965px;}
._7{width:32.557050px;}
._10{width:34.941696px;}
._42{width:35.961067px;}
._2f{width:37.063099px;}
._3a{width:38.448782px;}
._39{width:39.679999px;}
._1c{width:40.737712px;}
._30{width:42.536823px;}
._d{width:43.718521px;}
._e{width:44.910844px;}
._18{width:47.394851px;}
._5{width:48.752775px;}
._29{width:51.022196px;}
._6{width:52.064784px;}
._9{width:58.026400px;}
._f{width:59.649285px;}
._2d{width:61.246746px;}
._c{width:67.167545px;}
._22{width:68.881108px;}
._38{width:71.150639px;}
._2b{width:75.991843px;}
._2e{width:77.791588px;}
._35{width:79.268435px;}
._47{width:80.941991px;}
._20{width:84.378049px;}
._37{width:87.569522px;}
._44{width:88.943237px;}
._33{width:94.039782px;}
._34{width:95.221154px;}
._3b{width:100.749498px;}
._43{width:104.294124px;}
._2c{width:109.898158px;}
._41{width:112.549520px;}
._40{width:113.770633px;}
._b{width:119.960971px;}
._31{width:121.937586px;}
._23{width:129.679482px;}
._3c{width:132.809576px;}
._4d{width:134.009341px;}
._3e{width:137.000685px;}
._1f{width:138.460001px;}
._3d{width:139.546602px;}
._4b{width:141.402545px;}
._4c{width:144.124152px;}
._24{width:152.605774px;}
._2a{width:154.002568px;}
._25{width:156.092018px;}
._27{width:160.136988px;}
._28{width:162.065151px;}
._26{width:168.000845px;}
._3f{width:182.844470px;}
._45{width:268.760739px;}
._48{width:281.880611px;}
._49{width:285.345255px;}
._21{width:286.429583px;}
._1e{width:319.098930px;}
.fc5{color:rgb(255,0,0);}
.fc3{color:rgb(192,0,0);}
.fc4{color:rgb(0,0,0);}
.fc2{color:rgb(89,89,89);}
.fc1{color:rgb(64,64,64);}
.fc0{color:rgb(210,32,32);}
.fs9{font-size:72.719399px;}
.fs1{font-size:99.360274px;}
.fs5{font-size:105.839491px;}
.fs6{font-size:118.799398px;}
.fs0{font-size:132.480366px;}
.fs3{font-size:151.919490px;}
.fs8{font-size:159.119766px;}
.fs7{font-size:185.039581px;}
.fs2{font-size:211.680456px;}
.fs4{font-size:290.880547px;}
.y0{bottom:0.000000px;}
.y7c{bottom:0.004781px;}
.y7d{bottom:7.907003px;}
.y8b{bottom:26.290031px;}
.y71{bottom:27.007429px;}
.y3f{bottom:37.257324px;}
.y60{bottom:56.168299px;}
.y2c{bottom:66.061247px;}
.y7b{bottom:71.452089px;}
.y8a{bottom:73.975495px;}
.y3e{bottom:75.427451px;}
.yc{bottom:88.559639px;}
.y70{bottom:90.547734px;}
.yae{bottom:96.826889px;}
.y3d{bottom:113.589456px;}
.y2b{bottom:113.752223px;}
.y89{bottom:121.680343px;}
.y5f{bottom:122.937949px;}
.yb{bottom:130.322643px;}
.y7a{bottom:134.992393px;}
.y1e{bottom:145.433008px;}
.y3c{bottom:151.741840px;}
.ya4{bottom:152.095832px;}
.y6f{bottom:154.088039px;}
.yad{bottom:160.367194px;}
.y2a{bottom:161.459387px;}
.y88{bottom:169.385192px;}
.ya9{bottom:169.734806px;}
.ya5{bottom:179.271899px;}
.y1d{bottom:185.215942px;}
.y3b{bottom:189.907078px;}
.y5e{bottom:191.349209px;}
.ya3{bottom:191.700848px;}
.y79{bottom:198.532698px;}
.y29{bottom:208.972496px;}
.ya8{bottom:217.264847px;}
.yac{bottom:224.088397px;}
.y87{bottom:226.432883px;}
.y97{bottom:226.801939px;}
.y6e{bottom:228.603862px;}
.y4d{bottom:229.506402px;}
.y3a{bottom:229.672534px;}
.y55{bottom:231.305914px;}
.ya2{bottom:231.483781px;}
.y1c{bottom:232.923106px;}
.y5d{bottom:254.889514px;}
.y28{bottom:256.679660px;}
.y4c{bottom:267.658786px;}
.y54{bottom:271.072659px;}
.ya1{bottom:271.250526px;}
.y1b{bottom:272.706039px;}
.y86{bottom:274.137731px;}
.y96{bottom:274.506788px;}
.y78{bottom:274.863745px;}
.y39{bottom:277.379698px;}
.y6d{bottom:284.215113px;}
.yab{bottom:287.628662px;}
.y66{bottom:294.492621px;}
.y27{bottom:296.462593px;}
.y6{bottom:297.897821px;}
.y4b{bottom:305.824064px;}
.y53{bottom:318.779823px;}
.y1a{bottom:320.219098px;}
.ya7{bottom:322.192252px;}
.y38{bottom:325.070674px;}
.y5c{bottom:331.194735px;}
.y85{bottom:331.379672px;}
.y95{bottom:331.748729px;}
.y5{bottom:333.532653px;}
.ye{bottom:337.134901px;}
.y26{bottom:344.153569px;}
.y4a{bottom:345.770761px;}
.y6c{bottom:351.007372px;}
.y77{bottom:351.169006px;}
.ya0{bottom:358.562756px;}
.y19{bottom:360.002031px;}
.y65{bottom:361.262271px;}
.y37{bottom:364.675740px;}
.y52{bottom:366.292932px;}
.y4{bottom:369.361552px;}
.y40{bottom:378.357170px;}
.ya{bottom:379.083422px;}
.y94{bottom:379.434134px;}
.y49{bottom:385.375778px;}
.y84{bottom:388.621613px;}
.y25{bottom:391.860733px;}
.y5b{bottom:394.735040px;}
.y9f{bottom:406.253732px;}
.y18{bottom:407.693057px;}
.y36{bottom:410.759168px;}
.y51{bottom:412.206186px;}
.y76{bottom:414.709311px;}
.y6b{bottom:417.596315px;}
.y31{bottom:419.233882px;}
.y9{bottom:420.846427px;}
.y3{bottom:425.518529px;}
.y30{bottom:425.886467px;}
.y64{bottom:428.031920px;}
.y48{bottom:431.275912px;}
.y93{bottom:436.676104px;}
.y24{bottom:439.373842px;}
.y83{bottom:445.863554px;}
.y9e{bottom:446.036665px;}
.y17{bottom:447.298073px;}
.y35{bottom:448.743549px;}
.y50{bottom:450.358532px;}
.yd{bottom:462.609431px;}
.y47{bottom:469.441151px;}
.y67{bottom:470.525748px;}
.y5a{bottom:471.066127px;}
.yb0{bottom:472.865875px;}
.y6a{bottom:473.230176px;}
.y2f{bottom:473.577443px;}
.y75{bottom:478.249615px;}
.y22{bottom:479.156751px;}
.y63{bottom:483.485074px;}
.y92{bottom:484.206145px;}
.y9d{bottom:485.641682px;}
.y34{bottom:486.895894px;}
.y23{bottom:487.080982px;}
.y4f{bottom:488.523809px;}
.yaa{bottom:490.859499px;}
.y16{bottom:495.005237px;}
.y82{bottom:502.911245px;}
.y46{bottom:507.606428px;}
.y21{bottom:518.939684px;}
.y2e{bottom:521.284607px;}
.y4e{bottom:526.676154px;}
.y33{bottom:526.863915px;}
.y9c{bottom:533.332683px;}
.y59{bottom:534.606431px;}
.y15{bottom:534.771982px;}
.y91{bottom:541.448086px;}
.y69{bottom:541.789920px;}
.y45{bottom:545.758773px;}
.y62{bottom:550.254724px;}
.y74{bottom:554.399804px;}
.y81{bottom:560.153186px;}
.y20{bottom:566.452768px;}
.y2d{bottom:568.975583px;}
.y14{bottom:574.554916px;}
.y9b{bottom:581.039847px;}
.y44{bottom:583.924031px;}
.y8{bottom:585.898648px;}
.y90{bottom:589.133521px;}
.ya6{bottom:598.690027px;}
.y68{bottom:605.330245px;}
.y61{bottom:605.888567px;}
.y80{bottom:607.858063px;}
.y58{bottom:610.730774px;}
.y1f{bottom:614.159932px;}
.y41{bottom:617.578352px;}
.y73{bottom:618.120987px;}
.y9a{bottom:620.822780px;}
.y43{bottom:621.895499px;}
.y13{bottom:622.084187px;}
.y8f{bottom:646.375448px;}
.y7{bottom:649.438953px;}
.y7f{bottom:655.562897px;}
.y99{bottom:660.411633px;}
.y12{bottom:661.867096px;}
.y32{bottom:669.775164px;}
.y57{bottom:674.451977px;}
.y72{bottom:681.661312px;}
.y8e{bottom:693.905488px;}
.y98{bottom:700.194554px;}
.y2{bottom:706.145821px;}
.y11{bottom:709.558097px;}
.y56{bottom:737.992291px;}
.y1{bottom:745.912566px;}
.yaf{bottom:746.106634px;}
.y8d{bottom:760.501448px;}
.y7e{bottom:766.074841px;}
.y8c{bottom:789.121123px;}
.y10{bottom:793.619736px;}
.y42{bottom:823.327483px;}
.yf{bottom:833.580549px;}
.he{height:58.320594px;}
.h11{height:66.186016px;}
.h4{height:85.921409px;}
.h3{height:91.694784px;}
.h9{height:105.271017px;}
.h2{height:121.483460px;}
.h12{height:121.515290px;}
.hb{height:121.641767px;}
.h7{height:131.768801px;}
.h14{height:135.650062px;}
.h6{height:151.103516px;}
.hf{height:158.265119px;}
.h13{height:161.654411px;}
.h10{height:168.414931px;}
.hd{height:184.045716px;}
.ha{height:194.109325px;}
.hc{height:210.543501px;}
.h5{height:216.745077px;}
.h8{height:289.318200px;}
.h0{height:892.980015px;}
.h1{height:893.250000px;}
.w6{width:13.307572px;}
.w4{width:54.005375px;}
.w5{width:114.832482px;}
.w2{width:148.501908px;}
.w3{width:164.677672px;}
.w0{width:1262.880060px;}
.w1{width:1263.000000px;}
.x0{left:0.000000px;}
.xf{left:71.285826px;}
.x13{left:89.996737px;}
.xe{left:97.015351px;}
.xd{left:103.678180px;}
.x10{left:115.920323px;}
.x3{left:118.257165px;}
.x1{left:127.434735px;}
.x12{left:130.865263px;}
.x1c{left:162.907416px;}
.x15{left:168.121294px;}
.x4{left:173.334054px;}
.x1d{left:177.844308px;}
.x1e{left:215.099157px;}
.x11{left:230.588181px;}
.x1f{left:237.417114px;}
.x20{left:267.290913px;}
.x18{left:277.210444px;}
.x17{left:363.417122px;}
.xc{left:366.112623px;}
.xb{left:368.096936px;}
.x1b{left:387.355450px;}
.x16{left:407.154797px;}
.x5{left:409.872481px;}
.x2{left:415.622403px;}
.x21{left:425.693468px;}
.xa{left:428.757158px;}
.x14{left:449.993319px;}
.x19{left:454.859756px;}
.x9{left:521.629820px;}
.x8{left:571.311516px;}
.x1a{left:635.764882px;}
.x7{left:722.526263px;}
.x6{left:746.096821px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls10{letter-spacing:0.384356pt;}
.ls11{letter-spacing:0.752642pt;}
.ls7{letter-spacing:41.064655pt;}
.lsa{letter-spacing:53.821161pt;}
.lsc{letter-spacing:56.714025pt;}
.lsf{letter-spacing:73.821013pt;}
.ls8{letter-spacing:78.811421pt;}
.ls3{letter-spacing:80.128923pt;}
.lse{letter-spacing:84.042324pt;}
.ls6{letter-spacing:92.812333pt;}
.ls5{letter-spacing:101.260100pt;}
.lsd{letter-spacing:109.201465pt;}
.lsb{letter-spacing:109.270542pt;}
.ls1{letter-spacing:117.484319pt;}
.ls4{letter-spacing:117.541832pt;}
.ls9{letter-spacing:141.246414pt;}
.ls2{letter-spacing:144.336883pt;}
.ws36{word-spacing:-58.434670pt;}
.ws41{word-spacing:-44.902938pt;}
.ws1{word-spacing:-42.524252pt;}
.ws27{word-spacing:-37.172396pt;}
.ws39{word-spacing:-31.965393pt;}
.ws2{word-spacing:-30.518938pt;}
.wse{word-spacing:-26.613833pt;}
.ws1e{word-spacing:-12.042266pt;}
.ws63{word-spacing:-3.535995pt;}
.ws6a{word-spacing:-2.545916pt;}
.ws54{word-spacing:-2.355207pt;}
.ws15{word-spacing:-2.351989pt;}
.ws57{word-spacing:-2.237446pt;}
.ws71{word-spacing:-2.121597pt;}
.ws3a{word-spacing:-1.980157pt;}
.ws67{word-spacing:-1.960214pt;}
.ws43{word-spacing:-1.838717pt;}
.ws74{word-spacing:-1.788890pt;}
.ws13{word-spacing:-1.530884pt;}
.ws70{word-spacing:-1.414398pt;}
.ws1b{word-spacing:-1.411193pt;}
.ws49{word-spacing:-1.349770pt;}
.ws4{word-spacing:-1.295364pt;}
.ws3d{word-spacing:-1.131518pt;}
.ws1f{word-spacing:-1.034875pt;}
.ws3b{word-spacing:-0.990079pt;}
.ws56{word-spacing:-0.942083pt;}
.wsb{word-spacing:-0.824322pt;}
.ws40{word-spacing:-0.707199pt;}
.ws14{word-spacing:-0.658557pt;}
.ws7{word-spacing:-0.588802pt;}
.ws28{word-spacing:-0.493439pt;}
.ws12{word-spacing:-0.471041pt;}
.ws4a{word-spacing:-0.424319pt;}
.ws5{word-spacing:-0.353281pt;}
.ws1a{word-spacing:-0.282239pt;}
.ws10{word-spacing:-0.117760pt;}
.ws19{word-spacing:-0.094080pt;}
.ws0{word-spacing:0.000000pt;}
.ws4d{word-spacing:0.025967pt;}
.ws23{word-spacing:0.188159pt;}
.ws55{word-spacing:0.235521pt;}
.ws1c{word-spacing:0.282239pt;}
.ws80{word-spacing:0.290256pt;}
.ws1d{word-spacing:0.353281pt;}
.ws2d{word-spacing:0.376321pt;}
.ws2a{word-spacing:0.493439pt;}
.ws18{word-spacing:0.588802pt;}
.ws21{word-spacing:0.658557pt;}
.ws58{word-spacing:0.824322pt;}
.ws20{word-spacing:0.846716pt;}
.ws5a{word-spacing:0.867997pt;}
.ws3c{word-spacing:0.990079pt;}
.ws22{word-spacing:1.059843pt;}
.ws30{word-spacing:1.317123pt;}
.ws16{word-spacing:1.599352pt;}
.ws64{word-spacing:1.697278pt;}
.ws7f{word-spacing:1.778788pt;}
.ws78{word-spacing:2.822406pt;}
.ws11{word-spacing:2.944008pt;}
.ws47{word-spacing:3.111675pt;}
.ws48{word-spacing:3.535995pt;}
.ws3e{word-spacing:4.950393pt;}
.wsf{word-spacing:5.534735pt;}
.ws5d{word-spacing:6.123537pt;}
.ws5c{word-spacing:6.588036pt;}
.ws5b{word-spacing:8.125462pt;}
.ws6d{word-spacing:9.193586pt;}
.ws3{word-spacing:9.303066pt;}
.ws24{word-spacing:10.951710pt;}
.wsc{word-spacing:11.187231pt;}
.ws7d{word-spacing:14.112030pt;}
.ws7c{word-spacing:14.350968pt;}
.ws17{word-spacing:14.484520pt;}
.ws2c{word-spacing:16.746276pt;}
.ws6{word-spacing:18.252850pt;}
.ws34{word-spacing:23.520051pt;}
.ws37{word-spacing:23.620445pt;}
.ws59{word-spacing:24.965189pt;}
.ws5e{word-spacing:26.260553pt;}
.ws8{word-spacing:26.496073pt;}
.ws79{word-spacing:26.906938pt;}
.wsd{word-spacing:27.673676pt;}
.wsa{word-spacing:31.442007pt;}
.ws51{word-spacing:34.386015pt;}
.ws75{word-spacing:34.809675pt;}
.ws38{word-spacing:35.784267pt;}
.ws4b{word-spacing:37.057226pt;}
.ws4c{word-spacing:38.330184pt;}
.ws65{word-spacing:39.886021pt;}
.ws29{word-spacing:39.968550pt;}
.ws4e{word-spacing:40.310341pt;}
.ws66{word-spacing:41.017540pt;}
.ws4f{word-spacing:41.300419pt;}
.ws53{word-spacing:42.982519pt;}
.ws52{word-spacing:43.389632pt;}
.ws60{word-spacing:45.337725pt;}
.ws5f{word-spacing:45.808766pt;}
.ws50{word-spacing:49.694857pt;}
.ws46{word-spacing:51.625524pt;}
.ws45{word-spacing:52.458088pt;}
.ws44{word-spacing:52.615603pt;}
.ws35{word-spacing:54.002036pt;}
.ws61{word-spacing:55.868718pt;}
.ws62{word-spacing:56.575917pt;}
.ws72{word-spacing:59.263273pt;}
.ws73{word-spacing:59.546153pt;}
.ws6f{word-spacing:66.052383pt;}
.ws2e{word-spacing:70.183831pt;}
.ws3f{word-spacing:77.367566pt;}
.ws7e{word-spacing:78.086568pt;}
.ws9{word-spacing:78.781658pt;}
.ws7b{word-spacing:84.484022pt;}
.ws26{word-spacing:84.707008pt;}
.ws68{word-spacing:85.146755pt;}
.ws69{word-spacing:85.853954pt;}
.ws6c{word-spacing:90.521467pt;}
.ws6b{word-spacing:90.804347pt;}
.ws33{word-spacing:92.763080pt;}
.ws2f{word-spacing:95.021005pt;}
.ws32{word-spacing:97.655250pt;}
.ws31{word-spacing:104.429025pt;}
.ws42{word-spacing:104.948326pt;}
.ws6e{word-spacing:129.417410pt;}
.ws76{word-spacing:189.101208pt;}
.ws77{word-spacing:195.122341pt;}
.ws2b{word-spacing:209.987013pt;}
.ws7a{word-spacing:210.175173pt;}
.ws25{word-spacing:239.528196pt;}
._19{margin-left:-18.400072pt;}
._4a{margin-left:-16.928034pt;}
._46{margin-left:-15.381793pt;}
._36{margin-left:-14.426859pt;}
._4{margin-left:-13.473307pt;}
._32{margin-left:-12.398706pt;}
._1b{margin-left:-9.970501pt;}
._1a{margin-left:-7.976916pt;}
._11{margin-left:-4.945934pt;}
._2{margin-left:-3.650570pt;}
._3{margin-left:-2.561287pt;}
._1{margin-left:-1.177603pt;}
._0{width:0.942083pt;}
._a{width:1.854725pt;}
._12{width:3.627530pt;}
._1d{width:4.538895pt;}
._16{width:20.885660pt;}
._17{width:22.376229pt;}
._15{width:23.654958pt;}
._13{width:24.729668pt;}
._14{width:25.995592pt;}
._8{width:27.202635pt;}
._7{width:28.939600pt;}
._10{width:31.059286pt;}
._42{width:31.965393pt;}
._2f{width:32.944977pt;}
._3a{width:34.176695pt;}
._39{width:35.271111pt;}
._1c{width:36.211300pt;}
._30{width:37.810509pt;}
._d{width:38.860907pt;}
._e{width:39.920750pt;}
._18{width:42.128756pt;}
._5{width:43.335800pt;}
._29{width:45.353063pt;}
._6{width:46.279808pt;}
._9{width:51.579022pt;}
._f{width:53.021586pt;}
._2d{width:54.441552pt;}
._c{width:59.704485pt;}
._22{width:61.227652pt;}
._38{width:63.245012pt;}
._2b{width:67.548305pt;}
._2e{width:69.148078pt;}
._35{width:70.460831pt;}
._47{width:71.948437pt;}
._20{width:75.002710pt;}
._37{width:77.839575pt;}
._44{width:79.060655pt;}
._33{width:83.590917pt;}
._34{width:84.641026pt;}
._3b{width:89.555109pt;}
._43{width:92.705888pt;}
._2c{width:97.687252pt;}
._41{width:100.044018pt;}
._40{width:101.129451pt;}
._b{width:106.631974pt;}
._31{width:108.388966pt;}
._23{width:115.270651pt;}
._3c{width:118.052957pt;}
._4d{width:119.119415pt;}
._3e{width:121.778387pt;}
._1f{width:123.075557pt;}
._3d{width:124.041424pt;}
._4b{width:125.691151pt;}
._4c{width:128.110357pt;}
._24{width:135.649577pt;}
._2a{width:136.891172pt;}
._25{width:138.748461pt;}
._27{width:142.343990pt;}
._28{width:144.057912pt;}
._26{width:149.334084pt;}
._3f{width:162.528418pt;}
._45{width:238.898435pt;}
._48{width:250.560543pt;}
._49{width:253.640227pt;}
._21{width:254.604074pt;}
._1e{width:283.643493pt;}
.fs9{font-size:64.639466pt;}
.fs1{font-size:88.320244pt;}
.fs5{font-size:94.079547pt;}
.fs6{font-size:105.599465pt;}
.fs0{font-size:117.760325pt;}
.fs3{font-size:135.039547pt;}
.fs8{font-size:141.439792pt;}
.fs7{font-size:164.479628pt;}
.fs2{font-size:188.160406pt;}
.fs4{font-size:258.560486pt;}
.y0{bottom:0.000000pt;}
.y7c{bottom:0.004250pt;}
.y7d{bottom:7.028447pt;}
.y8b{bottom:23.368916pt;}
.y71{bottom:24.006604pt;}
.y3f{bottom:33.117621pt;}
.y60{bottom:49.927377pt;}
.y2c{bottom:58.721108pt;}
.y7b{bottom:63.512968pt;}
.y8a{bottom:65.755996pt;}
.y3e{bottom:67.046623pt;}
.yc{bottom:78.719679pt;}
.y70{bottom:80.486874pt;}
.yae{bottom:86.068346pt;}
.y3d{bottom:100.968405pt;}
.y2b{bottom:101.113087pt;}
.y89{bottom:108.160305pt;}
.y5f{bottom:109.278177pt;}
.yb{bottom:115.842349pt;}
.y7a{bottom:119.993239pt;}
.y1e{bottom:129.273785pt;}
.y3c{bottom:134.881636pt;}
.ya4{bottom:135.196295pt;}
.y6f{bottom:136.967145pt;}
.yad{bottom:142.548617pt;}
.y2a{bottom:143.519455pt;}
.y88{bottom:150.564615pt;}
.ya9{bottom:150.875383pt;}
.ya5{bottom:159.352799pt;}
.y1d{bottom:164.636393pt;}
.y3b{bottom:168.806292pt;}
.y5e{bottom:170.088186pt;}
.ya3{bottom:170.400754pt;}
.y79{bottom:176.473509pt;}
.y29{bottom:185.753330pt;}
.ya8{bottom:193.124308pt;}
.yac{bottom:199.189686pt;}
.y87{bottom:201.273673pt;}
.y97{bottom:201.601724pt;}
.y6e{bottom:203.203433pt;}
.y4d{bottom:204.005691pt;}
.y3a{bottom:204.153363pt;}
.y55{bottom:205.605257pt;}
.ya2{bottom:205.763361pt;}
.y1c{bottom:207.042761pt;}
.y5d{bottom:226.568457pt;}
.y28{bottom:228.159698pt;}
.y4c{bottom:237.918921pt;}
.y54{bottom:240.953475pt;}
.ya1{bottom:241.111579pt;}
.y1b{bottom:242.405368pt;}
.y86{bottom:243.677983pt;}
.y96{bottom:244.006033pt;}
.y78{bottom:244.323329pt;}
.y39{bottom:246.559731pt;}
.y6d{bottom:252.635656pt;}
.yab{bottom:255.669922pt;}
.y66{bottom:261.771219pt;}
.y27{bottom:263.522305pt;}
.y6{bottom:264.798063pt;}
.y4b{bottom:271.843612pt;}
.y53{bottom:283.359843pt;}
.y1a{bottom:284.639198pt;}
.ya7{bottom:286.393113pt;}
.y38{bottom:288.951710pt;}
.y5c{bottom:294.395320pt;}
.y85{bottom:294.559708pt;}
.y95{bottom:294.887759pt;}
.y5{bottom:296.473469pt;}
.ye{bottom:299.675468pt;}
.y26{bottom:305.914284pt;}
.y4a{bottom:307.351788pt;}
.y6c{bottom:312.006553pt;}
.y77{bottom:312.150228pt;}
.ya0{bottom:318.722450pt;}
.y19{bottom:320.001806pt;}
.y65{bottom:321.122018pt;}
.y37{bottom:324.156213pt;}
.y52{bottom:325.593717pt;}
.y4{bottom:328.321380pt;}
.y40{bottom:336.317485pt;}
.ya{bottom:336.963042pt;}
.y94{bottom:337.274786pt;}
.y49{bottom:342.556247pt;}
.y84{bottom:345.441433pt;}
.y25{bottom:348.320652pt;}
.y5b{bottom:350.875591pt;}
.y9f{bottom:361.114429pt;}
.y18{bottom:362.393828pt;}
.y36{bottom:365.119261pt;}
.y51{bottom:366.405499pt;}
.y76{bottom:368.630499pt;}
.y6b{bottom:371.196724pt;}
.y31{bottom:372.652340pt;}
.y9{bottom:374.085713pt;}
.y3{bottom:378.238693pt;}
.y30{bottom:378.565748pt;}
.y64{bottom:380.472818pt;}
.y48{bottom:383.356367pt;}
.y93{bottom:388.156537pt;}
.y24{bottom:390.554526pt;}
.y83{bottom:396.323159pt;}
.y9e{bottom:396.477036pt;}
.y17{bottom:397.598287pt;}
.y35{bottom:398.883155pt;}
.y50{bottom:400.318695pt;}
.yd{bottom:411.208383pt;}
.y47{bottom:417.281023pt;}
.y67{bottom:418.245109pt;}
.y5a{bottom:418.725446pt;}
.yb0{bottom:420.325222pt;}
.y6a{bottom:420.649045pt;}
.y2f{bottom:420.957727pt;}
.y75{bottom:425.110769pt;}
.y22{bottom:425.917112pt;}
.y63{bottom:429.764510pt;}
.y92{bottom:430.405463pt;}
.y9d{bottom:431.681495pt;}
.y34{bottom:432.796350pt;}
.y23{bottom:432.960872pt;}
.y4f{bottom:434.243386pt;}
.yaa{bottom:436.319555pt;}
.y16{bottom:440.004655pt;}
.y82{bottom:447.032218pt;}
.y46{bottom:451.205714pt;}
.y21{bottom:461.279719pt;}
.y2e{bottom:463.364095pt;}
.y4e{bottom:468.156581pt;}
.y33{bottom:468.323480pt;}
.y9c{bottom:474.073496pt;}
.y59{bottom:475.205717pt;}
.y15{bottom:475.352873pt;}
.y91{bottom:481.287188pt;}
.y69{bottom:481.591040pt;}
.y45{bottom:485.118909pt;}
.y62{bottom:489.115310pt;}
.y74{bottom:492.799826pt;}
.y81{bottom:497.913943pt;}
.y20{bottom:503.513571pt;}
.y2d{bottom:505.756074pt;}
.y14{bottom:510.715481pt;}
.y9b{bottom:516.479864pt;}
.y44{bottom:519.043583pt;}
.y8{bottom:520.798799pt;}
.y90{bottom:523.674241pt;}
.ya6{bottom:532.168913pt;}
.y68{bottom:538.071328pt;}
.y61{bottom:538.567616pt;}
.y80{bottom:540.318278pt;}
.y58{bottom:542.871799pt;}
.y1f{bottom:545.919939pt;}
.y41{bottom:548.958535pt;}
.y73{bottom:549.440877pt;}
.y9a{bottom:551.842471pt;}
.y43{bottom:552.795999pt;}
.y13{bottom:552.963722pt;}
.y8f{bottom:574.555953pt;}
.y7{bottom:577.279069pt;}
.y7f{bottom:582.722575pt;}
.y99{bottom:587.032563pt;}
.y12{bottom:588.326307pt;}
.y32{bottom:595.355701pt;}
.y57{bottom:599.512868pt;}
.y72{bottom:605.921166pt;}
.y8e{bottom:616.804879pt;}
.y98{bottom:622.395159pt;}
.y2{bottom:627.685174pt;}
.y11{bottom:630.718308pt;}
.y56{bottom:655.993148pt;}
.y1{bottom:663.033392pt;}
.yaf{bottom:663.205897pt;}
.y8d{bottom:676.001288pt;}
.y7e{bottom:680.955415pt;}
.y8c{bottom:701.440998pt;}
.y10{bottom:705.439766pt;}
.y42{bottom:731.846651pt;}
.yf{bottom:740.960488pt;}
.he{height:51.840528pt;}
.h11{height:58.832014pt;}
.h4{height:76.374586pt;}
.h3{height:81.506475pt;}
.h9{height:93.574237pt;}
.h2{height:107.985298pt;}
.h12{height:108.013591pt;}
.hb{height:108.126015pt;}
.h7{height:117.127823pt;}
.h14{height:120.577833pt;}
.h6{height:134.314236pt;}
.hf{height:140.680106pt;}
.h13{height:143.692810pt;}
.h10{height:149.702161pt;}
.hd{height:163.596192pt;}
.ha{height:172.541622pt;}
.hc{height:187.149778pt;}
.h5{height:192.662290pt;}
.h8{height:257.171733pt;}
.h0{height:793.760013pt;}
.h1{height:794.000000pt;}
.w6{width:11.828953pt;}
.w4{width:48.004778pt;}
.w5{width:102.073318pt;}
.w2{width:132.001696pt;}
.w3{width:146.380153pt;}
.w0{width:1122.560053pt;}
.w1{width:1122.666667pt;}
.x0{left:0.000000pt;}
.xf{left:63.365179pt;}
.x13{left:79.997100pt;}
.xe{left:86.235867pt;}
.xd{left:92.158382pt;}
.x10{left:103.040287pt;}
.x3{left:105.117480pt;}
.x1{left:113.275320pt;}
.x12{left:116.324678pt;}
.x1c{left:144.806592pt;}
.x15{left:149.441150pt;}
.x4{left:154.074715pt;}
.x1d{left:158.083829pt;}
.x1e{left:191.199251pt;}
.x11{left:204.967272pt;}
.x1f{left:211.037435pt;}
.x20{left:237.591923pt;}
.x18{left:246.409284pt;}
.x17{left:323.037441pt;}
.xc{left:325.433442pt;}
.xb{left:327.197277pt;}
.x1b{left:344.315955pt;}
.x16{left:361.915375pt;}
.x5{left:364.331094pt;}
.x2{left:369.442136pt;}
.x21{left:378.394194pt;}
.xa{left:381.117473pt;}
.x14{left:399.994061pt;}
.x19{left:404.319784pt;}
.x9{left:463.670951pt;}
.x8{left:507.832458pt;}
.x1a{left:565.124340pt;}
.x7{left:642.245567pt;}
.x6{left:663.197174pt;}
}




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