
    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_d75d8dd2575e4af43ae0e7c9.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.104004;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_b5e85874e9a2992ee244fe22.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_3d8a0642fef743c55eebae26.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.088379;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_0b4ea3912c9419d312c7dba2.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_1314e5645c91943283e42488.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.666504;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_d9f7235581c01f7a683dd12f.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.666504;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);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls4{letter-spacing:18.000000px;}
.ls2{letter-spacing:49.259766px;}
.ls1{letter-spacing:71.759766px;}
.ls3{letter-spacing:82.631837px;}
.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;}
}
.ws5f{word-spacing:-18.000000px;}
.ws69{word-spacing:-16.500000px;}
.ws2{word-spacing:-0.072000px;}
.ws6d{word-spacing:-0.066000px;}
.ws6e{word-spacing:-0.035159px;}
.ws6a{word-spacing:-0.035156px;}
.ws72{word-spacing:-0.029963px;}
.ws78{word-spacing:-0.024150px;}
.ws7f{word-spacing:-0.024033px;}
.ws82{word-spacing:-0.024015px;}
.ws7d{word-spacing:-0.022890px;}
.ws79{word-spacing:-0.022749px;}
.ws7b{word-spacing:-0.017649px;}
.ws7a{word-spacing:-0.017626px;}
.ws80{word-spacing:-0.017609px;}
.ws88{word-spacing:-0.017594px;}
.ws83{word-spacing:-0.017583px;}
.ws84{word-spacing:-0.017579px;}
.ws7c{word-spacing:-0.016229px;}
.ws81{word-spacing:-0.016227px;}
.ws56{word-spacing:-0.012319px;}
.ws87{word-spacing:-0.011719px;}
.ws8c{word-spacing:-0.000034px;}
.ws25{word-spacing:-0.000023px;}
.ws18{word-spacing:-0.000012px;}
.ws2d{word-spacing:-0.000003px;}
.ws7{word-spacing:0.000000px;}
.ws44{word-spacing:0.000003px;}
.ws23{word-spacing:0.000010px;}
.ws53{word-spacing:0.000011px;}
.ws17{word-spacing:0.000016px;}
.ws3a{word-spacing:0.000022px;}
.ws1c{word-spacing:4.499977px;}
.ws29{word-spacing:4.499988px;}
.ws46{word-spacing:4.499999px;}
.ws19{word-spacing:4.500000px;}
.ws38{word-spacing:4.500003px;}
.ws58{word-spacing:4.500010px;}
.ws2a{word-spacing:4.500022px;}
.ws4b{word-spacing:8.999966px;}
.ws30{word-spacing:8.999977px;}
.ws20{word-spacing:8.999988px;}
.ws52{word-spacing:8.999997px;}
.ws32{word-spacing:8.999999px;}
.ws1e{word-spacing:9.000000px;}
.ws47{word-spacing:9.000002px;}
.ws34{word-spacing:9.000011px;}
.ws57{word-spacing:9.000022px;}
.ws54{word-spacing:13.499965px;}
.ws3e{word-spacing:13.499977px;}
.ws1b{word-spacing:13.499988px;}
.ws59{word-spacing:13.499998px;}
.ws4c{word-spacing:13.499999px;}
.ws22{word-spacing:13.500000px;}
.ws55{word-spacing:13.500011px;}
.ws43{word-spacing:13.500021px;}
.ws3c{word-spacing:13.500033px;}
.ws26{word-spacing:13.668331px;}
.ws24{word-spacing:13.738644px;}
.ws8d{word-spacing:14.921150px;}
.ws8{word-spacing:14.921179px;}
.ws8a{word-spacing:14.922402px;}
.ws67{word-spacing:14.922416px;}
.ws5c{word-spacing:14.922418px;}
.ws65{word-spacing:14.922422px;}
.ws60{word-spacing:14.922424px;}
.ws9{word-spacing:14.922482px;}
.ws8e{word-spacing:14.927667px;}
.ws77{word-spacing:16.396171px;}
.ws86{word-spacing:16.396200px;}
.ws85{word-spacing:16.396212px;}
.ws7e{word-spacing:16.396355px;}
.ws89{word-spacing:16.398763px;}
.ws6f{word-spacing:16.398841px;}
.ws70{word-spacing:16.398842px;}
.ws71{word-spacing:16.398844px;}
.ws76{word-spacing:16.398854px;}
.ws68{word-spacing:16.404040px;}
.ws6c{word-spacing:16.409257px;}
.ws6b{word-spacing:16.409258px;}
.ws27{word-spacing:17.640990px;}
.wsa{word-spacing:17.927965px;}
.ws3{word-spacing:17.927975px;}
.ws5{word-spacing:17.927977px;}
.ws6{word-spacing:17.927978px;}
.ws1{word-spacing:17.927987px;}
.ws0{word-spacing:17.927988px;}
.ws50{word-spacing:17.927996px;}
.ws4e{word-spacing:17.927997px;}
.ws4{word-spacing:17.928000px;}
.ws1f{word-spacing:17.928002px;}
.ws74{word-spacing:17.928012px;}
.ws31{word-spacing:17.928020px;}
.ws36{word-spacing:17.928022px;}
.ws4a{word-spacing:17.999966px;}
.ws35{word-spacing:17.999977px;}
.ws33{word-spacing:17.999988px;}
.ws45{word-spacing:17.999997px;}
.ws21{word-spacing:18.000000px;}
.ws2c{word-spacing:18.000011px;}
.ws2f{word-spacing:18.000022px;}
.ws15{word-spacing:22.427965px;}
.ws16{word-spacing:22.427989px;}
.ws14{word-spacing:22.427999px;}
.ws4d{word-spacing:22.428000px;}
.ws39{word-spacing:22.428022px;}
.ws2b{word-spacing:22.499977px;}
.ws28{word-spacing:22.499988px;}
.ws1d{word-spacing:22.500000px;}
.ws66{word-spacing:22.500022px;}
.ws73{word-spacing:26.927977px;}
.ws12{word-spacing:26.927988px;}
.ws48{word-spacing:26.927998px;}
.ws5a{word-spacing:26.928000px;}
.ws63{word-spacing:26.999977px;}
.ws37{word-spacing:26.999988px;}
.ws1a{word-spacing:27.000000px;}
.ws11{word-spacing:31.427989px;}
.ws61{word-spacing:31.427998px;}
.ws10{word-spacing:31.428000px;}
.wsf{word-spacing:31.428001px;}
.ws5e{word-spacing:31.499977px;}
.ws2e{word-spacing:31.499988px;}
.ws3b{word-spacing:31.499999px;}
.wsd{word-spacing:35.927988px;}
.wsc{word-spacing:35.927998px;}
.wse{word-spacing:35.928000px;}
.wsb{word-spacing:35.928002px;}
.ws40{word-spacing:35.999977px;}
.ws49{word-spacing:35.999988px;}
.ws42{word-spacing:36.000011px;}
.ws5b{word-spacing:40.427998px;}
.ws64{word-spacing:40.428000px;}
.ws4f{word-spacing:40.499966px;}
.ws3f{word-spacing:40.499988px;}
.ws13{word-spacing:44.927978px;}
.ws75{word-spacing:44.927988px;}
.ws62{word-spacing:44.927998px;}
.ws3d{word-spacing:44.928011px;}
.ws51{word-spacing:44.999988px;}
.ws41{word-spacing:53.927989px;}
.ws5d{word-spacing:53.927998px;}
.ws8b{word-spacing:85.499977px;}
._18{margin-left:-9.281245px;}
._16{margin-left:-7.980469px;}
._3{margin-left:-6.609373px;}
._2{margin-left:-5.343750px;}
._5{margin-left:-3.972656px;}
._1{margin-left:-2.531247px;}
._0{margin-left:-1.300780px;}
._c{width:3.720802px;}
._d{width:5.162208px;}
._e{width:7.728612px;}
._10{width:9.099707px;}
._f{width:13.951270px;}
._8{width:18.000002px;}
._7{width:22.500135px;}
._9{width:27.000146px;}
._4{width:31.500035px;}
._b{width:35.999999px;}
._13{width:40.500018px;}
._a{width:45.000002px;}
._6{width:49.500000px;}
._12{width:54.000003px;}
._15{width:58.500002px;}
._11{width:61.523438px;}
._14{width:62.999999px;}
._17{width:67.500000px;}
.fc4{color:rgb(67,67,67);}
.fc3{color:rgb(0,0,0);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(191,191,191);}
.fc0{color:rgb(15,36,62);}
.fs3{font-size:41.999999px;}
.fs1{font-size:59.999999px;}
.fs2{font-size:66.000002px;}
.fs0{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.yd0{bottom:11.443356px;}
.yc6{bottom:11.443357px;}
.yc2{bottom:11.443360px;}
.yd5{bottom:11.443371px;}
.yd2{bottom:11.446285px;}
.yca{bottom:11.446290px;}
.yb1{bottom:11.768552px;}
.yae{bottom:11.768554px;}
.yf9{bottom:19.743165px;}
.ye2{bottom:19.743168px;}
.yee{bottom:19.746093px;}
.yd9{bottom:22.119141px;}
.ycf{bottom:30.416016px;}
.yc5{bottom:30.416017px;}
.yc8{bottom:30.418945px;}
.yb0{bottom:32.466797px;}
.yf8{bottom:45.615240px;}
.ye1{bottom:45.615243px;}
.yed{bottom:45.618168px;}
.yc4{bottom:49.391602px;}
.y10e{bottom:56.666017px;}
.y1b{bottom:56.668207px;}
.y77{bottom:56.668942px;}
.ye8{bottom:71.487318px;}
.yf7{bottom:71.490240px;}
.ye0{bottom:71.490243px;}
.y8c{bottom:76.549803px;}
.y81{bottom:76.551269px;}
.y111{bottom:76.552733px;}
.y1d{bottom:76.553832px;}
.ye{bottom:76.553924px;}
.y44{bottom:76.554198px;}
.y57{bottom:76.554200px;}
.y80{bottom:93.799803px;}
.y1c{bottom:93.802368px;}
.yd{bottom:93.802460px;}
.y110{bottom:93.802733px;}
.y43{bottom:93.802734px;}
.ye7{bottom:97.359378px;}
.yf6{bottom:97.362315px;}
.ydf{bottom:97.362318px;}
.yec{bottom:97.365243px;}
.y8b{bottom:99.541998px;}
.y10d{bottom:99.749992px;}
.yb{bottom:104.541232px;}
.y125{bottom:112.573238px;}
.y76{bottom:112.574707px;}
.y8a{bottom:112.576178px;}
.ybf{bottom:117.744142px;}
.yf5{bottom:123.234375px;}
.yde{bottom:123.234378px;}
.yeb{bottom:123.237318px;}
.ye9{bottom:130.382805px;}
.y10c{bottom:130.798823px;}
.yd7{bottom:139.664058px;}
.y124{bottom:143.619142px;}
.y74{bottom:143.622067px;}
.yac{bottom:147.603513px;}
.ybe{bottom:148.792973px;}
.ye5{bottom:149.106453px;}
.yf4{bottom:149.109375px;}
.ydd{bottom:149.109378px;}
.yea{bottom:150.298828px;}
.y10b{bottom:161.844727px;}
.y9c{bottom:169.634767px;}
.y123{bottom:174.667973px;}
.y73{bottom:174.669428px;}
.y7e{bottom:174.670898px;}
.yf3{bottom:174.981450px;}
.ye4{bottom:176.165053px;}
.ydc{bottom:176.167978px;}
.y1a{bottom:176.557253px;}
.yd4{bottom:180.665032px;}
.y10a{bottom:192.890617px;}
.yd6{bottom:199.637688px;}
.y9b{bottom:200.683598px;}
.yf2{bottom:200.853525px;}
.ydb{bottom:204.626953px;}
.y72{bottom:205.716803px;}
.ybd{bottom:210.887692px;}
.y34{bottom:218.135378px;}
.y137{bottom:218.566398px;}
.y109{bottom:223.939447px;}
.yf1{bottom:227.912113px;}
.y9a{bottom:231.732428px;}
.yd1{bottom:235.485348px;}
.y129{bottom:236.762693px;}
.y71{bottom:236.764163px;}
.y7d{bottom:236.765617px;}
.ybc{bottom:241.933598px;}
.yd3{bottom:254.460933px;}
.y108{bottom:254.988278px;}
.yf0{bottom:256.374028px;}
.y99{bottom:262.778317px;}
.y122{bottom:267.808598px;}
.y70{bottom:267.811523px;}
.ybb{bottom:272.982428px;}
.y33{bottom:277.642823px;}
.y107{bottom:286.034183px;}
.yce{bottom:290.308598px;}
.ya{bottom:290.825407px;}
.y98{bottom:293.824223px;}
.y121{bottom:298.857428px;}
.y6f{bottom:298.858883px;}
.y89{bottom:298.860353px;}
.yba{bottom:304.031242px;}
.ye6{bottom:305.085930px;}
.y32{bottom:308.690182px;}
.y135{bottom:309.205073px;}
.ycd{bottom:309.281253px;}
.y9{bottom:311.523652px;}
.y106{bottom:317.080073px;}
.y97{bottom:324.873052px;}
.y6e{bottom:329.906242px;}
.yb9{bottom:335.077148px;}
.y31{bottom:339.737543px;}
.ycc{bottom:345.128898px;}
.y105{bottom:348.128902px;}
.y134{bottom:350.601563px;}
.y96{bottom:355.921867px;}
.y120{bottom:360.952148px;}
.y6d{bottom:360.953618px;}
.y7c{bottom:360.955073px;}
.yb8{bottom:366.123052px;}
.y104{bottom:379.177733px;}
.ycb{bottom:380.976569px;}
.yab{bottom:382.467773px;}
.y95{bottom:386.967773px;}
.y19{bottom:386.989373px;}
.y11f{bottom:391.998053px;}
.y6c{bottom:392.000978px;}
.yb7{bottom:397.171867px;}
.y30{bottom:401.832278px;}
.y103{bottom:410.223637px;}
.yaa{bottom:413.513678px;}
.yc3{bottom:416.827146px;}
.y94{bottom:418.013678px;}
.y138{bottom:422.800773px;}
.y128{bottom:423.046867px;}
.y6b{bottom:423.048338px;}
.y7b{bottom:423.049807px;}
.yb6{bottom:428.220698px;}
.y2f{bottom:432.879637px;}
.y133{bottom:433.394528px;}
.yc7{bottom:435.799803px;}
.y102{bottom:441.269528px;}
.ya9{bottom:444.562492px;}
.y93{bottom:449.062492px;}
.y18{bottom:453.735173px;}
.y6a{bottom:454.095698px;}
.yc9{bottom:454.772459px;}
.y2e{bottom:463.926998px;}
.y101{bottom:472.318358px;}
.y132{bottom:474.791017px;}
.ya8{bottom:475.611323px;}
.y92{bottom:480.111322px;}
.y11e{bottom:485.141602px;}
.y55{bottom:485.142698px;}
.y69{bottom:485.143073px;}
.y7a{bottom:485.144527px;}
.yb5{bottom:487.939458px;}
.yc1{bottom:490.623048px;}
.y2d{bottom:494.974372px;}
.yb3{bottom:503.068356px;}
.y100{bottom:503.367188px;}
.y17{bottom:505.480777px;}
.ya7{bottom:506.657228px;}
.y91{bottom:511.157228px;}
.y11d{bottom:516.187492px;}
.y54{bottom:516.190057px;}
.y75{bottom:516.190432px;}
.y42{bottom:522.529177px;}
.yb4{bottom:523.766598px;}
.y2c{bottom:526.021732px;}
.yc0{bottom:526.470708px;}
.ye3{bottom:534.117180px;}
.yff{bottom:534.413092px;}
.ya6{bottom:537.703118px;}
.y90{bottom:542.203118px;}
.y11c{bottom:547.236322px;}
.y53{bottom:547.237433px;}
.y66{bottom:547.237793px;}
.y79{bottom:547.239262px;}
.y136{bottom:552.181638px;}
.y2b{bottom:557.069093px;}
.y16{bottom:557.226382px;}
.y131{bottom:557.583982px;}
.y41{bottom:558.076537px;}
.y8{bottom:559.902563px;}
.yaf{bottom:561.339846px;}
.ya5{bottom:568.751948px;}
.y8f{bottom:573.251948px;}
.y52{bottom:578.284792px;}
.y65{bottom:578.285152px;}
.y7{bottom:580.600792px;}
.yb2{bottom:582.038088px;}
.y2a{bottom:588.116452px;}
.y40{bottom:593.623897px;}
.yfe{bottom:596.507812px;}
.y130{bottom:598.980473px;}
.ya4{bottom:599.800777px;}
.y8e{bottom:604.300777px;}
.y15{bottom:608.971988px;}
.y127{bottom:609.331058px;}
.y51{bottom:609.332153px;}
.y64{bottom:609.332513px;}
.y78{bottom:609.333982px;}
.yad{bottom:619.611333px;}
.y6{bottom:621.997282px;}
.yfd{bottom:627.556643px;}
.y3f{bottom:629.171257px;}
.ya3{bottom:630.846683px;}
.y11b{bottom:640.376948px;}
.y50{bottom:640.379512px;}
.y63{bottom:640.379887px;}
.y5{bottom:642.695528px;}
.y29{bottom:647.623897px;}
.yfc{bottom:658.602533px;}
.y14{bottom:660.717592px;}
.ya2{bottom:661.892573px;}
.y8d{bottom:664.019523px;}
.y3e{bottom:664.718633px;}
.y11a{bottom:671.425777px;}
.y4f{bottom:671.426872px;}
.y68{bottom:671.427248px;}
.y87{bottom:671.428717px;}
.y12f{bottom:681.773438px;}
.yfb{bottom:689.648438px;}
.ya1{bottom:692.941402px;}
.y3d{bottom:700.265992px;}
.y4e{bottom:702.474248px;}
.y62{bottom:702.474608px;}
.y28{bottom:709.718633px;}
.y13{bottom:712.463198px;}
.y12e{bottom:723.169928px;}
.ya0{bottom:723.990233px;}
.y119{bottom:733.520512px;}
.y61{bottom:733.521968px;}
.y88{bottom:733.523438px;}
.y3c{bottom:735.813352px;}
.y27{bottom:740.765992px;}
.yfa{bottom:744.196293px;}
.y9f{bottom:755.036137px;}
.yda{bottom:763.148430px;}
.y12{bottom:764.208803px;}
.y118{bottom:764.566402px;}
.y4d{bottom:764.568967px;}
.y60{bottom:764.569342px;}
.y3b{bottom:771.360712px;}
.y26{bottom:771.813352px;}
.yef{bottom:780.023433px;}
.y9e{bottom:786.082027px;}
.y4{bottom:787.583228px;}
.y117{bottom:795.615233px;}
.y4c{bottom:795.616328px;}
.y5f{bottom:795.616702px;}
.y86{bottom:795.618158px;}
.y12d{bottom:805.962893px;}
.y3a{bottom:806.908088px;}
.y4b{bottom:826.663702px;}
.y5e{bottom:826.664062px;}
.y25{bottom:833.908088px;}
.y39{bottom:842.455447px;}
.y9d{bottom:845.803713px;}
.y12c{bottom:847.359367px;}
.y116{bottom:857.709968px;}
.y4a{bottom:857.711063px;}
.y5d{bottom:857.711423px;}
.y85{bottom:857.712893px;}
.y24{bottom:864.955447px;}
.y11{bottom:867.700012px;}
.y38{bottom:878.002808px;}
.y115{bottom:888.755858px;}
.y49{bottom:888.758423px;}
.y67{bottom:888.758783px;}
.y23{bottom:896.002808px;}
.y37{bottom:913.550168px;}
.y3{bottom:914.022652px;}
.y10{bottom:919.445618px;}
.y114{bottom:919.804688px;}
.y48{bottom:919.805783px;}
.y5c{bottom:919.806157px;}
.y84{bottom:919.807613px;}
.y22{bottom:927.050168px;}
.y12b{bottom:930.152348px;}
.y36{bottom:949.097528px;}
.y47{bottom:950.853142px;}
.y5b{bottom:950.853517px;}
.y2{bottom:957.669142px;}
.y21{bottom:958.097528px;}
.y12a{bottom:971.548823px;}
.y1{bottom:978.367372px;}
.y113{bottom:981.899408px;}
.y46{bottom:981.900517px;}
.y5a{bottom:981.900877px;}
.y83{bottom:981.902348px;}
.y35{bottom:984.644902px;}
.y20{bottom:989.144902px;}
.yd8{bottom:992.179688px;}
.yf{bottom:994.139466px;}
.y112{bottom:1012.945312px;}
.y45{bottom:1012.947876px;}
.y59{bottom:1012.948242px;}
.y1f{bottom:1020.192261px;}
.y126{bottom:1043.994141px;}
.y1e{bottom:1043.995239px;}
.y58{bottom:1043.995605px;}
.y82{bottom:1043.997071px;}
.y10f{bottom:1060.798829px;}
.yc{bottom:1060.799926px;}
.y56{bottom:1060.800293px;}
.y7f{bottom:1060.801758px;}
.h10{height:34.722657px;}
.h15{height:34.725586px;}
.he{height:36.448242px;}
.h11{height:45.826173px;}
.h17{height:46.798829px;}
.h5{height:49.992188px;}
.h3{height:53.291014px;}
.h16{height:53.695312px;}
.h14{height:53.698242px;}
.hd{height:53.789061px;}
.hf{height:57.146484px;}
.h19{height:58.620119px;}
.h12{height:59.167970px;}
.h4{height:62.824219px;}
.h1{height:63.949219px;}
.h6{height:64.546875px;}
.h13{height:72.670899px;}
.ha{height:93.974115px;}
.h8{height:93.974850px;}
.h7{height:93.975030px;}
.hb{height:93.975585px;}
.h1a{height:173.578125px;}
.hc{height:202.198242px;}
.h9{height:202.199707px;}
.h2{height:202.200074px;}
.h1c{height:202.201171px;}
.h18{height:227.906250px;}
.h1b{height:279.653325px;}
.h0{height:1263.000000px;}
.w5{width:112.500000px;}
.w7{width:122.625000px;}
.w4{width:136.125000px;}
.w2{width:137.250000px;}
.w8{width:165.375000px;}
.w6{width:166.500000px;}
.w9{width:169.875000px;}
.w3{width:243.000000px;}
.wa{width:632.250000px;}
.w1{width:893.250000px;}
.w0{width:894.000000px;}
.x0{left:0.000000px;}
.x27{left:7.009277px;}
.x29{left:9.777832px;}
.x2a{left:13.447266px;}
.x36{left:15.824621px;}
.x38{left:17.668282px;}
.x2b{left:22.688965px;}
.x24{left:25.198242px;}
.x26{left:28.072266px;}
.x2c{left:30.093750px;}
.x34{left:31.295526px;}
.x2d{left:35.072754px;}
.x25{left:36.703125px;}
.x28{left:38.979493px;}
.x22{left:41.506347px;}
.x3a{left:42.686725px;}
.x1e{left:47.562012px;}
.x3e{left:49.500000px;}
.x20{left:51.213868px;}
.x35{left:52.468377px;}
.x37{left:56.015871px;}
.x39{left:57.400629px;}
.x30{left:59.181153px;}
.x3b{left:60.351762px;}
.x2e{left:67.719727px;}
.xc{left:148.500000px;}
.x23{left:149.625000px;}
.x18{left:153.000000px;}
.x3d{left:155.250000px;}
.x15{left:169.875000px;}
.x14{left:175.500000px;}
.x19{left:180.000000px;}
.xf{left:191.250000px;}
.x7{left:194.967044px;}
.x5{left:199.278079px;}
.x13{left:202.500000px;}
.x1c{left:209.725657px;}
.x42{left:214.660346px;}
.x41{left:221.395969px;}
.x1a{left:228.479336px;}
.x1b{left:232.626880px;}
.x1d{left:263.250000px;}
.x40{left:281.775206px;}
.x11{left:292.850841px;}
.x17{left:305.426806px;}
.x31{left:317.250000px;}
.x1{left:324.970470px;}
.x10{left:326.776623px;}
.x3f{left:335.993808px;}
.xe{left:338.382585px;}
.x4{left:345.387465px;}
.x2{left:348.643811px;}
.xb{left:361.234148px;}
.x3c{left:363.339034px;}
.x2f{left:376.091730px;}
.x8{left:392.488054px;}
.x1f{left:401.625000px;}
.x6{left:405.983655px;}
.x3{left:422.217056px;}
.x32{left:441.000000px;}
.x16{left:456.731696px;}
.x12{left:461.231696px;}
.xa{left:487.606961px;}
.x9{left:516.786649px;}
.x33{left:607.500000px;}
.xd{left:634.683814px;}
.x21{left:645.750000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls4{letter-spacing:16.000000pt;}
.ls2{letter-spacing:43.786459pt;}
.ls1{letter-spacing:63.786459pt;}
.ls3{letter-spacing:73.450521pt;}
.ws5f{word-spacing:-16.000000pt;}
.ws69{word-spacing:-14.666667pt;}
.ws2{word-spacing:-0.064000pt;}
.ws6d{word-spacing:-0.058667pt;}
.ws6e{word-spacing:-0.031253pt;}
.ws6a{word-spacing:-0.031250pt;}
.ws72{word-spacing:-0.026634pt;}
.ws78{word-spacing:-0.021467pt;}
.ws7f{word-spacing:-0.021363pt;}
.ws82{word-spacing:-0.021347pt;}
.ws7d{word-spacing:-0.020347pt;}
.ws79{word-spacing:-0.020221pt;}
.ws7b{word-spacing:-0.015688pt;}
.ws7a{word-spacing:-0.015668pt;}
.ws80{word-spacing:-0.015652pt;}
.ws88{word-spacing:-0.015639pt;}
.ws83{word-spacing:-0.015629pt;}
.ws84{word-spacing:-0.015626pt;}
.ws7c{word-spacing:-0.014426pt;}
.ws81{word-spacing:-0.014424pt;}
.ws56{word-spacing:-0.010950pt;}
.ws87{word-spacing:-0.010417pt;}
.ws8c{word-spacing:-0.000030pt;}
.ws25{word-spacing:-0.000020pt;}
.ws18{word-spacing:-0.000010pt;}
.ws2d{word-spacing:-0.000002pt;}
.ws7{word-spacing:0.000000pt;}
.ws44{word-spacing:0.000002pt;}
.ws23{word-spacing:0.000009pt;}
.ws53{word-spacing:0.000010pt;}
.ws17{word-spacing:0.000014pt;}
.ws3a{word-spacing:0.000020pt;}
.ws1c{word-spacing:3.999980pt;}
.ws29{word-spacing:3.999989pt;}
.ws46{word-spacing:3.999999pt;}
.ws19{word-spacing:4.000000pt;}
.ws38{word-spacing:4.000002pt;}
.ws58{word-spacing:4.000009pt;}
.ws2a{word-spacing:4.000020pt;}
.ws4b{word-spacing:7.999970pt;}
.ws30{word-spacing:7.999980pt;}
.ws20{word-spacing:7.999990pt;}
.ws52{word-spacing:7.999998pt;}
.ws32{word-spacing:7.999999pt;}
.ws1e{word-spacing:8.000000pt;}
.ws47{word-spacing:8.000002pt;}
.ws34{word-spacing:8.000010pt;}
.ws57{word-spacing:8.000020pt;}
.ws54{word-spacing:11.999969pt;}
.ws3e{word-spacing:11.999980pt;}
.ws1b{word-spacing:11.999990pt;}
.ws59{word-spacing:11.999998pt;}
.ws4c{word-spacing:11.999999pt;}
.ws22{word-spacing:12.000000pt;}
.ws55{word-spacing:12.000010pt;}
.ws43{word-spacing:12.000019pt;}
.ws3c{word-spacing:12.000030pt;}
.ws26{word-spacing:12.149628pt;}
.ws24{word-spacing:12.212128pt;}
.ws8d{word-spacing:13.263244pt;}
.ws8{word-spacing:13.263270pt;}
.ws8a{word-spacing:13.264357pt;}
.ws67{word-spacing:13.264369pt;}
.ws5c{word-spacing:13.264371pt;}
.ws65{word-spacing:13.264375pt;}
.ws60{word-spacing:13.264377pt;}
.ws9{word-spacing:13.264429pt;}
.ws8e{word-spacing:13.269038pt;}
.ws77{word-spacing:14.574375pt;}
.ws86{word-spacing:14.574400pt;}
.ws85{word-spacing:14.574410pt;}
.ws7e{word-spacing:14.574537pt;}
.ws89{word-spacing:14.576679pt;}
.ws6f{word-spacing:14.576747pt;}
.ws70{word-spacing:14.576749pt;}
.ws71{word-spacing:14.576751pt;}
.ws76{word-spacing:14.576759pt;}
.ws68{word-spacing:14.581368pt;}
.ws6c{word-spacing:14.586006pt;}
.ws6b{word-spacing:14.586007pt;}
.ws27{word-spacing:15.680880pt;}
.wsa{word-spacing:15.935969pt;}
.ws3{word-spacing:15.935978pt;}
.ws5{word-spacing:15.935979pt;}
.ws6{word-spacing:15.935980pt;}
.ws1{word-spacing:15.935988pt;}
.ws0{word-spacing:15.935990pt;}
.ws50{word-spacing:15.935996pt;}
.ws4e{word-spacing:15.935998pt;}
.ws4{word-spacing:15.936000pt;}
.ws1f{word-spacing:15.936002pt;}
.ws74{word-spacing:15.936010pt;}
.ws31{word-spacing:15.936018pt;}
.ws36{word-spacing:15.936020pt;}
.ws4a{word-spacing:15.999970pt;}
.ws35{word-spacing:15.999980pt;}
.ws33{word-spacing:15.999990pt;}
.ws45{word-spacing:15.999998pt;}
.ws21{word-spacing:16.000000pt;}
.ws2c{word-spacing:16.000010pt;}
.ws2f{word-spacing:16.000020pt;}
.ws15{word-spacing:19.935969pt;}
.ws16{word-spacing:19.935990pt;}
.ws14{word-spacing:19.935999pt;}
.ws4d{word-spacing:19.936000pt;}
.ws39{word-spacing:19.936020pt;}
.ws2b{word-spacing:19.999980pt;}
.ws28{word-spacing:19.999990pt;}
.ws1d{word-spacing:20.000000pt;}
.ws66{word-spacing:20.000020pt;}
.ws73{word-spacing:23.935980pt;}
.ws12{word-spacing:23.935990pt;}
.ws48{word-spacing:23.935998pt;}
.ws5a{word-spacing:23.936000pt;}
.ws63{word-spacing:23.999979pt;}
.ws37{word-spacing:23.999990pt;}
.ws1a{word-spacing:24.000000pt;}
.ws11{word-spacing:27.935990pt;}
.ws61{word-spacing:27.935998pt;}
.ws10{word-spacing:27.936000pt;}
.wsf{word-spacing:27.936001pt;}
.ws5e{word-spacing:27.999979pt;}
.ws2e{word-spacing:27.999990pt;}
.ws3b{word-spacing:27.999999pt;}
.wsd{word-spacing:31.935990pt;}
.wsc{word-spacing:31.935998pt;}
.wse{word-spacing:31.936000pt;}
.wsb{word-spacing:31.936002pt;}
.ws40{word-spacing:31.999980pt;}
.ws49{word-spacing:31.999989pt;}
.ws42{word-spacing:32.000010pt;}
.ws5b{word-spacing:35.935998pt;}
.ws64{word-spacing:35.936000pt;}
.ws4f{word-spacing:35.999970pt;}
.ws3f{word-spacing:35.999990pt;}
.ws13{word-spacing:39.935980pt;}
.ws75{word-spacing:39.935989pt;}
.ws62{word-spacing:39.935998pt;}
.ws3d{word-spacing:39.936010pt;}
.ws51{word-spacing:39.999990pt;}
.ws41{word-spacing:47.935990pt;}
.ws5d{word-spacing:47.935998pt;}
.ws8b{word-spacing:75.999979pt;}
._18{margin-left:-8.249995pt;}
._16{margin-left:-7.093750pt;}
._3{margin-left:-5.874998pt;}
._2{margin-left:-4.750000pt;}
._5{margin-left:-3.531250pt;}
._1{margin-left:-2.249998pt;}
._0{margin-left:-1.156249pt;}
._c{width:3.307379pt;}
._d{width:4.588629pt;}
._e{width:6.869878pt;}
._10{width:8.088628pt;}
._f{width:12.401129pt;}
._8{width:16.000002pt;}
._7{width:20.000120pt;}
._9{width:24.000130pt;}
._4{width:28.000031pt;}
._b{width:31.999999pt;}
._13{width:36.000016pt;}
._a{width:40.000002pt;}
._6{width:44.000000pt;}
._12{width:48.000002pt;}
._15{width:52.000002pt;}
._11{width:54.687500pt;}
._14{width:55.999999pt;}
._17{width:60.000000pt;}
.fs3{font-size:37.333332pt;}
.fs1{font-size:53.333332pt;}
.fs2{font-size:58.666668pt;}
.fs0{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.yd0{bottom:10.171872pt;}
.yc6{bottom:10.171873pt;}
.yc2{bottom:10.171876pt;}
.yd5{bottom:10.171885pt;}
.yd2{bottom:10.174476pt;}
.yca{bottom:10.174480pt;}
.yb1{bottom:10.460935pt;}
.yae{bottom:10.460937pt;}
.yf9{bottom:17.549480pt;}
.ye2{bottom:17.549483pt;}
.yee{bottom:17.552083pt;}
.yd9{bottom:19.661459pt;}
.ycf{bottom:27.036459pt;}
.yc5{bottom:27.036460pt;}
.yc8{bottom:27.039063pt;}
.yb0{bottom:28.859375pt;}
.yf8{bottom:40.546880pt;}
.ye1{bottom:40.546883pt;}
.yed{bottom:40.549483pt;}
.yc4{bottom:43.903647pt;}
.y10e{bottom:50.369793pt;}
.y1b{bottom:50.371740pt;}
.y77{bottom:50.372393pt;}
.ye8{bottom:63.544283pt;}
.yf7{bottom:63.546880pt;}
.ye0{bottom:63.546883pt;}
.y8c{bottom:68.044270pt;}
.y81{bottom:68.045572pt;}
.y111{bottom:68.046874pt;}
.y1d{bottom:68.047851pt;}
.ye{bottom:68.047932pt;}
.y44{bottom:68.048176pt;}
.y57{bottom:68.048178pt;}
.y80{bottom:83.377603pt;}
.y1c{bottom:83.379883pt;}
.yd{bottom:83.379964pt;}
.y110{bottom:83.380207pt;}
.y43{bottom:83.380208pt;}
.ye7{bottom:86.541670pt;}
.yf6{bottom:86.544280pt;}
.ydf{bottom:86.544283pt;}
.yec{bottom:86.546883pt;}
.y8b{bottom:88.481776pt;}
.y10d{bottom:88.666660pt;}
.yb{bottom:92.925540pt;}
.y125{bottom:100.065100pt;}
.y76{bottom:100.066407pt;}
.y8a{bottom:100.067713pt;}
.ybf{bottom:104.661460pt;}
.yf5{bottom:109.541667pt;}
.yde{bottom:109.541670pt;}
.yeb{bottom:109.544283pt;}
.ye9{bottom:115.895827pt;}
.y10c{bottom:116.265620pt;}
.yd7{bottom:124.145830pt;}
.y124{bottom:127.661460pt;}
.y74{bottom:127.664060pt;}
.yac{bottom:131.203123pt;}
.ybe{bottom:132.260420pt;}
.ye5{bottom:132.539070pt;}
.yf4{bottom:132.541667pt;}
.ydd{bottom:132.541670pt;}
.yea{bottom:133.598959pt;}
.y10b{bottom:143.861980pt;}
.y9c{bottom:150.786460pt;}
.y123{bottom:155.260420pt;}
.y73{bottom:155.261713pt;}
.y7e{bottom:155.263020pt;}
.yf3{bottom:155.539067pt;}
.ye4{bottom:156.591159pt;}
.ydc{bottom:156.593759pt;}
.y1a{bottom:156.939780pt;}
.yd4{bottom:160.591140pt;}
.y10a{bottom:171.458327pt;}
.yd6{bottom:177.455723pt;}
.y9b{bottom:178.385420pt;}
.yf2{bottom:178.536467pt;}
.ydb{bottom:181.890625pt;}
.y72{bottom:182.859380pt;}
.ybd{bottom:187.455727pt;}
.y34{bottom:193.898113pt;}
.y137{bottom:194.281243pt;}
.y109{bottom:199.057287pt;}
.yf1{bottom:202.588545pt;}
.y9a{bottom:205.984380pt;}
.yd1{bottom:209.320309pt;}
.y129{bottom:210.455727pt;}
.y71{bottom:210.457033pt;}
.y7d{bottom:210.458327pt;}
.ybc{bottom:215.052087pt;}
.yd3{bottom:226.187496pt;}
.y108{bottom:226.656247pt;}
.yf0{bottom:227.888025pt;}
.y99{bottom:233.580727pt;}
.y122{bottom:238.052087pt;}
.y70{bottom:238.054687pt;}
.ybb{bottom:242.651047pt;}
.y33{bottom:246.793620pt;}
.y107{bottom:254.252607pt;}
.yce{bottom:258.052087pt;}
.ya{bottom:258.511473pt;}
.y98{bottom:261.177087pt;}
.y121{bottom:265.651047pt;}
.y6f{bottom:265.652340pt;}
.y89{bottom:265.653647pt;}
.yba{bottom:270.249993pt;}
.ye6{bottom:271.187493pt;}
.y32{bottom:274.391273pt;}
.y135{bottom:274.848953pt;}
.ycd{bottom:274.916669pt;}
.y9{bottom:276.909913pt;}
.y106{bottom:281.848953pt;}
.y97{bottom:288.776047pt;}
.y6e{bottom:293.249993pt;}
.yb9{bottom:297.846353pt;}
.y31{bottom:301.988927pt;}
.ycc{bottom:306.781243pt;}
.y105{bottom:309.447913pt;}
.y134{bottom:311.645833pt;}
.y96{bottom:316.374993pt;}
.y120{bottom:320.846353pt;}
.y6d{bottom:320.847660pt;}
.y7c{bottom:320.848953pt;}
.yb8{bottom:325.442713pt;}
.y104{bottom:337.046873pt;}
.ycb{bottom:338.645839pt;}
.yab{bottom:339.971353pt;}
.y95{bottom:343.971353pt;}
.y19{bottom:343.990553pt;}
.y11f{bottom:348.442713pt;}
.y6c{bottom:348.445313pt;}
.yb7{bottom:353.041660pt;}
.y30{bottom:357.184247pt;}
.y103{bottom:364.643233pt;}
.yaa{bottom:367.567713pt;}
.yc3{bottom:370.513019pt;}
.y94{bottom:371.567713pt;}
.y138{bottom:375.822910pt;}
.y128{bottom:376.041660pt;}
.y6b{bottom:376.042967pt;}
.y7b{bottom:376.044273pt;}
.yb6{bottom:380.640620pt;}
.y2f{bottom:384.781900pt;}
.y133{bottom:385.239580pt;}
.yc7{bottom:387.377603pt;}
.y102{bottom:392.239580pt;}
.ya9{bottom:395.166660pt;}
.y93{bottom:399.166660pt;}
.y18{bottom:403.320153pt;}
.y6a{bottom:403.640620pt;}
.yc9{bottom:404.242185pt;}
.y2e{bottom:412.379553pt;}
.y101{bottom:419.838540pt;}
.y132{bottom:422.036460pt;}
.ya8{bottom:422.765620pt;}
.y92{bottom:426.765620pt;}
.y11e{bottom:431.236980pt;}
.y55{bottom:431.237953pt;}
.y69{bottom:431.238287pt;}
.y7a{bottom:431.239580pt;}
.yb5{bottom:433.723963pt;}
.yc1{bottom:436.109376pt;}
.y2d{bottom:439.977220pt;}
.yb3{bottom:447.171872pt;}
.y100{bottom:447.437500pt;}
.y17{bottom:449.316247pt;}
.ya7{bottom:450.361980pt;}
.y91{bottom:454.361980pt;}
.y11d{bottom:458.833327pt;}
.y54{bottom:458.835607pt;}
.y75{bottom:458.835940pt;}
.y42{bottom:464.470380pt;}
.yb4{bottom:465.570309pt;}
.y2c{bottom:467.574873pt;}
.yc0{bottom:467.973963pt;}
.ye3{bottom:474.770827pt;}
.yff{bottom:475.033860pt;}
.ya6{bottom:477.958327pt;}
.y90{bottom:481.958327pt;}
.y11c{bottom:486.432287pt;}
.y53{bottom:486.433273pt;}
.y66{bottom:486.433593pt;}
.y79{bottom:486.434900pt;}
.y136{bottom:490.828123pt;}
.y2b{bottom:495.172527pt;}
.y16{bottom:495.312340pt;}
.y131{bottom:495.630207pt;}
.y41{bottom:496.068033pt;}
.y8{bottom:497.691167pt;}
.yaf{bottom:498.968752pt;}
.ya5{bottom:505.557287pt;}
.y8f{bottom:509.557287pt;}
.y52{bottom:514.030927pt;}
.y65{bottom:514.031247pt;}
.y7{bottom:516.089593pt;}
.yb2{bottom:517.367189pt;}
.y2a{bottom:522.770180pt;}
.y40{bottom:527.665687pt;}
.yfe{bottom:530.229167pt;}
.y130{bottom:532.427087pt;}
.ya4{bottom:533.156247pt;}
.y8e{bottom:537.156247pt;}
.y15{bottom:541.308433pt;}
.y127{bottom:541.627607pt;}
.y51{bottom:541.628580pt;}
.y64{bottom:541.628900pt;}
.y78{bottom:541.630207pt;}
.yad{bottom:550.765629pt;}
.y6{bottom:552.886473pt;}
.yfd{bottom:557.828127pt;}
.y3f{bottom:559.263340pt;}
.ya3{bottom:560.752607pt;}
.y11b{bottom:569.223953pt;}
.y50{bottom:569.226233pt;}
.y63{bottom:569.226567pt;}
.y5{bottom:571.284913pt;}
.y29{bottom:575.665687pt;}
.yfc{bottom:585.424473pt;}
.y14{bottom:587.304527pt;}
.ya2{bottom:588.348953pt;}
.y8d{bottom:590.239576pt;}
.y3e{bottom:590.861007pt;}
.y11a{bottom:596.822913pt;}
.y4f{bottom:596.823887pt;}
.y68{bottom:596.824220pt;}
.y87{bottom:596.825527pt;}
.y12f{bottom:606.020833pt;}
.yfb{bottom:613.020833pt;}
.ya1{bottom:615.947913pt;}
.y3d{bottom:622.458660pt;}
.y4e{bottom:624.421553pt;}
.y62{bottom:624.421873pt;}
.y28{bottom:630.861007pt;}
.y13{bottom:633.300620pt;}
.y12e{bottom:642.817713pt;}
.ya0{bottom:643.546873pt;}
.y119{bottom:652.018233pt;}
.y61{bottom:652.019527pt;}
.y88{bottom:652.020833pt;}
.y3c{bottom:654.056313pt;}
.y27{bottom:658.458660pt;}
.yfa{bottom:661.507816pt;}
.y9f{bottom:671.143233pt;}
.yda{bottom:678.354160pt;}
.y12{bottom:679.296713pt;}
.y118{bottom:679.614580pt;}
.y4d{bottom:679.616860pt;}
.y60{bottom:679.617193pt;}
.y3b{bottom:685.653967pt;}
.y26{bottom:686.056313pt;}
.yef{bottom:693.354163pt;}
.y9e{bottom:698.739580pt;}
.y4{bottom:700.073980pt;}
.y117{bottom:707.213540pt;}
.y4c{bottom:707.214513pt;}
.y5f{bottom:707.214847pt;}
.y86{bottom:707.216140pt;}
.y12d{bottom:716.411460pt;}
.y3a{bottom:717.251633pt;}
.y4b{bottom:734.812180pt;}
.y5e{bottom:734.812500pt;}
.y25{bottom:741.251633pt;}
.y39{bottom:748.849287pt;}
.y9d{bottom:751.825523pt;}
.y12c{bottom:753.208327pt;}
.y116{bottom:762.408860pt;}
.y4a{bottom:762.409833pt;}
.y5d{bottom:762.410153pt;}
.y85{bottom:762.411460pt;}
.y24{bottom:768.849287pt;}
.y11{bottom:771.288900pt;}
.y38{bottom:780.446940pt;}
.y115{bottom:790.005207pt;}
.y49{bottom:790.007487pt;}
.y67{bottom:790.007807pt;}
.y23{bottom:796.446940pt;}
.y37{bottom:812.044593pt;}
.y3{bottom:812.464580pt;}
.y10{bottom:817.284993pt;}
.y114{bottom:817.604167pt;}
.y48{bottom:817.605140pt;}
.y5c{bottom:817.605473pt;}
.y84{bottom:817.606767pt;}
.y22{bottom:824.044593pt;}
.y12b{bottom:826.802087pt;}
.y36{bottom:843.642247pt;}
.y47{bottom:845.202793pt;}
.y5b{bottom:845.203127pt;}
.y2{bottom:851.261460pt;}
.y21{bottom:851.642247pt;}
.y12a{bottom:863.598953pt;}
.y1{bottom:869.659887pt;}
.y113{bottom:872.799473pt;}
.y46{bottom:872.800460pt;}
.y5a{bottom:872.800780pt;}
.y83{bottom:872.802087pt;}
.y35{bottom:875.239913pt;}
.y20{bottom:879.239913pt;}
.yd8{bottom:881.937500pt;}
.yf{bottom:883.679525pt;}
.y112{bottom:900.395833pt;}
.y45{bottom:900.398112pt;}
.y59{bottom:900.398437pt;}
.y1f{bottom:906.837565pt;}
.y126{bottom:927.994792pt;}
.y1e{bottom:927.995768pt;}
.y58{bottom:927.996093pt;}
.y82{bottom:927.997396pt;}
.y10f{bottom:942.932292pt;}
.yc{bottom:942.933268pt;}
.y56{bottom:942.933593pt;}
.y7f{bottom:942.934896pt;}
.h10{height:30.864584pt;}
.h15{height:30.867188pt;}
.he{height:32.398437pt;}
.h11{height:40.734376pt;}
.h17{height:41.598959pt;}
.h5{height:44.437500pt;}
.h3{height:47.369790pt;}
.h16{height:47.729167pt;}
.h14{height:47.731771pt;}
.hd{height:47.812499pt;}
.hf{height:50.796875pt;}
.h19{height:52.106772pt;}
.h12{height:52.593751pt;}
.h4{height:55.843750pt;}
.h1{height:56.843750pt;}
.h6{height:57.375000pt;}
.h13{height:64.596355pt;}
.ha{height:83.532547pt;}
.h8{height:83.533200pt;}
.h7{height:83.533360pt;}
.hb{height:83.533853pt;}
.h1a{height:154.291667pt;}
.hc{height:179.731771pt;}
.h9{height:179.733073pt;}
.h2{height:179.733399pt;}
.h1c{height:179.734375pt;}
.h18{height:202.583333pt;}
.h1b{height:248.580733pt;}
.h0{height:1122.666667pt;}
.w5{width:100.000000pt;}
.w7{width:109.000000pt;}
.w4{width:121.000000pt;}
.w2{width:122.000000pt;}
.w8{width:147.000000pt;}
.w6{width:148.000000pt;}
.w9{width:151.000000pt;}
.w3{width:216.000000pt;}
.wa{width:562.000000pt;}
.w1{width:794.000000pt;}
.w0{width:794.666667pt;}
.x0{left:0.000000pt;}
.x27{left:6.230469pt;}
.x29{left:8.691406pt;}
.x2a{left:11.953125pt;}
.x36{left:14.066330pt;}
.x38{left:15.705139pt;}
.x2b{left:20.167969pt;}
.x24{left:22.398438pt;}
.x26{left:24.953125pt;}
.x2c{left:26.750000pt;}
.x34{left:27.818245pt;}
.x2d{left:31.175781pt;}
.x25{left:32.625000pt;}
.x28{left:34.648438pt;}
.x22{left:36.894531pt;}
.x3a{left:37.943756pt;}
.x1e{left:42.277344pt;}
.x3e{left:44.000000pt;}
.x20{left:45.523438pt;}
.x35{left:46.638557pt;}
.x37{left:49.791885pt;}
.x39{left:51.022781pt;}
.x30{left:52.605469pt;}
.x3b{left:53.646011pt;}
.x2e{left:60.195313pt;}
.xc{left:132.000000pt;}
.x23{left:133.000000pt;}
.x18{left:136.000000pt;}
.x3d{left:138.000000pt;}
.x15{left:151.000000pt;}
.x14{left:156.000000pt;}
.x19{left:160.000000pt;}
.xf{left:170.000000pt;}
.x7{left:173.304039pt;}
.x5{left:177.136070pt;}
.x13{left:180.000000pt;}
.x1c{left:186.422806pt;}
.x42{left:190.809196pt;}
.x41{left:196.796417pt;}
.x1a{left:203.092743pt;}
.x1b{left:206.779449pt;}
.x1d{left:234.000000pt;}
.x40{left:250.466850pt;}
.x11{left:260.311859pt;}
.x17{left:271.490494pt;}
.x31{left:282.000000pt;}
.x1{left:288.862640pt;}
.x10{left:290.468109pt;}
.x3f{left:298.661163pt;}
.xe{left:300.784520pt;}
.x4{left:307.011080pt;}
.x2{left:309.905610pt;}
.xb{left:321.097020pt;}
.x3c{left:322.968030pt;}
.x2f{left:334.303760pt;}
.x8{left:348.878270pt;}
.x1f{left:357.000000pt;}
.x6{left:360.874360pt;}
.x3{left:375.304050pt;}
.x32{left:392.000000pt;}
.x16{left:405.983730pt;}
.x12{left:409.983730pt;}
.xa{left:433.428410pt;}
.x9{left:459.365910pt;}
.x33{left:540.000000pt;}
.xd{left:564.163390pt;}
.x21{left:574.000000pt;}
}




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