
    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_fa4805dd2ca2c6e60b2d6155.woff')format("woff");}.ff1{font-family:ff1;line-height:0.908203;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_8046389836c5d8fd0fb23526.woff')format("woff");}.ff2{font-family:ff2;line-height:1.049805;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_cd87771d32a65a23cc8cfd09.woff')format("woff");}.ff3{font-family:ff3;line-height:0.910156;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_918cd7b7693f1425a28b889b.woff')format("woff");}.ff4{font-family:ff4;line-height:1.051758;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_49217ef92885ae8687c5e45d.woff')format("woff");}.ff5{font-family:ff5;line-height:0.877930;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_8a425af42925d39fb9a106ab.woff')format("woff");}.ff6{font-family:ff6;line-height:1.026000;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_72114754c23109965da6ebf2.woff')format("woff");}.ff7{font-family:ff7;line-height:0.681152;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_2eff39167f9b70dbe35f3475.woff')format("woff");}.ff8{font-family:ff8;line-height:0.893066;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);}
.v2{vertical-align:-23.975400px;}
.v7{vertical-align:-17.982000px;}
.v3{vertical-align:-15.984000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:3.289200px;}
.v4{vertical-align:13.986000px;}
.v6{vertical-align:17.874000px;}
.v1{vertical-align:23.975400px;}
.ls3{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.270000px;}
.ls10{letter-spacing:0.432000px;}
.lsa{letter-spacing:0.480000px;}
.ls2{letter-spacing:0.540000px;}
.lsb{letter-spacing:0.600000px;}
.lse{letter-spacing:0.702000px;}
.ls0{letter-spacing:0.720000px;}
.ls7{letter-spacing:0.810000px;}
.ls14{letter-spacing:0.864000px;}
.lsf{letter-spacing:0.960000px;}
.ls5{letter-spacing:1.080000px;}
.ls12{letter-spacing:1.200000px;}
.ls1{letter-spacing:1.260000px;}
.ls9{letter-spacing:1.350000px;}
.ls13{letter-spacing:1.776000px;}
.ls11{letter-spacing:1.824000px;}
.lsc{letter-spacing:1.836000px;}
.ls8{letter-spacing:1.890000px;}
.ls4{letter-spacing:2.700000px;}
.ls6{letter-spacing:8.208000px;}
.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:-38.610000px;}
.ws7{word-spacing:-17.700000px;}
.wsc{word-spacing:-15.390000px;}
.wsb{word-spacing:-15.000000px;}
.ws2{word-spacing:-14.040000px;}
.ws9{word-spacing:-13.500000px;}
.wsd{word-spacing:-12.960000px;}
.wse{word-spacing:-12.000000px;}
.ws5{word-spacing:-10.500000px;}
.ws0{word-spacing:-10.494000px;}
.ws8{word-spacing:-7.870500px;}
.ws1{word-spacing:-6.996000px;}
.ws4{word-spacing:-6.121500px;}
.ws6{word-spacing:0.000000px;}
.wsa{word-spacing:61.547400px;}
._9{margin-left:-27.960456px;}
._2{margin-left:-9.072000px;}
._6{margin-left:-7.896912px;}
._1{margin-left:-6.408000px;}
._4{margin-left:-4.464000px;}
._3{margin-left:-2.639544px;}
._0{margin-left:-1.080000px;}
._5{width:1.532352px;}
._7{width:2.646000px;}
._8{width:4.050000px;}
._d{width:5.076000px;}
._16{width:6.192000px;}
._11{width:7.632000px;}
._10{width:9.540000px;}
._13{width:10.710000px;}
._17{width:12.150000px;}
._15{width:13.230000px;}
._18{width:15.120000px;}
._14{width:16.200000px;}
._1a{width:17.766000px;}
._1c{width:19.710000px;}
._1b{width:21.006000px;}
._12{width:22.734000px;}
._e{width:24.192000px;}
._f{width:25.578000px;}
._1d{width:26.748000px;}
._19{width:32.886000px;}
._1e{width:34.614000px;}
._a{width:68.297400px;}
._b{width:275.501544px;}
._c{width:941.934000px;}
.fc0{color:rgb(35,31,32);}
.fs8{font-size:24.486000px;}
.fs3{font-size:27.984000px;}
.fs9{font-size:31.482000px;}
.fs2{font-size:41.976000px;}
.fs7{font-size:42.000000px;}
.fs4{font-size:48.000000px;}
.fs0{font-size:54.000000px;}
.fs5{font-size:60.000000px;}
.fs1{font-size:72.000000px;}
.fs6{font-size:78.000000px;}
.y0{bottom:0.000000px;}
.yc8{bottom:42.304050px;}
.y26{bottom:42.304200px;}
.y195{bottom:42.304350px;}
.y23a{bottom:43.120050px;}
.y11c{bottom:43.126350px;}
.y78{bottom:43.126500px;}
.y1c4{bottom:43.126650px;}
.y208{bottom:43.130550px;}
.y11b{bottom:43.366950px;}
.y1{bottom:43.367100px;}
.y77{bottom:43.367250px;}
.y1c3{bottom:43.367400px;}
.y25{bottom:46.605900px;}
.y24{bottom:59.205900px;}
.y14c{bottom:109.766400px;}
.yc7{bottom:109.872750px;}
.y76{bottom:110.510700px;}
.y15c{bottom:110.528250px;}
.y238{bottom:110.551800px;}
.y12a{bottom:110.596050px;}
.y1ab{bottom:110.637000px;}
.y72{bottom:110.641350px;}
.ye4{bottom:110.663550px;}
.y184{bottom:110.717550px;}
.y1c0{bottom:110.731500px;}
.y115{bottom:110.767050px;}
.y1f7{bottom:110.767500px;}
.y190{bottom:110.771550px;}
.yab{bottom:110.771700px;}
.y201{bottom:110.808000px;}
.y14b{bottom:123.266400px;}
.yc6{bottom:123.372750px;}
.y75{bottom:124.010700px;}
.y15b{bottom:124.028250px;}
.y237{bottom:128.551800px;}
.y129{bottom:128.591550px;}
.y1aa{bottom:128.632500px;}
.y71{bottom:128.636850px;}
.ye3{bottom:128.659050px;}
.y183{bottom:128.713050px;}
.y1bf{bottom:128.727000px;}
.y114{bottom:128.762550px;}
.y1f6{bottom:128.763000px;}
.y18f{bottom:128.767050px;}
.yaa{bottom:128.767200px;}
.y200{bottom:128.803500px;}
.y14a{bottom:136.766400px;}
.y74{bottom:137.510700px;}
.y236{bottom:146.551800px;}
.y128{bottom:146.587050px;}
.y1a9{bottom:146.628000px;}
.y70{bottom:146.632350px;}
.ye2{bottom:146.654550px;}
.y182{bottom:146.708550px;}
.y1be{bottom:146.722500px;}
.y113{bottom:146.758050px;}
.y1f5{bottom:146.758500px;}
.y18e{bottom:146.762550px;}
.ya9{bottom:146.762700px;}
.y1ff{bottom:146.799000px;}
.y73{bottom:151.010700px;}
.y235{bottom:164.551800px;}
.y127{bottom:164.582550px;}
.y1a8{bottom:164.623500px;}
.y6f{bottom:164.627850px;}
.ye1{bottom:164.650050px;}
.y181{bottom:164.704050px;}
.y1bd{bottom:164.718000px;}
.y112{bottom:164.753550px;}
.y1f4{bottom:164.754000px;}
.y18d{bottom:164.758050px;}
.ya8{bottom:164.758200px;}
.y1fe{bottom:164.794500px;}
.y234{bottom:182.551800px;}
.y126{bottom:182.578050px;}
.y1a7{bottom:182.619000px;}
.y6e{bottom:182.623350px;}
.ye0{bottom:182.645550px;}
.y180{bottom:182.699550px;}
.y1bc{bottom:182.713500px;}
.y111{bottom:182.749050px;}
.y1f3{bottom:182.749500px;}
.y18c{bottom:182.753550px;}
.ya7{bottom:182.753700px;}
.y1fd{bottom:182.790000px;}
.y233{bottom:200.551800px;}
.y1a6{bottom:200.614500px;}
.y6d{bottom:200.618850px;}
.ydf{bottom:200.641050px;}
.y17f{bottom:200.695050px;}
.y1bb{bottom:200.709000px;}
.y110{bottom:200.744550px;}
.y1f2{bottom:200.745000px;}
.y18b{bottom:200.749050px;}
.ya6{bottom:200.749200px;}
.y1fc{bottom:200.785500px;}
.y149{bottom:217.766400px;}
.y232{bottom:218.551800px;}
.y1a5{bottom:218.610000px;}
.y6c{bottom:218.614350px;}
.yde{bottom:218.636550px;}
.y17e{bottom:218.690550px;}
.y1ba{bottom:218.704500px;}
.y10f{bottom:218.740050px;}
.y1f1{bottom:218.740500px;}
.y18a{bottom:218.744550px;}
.ya5{bottom:218.744700px;}
.y1fb{bottom:218.781000px;}
.y148{bottom:231.266400px;}
.y231{bottom:236.551800px;}
.y1a4{bottom:236.605500px;}
.y6b{bottom:236.609850px;}
.ydd{bottom:236.632050px;}
.y17d{bottom:236.686050px;}
.y1b9{bottom:236.700000px;}
.y10e{bottom:236.735550px;}
.y1f0{bottom:236.736000px;}
.y189{bottom:236.740050px;}
.ya4{bottom:236.740200px;}
.y1fa{bottom:236.776500px;}
.y230{bottom:254.551800px;}
.y1a3{bottom:254.601000px;}
.y6a{bottom:254.605350px;}
.ydc{bottom:254.627550px;}
.y17c{bottom:254.681550px;}
.y1b8{bottom:254.695500px;}
.y10d{bottom:254.731050px;}
.y1ef{bottom:254.731500px;}
.y188{bottom:254.735550px;}
.ya3{bottom:254.735700px;}
.y1f9{bottom:254.772000px;}
.y22f{bottom:272.551800px;}
.y1a2{bottom:272.596500px;}
.y69{bottom:272.600850px;}
.ydb{bottom:272.623050px;}
.y17b{bottom:272.677050px;}
.y1b7{bottom:272.691000px;}
.y10c{bottom:272.726550px;}
.y1ee{bottom:272.727000px;}
.y187{bottom:272.731050px;}
.ya2{bottom:272.731200px;}
.y1f8{bottom:272.767500px;}
.y22e{bottom:290.551800px;}
.y1a1{bottom:290.592000px;}
.y68{bottom:290.596350px;}
.yda{bottom:290.618550px;}
.y17a{bottom:290.672550px;}
.y1b6{bottom:290.686500px;}
.y10b{bottom:290.722050px;}
.y1ed{bottom:290.722500px;}
.y186{bottom:290.726550px;}
.ya1{bottom:290.726700px;}
.y22d{bottom:308.551800px;}
.y1a0{bottom:308.587500px;}
.y67{bottom:308.591850px;}
.yd9{bottom:308.614050px;}
.y179{bottom:308.668050px;}
.y1b5{bottom:308.682000px;}
.y10a{bottom:308.717550px;}
.y1ec{bottom:308.718000px;}
.y185{bottom:308.722050px;}
.ya0{bottom:308.722200px;}
.y206{bottom:310.247100px;}
.y205{bottom:323.747100px;}
.y22c{bottom:326.551800px;}
.y19f{bottom:326.583000px;}
.y66{bottom:326.587350px;}
.yd8{bottom:326.609550px;}
.y21{bottom:326.659200px;}
.y178{bottom:326.663550px;}
.y1b4{bottom:326.677500px;}
.y109{bottom:326.713050px;}
.y1eb{bottom:326.713500px;}
.y9f{bottom:326.717700px;}
.y22b{bottom:344.551800px;}
.y19e{bottom:344.578500px;}
.y65{bottom:344.582850px;}
.yd7{bottom:344.605050px;}
.y20{bottom:344.654700px;}
.y177{bottom:344.659050px;}
.y1b3{bottom:344.673000px;}
.y108{bottom:344.708550px;}
.y1ea{bottom:344.709000px;}
.y9e{bottom:344.713200px;}
.y194{bottom:345.856950px;}
.y193{bottom:359.356950px;}
.y22a{bottom:362.551800px;}
.y19d{bottom:362.574000px;}
.y64{bottom:362.578350px;}
.yd6{bottom:362.600550px;}
.y1f{bottom:362.650200px;}
.y176{bottom:362.654550px;}
.y1b2{bottom:362.668500px;}
.y107{bottom:362.704050px;}
.y1e9{bottom:362.704500px;}
.y9d{bottom:362.708700px;}
.y229{bottom:380.551800px;}
.y19c{bottom:380.569500px;}
.y63{bottom:380.573850px;}
.yd5{bottom:380.596050px;}
.y1e{bottom:380.645700px;}
.y175{bottom:380.650050px;}
.y1b1{bottom:380.664000px;}
.y106{bottom:380.699550px;}
.y1e8{bottom:380.700000px;}
.y9c{bottom:380.704200px;}
.y228{bottom:398.551800px;}
.y19b{bottom:398.565000px;}
.y62{bottom:398.569350px;}
.yd4{bottom:398.591550px;}
.y1d{bottom:398.641200px;}
.y174{bottom:398.645550px;}
.y1b0{bottom:398.659500px;}
.y105{bottom:398.695050px;}
.y1e7{bottom:398.695500px;}
.y9b{bottom:398.699700px;}
.y227{bottom:416.551800px;}
.y19a{bottom:416.560500px;}
.y61{bottom:416.564850px;}
.yd3{bottom:416.587050px;}
.y1c{bottom:416.636700px;}
.y173{bottom:416.641050px;}
.y1af{bottom:416.655000px;}
.y104{bottom:416.690550px;}
.y1e6{bottom:416.691000px;}
.y9a{bottom:416.695200px;}
.y226{bottom:434.551800px;}
.y199{bottom:434.556000px;}
.y60{bottom:434.560350px;}
.yd2{bottom:434.582550px;}
.y1b{bottom:434.632200px;}
.y172{bottom:434.636550px;}
.y1ae{bottom:434.650500px;}
.y103{bottom:434.686050px;}
.y1e5{bottom:434.686500px;}
.y99{bottom:434.690700px;}
.y198{bottom:452.551500px;}
.y225{bottom:452.551800px;}
.y5f{bottom:452.555850px;}
.yd1{bottom:452.578050px;}
.y1a{bottom:452.627700px;}
.y171{bottom:452.632050px;}
.y1ad{bottom:452.646000px;}
.y102{bottom:452.681550px;}
.y1e4{bottom:452.682000px;}
.y98{bottom:452.686200px;}
.y197{bottom:470.551500px;}
.y224{bottom:470.551800px;}
.y5e{bottom:470.564850px;}
.yd0{bottom:470.573550px;}
.y19{bottom:470.623200px;}
.y170{bottom:470.627550px;}
.y1ac{bottom:470.641500px;}
.y101{bottom:470.677050px;}
.y1e3{bottom:470.677500px;}
.y97{bottom:470.681700px;}
.y223{bottom:488.551800px;}
.y5d{bottom:488.560350px;}
.ycf{bottom:488.569050px;}
.y42{bottom:488.569350px;}
.y18{bottom:488.618700px;}
.y16f{bottom:488.623050px;}
.y100{bottom:488.672550px;}
.y1e2{bottom:488.673000px;}
.y96{bottom:488.677200px;}
.y222{bottom:506.551800px;}
.y5c{bottom:506.555850px;}
.y41{bottom:506.564850px;}
.y17{bottom:506.614200px;}
.y16e{bottom:506.618550px;}
.yc5{bottom:506.618700px;}
.yff{bottom:506.668050px;}
.y1e1{bottom:506.668500px;}
.y95{bottom:506.672700px;}
.y1c2{bottom:510.532500px;}
.y1c1{bottom:524.032500px;}
.y221{bottom:524.551800px;}
.y40{bottom:524.560350px;}
.y16{bottom:524.609700px;}
.y16d{bottom:524.614050px;}
.yc4{bottom:524.614200px;}
.yfe{bottom:524.663550px;}
.y1e0{bottom:524.664000px;}
.y94{bottom:524.668200px;}
.y145{bottom:524.708550px;}
.y11a{bottom:536.433600px;}
.y220{bottom:542.551800px;}
.y3f{bottom:542.555850px;}
.y15{bottom:542.605200px;}
.y16c{bottom:542.609550px;}
.yc3{bottom:542.609700px;}
.yfd{bottom:542.659050px;}
.y1df{bottom:542.659500px;}
.y93{bottom:542.663700px;}
.y144{bottom:542.704050px;}
.y119{bottom:549.933600px;}
.y3e{bottom:560.551350px;}
.y21f{bottom:560.551800px;}
.y5b{bottom:560.564850px;}
.y125{bottom:560.578050px;}
.y14{bottom:560.600700px;}
.y16b{bottom:560.605050px;}
.yc2{bottom:560.605200px;}
.yfc{bottom:560.654550px;}
.y1de{bottom:560.655000px;}
.y92{bottom:560.659200px;}
.y143{bottom:560.699550px;}
.y118{bottom:563.433600px;}
.y117{bottom:576.933600px;}
.y3d{bottom:578.551350px;}
.y21e{bottom:578.551800px;}
.y5a{bottom:578.560350px;}
.y124{bottom:578.573550px;}
.y13{bottom:578.596200px;}
.y16a{bottom:578.600550px;}
.yc1{bottom:578.600700px;}
.yfb{bottom:578.650050px;}
.y1dd{bottom:578.650500px;}
.y91{bottom:578.654700px;}
.y142{bottom:578.695050px;}
.y116{bottom:590.433600px;}
.y21d{bottom:596.551800px;}
.y59{bottom:596.555850px;}
.y123{bottom:596.569050px;}
.y12{bottom:596.591700px;}
.y169{bottom:596.596050px;}
.yc0{bottom:596.596200px;}
.yfa{bottom:596.645550px;}
.y1dc{bottom:596.646000px;}
.y90{bottom:596.650200px;}
.y141{bottom:596.690550px;}
.y3c{bottom:614.551350px;}
.y21c{bottom:614.551800px;}
.y122{bottom:614.564550px;}
.y11{bottom:614.587200px;}
.y168{bottom:614.591550px;}
.ybf{bottom:614.591700px;}
.y58{bottom:614.591850px;}
.yf9{bottom:614.641050px;}
.y1db{bottom:614.641500px;}
.y8f{bottom:614.645700px;}
.y140{bottom:614.686050px;}
.y3b{bottom:632.551350px;}
.y21b{bottom:632.551800px;}
.y121{bottom:632.560050px;}
.y10{bottom:632.582700px;}
.y167{bottom:632.587050px;}
.ybe{bottom:632.587200px;}
.y57{bottom:632.587350px;}
.yf8{bottom:632.636550px;}
.y1da{bottom:632.637000px;}
.y8e{bottom:632.641200px;}
.y13f{bottom:632.681550px;}
.y21a{bottom:650.551800px;}
.y120{bottom:650.555550px;}
.yf{bottom:650.578200px;}
.y166{bottom:650.582550px;}
.ybd{bottom:650.582700px;}
.y56{bottom:650.582850px;}
.yf7{bottom:650.632050px;}
.y1d9{bottom:650.632500px;}
.y8d{bottom:650.636700px;}
.y13e{bottom:650.677050px;}
.y204{bottom:656.401650px;}
.y11f{bottom:668.551050px;}
.y219{bottom:668.551800px;}
.ye{bottom:668.573700px;}
.y165{bottom:668.578050px;}
.ybc{bottom:668.578200px;}
.y55{bottom:668.578350px;}
.yf6{bottom:668.627550px;}
.y3a{bottom:668.627850px;}
.y1d8{bottom:668.628000px;}
.y8c{bottom:668.632200px;}
.y13d{bottom:668.672550px;}
.y203{bottom:669.901650px;}
.y202{bottom:683.401650px;}
.y218{bottom:686.551800px;}
.yd{bottom:686.569200px;}
.y164{bottom:686.573550px;}
.ybb{bottom:686.573700px;}
.y54{bottom:686.573850px;}
.yf5{bottom:686.623050px;}
.y39{bottom:686.623350px;}
.y1d7{bottom:686.623500px;}
.y8b{bottom:686.627700px;}
.y13c{bottom:686.668050px;}
.y217{bottom:704.551800px;}
.yc{bottom:704.564700px;}
.y163{bottom:704.569050px;}
.yba{bottom:704.569200px;}
.y53{bottom:704.569350px;}
.yf4{bottom:704.618550px;}
.y38{bottom:704.618850px;}
.y1d6{bottom:704.619000px;}
.y8a{bottom:704.623200px;}
.y13b{bottom:704.663550px;}
.y147{bottom:707.593200px;}
.y15a{bottom:719.037900px;}
.y146{bottom:721.093200px;}
.y216{bottom:722.551800px;}
.yb{bottom:722.560200px;}
.y162{bottom:722.564550px;}
.yb9{bottom:722.564700px;}
.y52{bottom:722.564850px;}
.yf3{bottom:722.614050px;}
.y37{bottom:722.614350px;}
.y1d5{bottom:722.614500px;}
.y157{bottom:722.618550px;}
.y89{bottom:722.618700px;}
.y13a{bottom:722.659050px;}
.y192{bottom:722.723100px;}
.y159{bottom:732.537900px;}
.y191{bottom:736.223100px;}
.y215{bottom:740.551800px;}
.ya{bottom:740.555700px;}
.y161{bottom:740.560050px;}
.yb8{bottom:740.560200px;}
.y51{bottom:740.560350px;}
.yf2{bottom:740.609550px;}
.y36{bottom:740.609850px;}
.y1d4{bottom:740.610000px;}
.y156{bottom:740.614050px;}
.y88{bottom:740.614200px;}
.y139{bottom:740.654550px;}
.y158{bottom:746.037900px;}
.y9{bottom:758.551200px;}
.y214{bottom:758.551800px;}
.y160{bottom:758.555550px;}
.yb7{bottom:758.555700px;}
.y50{bottom:758.555850px;}
.yf1{bottom:758.605050px;}
.y35{bottom:758.605350px;}
.y1d3{bottom:758.605500px;}
.y155{bottom:758.609550px;}
.y87{bottom:758.609700px;}
.y138{bottom:758.650050px;}
.y15f{bottom:776.551050px;}
.y8{bottom:776.551200px;}
.y4f{bottom:776.560350px;}
.y213{bottom:776.587500px;}
.yf0{bottom:776.600550px;}
.y34{bottom:776.600850px;}
.y1d2{bottom:776.601000px;}
.y154{bottom:776.605050px;}
.y86{bottom:776.605200px;}
.y137{bottom:776.645550px;}
.y15e{bottom:794.551050px;}
.yb6{bottom:794.551200px;}
.y4e{bottom:794.555850px;}
.yef{bottom:794.596050px;}
.y33{bottom:794.596350px;}
.y1d1{bottom:794.596500px;}
.y153{bottom:794.600550px;}
.y85{bottom:794.600700px;}
.y136{bottom:794.641050px;}
.y15d{bottom:812.551050px;}
.yb5{bottom:812.551200px;}
.y4d{bottom:812.582850px;}
.yee{bottom:812.591550px;}
.y32{bottom:812.591850px;}
.y1d0{bottom:812.592000px;}
.y152{bottom:812.596050px;}
.y84{bottom:812.596200px;}
.y212{bottom:812.596500px;}
.y135{bottom:812.636550px;}
.y4c{bottom:830.578350px;}
.yed{bottom:830.587050px;}
.y31{bottom:830.587350px;}
.y1cf{bottom:830.587500px;}
.y151{bottom:830.591550px;}
.y83{bottom:830.591700px;}
.y211{bottom:830.592000px;}
.y134{bottom:830.632050px;}
.y4b{bottom:848.573850px;}
.yec{bottom:848.582550px;}
.y30{bottom:848.582850px;}
.y1ce{bottom:848.583000px;}
.y150{bottom:848.587050px;}
.y82{bottom:848.587200px;}
.y210{bottom:848.587500px;}
.y133{bottom:848.627550px;}
.yb4{bottom:848.803200px;}
.y5{bottom:853.394550px;}
.y4a{bottom:866.569350px;}
.yeb{bottom:866.578050px;}
.y2f{bottom:866.578350px;}
.y1cd{bottom:866.578500px;}
.y14f{bottom:866.582550px;}
.y81{bottom:866.582700px;}
.y20f{bottom:866.583000px;}
.y132{bottom:866.623050px;}
.yb3{bottom:866.798700px;}
.y4{bottom:871.790550px;}
.y49{bottom:884.564850px;}
.yea{bottom:884.573550px;}
.y2e{bottom:884.573850px;}
.y1cc{bottom:884.574000px;}
.y14e{bottom:884.578050px;}
.y80{bottom:884.578200px;}
.y20e{bottom:884.578500px;}
.y131{bottom:884.618550px;}
.yb2{bottom:884.794200px;}
.y3{bottom:886.190400px;}
.y48{bottom:902.560350px;}
.ye9{bottom:902.569050px;}
.y2d{bottom:902.569350px;}
.y1cb{bottom:902.569500px;}
.y14d{bottom:902.573550px;}
.y7f{bottom:902.573700px;}
.y20d{bottom:902.574000px;}
.y130{bottom:902.614050px;}
.yb1{bottom:902.789700px;}
.y23c{bottom:904.051350px;}
.y47{bottom:920.555850px;}
.ye8{bottom:920.564550px;}
.y2c{bottom:920.564850px;}
.y1ca{bottom:920.565000px;}
.yce{bottom:920.569050px;}
.y7e{bottom:920.569200px;}
.y20c{bottom:920.569500px;}
.y12f{bottom:920.609550px;}
.yb0{bottom:920.785200px;}
.ye7{bottom:938.560050px;}
.y2b{bottom:938.560350px;}
.y1c9{bottom:938.560500px;}
.ycd{bottom:938.564550px;}
.y7d{bottom:938.564700px;}
.y20b{bottom:938.565000px;}
.y46{bottom:938.578350px;}
.y12e{bottom:938.605050px;}
.yaf{bottom:938.780700px;}
.y2{bottom:939.794550px;}
.y23b{bottom:956.551350px;}
.ye6{bottom:956.555550px;}
.y2a{bottom:956.555850px;}
.y1c8{bottom:956.556000px;}
.ycc{bottom:956.560050px;}
.y7c{bottom:956.560200px;}
.y20a{bottom:956.560500px;}
.y45{bottom:956.573850px;}
.y12d{bottom:956.600550px;}
.yae{bottom:956.776200px;}
.ye5{bottom:974.551050px;}
.y29{bottom:974.551350px;}
.y1c7{bottom:974.551500px;}
.ycb{bottom:974.555550px;}
.y7b{bottom:974.555700px;}
.y209{bottom:974.556000px;}
.y44{bottom:974.569350px;}
.y12c{bottom:974.596050px;}
.yad{bottom:974.771700px;}
.y7{bottom:992.238750px;}
.yca{bottom:992.551050px;}
.y7a{bottom:992.551200px;}
.y28{bottom:992.551350px;}
.y1c6{bottom:992.551500px;}
.y43{bottom:992.564850px;}
.y12b{bottom:992.591550px;}
.yac{bottom:992.767200px;}
.y6{bottom:1013.838750px;}
.y11e{bottom:1079.581350px;}
.y79{bottom:1079.581500px;}
.y1c5{bottom:1080.642150px;}
.y239{bottom:1080.646050px;}
.y11d{bottom:1093.084350px;}
.y27{bottom:1093.084500px;}
.yc9{bottom:1094.144850px;}
.y196{bottom:1094.145150px;}
.y207{bottom:1094.149050px;}
.y23{bottom:1105.705200px;}
.y22{bottom:1132.705200px;}
.h4{height:24.141000px;}
.hc{height:28.464844px;}
.hd{height:33.328125px;}
.hb{height:35.109375px;}
.h11{height:36.597656px;}
.h2{height:37.494141px;}
.h12{height:40.031250px;}
.h5{height:40.125000px;}
.hf{height:40.634766px;}
.h7{height:40.664062px;}
.ha{height:42.984000px;}
.h8{height:45.035156px;}
.he{height:45.104625px;}
.h10{height:45.140625px;}
.h6{height:48.796875px;}
.h3{height:60.046875px;}
.h9{height:62.088000px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xd{left:29.830200px;}
.x17{left:31.517700px;}
.xf{left:64.043100px;}
.x8{left:85.303050px;}
.x7{left:86.872350px;}
.x9{left:106.299150px;}
.x12{left:113.279550px;}
.x16{left:134.539350px;}
.xc{left:162.000000px;}
.x6{left:167.746350px;}
.x3{left:182.167050px;}
.xa{left:199.048350px;}
.x4{left:264.526500px;}
.x2{left:280.614600px;}
.x1a{left:332.013900px;}
.x5{left:346.117950px;}
.xb{left:385.223400px;}
.x11{left:457.085850px;}
.x10{left:478.348350px;}
.x13{left:499.610850px;}
.x18{left:506.586600px;}
.x14{left:527.846400px;}
.xe{left:639.820050px;}
.x15{left:642.739050px;}
.x1{left:846.208050px;}
.x19{left:847.895550px;}
@media print{
.v2{vertical-align:-21.311467pt;}
.v7{vertical-align:-15.984000pt;}
.v3{vertical-align:-14.208000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:2.923733pt;}
.v4{vertical-align:12.432000pt;}
.v6{vertical-align:15.888000pt;}
.v1{vertical-align:21.311467pt;}
.ls3{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.240000pt;}
.ls10{letter-spacing:0.384000pt;}
.lsa{letter-spacing:0.426667pt;}
.ls2{letter-spacing:0.480000pt;}
.lsb{letter-spacing:0.533333pt;}
.lse{letter-spacing:0.624000pt;}
.ls0{letter-spacing:0.640000pt;}
.ls7{letter-spacing:0.720000pt;}
.ls14{letter-spacing:0.768000pt;}
.lsf{letter-spacing:0.853333pt;}
.ls5{letter-spacing:0.960000pt;}
.ls12{letter-spacing:1.066667pt;}
.ls1{letter-spacing:1.120000pt;}
.ls9{letter-spacing:1.200000pt;}
.ls13{letter-spacing:1.578667pt;}
.ls11{letter-spacing:1.621333pt;}
.lsc{letter-spacing:1.632000pt;}
.ls8{letter-spacing:1.680000pt;}
.ls4{letter-spacing:2.400000pt;}
.ls6{letter-spacing:7.296000pt;}
.ws3{word-spacing:-34.320000pt;}
.ws7{word-spacing:-15.733333pt;}
.wsc{word-spacing:-13.680000pt;}
.wsb{word-spacing:-13.333333pt;}
.ws2{word-spacing:-12.480000pt;}
.ws9{word-spacing:-12.000000pt;}
.wsd{word-spacing:-11.520000pt;}
.wse{word-spacing:-10.666667pt;}
.ws5{word-spacing:-9.333333pt;}
.ws0{word-spacing:-9.328000pt;}
.ws8{word-spacing:-6.996000pt;}
.ws1{word-spacing:-6.218667pt;}
.ws4{word-spacing:-5.441333pt;}
.ws6{word-spacing:0.000000pt;}
.wsa{word-spacing:54.708800pt;}
._9{margin-left:-24.853739pt;}
._2{margin-left:-8.064000pt;}
._6{margin-left:-7.019477pt;}
._1{margin-left:-5.696000pt;}
._4{margin-left:-3.968000pt;}
._3{margin-left:-2.346261pt;}
._0{margin-left:-0.960000pt;}
._5{width:1.362091pt;}
._7{width:2.352000pt;}
._8{width:3.600000pt;}
._d{width:4.512000pt;}
._16{width:5.504000pt;}
._11{width:6.784000pt;}
._10{width:8.480000pt;}
._13{width:9.520000pt;}
._17{width:10.800000pt;}
._15{width:11.760000pt;}
._18{width:13.440000pt;}
._14{width:14.400000pt;}
._1a{width:15.792000pt;}
._1c{width:17.520000pt;}
._1b{width:18.672000pt;}
._12{width:20.208000pt;}
._e{width:21.504000pt;}
._f{width:22.736000pt;}
._1d{width:23.776000pt;}
._19{width:29.232000pt;}
._1e{width:30.768000pt;}
._a{width:60.708800pt;}
._b{width:244.890261pt;}
._c{width:837.274667pt;}
.fs8{font-size:21.765333pt;}
.fs3{font-size:24.874667pt;}
.fs9{font-size:27.984000pt;}
.fs2{font-size:37.312000pt;}
.fs7{font-size:37.333333pt;}
.fs4{font-size:42.666667pt;}
.fs0{font-size:48.000000pt;}
.fs5{font-size:53.333333pt;}
.fs1{font-size:64.000000pt;}
.fs6{font-size:69.333333pt;}
.y0{bottom:0.000000pt;}
.yc8{bottom:37.603600pt;}
.y26{bottom:37.603733pt;}
.y195{bottom:37.603867pt;}
.y23a{bottom:38.328933pt;}
.y11c{bottom:38.334533pt;}
.y78{bottom:38.334667pt;}
.y1c4{bottom:38.334800pt;}
.y208{bottom:38.338267pt;}
.y11b{bottom:38.548400pt;}
.y1{bottom:38.548533pt;}
.y77{bottom:38.548667pt;}
.y1c3{bottom:38.548800pt;}
.y25{bottom:41.427467pt;}
.y24{bottom:52.627467pt;}
.y14c{bottom:97.570133pt;}
.yc7{bottom:97.664667pt;}
.y76{bottom:98.231733pt;}
.y15c{bottom:98.247333pt;}
.y238{bottom:98.268267pt;}
.y12a{bottom:98.307600pt;}
.y1ab{bottom:98.344000pt;}
.y72{bottom:98.347867pt;}
.ye4{bottom:98.367600pt;}
.y184{bottom:98.415600pt;}
.y1c0{bottom:98.428000pt;}
.y115{bottom:98.459600pt;}
.y1f7{bottom:98.460000pt;}
.y190{bottom:98.463600pt;}
.yab{bottom:98.463733pt;}
.y201{bottom:98.496000pt;}
.y14b{bottom:109.570133pt;}
.yc6{bottom:109.664667pt;}
.y75{bottom:110.231733pt;}
.y15b{bottom:110.247333pt;}
.y237{bottom:114.268267pt;}
.y129{bottom:114.303600pt;}
.y1aa{bottom:114.340000pt;}
.y71{bottom:114.343867pt;}
.ye3{bottom:114.363600pt;}
.y183{bottom:114.411600pt;}
.y1bf{bottom:114.424000pt;}
.y114{bottom:114.455600pt;}
.y1f6{bottom:114.456000pt;}
.y18f{bottom:114.459600pt;}
.yaa{bottom:114.459733pt;}
.y200{bottom:114.492000pt;}
.y14a{bottom:121.570133pt;}
.y74{bottom:122.231733pt;}
.y236{bottom:130.268267pt;}
.y128{bottom:130.299600pt;}
.y1a9{bottom:130.336000pt;}
.y70{bottom:130.339867pt;}
.ye2{bottom:130.359600pt;}
.y182{bottom:130.407600pt;}
.y1be{bottom:130.420000pt;}
.y113{bottom:130.451600pt;}
.y1f5{bottom:130.452000pt;}
.y18e{bottom:130.455600pt;}
.ya9{bottom:130.455733pt;}
.y1ff{bottom:130.488000pt;}
.y73{bottom:134.231733pt;}
.y235{bottom:146.268267pt;}
.y127{bottom:146.295600pt;}
.y1a8{bottom:146.332000pt;}
.y6f{bottom:146.335867pt;}
.ye1{bottom:146.355600pt;}
.y181{bottom:146.403600pt;}
.y1bd{bottom:146.416000pt;}
.y112{bottom:146.447600pt;}
.y1f4{bottom:146.448000pt;}
.y18d{bottom:146.451600pt;}
.ya8{bottom:146.451733pt;}
.y1fe{bottom:146.484000pt;}
.y234{bottom:162.268267pt;}
.y126{bottom:162.291600pt;}
.y1a7{bottom:162.328000pt;}
.y6e{bottom:162.331867pt;}
.ye0{bottom:162.351600pt;}
.y180{bottom:162.399600pt;}
.y1bc{bottom:162.412000pt;}
.y111{bottom:162.443600pt;}
.y1f3{bottom:162.444000pt;}
.y18c{bottom:162.447600pt;}
.ya7{bottom:162.447733pt;}
.y1fd{bottom:162.480000pt;}
.y233{bottom:178.268267pt;}
.y1a6{bottom:178.324000pt;}
.y6d{bottom:178.327867pt;}
.ydf{bottom:178.347600pt;}
.y17f{bottom:178.395600pt;}
.y1bb{bottom:178.408000pt;}
.y110{bottom:178.439600pt;}
.y1f2{bottom:178.440000pt;}
.y18b{bottom:178.443600pt;}
.ya6{bottom:178.443733pt;}
.y1fc{bottom:178.476000pt;}
.y149{bottom:193.570133pt;}
.y232{bottom:194.268267pt;}
.y1a5{bottom:194.320000pt;}
.y6c{bottom:194.323867pt;}
.yde{bottom:194.343600pt;}
.y17e{bottom:194.391600pt;}
.y1ba{bottom:194.404000pt;}
.y10f{bottom:194.435600pt;}
.y1f1{bottom:194.436000pt;}
.y18a{bottom:194.439600pt;}
.ya5{bottom:194.439733pt;}
.y1fb{bottom:194.472000pt;}
.y148{bottom:205.570133pt;}
.y231{bottom:210.268267pt;}
.y1a4{bottom:210.316000pt;}
.y6b{bottom:210.319867pt;}
.ydd{bottom:210.339600pt;}
.y17d{bottom:210.387600pt;}
.y1b9{bottom:210.400000pt;}
.y10e{bottom:210.431600pt;}
.y1f0{bottom:210.432000pt;}
.y189{bottom:210.435600pt;}
.ya4{bottom:210.435733pt;}
.y1fa{bottom:210.468000pt;}
.y230{bottom:226.268267pt;}
.y1a3{bottom:226.312000pt;}
.y6a{bottom:226.315867pt;}
.ydc{bottom:226.335600pt;}
.y17c{bottom:226.383600pt;}
.y1b8{bottom:226.396000pt;}
.y10d{bottom:226.427600pt;}
.y1ef{bottom:226.428000pt;}
.y188{bottom:226.431600pt;}
.ya3{bottom:226.431733pt;}
.y1f9{bottom:226.464000pt;}
.y22f{bottom:242.268267pt;}
.y1a2{bottom:242.308000pt;}
.y69{bottom:242.311867pt;}
.ydb{bottom:242.331600pt;}
.y17b{bottom:242.379600pt;}
.y1b7{bottom:242.392000pt;}
.y10c{bottom:242.423600pt;}
.y1ee{bottom:242.424000pt;}
.y187{bottom:242.427600pt;}
.ya2{bottom:242.427733pt;}
.y1f8{bottom:242.460000pt;}
.y22e{bottom:258.268267pt;}
.y1a1{bottom:258.304000pt;}
.y68{bottom:258.307867pt;}
.yda{bottom:258.327600pt;}
.y17a{bottom:258.375600pt;}
.y1b6{bottom:258.388000pt;}
.y10b{bottom:258.419600pt;}
.y1ed{bottom:258.420000pt;}
.y186{bottom:258.423600pt;}
.ya1{bottom:258.423733pt;}
.y22d{bottom:274.268267pt;}
.y1a0{bottom:274.300000pt;}
.y67{bottom:274.303867pt;}
.yd9{bottom:274.323600pt;}
.y179{bottom:274.371600pt;}
.y1b5{bottom:274.384000pt;}
.y10a{bottom:274.415600pt;}
.y1ec{bottom:274.416000pt;}
.y185{bottom:274.419600pt;}
.ya0{bottom:274.419733pt;}
.y206{bottom:275.775200pt;}
.y205{bottom:287.775200pt;}
.y22c{bottom:290.268267pt;}
.y19f{bottom:290.296000pt;}
.y66{bottom:290.299867pt;}
.yd8{bottom:290.319600pt;}
.y21{bottom:290.363733pt;}
.y178{bottom:290.367600pt;}
.y1b4{bottom:290.380000pt;}
.y109{bottom:290.411600pt;}
.y1eb{bottom:290.412000pt;}
.y9f{bottom:290.415733pt;}
.y22b{bottom:306.268267pt;}
.y19e{bottom:306.292000pt;}
.y65{bottom:306.295867pt;}
.yd7{bottom:306.315600pt;}
.y20{bottom:306.359733pt;}
.y177{bottom:306.363600pt;}
.y1b3{bottom:306.376000pt;}
.y108{bottom:306.407600pt;}
.y1ea{bottom:306.408000pt;}
.y9e{bottom:306.411733pt;}
.y194{bottom:307.428400pt;}
.y193{bottom:319.428400pt;}
.y22a{bottom:322.268267pt;}
.y19d{bottom:322.288000pt;}
.y64{bottom:322.291867pt;}
.yd6{bottom:322.311600pt;}
.y1f{bottom:322.355733pt;}
.y176{bottom:322.359600pt;}
.y1b2{bottom:322.372000pt;}
.y107{bottom:322.403600pt;}
.y1e9{bottom:322.404000pt;}
.y9d{bottom:322.407733pt;}
.y229{bottom:338.268267pt;}
.y19c{bottom:338.284000pt;}
.y63{bottom:338.287867pt;}
.yd5{bottom:338.307600pt;}
.y1e{bottom:338.351733pt;}
.y175{bottom:338.355600pt;}
.y1b1{bottom:338.368000pt;}
.y106{bottom:338.399600pt;}
.y1e8{bottom:338.400000pt;}
.y9c{bottom:338.403733pt;}
.y228{bottom:354.268267pt;}
.y19b{bottom:354.280000pt;}
.y62{bottom:354.283867pt;}
.yd4{bottom:354.303600pt;}
.y1d{bottom:354.347733pt;}
.y174{bottom:354.351600pt;}
.y1b0{bottom:354.364000pt;}
.y105{bottom:354.395600pt;}
.y1e7{bottom:354.396000pt;}
.y9b{bottom:354.399733pt;}
.y227{bottom:370.268267pt;}
.y19a{bottom:370.276000pt;}
.y61{bottom:370.279867pt;}
.yd3{bottom:370.299600pt;}
.y1c{bottom:370.343733pt;}
.y173{bottom:370.347600pt;}
.y1af{bottom:370.360000pt;}
.y104{bottom:370.391600pt;}
.y1e6{bottom:370.392000pt;}
.y9a{bottom:370.395733pt;}
.y226{bottom:386.268267pt;}
.y199{bottom:386.272000pt;}
.y60{bottom:386.275867pt;}
.yd2{bottom:386.295600pt;}
.y1b{bottom:386.339733pt;}
.y172{bottom:386.343600pt;}
.y1ae{bottom:386.356000pt;}
.y103{bottom:386.387600pt;}
.y1e5{bottom:386.388000pt;}
.y99{bottom:386.391733pt;}
.y198{bottom:402.268000pt;}
.y225{bottom:402.268267pt;}
.y5f{bottom:402.271867pt;}
.yd1{bottom:402.291600pt;}
.y1a{bottom:402.335733pt;}
.y171{bottom:402.339600pt;}
.y1ad{bottom:402.352000pt;}
.y102{bottom:402.383600pt;}
.y1e4{bottom:402.384000pt;}
.y98{bottom:402.387733pt;}
.y197{bottom:418.268000pt;}
.y224{bottom:418.268267pt;}
.y5e{bottom:418.279867pt;}
.yd0{bottom:418.287600pt;}
.y19{bottom:418.331733pt;}
.y170{bottom:418.335600pt;}
.y1ac{bottom:418.348000pt;}
.y101{bottom:418.379600pt;}
.y1e3{bottom:418.380000pt;}
.y97{bottom:418.383733pt;}
.y223{bottom:434.268267pt;}
.y5d{bottom:434.275867pt;}
.ycf{bottom:434.283600pt;}
.y42{bottom:434.283867pt;}
.y18{bottom:434.327733pt;}
.y16f{bottom:434.331600pt;}
.y100{bottom:434.375600pt;}
.y1e2{bottom:434.376000pt;}
.y96{bottom:434.379733pt;}
.y222{bottom:450.268267pt;}
.y5c{bottom:450.271867pt;}
.y41{bottom:450.279867pt;}
.y17{bottom:450.323733pt;}
.y16e{bottom:450.327600pt;}
.yc5{bottom:450.327733pt;}
.yff{bottom:450.371600pt;}
.y1e1{bottom:450.372000pt;}
.y95{bottom:450.375733pt;}
.y1c2{bottom:453.806667pt;}
.y1c1{bottom:465.806667pt;}
.y221{bottom:466.268267pt;}
.y40{bottom:466.275867pt;}
.y16{bottom:466.319733pt;}
.y16d{bottom:466.323600pt;}
.yc4{bottom:466.323733pt;}
.yfe{bottom:466.367600pt;}
.y1e0{bottom:466.368000pt;}
.y94{bottom:466.371733pt;}
.y145{bottom:466.407600pt;}
.y11a{bottom:476.829867pt;}
.y220{bottom:482.268267pt;}
.y3f{bottom:482.271867pt;}
.y15{bottom:482.315733pt;}
.y16c{bottom:482.319600pt;}
.yc3{bottom:482.319733pt;}
.yfd{bottom:482.363600pt;}
.y1df{bottom:482.364000pt;}
.y93{bottom:482.367733pt;}
.y144{bottom:482.403600pt;}
.y119{bottom:488.829867pt;}
.y3e{bottom:498.267867pt;}
.y21f{bottom:498.268267pt;}
.y5b{bottom:498.279867pt;}
.y125{bottom:498.291600pt;}
.y14{bottom:498.311733pt;}
.y16b{bottom:498.315600pt;}
.yc2{bottom:498.315733pt;}
.yfc{bottom:498.359600pt;}
.y1de{bottom:498.360000pt;}
.y92{bottom:498.363733pt;}
.y143{bottom:498.399600pt;}
.y118{bottom:500.829867pt;}
.y117{bottom:512.829867pt;}
.y3d{bottom:514.267867pt;}
.y21e{bottom:514.268267pt;}
.y5a{bottom:514.275867pt;}
.y124{bottom:514.287600pt;}
.y13{bottom:514.307733pt;}
.y16a{bottom:514.311600pt;}
.yc1{bottom:514.311733pt;}
.yfb{bottom:514.355600pt;}
.y1dd{bottom:514.356000pt;}
.y91{bottom:514.359733pt;}
.y142{bottom:514.395600pt;}
.y116{bottom:524.829867pt;}
.y21d{bottom:530.268267pt;}
.y59{bottom:530.271867pt;}
.y123{bottom:530.283600pt;}
.y12{bottom:530.303733pt;}
.y169{bottom:530.307600pt;}
.yc0{bottom:530.307733pt;}
.yfa{bottom:530.351600pt;}
.y1dc{bottom:530.352000pt;}
.y90{bottom:530.355733pt;}
.y141{bottom:530.391600pt;}
.y3c{bottom:546.267867pt;}
.y21c{bottom:546.268267pt;}
.y122{bottom:546.279600pt;}
.y11{bottom:546.299733pt;}
.y168{bottom:546.303600pt;}
.ybf{bottom:546.303733pt;}
.y58{bottom:546.303867pt;}
.yf9{bottom:546.347600pt;}
.y1db{bottom:546.348000pt;}
.y8f{bottom:546.351733pt;}
.y140{bottom:546.387600pt;}
.y3b{bottom:562.267867pt;}
.y21b{bottom:562.268267pt;}
.y121{bottom:562.275600pt;}
.y10{bottom:562.295733pt;}
.y167{bottom:562.299600pt;}
.ybe{bottom:562.299733pt;}
.y57{bottom:562.299867pt;}
.yf8{bottom:562.343600pt;}
.y1da{bottom:562.344000pt;}
.y8e{bottom:562.347733pt;}
.y13f{bottom:562.383600pt;}
.y21a{bottom:578.268267pt;}
.y120{bottom:578.271600pt;}
.yf{bottom:578.291733pt;}
.y166{bottom:578.295600pt;}
.ybd{bottom:578.295733pt;}
.y56{bottom:578.295867pt;}
.yf7{bottom:578.339600pt;}
.y1d9{bottom:578.340000pt;}
.y8d{bottom:578.343733pt;}
.y13e{bottom:578.379600pt;}
.y204{bottom:583.468133pt;}
.y11f{bottom:594.267600pt;}
.y219{bottom:594.268267pt;}
.ye{bottom:594.287733pt;}
.y165{bottom:594.291600pt;}
.ybc{bottom:594.291733pt;}
.y55{bottom:594.291867pt;}
.yf6{bottom:594.335600pt;}
.y3a{bottom:594.335867pt;}
.y1d8{bottom:594.336000pt;}
.y8c{bottom:594.339733pt;}
.y13d{bottom:594.375600pt;}
.y203{bottom:595.468133pt;}
.y202{bottom:607.468133pt;}
.y218{bottom:610.268267pt;}
.yd{bottom:610.283733pt;}
.y164{bottom:610.287600pt;}
.ybb{bottom:610.287733pt;}
.y54{bottom:610.287867pt;}
.yf5{bottom:610.331600pt;}
.y39{bottom:610.331867pt;}
.y1d7{bottom:610.332000pt;}
.y8b{bottom:610.335733pt;}
.y13c{bottom:610.371600pt;}
.y217{bottom:626.268267pt;}
.yc{bottom:626.279733pt;}
.y163{bottom:626.283600pt;}
.yba{bottom:626.283733pt;}
.y53{bottom:626.283867pt;}
.yf4{bottom:626.327600pt;}
.y38{bottom:626.327867pt;}
.y1d6{bottom:626.328000pt;}
.y8a{bottom:626.331733pt;}
.y13b{bottom:626.367600pt;}
.y147{bottom:628.971733pt;}
.y15a{bottom:639.144800pt;}
.y146{bottom:640.971733pt;}
.y216{bottom:642.268267pt;}
.yb{bottom:642.275733pt;}
.y162{bottom:642.279600pt;}
.yb9{bottom:642.279733pt;}
.y52{bottom:642.279867pt;}
.yf3{bottom:642.323600pt;}
.y37{bottom:642.323867pt;}
.y1d5{bottom:642.324000pt;}
.y157{bottom:642.327600pt;}
.y89{bottom:642.327733pt;}
.y13a{bottom:642.363600pt;}
.y192{bottom:642.420533pt;}
.y159{bottom:651.144800pt;}
.y191{bottom:654.420533pt;}
.y215{bottom:658.268267pt;}
.ya{bottom:658.271733pt;}
.y161{bottom:658.275600pt;}
.yb8{bottom:658.275733pt;}
.y51{bottom:658.275867pt;}
.yf2{bottom:658.319600pt;}
.y36{bottom:658.319867pt;}
.y1d4{bottom:658.320000pt;}
.y156{bottom:658.323600pt;}
.y88{bottom:658.323733pt;}
.y139{bottom:658.359600pt;}
.y158{bottom:663.144800pt;}
.y9{bottom:674.267733pt;}
.y214{bottom:674.268267pt;}
.y160{bottom:674.271600pt;}
.yb7{bottom:674.271733pt;}
.y50{bottom:674.271867pt;}
.yf1{bottom:674.315600pt;}
.y35{bottom:674.315867pt;}
.y1d3{bottom:674.316000pt;}
.y155{bottom:674.319600pt;}
.y87{bottom:674.319733pt;}
.y138{bottom:674.355600pt;}
.y15f{bottom:690.267600pt;}
.y8{bottom:690.267733pt;}
.y4f{bottom:690.275867pt;}
.y213{bottom:690.300000pt;}
.yf0{bottom:690.311600pt;}
.y34{bottom:690.311867pt;}
.y1d2{bottom:690.312000pt;}
.y154{bottom:690.315600pt;}
.y86{bottom:690.315733pt;}
.y137{bottom:690.351600pt;}
.y15e{bottom:706.267600pt;}
.yb6{bottom:706.267733pt;}
.y4e{bottom:706.271867pt;}
.yef{bottom:706.307600pt;}
.y33{bottom:706.307867pt;}
.y1d1{bottom:706.308000pt;}
.y153{bottom:706.311600pt;}
.y85{bottom:706.311733pt;}
.y136{bottom:706.347600pt;}
.y15d{bottom:722.267600pt;}
.yb5{bottom:722.267733pt;}
.y4d{bottom:722.295867pt;}
.yee{bottom:722.303600pt;}
.y32{bottom:722.303867pt;}
.y1d0{bottom:722.304000pt;}
.y152{bottom:722.307600pt;}
.y84{bottom:722.307733pt;}
.y212{bottom:722.308000pt;}
.y135{bottom:722.343600pt;}
.y4c{bottom:738.291867pt;}
.yed{bottom:738.299600pt;}
.y31{bottom:738.299867pt;}
.y1cf{bottom:738.300000pt;}
.y151{bottom:738.303600pt;}
.y83{bottom:738.303733pt;}
.y211{bottom:738.304000pt;}
.y134{bottom:738.339600pt;}
.y4b{bottom:754.287867pt;}
.yec{bottom:754.295600pt;}
.y30{bottom:754.295867pt;}
.y1ce{bottom:754.296000pt;}
.y150{bottom:754.299600pt;}
.y82{bottom:754.299733pt;}
.y210{bottom:754.300000pt;}
.y133{bottom:754.335600pt;}
.yb4{bottom:754.491733pt;}
.y5{bottom:758.572933pt;}
.y4a{bottom:770.283867pt;}
.yeb{bottom:770.291600pt;}
.y2f{bottom:770.291867pt;}
.y1cd{bottom:770.292000pt;}
.y14f{bottom:770.295600pt;}
.y81{bottom:770.295733pt;}
.y20f{bottom:770.296000pt;}
.y132{bottom:770.331600pt;}
.yb3{bottom:770.487733pt;}
.y4{bottom:774.924933pt;}
.y49{bottom:786.279867pt;}
.yea{bottom:786.287600pt;}
.y2e{bottom:786.287867pt;}
.y1cc{bottom:786.288000pt;}
.y14e{bottom:786.291600pt;}
.y80{bottom:786.291733pt;}
.y20e{bottom:786.292000pt;}
.y131{bottom:786.327600pt;}
.yb2{bottom:786.483733pt;}
.y3{bottom:787.724800pt;}
.y48{bottom:802.275867pt;}
.ye9{bottom:802.283600pt;}
.y2d{bottom:802.283867pt;}
.y1cb{bottom:802.284000pt;}
.y14d{bottom:802.287600pt;}
.y7f{bottom:802.287733pt;}
.y20d{bottom:802.288000pt;}
.y130{bottom:802.323600pt;}
.yb1{bottom:802.479733pt;}
.y23c{bottom:803.601200pt;}
.y47{bottom:818.271867pt;}
.ye8{bottom:818.279600pt;}
.y2c{bottom:818.279867pt;}
.y1ca{bottom:818.280000pt;}
.yce{bottom:818.283600pt;}
.y7e{bottom:818.283733pt;}
.y20c{bottom:818.284000pt;}
.y12f{bottom:818.319600pt;}
.yb0{bottom:818.475733pt;}
.ye7{bottom:834.275600pt;}
.y2b{bottom:834.275867pt;}
.y1c9{bottom:834.276000pt;}
.ycd{bottom:834.279600pt;}
.y7d{bottom:834.279733pt;}
.y20b{bottom:834.280000pt;}
.y46{bottom:834.291867pt;}
.y12e{bottom:834.315600pt;}
.yaf{bottom:834.471733pt;}
.y2{bottom:835.372933pt;}
.y23b{bottom:850.267867pt;}
.ye6{bottom:850.271600pt;}
.y2a{bottom:850.271867pt;}
.y1c8{bottom:850.272000pt;}
.ycc{bottom:850.275600pt;}
.y7c{bottom:850.275733pt;}
.y20a{bottom:850.276000pt;}
.y45{bottom:850.287867pt;}
.y12d{bottom:850.311600pt;}
.yae{bottom:850.467733pt;}
.ye5{bottom:866.267600pt;}
.y29{bottom:866.267867pt;}
.y1c7{bottom:866.268000pt;}
.ycb{bottom:866.271600pt;}
.y7b{bottom:866.271733pt;}
.y209{bottom:866.272000pt;}
.y44{bottom:866.283867pt;}
.y12c{bottom:866.307600pt;}
.yad{bottom:866.463733pt;}
.y7{bottom:881.990000pt;}
.yca{bottom:882.267600pt;}
.y7a{bottom:882.267733pt;}
.y28{bottom:882.267867pt;}
.y1c6{bottom:882.268000pt;}
.y43{bottom:882.279867pt;}
.y12b{bottom:882.303600pt;}
.yac{bottom:882.459733pt;}
.y6{bottom:901.190000pt;}
.y11e{bottom:959.627867pt;}
.y79{bottom:959.628000pt;}
.y1c5{bottom:960.570800pt;}
.y239{bottom:960.574267pt;}
.y11d{bottom:971.630533pt;}
.y27{bottom:971.630667pt;}
.yc9{bottom:972.573200pt;}
.y196{bottom:972.573467pt;}
.y207{bottom:972.576933pt;}
.y23{bottom:982.849067pt;}
.y22{bottom:1006.849067pt;}
.h4{height:21.458667pt;}
.hc{height:25.302083pt;}
.hd{height:29.625000pt;}
.hb{height:31.208333pt;}
.h11{height:32.531250pt;}
.h2{height:33.328125pt;}
.h12{height:35.583333pt;}
.h5{height:35.666667pt;}
.hf{height:36.119792pt;}
.h7{height:36.145833pt;}
.ha{height:38.208000pt;}
.h8{height:40.031250pt;}
.he{height:40.093000pt;}
.h10{height:40.125000pt;}
.h6{height:43.375000pt;}
.h3{height:53.375000pt;}
.h9{height:55.189333pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xd{left:26.515733pt;}
.x17{left:28.015733pt;}
.xf{left:56.927200pt;}
.x8{left:75.824933pt;}
.x7{left:77.219867pt;}
.x9{left:94.488133pt;}
.x12{left:100.692933pt;}
.x16{left:119.590533pt;}
.xc{left:144.000000pt;}
.x6{left:149.107867pt;}
.x3{left:161.926267pt;}
.xa{left:176.931867pt;}
.x4{left:235.134667pt;}
.x2{left:249.435200pt;}
.x1a{left:295.123467pt;}
.x5{left:307.660400pt;}
.xb{left:342.420800pt;}
.x11{left:406.298533pt;}
.x10{left:425.198533pt;}
.x13{left:444.098533pt;}
.x18{left:450.299200pt;}
.x14{left:469.196800pt;}
.xe{left:568.728933pt;}
.x15{left:571.323600pt;}
.x1{left:752.184933pt;}
.x19{left:753.684933pt;}
}




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