
    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_06045802a863953abd789ff1.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.202148;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_6e016101bffea853a4f356fd.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_5ad189b37a58e274b8a07206.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_eb771f6ce999364ce3afe12f.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_e0881fef13e503bf776d49e4.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.940918;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_e9d6e9192a95c2a327f8f23b.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.740234;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_b7046417d920ddb8fa6b4413.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.202148;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_8f578860b4fc3b2f12a740cd.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.053223;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_e13c5ad533abda6f4926cf2b.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.053223;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls19{letter-spacing:-0.936000px;}
.ls23{letter-spacing:-0.786000px;}
.lsf{letter-spacing:-0.579600px;}
.ls26{letter-spacing:-0.540000px;}
.ls5{letter-spacing:-0.463800px;}
.lsc{letter-spacing:-0.414000px;}
.ls13{letter-spacing:-0.326400px;}
.lse{letter-spacing:-0.240600px;}
.ls22{letter-spacing:-0.208800px;}
.lsd{letter-spacing:-0.115800px;}
.ls14{letter-spacing:-0.107400px;}
.ls1e{letter-spacing:-0.078600px;}
.ls29{letter-spacing:-0.069600px;}
.ls15{letter-spacing:-0.058320px;}
.ls20{letter-spacing:-0.055440px;}
.ls2e{letter-spacing:-0.038160px;}
.ls4{letter-spacing:0.000000px;}
.ls28{letter-spacing:0.023760px;}
.lsb{letter-spacing:0.048960px;}
.ls30{letter-spacing:0.060600px;}
.ls31{letter-spacing:0.121680px;}
.ls7{letter-spacing:0.150000px;}
.ls2d{letter-spacing:0.174240px;}
.ls2f{letter-spacing:0.180000px;}
.ls0{letter-spacing:0.190080px;}
.lsa{letter-spacing:0.190200px;}
.ls1f{letter-spacing:0.195000px;}
.ls8{letter-spacing:0.210000px;}
.ls1a{letter-spacing:0.249000px;}
.ls6{letter-spacing:0.256200px;}
.ls9{letter-spacing:0.289200px;}
.ls1c{letter-spacing:0.314400px;}
.ls27{letter-spacing:0.357000px;}
.ls1b{letter-spacing:0.479400px;}
.ls3{letter-spacing:0.617760px;}
.ls16{letter-spacing:2.106720px;}
.ls11{letter-spacing:5.706720px;}
.ls1{letter-spacing:11.442240px;}
.ls2c{letter-spacing:12.330720px;}
.ls21{letter-spacing:15.786720px;}
.ls2a{letter-spacing:17.946720px;}
.ls17{letter-spacing:18.666720px;}
.ls18{letter-spacing:20.106720px;}
.ls10{letter-spacing:21.546720px;}
.ls1d{letter-spacing:22.986720px;}
.ls24{letter-spacing:24.426720px;}
.ls25{letter-spacing:25.866720px;}
.ls2{letter-spacing:38.106720px;}
.ls2b{letter-spacing:42.570720px;}
.ls12{letter-spacing:46.026720px;}
.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;}
}
.ws8{word-spacing:-59.760000px;}
.ws1{word-spacing:-15.226440px;}
.ws3{word-spacing:-14.970240px;}
.ws0{word-spacing:-14.506440px;}
.ws11{word-spacing:-13.862760px;}
.wse{word-spacing:-13.820160px;}
.wsd{word-spacing:-13.754760px;}
.ws6{word-spacing:-13.505760px;}
.ws13{word-spacing:-13.467600px;}
.wsf{word-spacing:-13.450320px;}
.wsb{word-spacing:-13.447440px;}
.ws12{word-spacing:-13.436160px;}
.wsa{word-spacing:-13.398360px;}
.ws7{word-spacing:-13.389960px;}
.ws10{word-spacing:-13.296960px;}
.wsc{word-spacing:-12.569760px;}
.ws2{word-spacing:-9.437760px;}
.ws5{word-spacing:-8.835840px;}
.ws4{word-spacing:-8.786880px;}
.ws9{word-spacing:0.000000px;}
._3{margin-left:-4.586640px;}
._2{margin-left:-2.980800px;}
._0{margin-left:-1.684800px;}
._1{width:1.244640px;}
._d{width:2.390400px;}
._11{width:3.462480px;}
._5{width:4.462560px;}
._b{width:5.524800px;}
._a{width:6.645600px;}
._9{width:8.143200px;}
._7{width:10.005120px;}
._6{width:11.194560px;}
._8{width:12.253200px;}
._e{width:14.600880px;}
._4{width:15.704640px;}
._c{width:16.715280px;}
._30{width:17.902320px;}
._10{width:18.927120px;}
._f{width:20.077200px;}
._13{width:21.643440px;}
._2a{width:22.805280px;}
._1c{width:23.833920px;}
._33{width:25.807680px;}
._1d{width:27.071280px;}
._1e{width:28.406640px;}
._1f{width:29.661600px;}
._14{width:31.792320px;}
._18{width:33.286320px;}
._19{width:34.554720px;}
._21{width:36.154800px;}
._1a{width:37.828080px;}
._1b{width:39.684240px;}
._22{width:43.146720px;}
._31{width:46.204800px;}
._28{width:49.600800px;}
._32{width:52.447680px;}
._16{width:53.615040px;}
._17{width:54.983280px;}
._2e{width:56.891520px;}
._26{width:74.047680px;}
._24{width:83.407680px;}
._25{width:84.620160px;}
._23{width:91.193760px;}
._2f{width:102.488400px;}
._2b{width:108.404640px;}
._29{width:111.213360px;}
._20{width:114.440400px;}
._12{width:116.238240px;}
._2d{width:164.340000px;}
._15{width:172.825920px;}
._27{width:181.192320px;}
._2c{width:234.677520px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:38.880000px;}
.fs4{font-size:41.760000px;}
.fs6{font-size:48.240000px;}
.fs3{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:84.240000px;}
.fs2{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y5a{bottom:3.960000px;}
.y76{bottom:4.680000px;}
.y56{bottom:5.400000px;}
.y9d{bottom:6.660000px;}
.ya6{bottom:6.705000px;}
.y107{bottom:8.100000px;}
.y114{bottom:12.780000px;}
.y99{bottom:13.680000px;}
.y7f{bottom:14.220000px;}
.y62{bottom:22.140000px;}
.y59{bottom:22.320000px;}
.y68{bottom:22.350000px;}
.y5d{bottom:22.365000px;}
.y78{bottom:22.860000px;}
.y74{bottom:23.040000px;}
.y9b{bottom:24.120000px;}
.y106{bottom:26.460000px;}
.y113{bottom:31.140000px;}
.y81{bottom:32.580000px;}
.y7e{bottom:32.610000px;}
.y97{bottom:34.740000px;}
.y65{bottom:40.494000px;}
.y60{bottom:40.500000px;}
.y58{bottom:40.680000px;}
.y67{bottom:40.710000px;}
.y5c{bottom:40.725000px;}
.y7b{bottom:41.220000px;}
.y105{bottom:44.640000px;}
.y9a{bottom:45.180000px;}
.y112{bottom:49.500000px;}
.y98{bottom:55.800000px;}
.y64{bottom:58.854000px;}
.y5f{bottom:58.860000px;}
.y10a{bottom:59.040000px;}
.y6{bottom:61.416000px;}
.y104{bottom:63.000000px;}
.y111{bottom:67.854000px;}
.y10d{bottom:77.040000px;}
.y100{bottom:77.220000px;}
.y103{bottom:81.360000px;}
.y110{bottom:86.214000px;}
.y95{bottom:93.636000px;}
.yff{bottom:95.400000px;}
.y10c{bottom:95.445000px;}
.y109{bottom:95.580000px;}
.y10e{bottom:98.136000px;}
.y102{bottom:99.540000px;}
.y30{bottom:100.836000px;}
.y10f{bottom:104.394000px;}
.yef{bottom:107.856000px;}
.y63{bottom:110.016000px;}
.y125{bottom:113.436000px;}
.y94{bottom:114.696000px;}
.y124{bottom:116.856000px;}
.yc9{bottom:119.376000px;}
.yfc{bottom:119.916000px;}
.y2f{bottom:121.896000px;}
.yee{bottom:128.916000px;}
.y93{bottom:135.756000px;}
.y123{bottom:137.916000px;}
.yc8{bottom:140.436000px;}
.yfb{bottom:140.976000px;}
.y2e{bottom:142.956000px;}
.yed{bottom:149.976000px;}
.y92{bottom:156.810000px;}
.y122{bottom:158.970000px;}
.yc7{bottom:161.490000px;}
.yfa{bottom:162.030000px;}
.y2d{bottom:164.010000px;}
.yec{bottom:171.030000px;}
.y91{bottom:177.870000px;}
.y121{bottom:180.030000px;}
.yc6{bottom:182.550000px;}
.yf9{bottom:183.090000px;}
.y61{bottom:183.990000px;}
.y2c{bottom:185.070000px;}
.yeb{bottom:192.090000px;}
.y120{bottom:201.090000px;}
.yc5{bottom:203.610000px;}
.yf8{bottom:204.150000px;}
.y2b{bottom:206.130000px;}
.y90{bottom:207.930000px;}
.yea{bottom:213.150000px;}
.y11f{bottom:222.150000px;}
.yc4{bottom:224.670000px;}
.yf7{bottom:225.210000px;}
.y2a{bottom:227.190000px;}
.y8f{bottom:228.990000px;}
.y10b{bottom:232.770000px;}
.ye9{bottom:234.210000px;}
.y5e{bottom:239.610000px;}
.y11e{bottom:243.210000px;}
.yc3{bottom:245.730000px;}
.yf6{bottom:246.270000px;}
.y29{bottom:248.250000px;}
.y8e{bottom:250.050000px;}
.ye8{bottom:255.270000px;}
.y11d{bottom:264.270000px;}
.yc2{bottom:266.790000px;}
.yf5{bottom:267.330000px;}
.y28{bottom:269.310000px;}
.y8d{bottom:271.110000px;}
.ye7{bottom:276.330000px;}
.y11c{bottom:285.330000px;}
.yc1{bottom:287.850000px;}
.yf4{bottom:288.390000px;}
.y27{bottom:290.370000px;}
.y8c{bottom:292.170000px;}
.ye6{bottom:297.390000px;}
.y11b{bottom:306.390000px;}
.yc0{bottom:308.910000px;}
.yf3{bottom:309.450000px;}
.y26{bottom:311.430000px;}
.y8b{bottom:313.230000px;}
.y5b{bottom:313.590000px;}
.ye5{bottom:318.450000px;}
.y11a{bottom:327.450000px;}
.ybf{bottom:330.015000px;}
.yf2{bottom:330.555000px;}
.y25{bottom:332.535000px;}
.y8a{bottom:334.335000px;}
.ye4{bottom:339.555000px;}
.y119{bottom:348.555000px;}
.ybe{bottom:351.075000px;}
.yf1{bottom:351.615000px;}
.y24{bottom:353.595000px;}
.y89{bottom:355.395000px;}
.y108{bottom:358.275000px;}
.ye3{bottom:360.615000px;}
.y57{bottom:369.255000px;}
.y118{bottom:369.615000px;}
.ybd{bottom:372.135000px;}
.yf0{bottom:372.675000px;}
.y23{bottom:374.655000px;}
.y88{bottom:376.455000px;}
.ye2{bottom:381.675000px;}
.y117{bottom:390.675000px;}
.ybc{bottom:393.195000px;}
.y22{bottom:395.715000px;}
.y87{bottom:397.515000px;}
.ye1{bottom:402.735000px;}
.y116{bottom:411.735000px;}
.ybb{bottom:414.255000px;}
.y21{bottom:416.775000px;}
.y86{bottom:418.575000px;}
.ye0{bottom:423.795000px;}
.y55{bottom:425.055000px;}
.y115{bottom:432.795000px;}
.yba{bottom:435.315000px;}
.y20{bottom:437.835000px;}
.y85{bottom:439.635000px;}
.ydf{bottom:444.855000px;}
.y54{bottom:453.855000px;}
.yb9{bottom:456.375000px;}
.y1f{bottom:458.895000px;}
.y84{bottom:460.695000px;}
.yde{bottom:465.915000px;}
.y53{bottom:474.915000px;}
.yb8{bottom:477.435000px;}
.y1e{bottom:479.955000px;}
.y83{bottom:481.755000px;}
.y101{bottom:483.915000px;}
.ydd{bottom:486.975000px;}
.y52{bottom:495.975000px;}
.yb7{bottom:498.495000px;}
.y1d{bottom:501.015000px;}
.y82{bottom:502.815000px;}
.ydc{bottom:508.035000px;}
.y51{bottom:517.035000px;}
.y80{bottom:518.295000px;}
.yb6{bottom:519.555000px;}
.y1c{bottom:522.075000px;}
.ydb{bottom:529.095000px;}
.y50{bottom:538.095000px;}
.yb5{bottom:549.615000px;}
.yda{bottom:550.155000px;}
.y4f{bottom:559.155000px;}
.y7d{bottom:566.355000px;}
.y1b{bottom:566.535000px;}
.yb4{bottom:570.675000px;}
.yd9{bottom:571.215000px;}
.y4e{bottom:580.215000px;}
.y1a{bottom:587.415000px;}
.yb3{bottom:591.735000px;}
.yd8{bottom:592.275000px;}
.y4d{bottom:601.305000px;}
.yb2{bottom:612.825000px;}
.yd7{bottom:613.365000px;}
.yfe{bottom:613.725000px;}
.y7c{bottom:614.445000px;}
.y19{bottom:617.505000px;}
.y4c{bottom:622.365000px;}
.yb1{bottom:633.885000px;}
.yd6{bottom:634.425000px;}
.y18{bottom:638.565000px;}
.y4b{bottom:643.425000px;}
.y7a{bottom:652.245000px;}
.yb0{bottom:654.945000px;}
.yd5{bottom:655.485000px;}
.y17{bottom:659.625000px;}
.y4a{bottom:664.485000px;}
.yaf{bottom:676.005000px;}
.yd4{bottom:676.545000px;}
.y16{bottom:680.685000px;}
.y49{bottom:685.545000px;}
.yae{bottom:697.065000px;}
.yd3{bottom:697.605000px;}
.y15{bottom:701.745000px;}
.y48{bottom:706.605000px;}
.y79{bottom:708.945000px;}
.yad{bottom:718.125000px;}
.yd2{bottom:718.665000px;}
.y14{bottom:722.805000px;}
.y47{bottom:727.665000px;}
.yac{bottom:739.185000px;}
.yfd{bottom:739.365000px;}
.yd1{bottom:739.725000px;}
.y13{bottom:743.865000px;}
.y77{bottom:747.465000px;}
.y46{bottom:748.725000px;}
.yab{bottom:760.245000px;}
.yd0{bottom:760.785000px;}
.y12{bottom:764.925000px;}
.y45{bottom:769.785000px;}
.yaa{bottom:781.305000px;}
.ycf{bottom:781.845000px;}
.y75{bottom:785.805000px;}
.y11{bottom:785.985000px;}
.y44{bottom:790.845000px;}
.ya9{bottom:802.185000px;}
.yce{bottom:802.905000px;}
.y10{bottom:807.045000px;}
.y43{bottom:811.905000px;}
.ya8{bottom:823.245000px;}
.ycd{bottom:823.965000px;}
.y73{bottom:824.325000px;}
.yf{bottom:828.285000px;}
.y42{bottom:832.965000px;}
.ya7{bottom:844.305000px;}
.ycc{bottom:845.025000px;}
.y41{bottom:854.025000px;}
.ye{bottom:856.725000px;}
.ya5{bottom:860.325000px;}
.y72{bottom:862.890000px;}
.ycb{bottom:866.130000px;}
.y40{bottom:875.130000px;}
.yd{bottom:877.830000px;}
.ya4{bottom:882.870000px;}
.yca{bottom:887.190000px;}
.yc{bottom:894.390000px;}
.y3f{bottom:896.190000px;}
.y71{bottom:900.510000px;}
.ya3{bottom:905.370000px;}
.y3e{bottom:917.250000px;}
.yb{bottom:917.610000px;}
.ya2{bottom:928.050000px;}
.y3d{bottom:938.310000px;}
.ya{bottom:939.930000px;}
.y70{bottom:944.970000px;}
.ya1{bottom:950.550000px;}
.y3c{bottom:959.370000px;}
.y9{bottom:965.130000px;}
.y6f{bottom:966.030000px;}
.ya0{bottom:973.050000px;}
.y3b{bottom:980.430000px;}
.y6e{bottom:987.090000px;}
.y9f{bottom:995.730000px;}
.y8{bottom:998.790000px;}
.y3a{bottom:1001.490000px;}
.y6d{bottom:1008.150000px;}
.y9e{bottom:1018.230000px;}
.y39{bottom:1022.550000px;}
.y6c{bottom:1029.210000px;}
.y7{bottom:1032.450000px;}
.y9c{bottom:1040.730000px;}
.y38{bottom:1043.610000px;}
.y6b{bottom:1050.270000px;}
.y96{bottom:1063.410000px;}
.y37{bottom:1064.670000px;}
.y5{bottom:1071.150000px;}
.y6a{bottom:1071.330000px;}
.y36{bottom:1085.730000px;}
.y69{bottom:1092.390000px;}
.y4{bottom:1100.310000px;}
.y35{bottom:1106.790000px;}
.y66{bottom:1107.510000px;}
.y34{bottom:1127.850000px;}
.y3{bottom:1129.500000px;}
.y33{bottom:1148.940000px;}
.y2{bottom:1158.660000px;}
.y32{bottom:1176.120000px;}
.y1{bottom:1188.900000px;}
.y31{bottom:1194.480000px;}
.h19{height:21.060000px;}
.h1a{height:21.096000px;}
.ha{height:21.420000px;}
.h12{height:36.540000px;}
.h11{height:36.720000px;}
.h14{height:37.260000px;}
.h13{height:37.440000px;}
.h8{height:38.671172px;}
.h7{height:39.810234px;}
.h10{height:45.578672px;}
.h17{height:46.980000px;}
.h16{height:47.016000px;}
.h20{height:52.260820px;}
.he{height:54.900000px;}
.hc{height:54.936000px;}
.hb{height:55.080000px;}
.h15{height:55.620000px;}
.h9{height:59.439023px;}
.h5{height:61.189805px;}
.h3{height:65.884219px;}
.h6{height:67.824844px;}
.hf{height:73.080000px;}
.hd{height:73.260000px;}
.h18{height:77.256000px;}
.h2{height:86.255508px;}
.h4{height:98.051133px;}
.h1b{height:109.800000px;}
.h1e{height:109.836000px;}
.h1d{height:109.980000px;}
.h1c{height:113.976000px;}
.h1f{height:118.800000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w8{width:111.276000px;}
.wa{width:114.516000px;}
.wb{width:114.696000px;}
.we{width:120.816000px;}
.w6{width:122.976000px;}
.w7{width:126.000000px;}
.wc{width:126.180000px;}
.w9{width:148.680000px;}
.wd{width:149.436000px;}
.wf{width:164.550000px;}
.w10{width:215.130000px;}
.w3{width:254.910000px;}
.w11{width:274.530000px;}
.w5{width:289.470000px;}
.w4{width:362.595000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x6{left:-19.260000px;}
.x0{left:0.000000px;}
.x4{left:7.740000px;}
.x9{left:9.000000px;}
.x1{left:53.999987px;}
.x13{left:57.780000px;}
.x17{left:67.499987px;}
.x2{left:75.599987px;}
.x18{left:94.535987px;}
.xc{left:118.296000px;}
.x7{left:120.996000px;}
.x3{left:137.376000px;}
.x11{left:152.309987px;}
.x14{left:179.310000px;}
.xd{left:267.690000px;}
.x15{left:344.775000px;}
.x12{left:368.534987px;}
.xe{left:383.115000px;}
.x5{left:393.015000px;}
.x8{left:410.835000px;}
.xf{left:498.525000px;}
.xa{left:534.345000px;}
.x16{left:560.805000px;}
.x10{left:625.425000px;}
.xb{left:660.885000px;}
.x19{left:839.309987px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls19{letter-spacing:-0.832000pt;}
.ls23{letter-spacing:-0.698667pt;}
.lsf{letter-spacing:-0.515200pt;}
.ls26{letter-spacing:-0.480000pt;}
.ls5{letter-spacing:-0.412267pt;}
.lsc{letter-spacing:-0.368000pt;}
.ls13{letter-spacing:-0.290133pt;}
.lse{letter-spacing:-0.213867pt;}
.ls22{letter-spacing:-0.185600pt;}
.lsd{letter-spacing:-0.102933pt;}
.ls14{letter-spacing:-0.095467pt;}
.ls1e{letter-spacing:-0.069867pt;}
.ls29{letter-spacing:-0.061867pt;}
.ls15{letter-spacing:-0.051840pt;}
.ls20{letter-spacing:-0.049280pt;}
.ls2e{letter-spacing:-0.033920pt;}
.ls4{letter-spacing:0.000000pt;}
.ls28{letter-spacing:0.021120pt;}
.lsb{letter-spacing:0.043520pt;}
.ls30{letter-spacing:0.053867pt;}
.ls31{letter-spacing:0.108160pt;}
.ls7{letter-spacing:0.133333pt;}
.ls2d{letter-spacing:0.154880pt;}
.ls2f{letter-spacing:0.160000pt;}
.ls0{letter-spacing:0.168960pt;}
.lsa{letter-spacing:0.169067pt;}
.ls1f{letter-spacing:0.173333pt;}
.ls8{letter-spacing:0.186667pt;}
.ls1a{letter-spacing:0.221333pt;}
.ls6{letter-spacing:0.227733pt;}
.ls9{letter-spacing:0.257067pt;}
.ls1c{letter-spacing:0.279467pt;}
.ls27{letter-spacing:0.317333pt;}
.ls1b{letter-spacing:0.426133pt;}
.ls3{letter-spacing:0.549120pt;}
.ls16{letter-spacing:1.872640pt;}
.ls11{letter-spacing:5.072640pt;}
.ls1{letter-spacing:10.170880pt;}
.ls2c{letter-spacing:10.960640pt;}
.ls21{letter-spacing:14.032640pt;}
.ls2a{letter-spacing:15.952640pt;}
.ls17{letter-spacing:16.592640pt;}
.ls18{letter-spacing:17.872640pt;}
.ls10{letter-spacing:19.152640pt;}
.ls1d{letter-spacing:20.432640pt;}
.ls24{letter-spacing:21.712640pt;}
.ls25{letter-spacing:22.992640pt;}
.ls2{letter-spacing:33.872640pt;}
.ls2b{letter-spacing:37.840640pt;}
.ls12{letter-spacing:40.912640pt;}
.ws8{word-spacing:-53.120000pt;}
.ws1{word-spacing:-13.534613pt;}
.ws3{word-spacing:-13.306880pt;}
.ws0{word-spacing:-12.894613pt;}
.ws11{word-spacing:-12.322453pt;}
.wse{word-spacing:-12.284587pt;}
.wsd{word-spacing:-12.226453pt;}
.ws6{word-spacing:-12.005120pt;}
.ws13{word-spacing:-11.971200pt;}
.wsf{word-spacing:-11.955840pt;}
.wsb{word-spacing:-11.953280pt;}
.ws12{word-spacing:-11.943253pt;}
.wsa{word-spacing:-11.909653pt;}
.ws7{word-spacing:-11.902187pt;}
.ws10{word-spacing:-11.819520pt;}
.wsc{word-spacing:-11.173120pt;}
.ws2{word-spacing:-8.389120pt;}
.ws5{word-spacing:-7.854080pt;}
.ws4{word-spacing:-7.810560pt;}
.ws9{word-spacing:0.000000pt;}
._3{margin-left:-4.077013pt;}
._2{margin-left:-2.649600pt;}
._0{margin-left:-1.497600pt;}
._1{width:1.106347pt;}
._d{width:2.124800pt;}
._11{width:3.077760pt;}
._5{width:3.966720pt;}
._b{width:4.910933pt;}
._a{width:5.907200pt;}
._9{width:7.238400pt;}
._7{width:8.893440pt;}
._6{width:9.950720pt;}
._8{width:10.891733pt;}
._e{width:12.978560pt;}
._4{width:13.959680pt;}
._c{width:14.858027pt;}
._30{width:15.913173pt;}
._10{width:16.824107pt;}
._f{width:17.846400pt;}
._13{width:19.238613pt;}
._2a{width:20.271360pt;}
._1c{width:21.185707pt;}
._33{width:22.940160pt;}
._1d{width:24.063360pt;}
._1e{width:25.250347pt;}
._1f{width:26.365867pt;}
._14{width:28.259840pt;}
._18{width:29.587840pt;}
._19{width:30.715307pt;}
._21{width:32.137600pt;}
._1a{width:33.624960pt;}
._1b{width:35.274880pt;}
._22{width:38.352640pt;}
._31{width:41.070933pt;}
._28{width:44.089600pt;}
._32{width:46.620160pt;}
._16{width:47.657813pt;}
._17{width:48.874027pt;}
._2e{width:50.570240pt;}
._26{width:65.820160pt;}
._24{width:74.140160pt;}
._25{width:75.217920pt;}
._23{width:81.061120pt;}
._2f{width:91.100800pt;}
._2b{width:96.359680pt;}
._29{width:98.856320pt;}
._20{width:101.724800pt;}
._12{width:103.322880pt;}
._2d{width:146.080000pt;}
._15{width:153.623040pt;}
._27{width:161.059840pt;}
._2c{width:208.602240pt;}
.fs5{font-size:34.560000pt;}
.fs4{font-size:37.120000pt;}
.fs6{font-size:42.880000pt;}
.fs3{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:74.880000pt;}
.fs2{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y5a{bottom:3.520000pt;}
.y76{bottom:4.160000pt;}
.y56{bottom:4.800000pt;}
.y9d{bottom:5.920000pt;}
.ya6{bottom:5.960000pt;}
.y107{bottom:7.200000pt;}
.y114{bottom:11.360000pt;}
.y99{bottom:12.160000pt;}
.y7f{bottom:12.640000pt;}
.y62{bottom:19.680000pt;}
.y59{bottom:19.840000pt;}
.y68{bottom:19.866667pt;}
.y5d{bottom:19.880000pt;}
.y78{bottom:20.320000pt;}
.y74{bottom:20.480000pt;}
.y9b{bottom:21.440000pt;}
.y106{bottom:23.520000pt;}
.y113{bottom:27.680000pt;}
.y81{bottom:28.960000pt;}
.y7e{bottom:28.986667pt;}
.y97{bottom:30.880000pt;}
.y65{bottom:35.994667pt;}
.y60{bottom:36.000000pt;}
.y58{bottom:36.160000pt;}
.y67{bottom:36.186667pt;}
.y5c{bottom:36.200000pt;}
.y7b{bottom:36.640000pt;}
.y105{bottom:39.680000pt;}
.y9a{bottom:40.160000pt;}
.y112{bottom:44.000000pt;}
.y98{bottom:49.600000pt;}
.y64{bottom:52.314667pt;}
.y5f{bottom:52.320000pt;}
.y10a{bottom:52.480000pt;}
.y6{bottom:54.592000pt;}
.y104{bottom:56.000000pt;}
.y111{bottom:60.314667pt;}
.y10d{bottom:68.480000pt;}
.y100{bottom:68.640000pt;}
.y103{bottom:72.320000pt;}
.y110{bottom:76.634667pt;}
.y95{bottom:83.232000pt;}
.yff{bottom:84.800000pt;}
.y10c{bottom:84.840000pt;}
.y109{bottom:84.960000pt;}
.y10e{bottom:87.232000pt;}
.y102{bottom:88.480000pt;}
.y30{bottom:89.632000pt;}
.y10f{bottom:92.794667pt;}
.yef{bottom:95.872000pt;}
.y63{bottom:97.792000pt;}
.y125{bottom:100.832000pt;}
.y94{bottom:101.952000pt;}
.y124{bottom:103.872000pt;}
.yc9{bottom:106.112000pt;}
.yfc{bottom:106.592000pt;}
.y2f{bottom:108.352000pt;}
.yee{bottom:114.592000pt;}
.y93{bottom:120.672000pt;}
.y123{bottom:122.592000pt;}
.yc8{bottom:124.832000pt;}
.yfb{bottom:125.312000pt;}
.y2e{bottom:127.072000pt;}
.yed{bottom:133.312000pt;}
.y92{bottom:139.386667pt;}
.y122{bottom:141.306667pt;}
.yc7{bottom:143.546667pt;}
.yfa{bottom:144.026667pt;}
.y2d{bottom:145.786667pt;}
.yec{bottom:152.026667pt;}
.y91{bottom:158.106667pt;}
.y121{bottom:160.026667pt;}
.yc6{bottom:162.266667pt;}
.yf9{bottom:162.746667pt;}
.y61{bottom:163.546667pt;}
.y2c{bottom:164.506667pt;}
.yeb{bottom:170.746667pt;}
.y120{bottom:178.746667pt;}
.yc5{bottom:180.986667pt;}
.yf8{bottom:181.466667pt;}
.y2b{bottom:183.226667pt;}
.y90{bottom:184.826667pt;}
.yea{bottom:189.466667pt;}
.y11f{bottom:197.466667pt;}
.yc4{bottom:199.706667pt;}
.yf7{bottom:200.186667pt;}
.y2a{bottom:201.946667pt;}
.y8f{bottom:203.546667pt;}
.y10b{bottom:206.906667pt;}
.ye9{bottom:208.186667pt;}
.y5e{bottom:212.986667pt;}
.y11e{bottom:216.186667pt;}
.yc3{bottom:218.426667pt;}
.yf6{bottom:218.906667pt;}
.y29{bottom:220.666667pt;}
.y8e{bottom:222.266667pt;}
.ye8{bottom:226.906667pt;}
.y11d{bottom:234.906667pt;}
.yc2{bottom:237.146667pt;}
.yf5{bottom:237.626667pt;}
.y28{bottom:239.386667pt;}
.y8d{bottom:240.986667pt;}
.ye7{bottom:245.626667pt;}
.y11c{bottom:253.626667pt;}
.yc1{bottom:255.866667pt;}
.yf4{bottom:256.346667pt;}
.y27{bottom:258.106667pt;}
.y8c{bottom:259.706667pt;}
.ye6{bottom:264.346667pt;}
.y11b{bottom:272.346667pt;}
.yc0{bottom:274.586667pt;}
.yf3{bottom:275.066667pt;}
.y26{bottom:276.826667pt;}
.y8b{bottom:278.426667pt;}
.y5b{bottom:278.746667pt;}
.ye5{bottom:283.066667pt;}
.y11a{bottom:291.066667pt;}
.ybf{bottom:293.346667pt;}
.yf2{bottom:293.826667pt;}
.y25{bottom:295.586667pt;}
.y8a{bottom:297.186667pt;}
.ye4{bottom:301.826667pt;}
.y119{bottom:309.826667pt;}
.ybe{bottom:312.066667pt;}
.yf1{bottom:312.546667pt;}
.y24{bottom:314.306667pt;}
.y89{bottom:315.906667pt;}
.y108{bottom:318.466667pt;}
.ye3{bottom:320.546667pt;}
.y57{bottom:328.226667pt;}
.y118{bottom:328.546667pt;}
.ybd{bottom:330.786667pt;}
.yf0{bottom:331.266667pt;}
.y23{bottom:333.026667pt;}
.y88{bottom:334.626667pt;}
.ye2{bottom:339.266667pt;}
.y117{bottom:347.266667pt;}
.ybc{bottom:349.506667pt;}
.y22{bottom:351.746667pt;}
.y87{bottom:353.346667pt;}
.ye1{bottom:357.986667pt;}
.y116{bottom:365.986667pt;}
.ybb{bottom:368.226667pt;}
.y21{bottom:370.466667pt;}
.y86{bottom:372.066667pt;}
.ye0{bottom:376.706667pt;}
.y55{bottom:377.826667pt;}
.y115{bottom:384.706667pt;}
.yba{bottom:386.946667pt;}
.y20{bottom:389.186667pt;}
.y85{bottom:390.786667pt;}
.ydf{bottom:395.426667pt;}
.y54{bottom:403.426667pt;}
.yb9{bottom:405.666667pt;}
.y1f{bottom:407.906667pt;}
.y84{bottom:409.506667pt;}
.yde{bottom:414.146667pt;}
.y53{bottom:422.146667pt;}
.yb8{bottom:424.386667pt;}
.y1e{bottom:426.626667pt;}
.y83{bottom:428.226667pt;}
.y101{bottom:430.146667pt;}
.ydd{bottom:432.866667pt;}
.y52{bottom:440.866667pt;}
.yb7{bottom:443.106667pt;}
.y1d{bottom:445.346667pt;}
.y82{bottom:446.946667pt;}
.ydc{bottom:451.586667pt;}
.y51{bottom:459.586667pt;}
.y80{bottom:460.706667pt;}
.yb6{bottom:461.826667pt;}
.y1c{bottom:464.066667pt;}
.ydb{bottom:470.306667pt;}
.y50{bottom:478.306667pt;}
.yb5{bottom:488.546667pt;}
.yda{bottom:489.026667pt;}
.y4f{bottom:497.026667pt;}
.y7d{bottom:503.426667pt;}
.y1b{bottom:503.586667pt;}
.yb4{bottom:507.266667pt;}
.yd9{bottom:507.746667pt;}
.y4e{bottom:515.746667pt;}
.y1a{bottom:522.146667pt;}
.yb3{bottom:525.986667pt;}
.yd8{bottom:526.466667pt;}
.y4d{bottom:534.493333pt;}
.yb2{bottom:544.733333pt;}
.yd7{bottom:545.213333pt;}
.yfe{bottom:545.533333pt;}
.y7c{bottom:546.173333pt;}
.y19{bottom:548.893333pt;}
.y4c{bottom:553.213333pt;}
.yb1{bottom:563.453333pt;}
.yd6{bottom:563.933333pt;}
.y18{bottom:567.613333pt;}
.y4b{bottom:571.933333pt;}
.y7a{bottom:579.773333pt;}
.yb0{bottom:582.173333pt;}
.yd5{bottom:582.653333pt;}
.y17{bottom:586.333333pt;}
.y4a{bottom:590.653333pt;}
.yaf{bottom:600.893333pt;}
.yd4{bottom:601.373333pt;}
.y16{bottom:605.053333pt;}
.y49{bottom:609.373333pt;}
.yae{bottom:619.613333pt;}
.yd3{bottom:620.093333pt;}
.y15{bottom:623.773333pt;}
.y48{bottom:628.093333pt;}
.y79{bottom:630.173333pt;}
.yad{bottom:638.333333pt;}
.yd2{bottom:638.813333pt;}
.y14{bottom:642.493333pt;}
.y47{bottom:646.813333pt;}
.yac{bottom:657.053333pt;}
.yfd{bottom:657.213333pt;}
.yd1{bottom:657.533333pt;}
.y13{bottom:661.213333pt;}
.y77{bottom:664.413333pt;}
.y46{bottom:665.533333pt;}
.yab{bottom:675.773333pt;}
.yd0{bottom:676.253333pt;}
.y12{bottom:679.933333pt;}
.y45{bottom:684.253333pt;}
.yaa{bottom:694.493333pt;}
.ycf{bottom:694.973333pt;}
.y75{bottom:698.493333pt;}
.y11{bottom:698.653333pt;}
.y44{bottom:702.973333pt;}
.ya9{bottom:713.053333pt;}
.yce{bottom:713.693333pt;}
.y10{bottom:717.373333pt;}
.y43{bottom:721.693333pt;}
.ya8{bottom:731.773333pt;}
.ycd{bottom:732.413333pt;}
.y73{bottom:732.733333pt;}
.yf{bottom:736.253333pt;}
.y42{bottom:740.413333pt;}
.ya7{bottom:750.493333pt;}
.ycc{bottom:751.133333pt;}
.y41{bottom:759.133333pt;}
.ye{bottom:761.533333pt;}
.ya5{bottom:764.733333pt;}
.y72{bottom:767.013333pt;}
.ycb{bottom:769.893333pt;}
.y40{bottom:777.893333pt;}
.yd{bottom:780.293333pt;}
.ya4{bottom:784.773333pt;}
.yca{bottom:788.613333pt;}
.yc{bottom:795.013333pt;}
.y3f{bottom:796.613333pt;}
.y71{bottom:800.453333pt;}
.ya3{bottom:804.773333pt;}
.y3e{bottom:815.333333pt;}
.yb{bottom:815.653333pt;}
.ya2{bottom:824.933333pt;}
.y3d{bottom:834.053333pt;}
.ya{bottom:835.493333pt;}
.y70{bottom:839.973333pt;}
.ya1{bottom:844.933333pt;}
.y3c{bottom:852.773333pt;}
.y9{bottom:857.893333pt;}
.y6f{bottom:858.693333pt;}
.ya0{bottom:864.933333pt;}
.y3b{bottom:871.493333pt;}
.y6e{bottom:877.413333pt;}
.y9f{bottom:885.093333pt;}
.y8{bottom:887.813333pt;}
.y3a{bottom:890.213333pt;}
.y6d{bottom:896.133333pt;}
.y9e{bottom:905.093333pt;}
.y39{bottom:908.933333pt;}
.y6c{bottom:914.853333pt;}
.y7{bottom:917.733333pt;}
.y9c{bottom:925.093333pt;}
.y38{bottom:927.653333pt;}
.y6b{bottom:933.573333pt;}
.y96{bottom:945.253333pt;}
.y37{bottom:946.373333pt;}
.y5{bottom:952.133333pt;}
.y6a{bottom:952.293333pt;}
.y36{bottom:965.093333pt;}
.y69{bottom:971.013333pt;}
.y4{bottom:978.053333pt;}
.y35{bottom:983.813333pt;}
.y66{bottom:984.453333pt;}
.y34{bottom:1002.533333pt;}
.y3{bottom:1004.000000pt;}
.y33{bottom:1021.280000pt;}
.y2{bottom:1029.920000pt;}
.y32{bottom:1045.440000pt;}
.y1{bottom:1056.800000pt;}
.y31{bottom:1061.760000pt;}
.h19{height:18.720000pt;}
.h1a{height:18.752000pt;}
.ha{height:19.040000pt;}
.h12{height:32.480000pt;}
.h11{height:32.640000pt;}
.h14{height:33.120000pt;}
.h13{height:33.280000pt;}
.h8{height:34.374375pt;}
.h7{height:35.386875pt;}
.h10{height:40.514375pt;}
.h17{height:41.760000pt;}
.h16{height:41.792000pt;}
.h20{height:46.454062pt;}
.he{height:48.800000pt;}
.hc{height:48.832000pt;}
.hb{height:48.960000pt;}
.h15{height:49.440000pt;}
.h9{height:52.834688pt;}
.h5{height:54.390938pt;}
.h3{height:58.563750pt;}
.h6{height:60.288750pt;}
.hf{height:64.960000pt;}
.hd{height:65.120000pt;}
.h18{height:68.672000pt;}
.h2{height:76.671562pt;}
.h4{height:87.156562pt;}
.h1b{height:97.600000pt;}
.h1e{height:97.632000pt;}
.h1d{height:97.760000pt;}
.h1c{height:101.312000pt;}
.h1f{height:105.600000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w8{width:98.912000pt;}
.wa{width:101.792000pt;}
.wb{width:101.952000pt;}
.we{width:107.392000pt;}
.w6{width:109.312000pt;}
.w7{width:112.000000pt;}
.wc{width:112.160000pt;}
.w9{width:132.160000pt;}
.wd{width:132.832000pt;}
.wf{width:146.266667pt;}
.w10{width:191.226667pt;}
.w3{width:226.586667pt;}
.w11{width:244.026667pt;}
.w5{width:257.306667pt;}
.w4{width:322.306667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x6{left:-17.120000pt;}
.x0{left:0.000000pt;}
.x4{left:6.880000pt;}
.x9{left:8.000000pt;}
.x1{left:47.999988pt;}
.x13{left:51.360000pt;}
.x17{left:59.999988pt;}
.x2{left:67.199988pt;}
.x18{left:84.031988pt;}
.xc{left:105.152000pt;}
.x7{left:107.552000pt;}
.x3{left:122.112000pt;}
.x11{left:135.386655pt;}
.x14{left:159.386667pt;}
.xd{left:237.946667pt;}
.x15{left:306.466667pt;}
.x12{left:327.586655pt;}
.xe{left:340.546667pt;}
.x5{left:349.346667pt;}
.x8{left:365.186667pt;}
.xf{left:443.133333pt;}
.xa{left:474.973333pt;}
.x16{left:498.493333pt;}
.x10{left:555.933333pt;}
.xb{left:587.453333pt;}
.x19{left:746.053322pt;}
}




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