
    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_7e04f99ddfe0606860247421.woff')format("woff");}.ff1{font-family:ff1;line-height:0.800293;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_18a382d82c5e3fe2325c1bdd.woff')format("woff");}.ff2{font-family:ff2;line-height:0.851562;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_f7fe50c53226946542f65dc5.woff')format("woff");}.ff3{font-family:ff3;line-height:1.284180;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_b881a4dc12372bc3b6c9902f.woff')format("woff");}.ff4{font-family:ff4;line-height:0.752000;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_d2512d13b130e00b799ec9d3.woff')format("woff");}.ff5{font-family:ff5;line-height:0.752000;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_18ef1e88613090681cdbaeab.woff')format("woff");}.ff6{font-family:ff6;line-height:1.311035;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_563dbf10b5419eec369c1905.woff')format("woff");}.ff7{font-family:ff7;line-height:0.921387;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_db45a14627856e869fb82670.woff')format("woff");}.ff8{font-family:ff8;line-height:1.284668;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_a1a6c779eed840c12c68ec8c.woff')format("woff");}.ff9{font-family:ff9;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_5db1be3c676a4f8056157524.woff')format("woff");}.ffa{font-family:ffa;line-height:1.284180;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:ffb;src:url('chunks/assets/font_6cf8d670d408c306509b5043.woff')format("woff");}.ffb{font-family:ffb;line-height:1.142090;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:ffc;src:url('chunks/assets/font_da65d8bbac6fa2d46152da0a.woff')format("woff");}.ffc{font-family:ffc;line-height:0.914062;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;}
