
    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_99be2c7f7f88534172f451c6.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.904000;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_78e8bbf62fb5cc4eac45cebe.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.000000;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_e02e11b9b1b1c80f9c74c455.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.919000;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_2425cd568ebed1c2e77bfc77.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.697000;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_944b14e3b941fd4f5050c4a5.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.001000;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_c42372deb66938d4cc48744d.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.921000;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_628f8f3d0afc66d1a8ab1498.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.000000;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_ff378a1fa839571c58293934.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.682000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_228a258e8a13eacd5951544d.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-16.878000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:16.878000px;}
.v3{vertical-align:21.696000px;}
.ls1{letter-spacing:0.000000px;}
.ls10{letter-spacing:0.001827px;}
.ls0{letter-spacing:2.986118px;}
.ls8{letter-spacing:2.992894px;}
.ls9{letter-spacing:14.764573px;}
.ls4{letter-spacing:17.693578px;}
.ls2{letter-spacing:18.052231px;}
.ls3{letter-spacing:18.112007px;}
.lsa{letter-spacing:19.247743px;}
.ls15{letter-spacing:19.486846px;}
.ls14{letter-spacing:19.546621px;}
.ls12{letter-spacing:23.073382px;}
.ls11{letter-spacing:23.133157px;}
.ls13{letter-spacing:25.344854px;}
.ls6{letter-spacing:26.720316px;}
.lsc{letter-spacing:27.735878px;}
.lsd{letter-spacing:29.529146px;}
.lsf{letter-spacing:29.584230px;}
.lse{letter-spacing:29.588922px;}
.lsb{letter-spacing:29.890178px;}
.ls5{letter-spacing:42.620316px;}
.ls7{letter-spacing:43.442316px;}
.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;}
}
.ws52{word-spacing:-30.545332px;}
.ws20{word-spacing:-29.881822px;}
.ws4a{word-spacing:-16.312761px;}
.ws2f{word-spacing:-16.193210px;}
.ws6f{word-spacing:-16.133434px;}
.ws3b{word-spacing:-15.117249px;}
.ws72{word-spacing:-15.057474px;}
.ws7d{word-spacing:-14.997698px;}
.ws2e{word-spacing:-14.884124px;}
.ws5f{word-spacing:-14.758596px;}
.ws85{word-spacing:-14.639044px;}
.ws3d{word-spacing:-14.459718px;}
.ws39{word-spacing:-14.041288px;}
.ws1b{word-spacing:-13.981513px;}
.ws90{word-spacing:-13.921737px;}
.ws17{word-spacing:-13.802186px;}
.ws6d{word-spacing:-13.742410px;}
.ws0{word-spacing:-13.677667px;}
.ws3e{word-spacing:-13.622859px;}
.wsf{word-spacing:-13.383757px;}
.ws4d{word-spacing:-13.144654px;}
.ws38{word-spacing:-12.845776px;}
.ws7a{word-spacing:-12.786001px;}
.ws18{word-spacing:-12.732203px;}
.ws1e{word-spacing:-12.726225px;}
.ws22{word-spacing:-12.487123px;}
.ws95{word-spacing:-12.367572px;}
.ws21{word-spacing:-12.188245px;}
.ws9b{word-spacing:-12.151214px;}
.ws4e{word-spacing:-12.074671px;}
.ws60{word-spacing:-12.068694px;}
.ws8c{word-spacing:-11.949142px;}
.ws1f{word-spacing:-11.829591px;}
.ws40{word-spacing:-11.590489px;}
.ws15{word-spacing:-11.470938px;}
.ws6c{word-spacing:-11.411162px;}
.ws9a{word-spacing:-11.386085px;}
.ws2b{word-spacing:-11.351386px;}
.ws9c{word-spacing:-11.309572px;}
.ws41{word-spacing:-11.291611px;}
.ws36{word-spacing:-11.172060px;}
.ws7{word-spacing:-11.112284px;}
.ws6{word-spacing:-11.052508px;}
.ws4f{word-spacing:-11.051341px;}
.ws63{word-spacing:-10.992733px;}
.ws86{word-spacing:-10.932957px;}
.wsc{word-spacing:-10.693855px;}
.ws3c{word-spacing:-10.634079px;}
.ws94{word-spacing:-10.574304px;}
.ws61{word-spacing:-10.514528px;}
.ws42{word-spacing:-10.460730px;}
.ws55{word-spacing:-10.454752px;}
.ws8d{word-spacing:-10.394977px;}
.ws5d{word-spacing:-10.335201px;}
.ws70{word-spacing:-10.275426px;}
.ws8f{word-spacing:-10.215650px;}
.ws13{word-spacing:-10.190570px;}
.ws29{word-spacing:-10.161852px;}
.ws48{word-spacing:-10.155874px;}
.ws82{word-spacing:-10.036323px;}
.ws4b{word-spacing:-9.993339px;}
.ws1{word-spacing:-9.976548px;}
.ws3a{word-spacing:-9.916772px;}
.ws5b{word-spacing:-9.856996px;}
.ws92{word-spacing:-9.797221px;}
.ws84{word-spacing:-9.677670px;}
.ws2d{word-spacing:-9.623872px;}
.ws5a{word-spacing:-9.617894px;}
.wsa5{word-spacing:-9.616723px;}
.wsa3{word-spacing:-9.568902px;}
.ws64{word-spacing:-9.558118px;}
.ws8e{word-spacing:-9.498343px;}
.ws1a{word-spacing:-9.483056px;}
.ws57{word-spacing:-9.438567px;}
.ws80{word-spacing:-9.319016px;}
.ws91{word-spacing:-9.259240px;}
.ws16{word-spacing:-9.205442px;}
.ws66{word-spacing:-9.199465px;}
.ws8{word-spacing:-9.145667px;}
.ws2c{word-spacing:-9.085891px;}
.ws54{word-spacing:-9.079914px;}
.wsa4{word-spacing:-8.918542px;}
.ws4c{word-spacing:-8.840811px;}
.wsa7{word-spacing:-8.803772px;}
.ws1c{word-spacing:-8.661484px;}
.ws23{word-spacing:-8.601709px;}
.ws75{word-spacing:-8.541933px;}
.ws11{word-spacing:-8.469028px;}
.ws65{word-spacing:-8.422382px;}
.ws9d{word-spacing:-8.421208px;}
.ws69{word-spacing:-8.362606px;}
.wse{word-spacing:-8.302831px;}
.ws51{word-spacing:-8.123504px;}
.ws98{word-spacing:-8.038643px;}
.ws58{word-spacing:-8.003953px;}
.ws93{word-spacing:-7.884402px;}
.ws2{word-spacing:-7.866489px;}
.ws25{word-spacing:-7.824626px;}
.ws9e{word-spacing:-7.818668px;}
.ws50{word-spacing:-7.764850px;}
.wsd{word-spacing:-7.705075px;}
.ws59{word-spacing:-7.645299px;}
.ws4{word-spacing:-7.585524px;}
.ws99{word-spacing:-7.531744px;}
.ws9{word-spacing:-7.286646px;}
.wsa6{word-spacing:-7.225693px;}
.ws3f{word-spacing:-7.167094px;}
.ws88{word-spacing:-7.047543px;}
.ws2a{word-spacing:-6.987768px;}
.ws46{word-spacing:-6.868216px;}
.ws76{word-spacing:-6.808441px;}
.ws6e{word-spacing:-6.748665px;}
.ws7c{word-spacing:-6.688890px;}
.ws53{word-spacing:-6.569338px;}
.ws35{word-spacing:-6.449787px;}
.ws87{word-spacing:-6.390012px;}
.ws62{word-spacing:-6.270460px;}
.ws89{word-spacing:-6.150909px;}
.ws34{word-spacing:-5.977560px;}
.ws81{word-spacing:-5.971582px;}
.ws96{word-spacing:-5.934536px;}
.ws1d{word-spacing:-5.852031px;}
.wsb{word-spacing:-5.732480px;}
.ws10{word-spacing:-5.695433px;}
.ws9f{word-spacing:-5.647613px;}
.ws5e{word-spacing:-5.612929px;}
.ws97{word-spacing:-5.523279px;}
.ws6a{word-spacing:-5.493378px;}
.ws6b{word-spacing:-5.433602px;}
.ws47{word-spacing:-5.373826px;}
.ws19{word-spacing:-5.320028px;}
.ws71{word-spacing:-5.314051px;}
.ws7e{word-spacing:-5.254275px;}
.ws43{word-spacing:-5.074948px;}
.ws79{word-spacing:-4.955397px;}
.wsa1{word-spacing:-4.882483px;}
.ws67{word-spacing:-4.716295px;}
.ws24{word-spacing:-4.596744px;}
.ws77{word-spacing:-4.536968px;}
.wsa2{word-spacing:-4.519047px;}
.ws37{word-spacing:-4.357641px;}
.ws5{word-spacing:-4.238090px;}
.wsa0{word-spacing:-4.165174px;}
.ws68{word-spacing:-4.118539px;}
.ws56{word-spacing:-4.058763px;}
.ws8b{word-spacing:-3.879436px;}
.ws7f{word-spacing:-3.580558px;}
.ws8a{word-spacing:-3.520783px;}
.ws7b{word-spacing:-3.162129px;}
.ws5c{word-spacing:-3.042578px;}
.ws83{word-spacing:-2.982802px;}
.wsa8{word-spacing:-2.877920px;}
.ws49{word-spacing:-2.803476px;}
.ws78{word-spacing:-2.564373px;}
.ws73{word-spacing:-2.325271px;}
.ws27{word-spacing:-2.205720px;}
.ws44{word-spacing:-2.145944px;}
.ws28{word-spacing:-1.793268px;}
.ws31{word-spacing:-1.787290px;}
.ws32{word-spacing:-1.434614px;}
.ws12{word-spacing:-1.104656px;}
.wsa{word-spacing:-0.591778px;}
.ws74{word-spacing:-0.532003px;}
.ws45{word-spacing:-0.292900px;}
.ws33{word-spacing:-0.059776px;}
.ws14{word-spacing:0.000000px;}
.ws30{word-spacing:0.004671px;}
.ws3{word-spacing:0.005978px;}
.ws26{word-spacing:0.010671px;}
._1a{margin-left:-6.635092px;}
._6{margin-left:-5.551967px;}
._2{margin-left:-3.921289px;}
._11{margin-left:-2.677927px;}
._1{margin-left:-1.673717px;}
._9{width:1.262452px;}
._0{width:2.324084px;}
._8{width:3.347434px;}
._a{width:4.867906px;}
._23{width:6.907482px;}
._16{width:8.079928px;}
._19{width:15.359989px;}
._3{width:17.358874px;}
._12{width:18.873488px;}
._21{width:19.983675px;}
._d{width:21.088885px;}
._4{width:22.666960px;}
._5{width:24.482208px;}
._c{width:25.524181px;}
._13{width:26.875070px;}
._e{width:27.975051px;}
._18{width:28.991026px;}
._10{width:30.545332px;}
._14{width:31.706594px;}
._15{width:33.139534px;}
._f{width:34.370970px;}
._1c{width:35.998506px;}
._20{width:37.120648px;}
._1d{width:38.514600px;}
._17{width:40.700020px;}
._7{width:42.792166px;}
._1b{width:44.645209px;}
._22{width:46.146763px;}
._1f{width:47.547911px;}
._1e{width:49.463273px;}
._b{width:54.544058px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:35.865600px;}
.fs4{font-size:41.842800px;}
.fs2{font-size:47.820600px;}
.fs1{font-size:59.775600px;}
.fs0{font-size:86.077200px;}
.y0{bottom:0.000000px;}
.y1f{bottom:34.515000px;}
.y81{bottom:206.118000px;}
.ya1{bottom:213.841500px;}
.y60{bottom:215.395500px;}
.y40{bottom:215.788500px;}
.yd8{bottom:218.709000px;}
.y80{bottom:228.534000px;}
.y5f{bottom:233.811000px;}
.ya0{bottom:236.257500px;}
.y3f{bottom:238.204500px;}
.yd7{bottom:241.125000px;}
.y7f{bottom:250.948500px;}
.y9f{bottom:258.673500px;}
.y1e{bottom:260.718000px;}
.y3e{bottom:263.440500px;}
.yd6{bottom:263.541000px;}
.y7e{bottom:273.364500px;}
.y5e{bottom:278.334000px;}
.y1d{bottom:279.133500px;}
.y9e{bottom:281.089500px;}
.yd5{bottom:291.534000px;}
.y1c{bottom:293.364000px;}
.y7d{bottom:296.011500px;}
.y5d{bottom:302.074500px;}
.y1b{bottom:303.375000px;}
.y9d{bottom:303.505500px;}
.y3d{bottom:314.080500px;}
.yd4{bottom:315.276000px;}
.y7c{bottom:318.427500px;}
.y1a{bottom:321.790500px;}
.y5c{bottom:324.490500px;}
.y9c{bottom:325.921500px;}
.y19{bottom:331.801500px;}
.y3c{bottom:336.496500px;}
.yd3{bottom:337.692000px;}
.y7b{bottom:340.843500px;}
.y9b{bottom:348.337500px;}
.y5b{bottom:348.400500px;}
.yba{bottom:348.898500px;}
.y18{bottom:350.218500px;}
.y3b{bottom:358.912500px;}
.yd2{bottom:361.432500px;}
.y7a{bottom:363.259500px;}
.y9a{bottom:370.753500px;}
.yb9{bottom:371.314500px;}
.y3a{bottom:381.328500px;}
.yd1{bottom:383.848500px;}
.y79{bottom:385.906500px;}
.y5a{bottom:390.075000px;}
.y17{bottom:391.834500px;}
.yb8{bottom:393.730500px;}
.y99{bottom:397.638000px;}
.y39{bottom:403.744500px;}
.yd0{bottom:407.590500px;}
.y78{bottom:408.322500px;}
.y59{bottom:412.491000px;}
.y16{bottom:414.250500px;}
.yb7{bottom:416.146500px;}
.y98{bottom:427.342500px;}
.y38{bottom:427.954500px;}
.ycf{bottom:430.006500px;}
.y77{bottom:430.738500px;}
.y58{bottom:434.907000px;}
.yf0{bottom:435.724500px;}
.y15{bottom:436.666500px;}
.yb6{bottom:438.562500px;}
.y97{bottom:449.758500px;}
.y37{bottom:450.370500px;}
.y76{bottom:453.154500px;}
.yce{bottom:453.747000px;}
.y57{bottom:458.647500px;}
.y14{bottom:459.082500px;}
.yb5{bottom:460.179000px;}
.yef{bottom:465.426000px;}
.y96{bottom:472.174500px;}
.y36{bottom:472.786500px;}
.y75{bottom:475.801500px;}
.ycd{bottom:480.646500px;}
.y56{bottom:481.063500px;}
.y13{bottom:481.498500px;}
.yb4{bottom:482.595000px;}
.yee{bottom:483.172500px;}
.y95{bottom:494.590500px;}
.y35{bottom:495.201000px;}
.y74{bottom:498.217500px;}
.y55{bottom:503.479500px;}
.y12{bottom:503.914500px;}
.yb3{bottom:505.011000px;}
.yed{bottom:512.872500px;}
.y94{bottom:517.006500px;}
.y34{bottom:517.617000px;}
.y73{bottom:520.633500px;}
.ycc{bottom:522.321000px;}
.y54{bottom:525.895500px;}
.y11{bottom:526.330500px;}
.yb2{bottom:527.937000px;}
.yec{bottom:530.619000px;}
.y93{bottom:539.422500px;}
.y33{bottom:541.827000px;}
.y72{bottom:543.049500px;}
.ycb{bottom:544.737000px;}
.y53{bottom:548.311500px;}
.y10{bottom:548.746500px;}
.yeb{bottom:560.320500px;}
.y92{bottom:561.838500px;}
.y32{bottom:564.243000px;}
.y71{bottom:565.465500px;}
.yca{bottom:567.153000px;}
.y52{bottom:570.727500px;}
.yf{bottom:571.162500px;}
.yb1{bottom:575.406000px;}
.yea{bottom:578.065500px;}
.y91{bottom:584.254500px;}
.y31{bottom:586.659000px;}
.y70{bottom:587.881500px;}
.yc9{bottom:590.893500px;}
.y51{bottom:593.143500px;}
.ye{bottom:593.578500px;}
.yb0{bottom:597.822000px;}
.y90{bottom:606.670500px;}
.ye9{bottom:607.767000px;}
.y30{bottom:609.075000px;}
.y6f{bottom:609.433500px;}
.yc8{bottom:613.309500px;}
.y50{bottom:615.559500px;}
.yd{bottom:615.994500px;}
.yaf{bottom:620.022000px;}
.ye8{bottom:625.513500px;}
.y8f{bottom:629.086500px;}
.y6e{bottom:631.849500px;}
.y2f{bottom:635.974500px;}
.yc7{bottom:637.050000px;}
.yc{bottom:638.410500px;}
.y4f{bottom:639.469500px;}
.yae{bottom:642.438000px;}
.y6d{bottom:654.265500px;}
.ye7{bottom:655.215000px;}
.y8e{bottom:655.971000px;}
.yc6{bottom:659.466000px;}
.yb{bottom:660.826500px;}
.yad{bottom:664.639500px;}
.ye6{bottom:672.960000px;}
.y2e{bottom:676.323000px;}
.y6c{bottom:676.681500px;}
.y4e{bottom:681.144000px;}
.yc5{bottom:683.208000px;}
.ya{bottom:683.242500px;}
.y8d{bottom:685.675500px;}
.yac{bottom:687.055500px;}
.y2d{bottom:698.739000px;}
.y6b{bottom:701.938500px;}
.ye5{bottom:702.661500px;}
.y4d{bottom:703.560000px;}
.y9{bottom:705.658500px;}
.y8c{bottom:708.091500px;}
.yab{bottom:709.257000px;}
.yc4{bottom:710.107500px;}
.ye4{bottom:720.408000px;}
.y2c{bottom:721.155000px;}
.y4c{bottom:725.976000px;}
.y8{bottom:728.074500px;}
.y6a{bottom:730.015500px;}
.y8b{bottom:730.507500px;}
.yaa{bottom:731.673000px;}
.yc3{bottom:739.825500px;}
.y2b{bottom:743.571000px;}
.y4b{bottom:749.716500px;}
.ye3{bottom:750.108000px;}
.y69{bottom:752.431500px;}
.y8a{bottom:752.923500px;}
.y7{bottom:753.310500px;}
.ya9{bottom:753.873000px;}
.yc2{bottom:762.241500px;}
.y2a{bottom:765.987000px;}
.y4a{bottom:772.132500px;}
.y68{bottom:774.847500px;}
.ya8{bottom:776.754000px;}
.y89{bottom:778.144500px;}
.ye2{bottom:779.809500px;}
.yc1{bottom:787.477500px;}
.y29{bottom:788.403000px;}
.y49{bottom:794.548500px;}
.y67{bottom:797.263500px;}
.ye1{bottom:797.556000px;}
.ya7{bottom:801.342000px;}
.y28{bottom:810.817500px;}
.y88{bottom:816.814500px;}
.y48{bottom:816.964500px;}
.y66{bottom:819.679500px;}
.yc0{bottom:826.162500px;}
.ye0{bottom:827.256000px;}
.ya6{bottom:828.751500px;}
.y27{bottom:833.233500px;}
.y87{bottom:839.230500px;}
.y47{bottom:839.380500px;}
.y65{bottom:842.095500px;}
.ybf{bottom:848.578500px;}
.ya5{bottom:851.167500px;}
.y26{bottom:855.649500px;}
.ydf{bottom:856.957500px;}
.y86{bottom:861.646500px;}
.y46{bottom:861.796500px;}
.ybe{bottom:870.994500px;}
.ya4{bottom:873.583500px;}
.y64{bottom:874.278000px;}
.yde{bottom:874.704000px;}
.y25{bottom:878.065500px;}
.y85{bottom:884.062500px;}
.y45{bottom:884.212500px;}
.y6{bottom:888.019500px;}
.ybd{bottom:893.410500px;}
.ya3{bottom:895.999500px;}
.y63{bottom:896.694000px;}
.y24{bottom:900.481500px;}
.ydd{bottom:904.405500px;}
.y84{bottom:906.478500px;}
.y44{bottom:906.628500px;}
.ybc{bottom:915.826500px;}
.ya2{bottom:918.415500px;}
.ydc{bottom:922.150500px;}
.y23{bottom:922.897500px;}
.y43{bottom:929.044500px;}
.y62{bottom:929.970000px;}
.y5{bottom:934.105500px;}
.ybb{bottom:938.242500px;}
.y83{bottom:940.831500px;}
.y22{bottom:945.313500px;}
.y4{bottom:948.303000px;}
.ydb{bottom:951.852000px;}
.y61{bottom:952.386000px;}
.y42{bottom:955.944000px;}
.y3{bottom:962.499000px;}
.y82{bottom:963.246000px;}
.y21{bottom:967.729500px;}
.yda{bottom:981.553500px;}
.y2{bottom:985.662000px;}
.y20{bottom:994.629000px;}
.yd9{bottom:999.298500px;}
.y41{bottom:1008.078000px;}
.y1{bottom:1030.494000px;}
.h5{height:24.245146px;}
.h3{height:34.191729px;}
.h6{height:35.913271px;}
.h4{height:41.123146px;}
.h7{height:42.859105px;}
.h2{height:44.891476px;}
.h8{height:49.479619px;}
.h1{height:61.200889px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x7{left:81.000000px;}
.x6{left:85.182000px;}
.xd{left:95.944500px;}
.x9{left:97.633500px;}
.xb{left:99.267000px;}
.x8{left:103.416000px;}
.xc{left:118.360500px;}
.x3{left:266.689500px;}
.x4{left:296.941500px;}
.x1{left:347.916000px;}
.x2{left:383.758500px;}
.x5{left:399.897000px;}
.xa{left:455.265000px;}
@media print{
.v2{vertical-align:-15.002667pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:15.002667pt;}
.v3{vertical-align:19.285333pt;}
.ls1{letter-spacing:0.000000pt;}
.ls10{letter-spacing:0.001624pt;}
.ls0{letter-spacing:2.654327pt;}
.ls8{letter-spacing:2.660350pt;}
.ls9{letter-spacing:13.124065pt;}
.ls4{letter-spacing:15.727625pt;}
.ls2{letter-spacing:16.046428pt;}
.ls3{letter-spacing:16.099562pt;}
.lsa{letter-spacing:17.109105pt;}
.ls15{letter-spacing:17.321641pt;}
.ls14{letter-spacing:17.374774pt;}
.ls12{letter-spacing:20.509673pt;}
.ls11{letter-spacing:20.562806pt;}
.ls13{letter-spacing:22.528759pt;}
.ls6{letter-spacing:23.751392pt;}
.lsc{letter-spacing:24.654114pt;}
.lsd{letter-spacing:26.248130pt;}
.lsf{letter-spacing:26.297094pt;}
.lse{letter-spacing:26.301264pt;}
.lsb{letter-spacing:26.569047pt;}
.ls5{letter-spacing:37.884725pt;}
.ls7{letter-spacing:38.615392pt;}
.ws52{word-spacing:-27.151406pt;}
.ws20{word-spacing:-26.561620pt;}
.ws4a{word-spacing:-14.500232pt;}
.ws2f{word-spacing:-14.393964pt;}
.ws6f{word-spacing:-14.340831pt;}
.ws3b{word-spacing:-13.437555pt;}
.ws72{word-spacing:-13.384421pt;}
.ws7d{word-spacing:-13.331287pt;}
.ws2e{word-spacing:-13.230333pt;}
.ws5f{word-spacing:-13.118752pt;}
.ws85{word-spacing:-13.012484pt;}
.ws3d{word-spacing:-12.853082pt;}
.ws39{word-spacing:-12.481145pt;}
.ws1b{word-spacing:-12.428011pt;}
.ws90{word-spacing:-12.374878pt;}
.ws17{word-spacing:-12.268610pt;}
.ws6d{word-spacing:-12.215476pt;}
.ws0{word-spacing:-12.157926pt;}
.ws3e{word-spacing:-12.109208pt;}
.wsf{word-spacing:-11.896673pt;}
.ws4d{word-spacing:-11.684137pt;}
.ws38{word-spacing:-11.418468pt;}
.ws7a{word-spacing:-11.365334pt;}
.ws18{word-spacing:-11.317514pt;}
.ws1e{word-spacing:-11.312200pt;}
.ws22{word-spacing:-11.099665pt;}
.ws95{word-spacing:-10.993397pt;}
.ws21{word-spacing:-10.833995pt;}
.ws9b{word-spacing:-10.801080pt;}
.ws4e{word-spacing:-10.733041pt;}
.ws60{word-spacing:-10.727728pt;}
.ws8c{word-spacing:-10.621460pt;}
.ws1f{word-spacing:-10.515192pt;}
.ws40{word-spacing:-10.302657pt;}
.ws15{word-spacing:-10.196389pt;}
.ws6c{word-spacing:-10.143255pt;}
.ws9a{word-spacing:-10.120964pt;}
.ws2b{word-spacing:-10.090121pt;}
.ws9c{word-spacing:-10.052953pt;}
.ws41{word-spacing:-10.036987pt;}
.ws36{word-spacing:-9.930720pt;}
.ws7{word-spacing:-9.877586pt;}
.ws6{word-spacing:-9.824452pt;}
.ws4f{word-spacing:-9.823414pt;}
.ws63{word-spacing:-9.771318pt;}
.ws86{word-spacing:-9.718184pt;}
.wsc{word-spacing:-9.505649pt;}
.ws3c{word-spacing:-9.452515pt;}
.ws94{word-spacing:-9.399381pt;}
.ws61{word-spacing:-9.346247pt;}
.ws42{word-spacing:-9.298427pt;}
.ws55{word-spacing:-9.293113pt;}
.ws8d{word-spacing:-9.239979pt;}
.ws5d{word-spacing:-9.186846pt;}
.ws70{word-spacing:-9.133712pt;}
.ws8f{word-spacing:-9.080578pt;}
.ws13{word-spacing:-9.058284pt;}
.ws29{word-spacing:-9.032757pt;}
.ws48{word-spacing:-9.027444pt;}
.ws82{word-spacing:-8.921176pt;}
.ws4b{word-spacing:-8.882968pt;}
.ws1{word-spacing:-8.868042pt;}
.ws3a{word-spacing:-8.814908pt;}
.ws5b{word-spacing:-8.761775pt;}
.ws92{word-spacing:-8.708641pt;}
.ws84{word-spacing:-8.602373pt;}
.ws2d{word-spacing:-8.554553pt;}
.ws5a{word-spacing:-8.549239pt;}
.wsa5{word-spacing:-8.548198pt;}
.wsa3{word-spacing:-8.505691pt;}
.ws64{word-spacing:-8.496105pt;}
.ws8e{word-spacing:-8.442971pt;}
.ws1a{word-spacing:-8.429383pt;}
.ws57{word-spacing:-8.389838pt;}
.ws80{word-spacing:-8.283570pt;}
.ws91{word-spacing:-8.230436pt;}
.ws16{word-spacing:-8.182615pt;}
.ws66{word-spacing:-8.177302pt;}
.ws8{word-spacing:-8.129482pt;}
.ws2c{word-spacing:-8.076348pt;}
.ws54{word-spacing:-8.071034pt;}
.wsa4{word-spacing:-7.927593pt;}
.ws4c{word-spacing:-7.858499pt;}
.wsa7{word-spacing:-7.825576pt;}
.ws1c{word-spacing:-7.699097pt;}
.ws23{word-spacing:-7.645963pt;}
.ws75{word-spacing:-7.592830pt;}
.ws11{word-spacing:-7.528025pt;}
.ws65{word-spacing:-7.486562pt;}
.ws9d{word-spacing:-7.485518pt;}
.ws69{word-spacing:-7.433428pt;}
.wse{word-spacing:-7.380294pt;}
.ws51{word-spacing:-7.220892pt;}
.ws98{word-spacing:-7.145460pt;}
.ws58{word-spacing:-7.114625pt;}
.ws93{word-spacing:-7.008357pt;}
.ws2{word-spacing:-6.992434pt;}
.ws25{word-spacing:-6.955223pt;}
.ws9e{word-spacing:-6.949927pt;}
.ws50{word-spacing:-6.902089pt;}
.wsd{word-spacing:-6.848955pt;}
.ws59{word-spacing:-6.795822pt;}
.ws4{word-spacing:-6.742688pt;}
.ws99{word-spacing:-6.694884pt;}
.ws9{word-spacing:-6.477018pt;}
.wsa6{word-spacing:-6.422838pt;}
.ws3f{word-spacing:-6.370751pt;}
.ws88{word-spacing:-6.264483pt;}
.ws2a{word-spacing:-6.211349pt;}
.ws46{word-spacing:-6.105081pt;}
.ws76{word-spacing:-6.051947pt;}
.ws6e{word-spacing:-5.998814pt;}
.ws7c{word-spacing:-5.945680pt;}
.ws53{word-spacing:-5.839412pt;}
.ws35{word-spacing:-5.733144pt;}
.ws87{word-spacing:-5.680010pt;}
.ws62{word-spacing:-5.573743pt;}
.ws89{word-spacing:-5.467475pt;}
.ws34{word-spacing:-5.313387pt;}
.ws81{word-spacing:-5.308073pt;}
.ws96{word-spacing:-5.275144pt;}
.ws1d{word-spacing:-5.201806pt;}
.wsb{word-spacing:-5.095538pt;}
.ws10{word-spacing:-5.062608pt;}
.ws9f{word-spacing:-5.020100pt;}
.ws5e{word-spacing:-4.989270pt;}
.ws97{word-spacing:-4.909582pt;}
.ws6a{word-spacing:-4.883002pt;}
.ws6b{word-spacing:-4.829868pt;}
.ws47{word-spacing:-4.776735pt;}
.ws19{word-spacing:-4.728914pt;}
.ws71{word-spacing:-4.723601pt;}
.ws7e{word-spacing:-4.670467pt;}
.ws43{word-spacing:-4.511065pt;}
.ws79{word-spacing:-4.404798pt;}
.wsa1{word-spacing:-4.339985pt;}
.ws67{word-spacing:-4.192262pt;}
.ws24{word-spacing:-4.085994pt;}
.ws77{word-spacing:-4.032860pt;}
.wsa2{word-spacing:-4.016930pt;}
.ws37{word-spacing:-3.873459pt;}
.ws5{word-spacing:-3.767191pt;}
.wsa0{word-spacing:-3.702377pt;}
.ws68{word-spacing:-3.660923pt;}
.ws56{word-spacing:-3.607790pt;}
.ws8b{word-spacing:-3.448388pt;}
.ws7f{word-spacing:-3.182719pt;}
.ws8a{word-spacing:-3.129585pt;}
.ws7b{word-spacing:-2.810782pt;}
.ws5c{word-spacing:-2.704514pt;}
.ws83{word-spacing:-2.651380pt;}
.wsa8{word-spacing:-2.558151pt;}
.ws49{word-spacing:-2.491978pt;}
.ws78{word-spacing:-2.279443pt;}
.ws73{word-spacing:-2.066907pt;}
.ws27{word-spacing:-1.960640pt;}
.ws44{word-spacing:-1.907506pt;}
.ws28{word-spacing:-1.594016pt;}
.ws31{word-spacing:-1.588703pt;}
.ws32{word-spacing:-1.275213pt;}
.ws12{word-spacing:-0.981916pt;}
.wsa{word-spacing:-0.526025pt;}
.ws74{word-spacing:-0.472891pt;}
.ws45{word-spacing:-0.260356pt;}
.ws33{word-spacing:-0.053134pt;}
.ws14{word-spacing:0.000000pt;}
.ws30{word-spacing:0.004152pt;}
.ws3{word-spacing:0.005313pt;}
.ws26{word-spacing:0.009485pt;}
._1a{margin-left:-5.897859pt;}
._6{margin-left:-4.935082pt;}
._2{margin-left:-3.485590pt;}
._11{margin-left:-2.380380pt;}
._1{margin-left:-1.487748pt;}
._9{width:1.122179pt;}
._0{width:2.065853pt;}
._8{width:2.975497pt;}
._a{width:4.327027pt;}
._23{width:6.139984pt;}
._16{width:7.182158pt;}
._19{width:13.653323pt;}
._3{width:15.430110pt;}
._12{width:16.776434pt;}
._21{width:17.763266pt;}
._d{width:18.745675pt;}
._4{width:20.148409pt;}
._5{width:21.761962pt;}
._c{width:22.688161pt;}
._13{width:23.888951pt;}
._e{width:24.866712pt;}
._18{width:25.769801pt;}
._10{width:27.151406pt;}
._14{width:28.183639pt;}
._15{width:29.457363pt;}
._f{width:30.551973pt;}
._1c{width:31.998672pt;}
._20{width:32.996131pt;}
._1d{width:34.235200pt;}
._17{width:36.177795pt;}
._7{width:38.037481pt;}
._1b{width:39.684630pt;}
._22{width:41.019345pt;}
._1f{width:42.264810pt;}
._1e{width:43.967354pt;}
._b{width:48.483607pt;}
.fs3{font-size:31.880533pt;}
.fs4{font-size:37.193600pt;}
.fs2{font-size:42.507200pt;}
.fs1{font-size:53.133867pt;}
.fs0{font-size:76.513067pt;}
.y0{bottom:0.000000pt;}
.y1f{bottom:30.680000pt;}
.y81{bottom:183.216000pt;}
.ya1{bottom:190.081333pt;}
.y60{bottom:191.462667pt;}
.y40{bottom:191.812000pt;}
.yd8{bottom:194.408000pt;}
.y80{bottom:203.141333pt;}
.y5f{bottom:207.832000pt;}
.ya0{bottom:210.006667pt;}
.y3f{bottom:211.737333pt;}
.yd7{bottom:214.333333pt;}
.y7f{bottom:223.065333pt;}
.y9f{bottom:229.932000pt;}
.y1e{bottom:231.749333pt;}
.y3e{bottom:234.169333pt;}
.yd6{bottom:234.258667pt;}
.y7e{bottom:242.990667pt;}
.y5e{bottom:247.408000pt;}
.y1d{bottom:248.118667pt;}
.y9e{bottom:249.857333pt;}
.yd5{bottom:259.141333pt;}
.y1c{bottom:260.768000pt;}
.y7d{bottom:263.121333pt;}
.y5d{bottom:268.510667pt;}
.y1b{bottom:269.666667pt;}
.y9d{bottom:269.782667pt;}
.y3d{bottom:279.182667pt;}
.yd4{bottom:280.245333pt;}
.y7c{bottom:283.046667pt;}
.y1a{bottom:286.036000pt;}
.y5c{bottom:288.436000pt;}
.y9c{bottom:289.708000pt;}
.y19{bottom:294.934667pt;}
.y3c{bottom:299.108000pt;}
.yd3{bottom:300.170667pt;}
.y7b{bottom:302.972000pt;}
.y9b{bottom:309.633333pt;}
.y5b{bottom:309.689333pt;}
.yba{bottom:310.132000pt;}
.y18{bottom:311.305333pt;}
.y3b{bottom:319.033333pt;}
.yd2{bottom:321.273333pt;}
.y7a{bottom:322.897333pt;}
.y9a{bottom:329.558667pt;}
.yb9{bottom:330.057333pt;}
.y3a{bottom:338.958667pt;}
.yd1{bottom:341.198667pt;}
.y79{bottom:343.028000pt;}
.y5a{bottom:346.733333pt;}
.y17{bottom:348.297333pt;}
.yb8{bottom:349.982667pt;}
.y99{bottom:353.456000pt;}
.y39{bottom:358.884000pt;}
.yd0{bottom:362.302667pt;}
.y78{bottom:362.953333pt;}
.y59{bottom:366.658667pt;}
.y16{bottom:368.222667pt;}
.yb7{bottom:369.908000pt;}
.y98{bottom:379.860000pt;}
.y38{bottom:380.404000pt;}
.ycf{bottom:382.228000pt;}
.y77{bottom:382.878667pt;}
.y58{bottom:386.584000pt;}
.yf0{bottom:387.310667pt;}
.y15{bottom:388.148000pt;}
.yb6{bottom:389.833333pt;}
.y97{bottom:399.785333pt;}
.y37{bottom:400.329333pt;}
.y76{bottom:402.804000pt;}
.yce{bottom:403.330667pt;}
.y57{bottom:407.686667pt;}
.y14{bottom:408.073333pt;}
.yb5{bottom:409.048000pt;}
.yef{bottom:413.712000pt;}
.y96{bottom:419.710667pt;}
.y36{bottom:420.254667pt;}
.y75{bottom:422.934667pt;}
.ycd{bottom:427.241333pt;}
.y56{bottom:427.612000pt;}
.y13{bottom:427.998667pt;}
.yb4{bottom:428.973333pt;}
.yee{bottom:429.486667pt;}
.y95{bottom:439.636000pt;}
.y35{bottom:440.178667pt;}
.y74{bottom:442.860000pt;}
.y55{bottom:447.537333pt;}
.y12{bottom:447.924000pt;}
.yb3{bottom:448.898667pt;}
.yed{bottom:455.886667pt;}
.y94{bottom:459.561333pt;}
.y34{bottom:460.104000pt;}
.y73{bottom:462.785333pt;}
.ycc{bottom:464.285333pt;}
.y54{bottom:467.462667pt;}
.y11{bottom:467.849333pt;}
.yb2{bottom:469.277333pt;}
.yec{bottom:471.661333pt;}
.y93{bottom:479.486667pt;}
.y33{bottom:481.624000pt;}
.y72{bottom:482.710667pt;}
.ycb{bottom:484.210667pt;}
.y53{bottom:487.388000pt;}
.y10{bottom:487.774667pt;}
.yeb{bottom:498.062667pt;}
.y92{bottom:499.412000pt;}
.y32{bottom:501.549333pt;}
.y71{bottom:502.636000pt;}
.yca{bottom:504.136000pt;}
.y52{bottom:507.313333pt;}
.yf{bottom:507.700000pt;}
.yb1{bottom:511.472000pt;}
.yea{bottom:513.836000pt;}
.y91{bottom:519.337333pt;}
.y31{bottom:521.474667pt;}
.y70{bottom:522.561333pt;}
.yc9{bottom:525.238667pt;}
.y51{bottom:527.238667pt;}
.ye{bottom:527.625333pt;}
.yb0{bottom:531.397333pt;}
.y90{bottom:539.262667pt;}
.ye9{bottom:540.237333pt;}
.y30{bottom:541.400000pt;}
.y6f{bottom:541.718667pt;}
.yc8{bottom:545.164000pt;}
.y50{bottom:547.164000pt;}
.yd{bottom:547.550667pt;}
.yaf{bottom:551.130667pt;}
.ye8{bottom:556.012000pt;}
.y8f{bottom:559.188000pt;}
.y6e{bottom:561.644000pt;}
.y2f{bottom:565.310667pt;}
.yc7{bottom:566.266667pt;}
.yc{bottom:567.476000pt;}
.y4f{bottom:568.417333pt;}
.yae{bottom:571.056000pt;}
.y6d{bottom:581.569333pt;}
.ye7{bottom:582.413333pt;}
.y8e{bottom:583.085333pt;}
.yc6{bottom:586.192000pt;}
.yb{bottom:587.401333pt;}
.yad{bottom:590.790667pt;}
.ye6{bottom:598.186667pt;}
.y2e{bottom:601.176000pt;}
.y6c{bottom:601.494667pt;}
.y4e{bottom:605.461333pt;}
.yc5{bottom:607.296000pt;}
.ya{bottom:607.326667pt;}
.y8d{bottom:609.489333pt;}
.yac{bottom:610.716000pt;}
.y2d{bottom:621.101333pt;}
.y6b{bottom:623.945333pt;}
.ye5{bottom:624.588000pt;}
.y4d{bottom:625.386667pt;}
.y9{bottom:627.252000pt;}
.y8c{bottom:629.414667pt;}
.yab{bottom:630.450667pt;}
.yc4{bottom:631.206667pt;}
.ye4{bottom:640.362667pt;}
.y2c{bottom:641.026667pt;}
.y4c{bottom:645.312000pt;}
.y8{bottom:647.177333pt;}
.y6a{bottom:648.902667pt;}
.y8b{bottom:649.340000pt;}
.yaa{bottom:650.376000pt;}
.yc3{bottom:657.622667pt;}
.y2b{bottom:660.952000pt;}
.y4b{bottom:666.414667pt;}
.ye3{bottom:666.762667pt;}
.y69{bottom:668.828000pt;}
.y8a{bottom:669.265333pt;}
.y7{bottom:669.609333pt;}
.ya9{bottom:670.109333pt;}
.yc2{bottom:677.548000pt;}
.y2a{bottom:680.877333pt;}
.y4a{bottom:686.340000pt;}
.y68{bottom:688.753333pt;}
.ya8{bottom:690.448000pt;}
.y89{bottom:691.684000pt;}
.ye2{bottom:693.164000pt;}
.yc1{bottom:699.980000pt;}
.y29{bottom:700.802667pt;}
.y49{bottom:706.265333pt;}
.y67{bottom:708.678667pt;}
.ye1{bottom:708.938667pt;}
.ya7{bottom:712.304000pt;}
.y28{bottom:720.726667pt;}
.y88{bottom:726.057333pt;}
.y48{bottom:726.190667pt;}
.y66{bottom:728.604000pt;}
.yc0{bottom:734.366667pt;}
.ye0{bottom:735.338667pt;}
.ya6{bottom:736.668000pt;}
.y27{bottom:740.652000pt;}
.y87{bottom:745.982667pt;}
.y47{bottom:746.116000pt;}
.y65{bottom:748.529333pt;}
.ybf{bottom:754.292000pt;}
.ya5{bottom:756.593333pt;}
.y26{bottom:760.577333pt;}
.ydf{bottom:761.740000pt;}
.y86{bottom:765.908000pt;}
.y46{bottom:766.041333pt;}
.ybe{bottom:774.217333pt;}
.ya4{bottom:776.518667pt;}
.y64{bottom:777.136000pt;}
.yde{bottom:777.514667pt;}
.y25{bottom:780.502667pt;}
.y85{bottom:785.833333pt;}
.y45{bottom:785.966667pt;}
.y6{bottom:789.350667pt;}
.ybd{bottom:794.142667pt;}
.ya3{bottom:796.444000pt;}
.y63{bottom:797.061333pt;}
.y24{bottom:800.428000pt;}
.ydd{bottom:803.916000pt;}
.y84{bottom:805.758667pt;}
.y44{bottom:805.892000pt;}
.ybc{bottom:814.068000pt;}
.ya2{bottom:816.369333pt;}
.ydc{bottom:819.689333pt;}
.y23{bottom:820.353333pt;}
.y43{bottom:825.817333pt;}
.y62{bottom:826.640000pt;}
.y5{bottom:830.316000pt;}
.ybb{bottom:833.993333pt;}
.y83{bottom:836.294667pt;}
.y22{bottom:840.278667pt;}
.y4{bottom:842.936000pt;}
.ydb{bottom:846.090667pt;}
.y61{bottom:846.565333pt;}
.y42{bottom:849.728000pt;}
.y3{bottom:855.554667pt;}
.y82{bottom:856.218667pt;}
.y21{bottom:860.204000pt;}
.yda{bottom:872.492000pt;}
.y2{bottom:876.144000pt;}
.y20{bottom:884.114667pt;}
.yd9{bottom:888.265333pt;}
.y41{bottom:896.069333pt;}
.y1{bottom:915.994667pt;}
.h5{height:21.551241pt;}
.h3{height:30.392648pt;}
.h6{height:31.922907pt;}
.h4{height:36.553907pt;}
.h7{height:38.096982pt;}
.h2{height:39.903534pt;}
.h8{height:43.981884pt;}
.h1{height:54.400790pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x7{left:72.000000pt;}
.x6{left:75.717333pt;}
.xd{left:85.284000pt;}
.x9{left:86.785333pt;}
.xb{left:88.237333pt;}
.x8{left:91.925333pt;}
.xc{left:105.209333pt;}
.x3{left:237.057333pt;}
.x4{left:263.948000pt;}
.x1{left:309.258667pt;}
.x2{left:341.118667pt;}
.x5{left:355.464000pt;}
.xa{left:404.680000pt;}
}




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