.ma{transform:matrix(0.229869,0.000000,-0.076615,0.237971,0,0);-ms-transform:matrix(0.229869,0.000000,-0.076615,0.237971,0,0);-webkit-transform:matrix(0.229869,0.000000,-0.076615,0.237971,0,0);}
.m13{transform:matrix(0.237864,0.000000,-0.079280,0.237096,0,0);-ms-transform:matrix(0.237864,0.000000,-0.079280,0.237096,0,0);-webkit-transform:matrix(0.237864,0.000000,-0.079280,0.237096,0,0);}
.m2{transform:matrix(0.238238,0.000000,-0.079405,0.237055,0,0);-ms-transform:matrix(0.238238,0.000000,-0.079405,0.237055,0,0);-webkit-transform:matrix(0.238238,0.000000,-0.079405,0.237055,0,0);}
.mc{transform:matrix(0.238969,0.000000,-0.079648,0.236973,0,0);-ms-transform:matrix(0.238969,0.000000,-0.079648,0.236973,0,0);-webkit-transform:matrix(0.238969,0.000000,-0.079648,0.236973,0,0);}
.m7{transform:matrix(0.239524,0.000000,-0.079833,0.236911,0,0);-ms-transform:matrix(0.239524,0.000000,-0.079833,0.236911,0,0);-webkit-transform:matrix(0.239524,0.000000,-0.079833,0.236911,0,0);}
.m10{transform:matrix(0.241704,0.000000,-0.080560,0.236665,0,0);-ms-transform:matrix(0.241704,0.000000,-0.080560,0.236665,0,0);-webkit-transform:matrix(0.241704,0.000000,-0.080560,0.236665,0,0);}
.m9{transform:matrix(0.243818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243818,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.247425,0.000000,-0.082466,0.236007,0,0);-ms-transform:matrix(0.247425,0.000000,-0.082466,0.236007,0,0);-webkit-transform:matrix(0.247425,0.000000,-0.082466,0.236007,0,0);}
.me{transform:matrix(0.248805,0.000000,-0.082927,0.235846,0,0);-ms-transform:matrix(0.248805,0.000000,-0.082927,0.235846,0,0);-webkit-transform:matrix(0.248805,0.000000,-0.082927,0.235846,0,0);}
.m5{transform:matrix(0.249907,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249907,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249907,0.000000,0.000000,0.250000,0,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);}
.m12{transform:matrix(0.250809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250809,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.251248,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251248,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251248,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.252106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252106,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.252757,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252757,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252757,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.255324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255324,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.262094,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262094,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262094,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.263738,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263738,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263738,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.265435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265435,0.000000,0.000000,0.250000,0,0);}
.m11{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);}
.v5{vertical-align:-68.471746px;}
.v2{vertical-align:-61.975561px;}
.v4{vertical-align:-52.082407px;}
.v3{vertical-align:-43.753997px;}
.v6{vertical-align:-30.426868px;}
.v1{vertical-align:-4.014346px;}
.v0{vertical-align:0.000000px;}
.ls9{letter-spacing:-0.504000px;}
.ls7{letter-spacing:0.000000px;}
.ls1e{letter-spacing:0.180000px;}
.ls8{letter-spacing:0.240000px;}
.lsa{letter-spacing:0.552000px;}
.ls4{letter-spacing:0.600000px;}
.ls1f{letter-spacing:28.023181px;}
.ls12{letter-spacing:29.131071px;}
.ls11{letter-spacing:36.980761px;}
.ls13{letter-spacing:41.684350px;}
.ls15{letter-spacing:42.992917px;}
.ls5{letter-spacing:69.170682px;}
.ls10{letter-spacing:71.696790px;}
.lsc{letter-spacing:76.204214px;}
.ls3{letter-spacing:78.379321px;}
.lsb{letter-spacing:81.297948px;}
.ls6{letter-spacing:136.230507px;}
.ls1d{letter-spacing:136.787008px;}
.ls0{letter-spacing:136.921327px;}
.ls19{letter-spacing:176.306898px;}
.lsf{letter-spacing:193.997006px;}
.lsd{letter-spacing:202.207724px;}
.ls16{letter-spacing:213.077184px;}
.lse{letter-spacing:214.871608px;}
.ls1{letter-spacing:267.664128px;}
.ls2{letter-spacing:280.753871px;}
.ls14{letter-spacing:358.363324px;}
.ls1c{letter-spacing:489.493659px;}
.ls18{letter-spacing:681.583104px;}
.ls1b{letter-spacing:1128.480120px;}
.ls1a{letter-spacing:1144.656159px;}
.ls17{letter-spacing:1682.924143px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(192,0,0),0 0.015em rgb(192,0,0),0.015em 0 rgb(192,0,0),0 -0.015em  rgb(192,0,0);}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em rgb(192,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsb{word-spacing:-358.448409px;}
.ws9{word-spacing:-37.055007px;}
.ws16{word-spacing:-28.107935px;}
.ws8{word-spacing:-27.839938px;}
.ws2{word-spacing:-21.000000px;}
.ws0{word-spacing:-20.016000px;}
.ws1{word-spacing:-15.384000px;}
.wse{word-spacing:-0.071363px;}
.ws15{word-spacing:0.000000px;}
.ws17{word-spacing:29.409555px;}
.ws6{word-spacing:36.309317px;}
.wsc{word-spacing:41.812876px;}
.ws3{word-spacing:45.114117px;}
.ws7{word-spacing:47.462063px;}
.wsd{word-spacing:49.908226px;}
.wsf{word-spacing:54.157959px;}
.ws5{word-spacing:55.596021px;}
.wsa{word-spacing:67.046654px;}
.ws12{word-spacing:79.816127px;}
.ws4{word-spacing:80.752592px;}
.ws14{word-spacing:86.335141px;}
.ws10{word-spacing:193.898864px;}
.ws11{word-spacing:253.155026px;}
.ws13{word-spacing:316.065540px;}
._1d{margin-left:-614.122482px;}
._37{margin-left:-471.212886px;}
._1c{margin-left:-265.829081px;}
._1a{margin-left:-160.956167px;}
._26{margin-left:-5.889575px;}
._1b{margin-left:-3.173562px;}
._0{margin-left:-1.428000px;}
._1{width:1.008000px;}
._b{width:2.010000px;}
._2{width:3.216000px;}
._8{width:4.620000px;}
._7{width:6.300000px;}
._4{width:7.896000px;}
._3{width:8.988000px;}
._5{width:10.416000px;}
._6{width:11.676000px;}
._9{width:15.792000px;}
._a{width:17.724000px;}
._39{width:35.172811px;}
._14{width:40.418224px;}
._12{width:42.179184px;}
._10{width:43.353157px;}
._13{width:47.545919px;}
._23{width:52.266095px;}
._21{width:70.971856px;}
._1f{width:77.180911px;}
._f{width:80.836447px;}
._29{width:87.421643px;}
._2c{width:108.566649px;}
._27{width:113.058000px;}
._28{width:120.434596px;}
._1e{width:123.351721px;}
._e{width:126.034419px;}
._32{width:135.060588px;}
._2b{width:136.564976px;}
._15{width:141.631493px;}
._11{width:148.675333px;}
._34{width:157.208519px;}
._d{width:160.834342px;}
._36{width:162.223145px;}
._16{width:179.450204px;}
._25{width:191.044667px;}
._22{width:195.231550px;}
._17{width:200.414013px;}
._2f{width:204.178847px;}
._35{width:215.796064px;}
._31{width:221.228575px;}
._19{width:230.434188px;}
._2e{width:249.143325px;}
._18{width:271.355543px;}
._38{width:276.551523px;}
._33{width:416.798981px;}
._c{width:485.773381px;}
._24{width:503.918334px;}
._2a{width:601.337211px;}
._20{width:627.285018px;}
._2d{width:668.616773px;}
._30{width:726.067878px;}
.fc7{color:transparent;}
.fc5{color:rgb(0,0,255);}
.fc4{color:rgb(192,0,0);}
.fc2{color:rgb(0,32,96);}
.fc6{color:rgb(35,31,32);}
.fc3{color:rgb(204,153,0);}
.fc1{color:rgb(41,41,41);}
.fc0{color:rgb(0,0,0);}
.fsd{font-size:40.380482px;}
.fsf{font-size:42.611460px;}
.fs12{font-size:45.469172px;}
.fs14{font-size:47.968743px;}
.fs17{font-size:48.385536px;}
.fs7{font-size:48.470705px;}
.fs1c{font-size:49.066746px;}
.fs19{font-size:51.111944px;}
.fs8{font-size:51.117661px;}
.fs1e{font-size:51.737112px;}
.fs4{font-size:60.000000px;}
.fs3{font-size:66.000000px;}
.fse{font-size:69.825634px;}
.fs15{font-size:71.363284px;}
.fs5{font-size:72.000000px;}
.fsc{font-size:74.246436px;}
.fs16{font-size:75.646166px;}
.fs13{font-size:78.595632px;}
.fs11{font-size:79.800509px;}
.fs18{font-size:83.577097px;}
.fs6{font-size:83.855236px;}
.fs0{font-size:84.000000px;}
.fs1d{font-size:84.753761px;}
.fs10{font-size:85.084586px;}
.fsa{font-size:85.520344px;}
.fs1a{font-size:88.286464px;}
.fs9{font-size:88.434520px;}
.fs1f{font-size:89.366326px;}
.fs1{font-size:90.000000px;}
.fsb{font-size:90.590859px;}
.fs2{font-size:96.000000px;}
.fs1b{font-size:125.433117px;}
.fs20{font-size:127.199064px;}
.y0{bottom:0.000000px;}
.y30{bottom:4.216565px;}
.y31{bottom:4.216589px;}
.y2f{bottom:4.216596px;}
.y67{bottom:4.269709px;}
.y41{bottom:4.460879px;}
.y37{bottom:4.545154px;}
.y2d{bottom:5.056927px;}
.y60{bottom:5.519491px;}
.y58{bottom:6.899437px;}
.y4f{bottom:7.090985px;}
.y51{bottom:7.090989px;}
.y50{bottom:7.090994px;}
.y35{bottom:7.328585px;}
.y20{bottom:7.782664px;}
.y44{bottom:8.376763px;}
.y47{bottom:8.376764px;}
.y3d{bottom:8.454417px;}
.y38{bottom:9.020293px;}
.y5b{bottom:10.472952px;}
.y6d{bottom:10.620458px;}
.y1d{bottom:13.198163px;}
.y23{bottom:13.198169px;}
.y6{bottom:15.037500px;}
.y39{bottom:16.817253px;}
.y4b{bottom:19.715146px;}
.y46{bottom:19.715148px;}
.y48{bottom:19.715151px;}
.y5c{bottom:19.848460px;}
.y6b{bottom:20.127953px;}
.y5f{bottom:20.592118px;}
.y57{bottom:21.263903px;}
.y6a{bottom:21.563284px;}
.y66{bottom:21.563348px;}
.y61{bottom:21.865282px;}
.y27{bottom:22.594859px;}
.y2c{bottom:24.136670px;}
.y5a{bottom:26.677786px;}
.y68{bottom:27.053406px;}
.y6e{bottom:27.053445px;}
.y49{bottom:28.480841px;}
.y4a{bottom:32.064960px;}
.y45{bottom:32.064961px;}
.y59{bottom:39.698388px;}
.y6c{bottom:40.257349px;}
.y5{bottom:40.537500px;}
.y5e{bottom:40.688464px;}
.y43{bottom:40.832263px;}
.y1f{bottom:42.500070px;}
.y2b{bottom:44.328832px;}
.y5d{bottom:47.800878px;}
.y1c{bottom:47.914974px;}
.y22{bottom:47.914980px;}
.y56{bottom:49.038839px;}
.y69{bottom:51.200358px;}
.y26{bottom:57.311521px;}
.y2a{bottom:63.408872px;}
.y1e{bottom:77.181039px;}
.y25{bottom:77.181051px;}
.y28{bottom:82.595925px;}
.y1b{bottom:82.595954px;}
.y21{bottom:82.595959px;}
.y29{bottom:83.599547px;}
.y24{bottom:91.992491px;}
.y63{bottom:93.937500px;}
.y55{bottom:117.450000px;}
.y62{bottom:144.337500px;}
.y54{bottom:189.075000px;}
.y53{bottom:216.975000px;}
.y52{bottom:246.075000px;}
.y4e{bottom:270.449980px;}
.y4d{bottom:277.875000px;}
.y42{bottom:302.249980px;}
.y4c{bottom:320.175000px;}
.y3f{bottom:361.049959px;}
.y40{bottom:364.049959px;}
.y3e{bottom:368.505000px;}
.y3c{bottom:391.949959px;}
.y3b{bottom:399.405000px;}
.y3a{bottom:429.120000px;}
.y36{bottom:453.449959px;}
.y34{bottom:454.949959px;}
.y33{bottom:462.405000px;}
.y1a{bottom:486.749959px;}
.y2e{bottom:530.249959px;}
.y32{bottom:534.750000px;}
.y7f{bottom:586.050000px;}
.y19{bottom:602.250000px;}
.y7e{bottom:614.850000px;}
.y18{bottom:631.050000px;}
.y7d{bottom:642.450000px;}
.y17{bottom:660.150000px;}
.y7c{bottom:671.550000px;}
.y16{bottom:688.980000px;}
.y7b{bottom:699.195000px;}
.y15{bottom:716.580000px;}
.y7a{bottom:728.280000px;}
.y14{bottom:745.695000px;}
.y79{bottom:755.880000px;}
.y13{bottom:773.295000px;}
.y78{bottom:783.480000px;}
.y12{bottom:800.880000px;}
.y77{bottom:812.880000px;}
.y11{bottom:828.795000px;}
.y76{bottom:840.195000px;}
.y10{bottom:856.425000px;}
.y75{bottom:869.325000px;}
.yf{bottom:884.325000px;}
.y74{bottom:896.925000px;}
.ye{bottom:911.925000px;}
.y73{bottom:926.025000px;}
.yd{bottom:941.325000px;}
.y72{bottom:953.625000px;}
.yc{bottom:970.125000px;}
.y71{bottom:982.725000px;}
.yb{bottom:997.725000px;}
.y70{bottom:1011.525000px;}
.ya{bottom:1025.370000px;}
.y6f{bottom:1040.670000px;}
.y9{bottom:1053.255000px;}
.y65{bottom:1063.649919px;}
.y8{bottom:1080.870000px;}
.y64{bottom:1090.755000px;}
.y7{bottom:1108.755000px;}
.y4{bottom:1136.955000px;}
.y3{bottom:1160.655000px;}
.y2{bottom:1184.700000px;}
.y1{bottom:1210.500000px;}
.h1e{height:17.099883px;}
.h10{height:22.499135px;}
.h28{height:23.400962px;}
.h15{height:24.300645px;}
.h17{height:27.899278px;}
.h1b{height:27.900375px;}
.h1a{height:39.469697px;}
.h18{height:39.611518px;}
.h26{height:42.116709px;}
.h25{height:44.431985px;}
.h23{height:44.603304px;}
.h21{height:44.625506px;}
.h33{height:44.818048px;}
.h31{height:47.343436px;}
.hd{height:47.348732px;}
.h2f{height:47.464132px;}
.h2d{height:47.487757px;}
.hb{height:47.547679px;}
.h39{height:47.922510px;}
.h37{height:48.156328px;}
.h20{height:54.001002px;}
.h14{height:58.652344px;}
.h6{height:62.328000px;}
.h2c{height:63.898783px;}
.h36{height:64.798482px;}
.h2b{height:66.101636px;}
.h2{height:66.978516px;}
.h19{height:68.495947px;}
.h29{height:70.039161px;}
.h2a{height:70.068739px;}
.h3{height:71.762695px;}
.h27{height:72.800739px;}
.h1d{height:72.832563px;}
.h16{height:72.868816px;}
.h1f{height:73.916780px;}
.h5{height:76.546875px;}
.h24{height:77.098938px;}
.h22{height:77.137315px;}
.h34{height:77.414918px;}
.hf{height:77.672550px;}
.h13{height:79.214889px;}
.h32{height:81.777061px;}
.he{height:81.914201px;}
.h30{height:81.985541px;}
.h2e{height:82.026350px;}
.hc{height:82.258383px;}
.ha{height:82.299328px;}
.h4{height:82.400391px;}
.h8{height:82.441406px;}
.h3a{height:82.777305px;}
.h38{height:83.181182px;}
.h1c{height:83.505868px;}
.h12{height:83.911553px;}
.h11{height:83.933541px;}
.h7{height:84.656250px;}
.h3b{height:87.393749px;}
.h9{height:106.194371px;}
.h35{height:116.184874px;}
.h0{height:1262.700000px;}
.h1{height:1263.000000px;}
.w9{width:18.000579px;}
.w8{width:18.000600px;}
.w5{width:36.900200px;}
.w6{width:38.699107px;}
.wb{width:67.500786px;}
.w4{width:80.102754px;}
.w7{width:125.096123px;}
.wd{width:143.995492px;}
.w3{width:256.497703px;}
.wa{width:276.294344px;}
.wc{width:560.706320px;}
.w2{width:893.099987px;}
.w0{width:893.100000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x26{left:1.337164px;}
.x16{left:2.674205px;}
.x3a{left:3.985173px;}
.x23{left:6.205869px;}
.x3f{left:9.238249px;}
.x40{left:10.578828px;}
.x11{left:12.936952px;}
.x12{left:14.274131px;}
.x1d{left:15.912549px;}
.x13{left:17.815579px;}
.x20{left:21.384801px;}
.x49{left:23.783388px;}
.x41{left:27.533485px;}
.x10{left:29.270266px;}
.x32{left:31.857942px;}
.x3e{left:36.156051px;}
.x2c{left:41.203922px;}
.xd{left:42.568817px;}
.x48{left:44.967257px;}
.x39{left:47.350703px;}
.xe{left:51.602869px;}
.x47{left:54.531053px;}
.x15{left:57.854684px;}
.x43{left:59.415700px;}
.x18{left:62.882623px;}
.x30{left:69.447412px;}
.x45{left:71.023329px;}
.x3d{left:75.718575px;}
.x5{left:84.037487px;}
.xc{left:85.049995px;}
.x3c{left:89.593176px;}
.xf{left:91.462664px;}
.x2a{left:103.797303px;}
.x6{left:117.637487px;}
.x46{left:124.435161px;}
.x2b{left:128.654489px;}
.x4{left:146.737487px;}
.x2f{left:148.900543px;}
.x35{left:151.838616px;}
.x34{left:166.049990px;}
.x29{left:181.595552px;}
.x2e{left:186.921747px;}
.x3b{left:191.610862px;}
.x2d{left:192.948328px;}
.x22{left:196.949980px;}
.x36{left:202.771059px;}
.x24{left:214.874987px;}
.x1f{left:222.150000px;}
.x14{left:228.705219px;}
.x42{left:231.428050px;}
.x38{left:233.854836px;}
.x33{left:263.474987px;}
.xa{left:272.774987px;}
.x25{left:292.650000px;}
.x9{left:295.619987px;}
.x27{left:310.619987px;}
.xb{left:338.819987px;}
.x17{left:341.549959px;}
.x21{left:347.219987px;}
.x28{left:358.349959px;}
.x7{left:364.904987px;}
.x1a{left:386.249959px;}
.x37{left:388.629549px;}
.x4b{left:397.319987px;}
.x19{left:421.649987px;}
.x1b{left:423.149987px;}
.x8{left:446.249987px;}
.x1{left:503.249987px;}
.x2{left:508.049987px;}
.x4a{left:514.949987px;}
.x3{left:632.294987px;}
.x31{left:634.694987px;}
.x44{left:726.824987px;}
.x1c{left:729.149919px;}
.x1e{left:767.924987px;}
@media print{
.v5{vertical-align:-60.863774pt;}
.v2{vertical-align:-55.089388pt;}
.v4{vertical-align:-46.295473pt;}
.v3{vertical-align:-38.892442pt;}
.v6{vertical-align:-27.046105pt;}
.v1{vertical-align:-3.568308pt;}
.v0{vertical-align:0.000000pt;}
.ls9{letter-spacing:-0.448000pt;}
.ls7{letter-spacing:0.000000pt;}
.ls1e{letter-spacing:0.160000pt;}
.ls8{letter-spacing:0.213333pt;}
.lsa{letter-spacing:0.490667pt;}
.ls4{letter-spacing:0.533333pt;}
.ls1f{letter-spacing:24.909494pt;}
.ls12{letter-spacing:25.894285pt;}
.ls11{letter-spacing:32.871787pt;}
.ls13{letter-spacing:37.052755pt;}
.ls15{letter-spacing:38.215927pt;}
.ls5{letter-spacing:61.485050pt;}
.ls10{letter-spacing:63.730480pt;}
.lsc{letter-spacing:67.737079pt;}
.ls3{letter-spacing:69.670507pt;}
.lsb{letter-spacing:72.264843pt;}
.ls6{letter-spacing:121.093784pt;}
.ls1d{letter-spacing:121.588451pt;}
.ls0{letter-spacing:121.707846pt;}
.ls19{letter-spacing:156.717242pt;}
.lsf{letter-spacing:172.441783pt;}
.lsd{letter-spacing:179.740199pt;}
.ls16{letter-spacing:189.401941pt;}
.lse{letter-spacing:190.996985pt;}
.ls1{letter-spacing:237.923670pt;}
.ls2{letter-spacing:249.558997pt;}
.ls14{letter-spacing:318.545177pt;}
.ls1c{letter-spacing:435.105475pt;}
.ls18{letter-spacing:605.851648pt;}
.ls1b{letter-spacing:1003.093440pt;}
.ls1a{letter-spacing:1017.472141pt;}
.ls17{letter-spacing:1495.932571pt;}
.wsb{word-spacing:-318.620808pt;}
.ws9{word-spacing:-32.937784pt;}
.ws16{word-spacing:-24.984831pt;}
.ws8{word-spacing:-24.746612pt;}
.ws2{word-spacing:-18.666667pt;}
.ws0{word-spacing:-17.792000pt;}
.ws1{word-spacing:-13.674667pt;}
.wse{word-spacing:-0.063434pt;}
.ws15{word-spacing:0.000000pt;}
.ws17{word-spacing:26.141827pt;}
.ws6{word-spacing:32.274949pt;}
.wsc{word-spacing:37.167001pt;}
.ws3{word-spacing:40.101437pt;}
.ws7{word-spacing:42.188501pt;}
.wsd{word-spacing:44.362868pt;}
.wsf{word-spacing:48.140408pt;}
.ws5{word-spacing:49.418686pt;}
.wsa{word-spacing:59.597025pt;}
.ws12{word-spacing:70.947669pt;}
.ws4{word-spacing:71.780082pt;}
.ws14{word-spacing:76.742347pt;}
.ws10{word-spacing:172.354546pt;}
.ws11{word-spacing:225.026690pt;}
.ws13{word-spacing:280.947147pt;}
._1d{margin-left:-545.886651pt;}
._37{margin-left:-418.855898pt;}
._1c{margin-left:-236.292516pt;}
._1a{margin-left:-143.072149pt;}
._26{margin-left:-5.235178pt;}
._1b{margin-left:-2.820944pt;}
._0{margin-left:-1.269333pt;}
._1{width:0.896000pt;}
._b{width:1.786667pt;}
._2{width:2.858667pt;}
._8{width:4.106667pt;}
._7{width:5.600000pt;}
._4{width:7.018667pt;}
._3{width:7.989333pt;}
._5{width:9.258667pt;}
._6{width:10.378667pt;}
._9{width:14.037333pt;}
._a{width:15.754667pt;}
._39{width:31.264721pt;}
._14{width:35.927310pt;}
._12{width:37.492608pt;}
._10{width:38.536139pt;}
._13{width:42.263039pt;}
._23{width:46.458751pt;}
._21{width:63.086094pt;}
._1f{width:68.605254pt;}
._f{width:71.854620pt;}
._29{width:77.708127pt;}
._2c{width:96.503688pt;}
._27{width:100.496000pt;}
._28{width:107.052975pt;}
._1e{width:109.645974pt;}
._e{width:112.030595pt;}
._32{width:120.053856pt;}
._2b{width:121.391090pt;}
._15{width:125.894661pt;}
._11{width:132.155852pt;}
._34{width:139.740906pt;}
._d{width:142.963860pt;}
._36{width:144.198351pt;}
._16{width:159.511293pt;}
._25{width:169.817482pt;}
._22{width:173.539155pt;}
._17{width:178.145790pt;}
._2f{width:181.492309pt;}
._35{width:191.818723pt;}
._31{width:196.647622pt;}
._19{width:204.830389pt;}
._2e{width:221.460734pt;}
._18{width:241.204927pt;}
._38{width:245.823576pt;}
._33{width:370.487983pt;}
._c{width:431.798561pt;}
._24{width:447.927408pt;}
._2a{width:534.521965pt;}
._20{width:557.586682pt;}
._2d{width:594.326021pt;}
._30{width:645.393669pt;}
.fsd{font-size:35.893762pt;}
.fsf{font-size:37.876853pt;}
.fs12{font-size:40.417042pt;}
.fs14{font-size:42.638882pt;}
.fs17{font-size:43.009365pt;}
.fs7{font-size:43.085071pt;}
.fs1c{font-size:43.614885pt;}
.fs19{font-size:45.432839pt;}
.fs8{font-size:45.437921pt;}
.fs1e{font-size:45.988544pt;}
.fs4{font-size:53.333333pt;}
.fs3{font-size:58.666667pt;}
.fse{font-size:62.067230pt;}
.fs15{font-size:63.434030pt;}
.fs5{font-size:64.000000pt;}
.fsc{font-size:65.996832pt;}
.fs16{font-size:67.241037pt;}
.fs13{font-size:69.862784pt;}
.fs11{font-size:70.933786pt;}
.fs18{font-size:74.290753pt;}
.fs6{font-size:74.537987pt;}
.fs0{font-size:74.666667pt;}
.fs1d{font-size:75.336677pt;}
.fs10{font-size:75.630743pt;}
.fsa{font-size:76.018084pt;}
.fs1a{font-size:78.476857pt;}
.fs9{font-size:78.608462pt;}
.fs1f{font-size:79.436734pt;}
.fs1{font-size:80.000000pt;}
.fsb{font-size:80.525208pt;}
.fs2{font-size:85.333333pt;}
.fs1b{font-size:111.496104pt;}
.fs20{font-size:113.065835pt;}
.y0{bottom:0.000000pt;}
.y30{bottom:3.748058pt;}
.y31{bottom:3.748079pt;}
.y2f{bottom:3.748085pt;}
.y67{bottom:3.795297pt;}
.y41{bottom:3.965226pt;}
.y37{bottom:4.040137pt;}
.y2d{bottom:4.495046pt;}
.y60{bottom:4.906214pt;}
.y58{bottom:6.132833pt;}
.y4f{bottom:6.303097pt;}
.y51{bottom:6.303102pt;}
.y50{bottom:6.303106pt;}
.y35{bottom:6.514298pt;}
.y20{bottom:6.917924pt;}
.y44{bottom:7.446011pt;}
.y47{bottom:7.446013pt;}
.y3d{bottom:7.515038pt;}
.y38{bottom:8.018038pt;}
.y5b{bottom:9.309291pt;}
.y6d{bottom:9.440407pt;}
.y1d{bottom:11.731700pt;}
.y23{bottom:11.731705pt;}
.y6{bottom:13.366667pt;}
.y39{bottom:14.948669pt;}
.y4b{bottom:17.524575pt;}
.y46{bottom:17.524576pt;}
.y48{bottom:17.524579pt;}
.y5c{bottom:17.643076pt;}
.y6b{bottom:17.891514pt;}
.y5f{bottom:18.304105pt;}
.y57{bottom:18.901247pt;}
.y6a{bottom:19.167363pt;}
.y66{bottom:19.167420pt;}
.y61{bottom:19.435806pt;}
.y27{bottom:20.084319pt;}
.y2c{bottom:21.454817pt;}
.y5a{bottom:23.713587pt;}
.y68{bottom:24.047472pt;}
.y6e{bottom:24.047507pt;}
.y49{bottom:25.316303pt;}
.y4a{bottom:28.502186pt;}
.y45{bottom:28.502188pt;}
.y59{bottom:35.287456pt;}
.y6c{bottom:35.784310pt;}
.y5{bottom:36.033333pt;}
.y5e{bottom:36.167523pt;}
.y43{bottom:36.295345pt;}
.y1f{bottom:37.777840pt;}
.y2b{bottom:39.403406pt;}
.y5d{bottom:42.489669pt;}
.y1c{bottom:42.591088pt;}
.y22{bottom:42.591093pt;}
.y56{bottom:43.590080pt;}
.y69{bottom:45.511429pt;}
.y26{bottom:50.943575pt;}
.y2a{bottom:56.363442pt;}
.y1e{bottom:68.605368pt;}
.y25{bottom:68.605379pt;}
.y28{bottom:73.418600pt;}
.y1b{bottom:73.418626pt;}
.y21{bottom:73.418630pt;}
.y29{bottom:74.310709pt;}
.y24{bottom:81.771103pt;}
.y63{bottom:83.500000pt;}
.y55{bottom:104.400000pt;}
.y62{bottom:128.300000pt;}
.y54{bottom:168.066667pt;}
.y53{bottom:192.866667pt;}
.y52{bottom:218.733333pt;}
.y4e{bottom:240.399982pt;}
.y4d{bottom:247.000000pt;}
.y42{bottom:268.666649pt;}
.y4c{bottom:284.600000pt;}
.y3f{bottom:320.933297pt;}
.y40{bottom:323.599964pt;}
.y3e{bottom:327.560000pt;}
.y3c{bottom:348.399964pt;}
.y3b{bottom:355.026667pt;}
.y3a{bottom:381.440000pt;}
.y36{bottom:403.066630pt;}
.y34{bottom:404.399964pt;}
.y33{bottom:411.026667pt;}
.y1a{bottom:432.666630pt;}
.y2e{bottom:471.333297pt;}
.y32{bottom:475.333333pt;}
.y7f{bottom:520.933333pt;}
.y19{bottom:535.333333pt;}
.y7e{bottom:546.533333pt;}
.y18{bottom:560.933333pt;}
.y7d{bottom:571.066667pt;}
.y17{bottom:586.800000pt;}
.y7c{bottom:596.933333pt;}
.y16{bottom:612.426667pt;}
.y7b{bottom:621.506667pt;}
.y15{bottom:636.960000pt;}
.y7a{bottom:647.360000pt;}
.y14{bottom:662.840000pt;}
.y79{bottom:671.893333pt;}
.y13{bottom:687.373333pt;}
.y78{bottom:696.426667pt;}
.y12{bottom:711.893333pt;}
.y77{bottom:722.560000pt;}
.y11{bottom:736.706667pt;}
.y76{bottom:746.840000pt;}
.y10{bottom:761.266667pt;}
.y75{bottom:772.733333pt;}
.yf{bottom:786.066667pt;}
.y74{bottom:797.266667pt;}
.ye{bottom:810.600000pt;}
.y73{bottom:823.133333pt;}
.yd{bottom:836.733333pt;}
.y72{bottom:847.666667pt;}
.yc{bottom:862.333333pt;}
.y71{bottom:873.533333pt;}
.yb{bottom:886.866667pt;}
.y70{bottom:899.133333pt;}
.ya{bottom:911.440000pt;}
.y6f{bottom:925.040000pt;}
.y9{bottom:936.226667pt;}
.y65{bottom:945.466594pt;}
.y8{bottom:960.773333pt;}
.y64{bottom:969.560000pt;}
.y7{bottom:985.560000pt;}
.y4{bottom:1010.626667pt;}
.y3{bottom:1031.693333pt;}
.y2{bottom:1053.066667pt;}
.y1{bottom:1076.000000pt;}
.h1e{height:15.199896pt;}
.h10{height:19.999231pt;}
.h28{height:20.800855pt;}
.h15{height:21.600573pt;}
.h17{height:24.799358pt;}
.h1b{height:24.800333pt;}
.h1a{height:35.084175pt;}
.h18{height:35.210238pt;}
.h26{height:37.437074pt;}
.h25{height:39.495097pt;}
.h23{height:39.647381pt;}
.h21{height:39.667116pt;}
.h33{height:39.838265pt;}
.h31{height:42.083054pt;}
.hd{height:42.087762pt;}
.h2f{height:42.190339pt;}
.h2d{height:42.211340pt;}
.hb{height:42.264604pt;}
.h39{height:42.597787pt;}
.h37{height:42.805625pt;}
.h20{height:48.000891pt;}
.h14{height:52.135417pt;}
.h6{height:55.402667pt;}
.h2c{height:56.798918pt;}
.h36{height:57.598651pt;}
.h2b{height:58.757010pt;}
.h2{height:59.536458pt;}
.h19{height:60.885286pt;}
.h29{height:62.257032pt;}
.h2a{height:62.283323pt;}
.h3{height:63.789062pt;}
.h27{height:64.711768pt;}
.h1d{height:64.740056pt;}
.h16{height:64.772281pt;}
.h1f{height:65.703805pt;}
.h5{height:68.041667pt;}
.h24{height:68.532389pt;}
.h22{height:68.566502pt;}
.h34{height:68.813261pt;}
.hf{height:69.042267pt;}
.h13{height:70.413235pt;}
.h32{height:72.690721pt;}
.he{height:72.812623pt;}
.h30{height:72.876036pt;}
.h2e{height:72.912311pt;}
.hc{height:73.118563pt;}
.ha{height:73.154958pt;}
.h4{height:73.244792pt;}
.h8{height:73.281250pt;}
.h3a{height:73.579827pt;}
.h38{height:73.938828pt;}
.h1c{height:74.227438pt;}
.h12{height:74.588047pt;}
.h11{height:74.607592pt;}
.h7{height:75.250000pt;}
.h3b{height:77.683333pt;}
.h9{height:94.394996pt;}
.h35{height:103.275444pt;}
.h0{height:1122.400000pt;}
.h1{height:1122.666667pt;}
.w9{width:16.000515pt;}
.w8{width:16.000533pt;}
.w5{width:32.800178pt;}
.w6{width:34.399206pt;}
.wb{width:60.000699pt;}
.w4{width:71.202448pt;}
.w7{width:111.196554pt;}
.wd{width:127.995993pt;}
.w3{width:227.997958pt;}
.wa{width:245.594972pt;}
.wc{width:498.405618pt;}
.w2{width:793.866655pt;}
.w0{width:793.866667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x26{left:1.188590pt;}
.x16{left:2.377072pt;}
.x3a{left:3.542376pt;}
.x23{left:5.516328pt;}
.x3f{left:8.211777pt;}
.x40{left:9.403403pt;}
.x11{left:11.499513pt;}
.x12{left:12.688116pt;}
.x1d{left:14.144488pt;}
.x13{left:15.836070pt;}
.x20{left:19.008712pt;}
.x49{left:21.140789pt;}
.x41{left:24.474209pt;}
.x10{left:26.018015pt;}
.x32{left:28.318171pt;}
.x3e{left:32.138712pt;}
.x2c{left:36.625709pt;}
.xd{left:37.838948pt;}
.x48{left:39.970895pt;}
.x39{left:42.089514pt;}
.xe{left:45.869217pt;}
.x47{left:48.472047pt;}
.x15{left:51.426386pt;}
.x43{left:52.813956pt;}
.x18{left:55.895665pt;}
.x30{left:61.731033pt;}
.x45{left:63.131848pt;}
.x3d{left:67.305400pt;}
.x5{left:74.699988pt;}
.xc{left:75.599995pt;}
.x3c{left:79.638378pt;}
.xf{left:81.300145pt;}
.x2a{left:92.264270pt;}
.x6{left:104.566655pt;}
.x46{left:110.609032pt;}
.x2b{left:114.359545pt;}
.x4{left:130.433322pt;}
.x2f{left:132.356038pt;}
.x35{left:134.967659pt;}
.x34{left:147.599991pt;}
.x29{left:161.418269pt;}
.x2e{left:166.152664pt;}
.x3b{left:170.320766pt;}
.x2d{left:171.509624pt;}
.x22{left:175.066649pt;}
.x36{left:180.240942pt;}
.x24{left:190.999988pt;}
.x1f{left:197.466667pt;}
.x14{left:203.293528pt;}
.x42{left:205.713823pt;}
.x38{left:207.870966pt;}
.x33{left:234.199988pt;}
.xa{left:242.466655pt;}
.x25{left:260.133333pt;}
.x9{left:262.773322pt;}
.x27{left:276.106655pt;}
.xb{left:301.173322pt;}
.x17{left:303.599964pt;}
.x21{left:308.639988pt;}
.x28{left:318.533297pt;}
.x7{left:324.359988pt;}
.x1a{left:343.333297pt;}
.x37{left:345.448488pt;}
.x4b{left:353.173322pt;}
.x19{left:374.799988pt;}
.x1b{left:376.133322pt;}
.x8{left:396.666655pt;}
.x1{left:447.333322pt;}
.x2{left:451.599988pt;}
.x4a{left:457.733322pt;}
.x3{left:562.039988pt;}
.x31{left:564.173322pt;}
.x44{left:646.066655pt;}
.x1c{left:648.133261pt;}
.x1e{left:682.599988pt;}
}




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