
    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_ac7e0a8de5e2b88693d0982a.woff')format("woff");}.ff1{font-family:ff1;line-height:0.833984;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_e6865f41cdbb12e67476faa7.woff')format("woff");}.ff2{font-family:ff2;line-height:0.833984;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_9ec5b908ef3fa6b1430dd27d.woff')format("woff");}.ff3{font-family:ff3;line-height:0.695312;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_9dde357bd97ee6fce0580f06.woff')format("woff");}.ff4{font-family:ff4;line-height:1.003906;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_da831f208f0cb5606581c24f.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_50e218f43a2cf015ce59501e.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_20905d63d72785e8216bee4a.woff')format("woff");}.ff7{font-family:ff7;line-height:1.080566;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_8909dd69dd3d1eed739f350a.woff')format("woff");}.ff8{font-family:ff8;line-height:0.946777;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_76f2829d6bbec0a9423452a5.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_87f58eac277f0c95e411daec.woff')format("woff");}.ffa{font-family:ffa;line-height:1.097168;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_9bbe582e46c9186e3d6628cf.woff')format("woff");}.ffb{font-family:ffb;line-height:0.932129;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_9a4be83342af97487524da01.woff')format("woff");}.ffc{font-family:ffc;line-height:0.949219;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:ffd;src:url('chunks/assets/font_0413e848d1b35a857edbd17e.woff')format("woff");}.ffd{font-family:ffd;line-height:1.432129;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:ffe;src:url('chunks/assets/font_2e8d17883be3b0396b06fac2.woff')format("woff");}.ffe{font-family:ffe;line-height:1.435059;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;}
.m6{transform:matrix(0.000000,-0.112065,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.112065,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.112065,0.250000,0.000000,0,0);}
.m4{transform:matrix(0.000000,-0.135964,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.135964,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.135964,0.250000,0.000000,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);}
.m2{transform:matrix(0.354793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354793,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.429727,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.429727,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.429727,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.459682,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459682,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459682,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.557713,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557713,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557713,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);}
.v7{vertical-align:-82.124638px;}
.v6{vertical-align:-34.457039px;}
.v3{vertical-align:-30.240000px;}
.v2{vertical-align:-20.067389px;}
.v4{vertical-align:-9.360000px;}
.v5{vertical-align:-6.879232px;}
.vb{vertical-align:-1.765467px;}
.v0{vertical-align:0.000000px;}
.v9{vertical-align:2.282931px;}
.vc{vertical-align:6.209572px;}
.v8{vertical-align:9.162163px;}
.va{vertical-align:13.728025px;}
.vd{vertical-align:22.890188px;}
.v1{vertical-align:30.240000px;}
.ls1c{letter-spacing:-3.477487px;}
.ls24{letter-spacing:-2.716709px;}
.ls36{letter-spacing:-1.416000px;}
.ls35{letter-spacing:-1.260000px;}
.ls34{letter-spacing:-1.080000px;}
.ls33{letter-spacing:-1.062000px;}
.ls37{letter-spacing:-0.996000px;}
.lsd{letter-spacing:-0.900000px;}
.ls17{letter-spacing:-0.378600px;}
.ls15{letter-spacing:-0.360000px;}
.lse{letter-spacing:-0.341400px;}
.ls22{letter-spacing:-0.282000px;}
.ls1b{letter-spacing:-0.252908px;}
.ls23{letter-spacing:-0.197579px;}
.ls1a{letter-spacing:-0.183772px;}
.ls10{letter-spacing:-0.180000px;}
.lsf{letter-spacing:-0.161400px;}
.ls16{letter-spacing:-0.154800px;}
.ls9{letter-spacing:0.000000px;}
.ls20{letter-spacing:0.018000px;}
.ls18{letter-spacing:0.019692px;}
.ls1{letter-spacing:0.028080px;}
.ls13{letter-spacing:0.037440px;}
.ls5{letter-spacing:0.208080px;}
.ls0{letter-spacing:0.216000px;}
.ls21{letter-spacing:0.261600px;}
.ls38{letter-spacing:0.291600px;}
.lsb{letter-spacing:0.341400px;}
.lsa{letter-spacing:0.360000px;}
.lsc{letter-spacing:0.378600px;}
.ls2b{letter-spacing:0.795512px;}
.ls2c{letter-spacing:0.856390px;}
.ls1f{letter-spacing:1.980000px;}
.ls26{letter-spacing:2.700000px;}
.ls3a{letter-spacing:4.260000px;}
.ls11{letter-spacing:5.580000px;}
.ls14{letter-spacing:9.180000px;}
.ls1e{letter-spacing:10.620000px;}
.ls1d{letter-spacing:10.800000px;}
.ls28{letter-spacing:12.060000px;}
.ls12{letter-spacing:22.860000px;}
.ls27{letter-spacing:25.020000px;}
.ls30{letter-spacing:36.820822px;}
.ls39{letter-spacing:37.236000px;}
.ls29{letter-spacing:39.420000px;}
.ls8{letter-spacing:40.140000px;}
.ls19{letter-spacing:41.580000px;}
.ls6{letter-spacing:50.940000px;}
.ls4{letter-spacing:51.660000px;}
.ls25{letter-spacing:56.700000px;}
.ls2e{letter-spacing:68.309391px;}
.ls2a{letter-spacing:79.587729px;}
.ls3b{letter-spacing:83.861280px;}
.ls32{letter-spacing:88.256779px;}
.ls2d{letter-spacing:88.262867px;}
.ls31{letter-spacing:88.478985px;}
.ls3{letter-spacing:99.900000px;}
.ls2{letter-spacing:100.620000px;}
.ls7{letter-spacing:108.540000px;}
.ls2f{letter-spacing:184.891068px;}
.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;}
}
.ws4{word-spacing:-84.618600px;}
.ws0{word-spacing:-27.000000px;}
.ws2{word-spacing:-21.420000px;}
.ws3{word-spacing:-21.401400px;}
.ws1d{word-spacing:-21.351600px;}
.ws14{word-spacing:-21.321600px;}
.ws16{word-spacing:-21.097440px;}
.ws8{word-spacing:-21.088080px;}
.ws1{word-spacing:-21.060000px;}
.wsb{word-spacing:-20.905200px;}
.ws6{word-spacing:-20.898600px;}
.ws15{word-spacing:-20.778000px;}
.ws5{word-spacing:-20.718600px;}
.ws9{word-spacing:-20.700000px;}
.wsc{word-spacing:-20.681400px;}
.ws1c{word-spacing:-20.064000px;}
.ws1a{word-spacing:-19.998000px;}
.ws1b{word-spacing:-19.644000px;}
.wsa{word-spacing:-13.500000px;}
.ws13{word-spacing:-10.363219px;}
.ws19{word-spacing:-9.822591px;}
.ws12{word-spacing:-5.636083px;}
.ws11{word-spacing:-5.383175px;}
.ws18{word-spacing:-4.403064px;}
.ws17{word-spacing:-4.205485px;}
.ws10{word-spacing:-0.040234px;}
.ws1e{word-spacing:-0.036439px;}
.ws23{word-spacing:-0.033273px;}
.wsf{word-spacing:-0.030658px;}
.ws22{word-spacing:-0.030256px;}
.ws7{word-spacing:0.000000px;}
.ws20{word-spacing:42.062520px;}
.wse{word-spacing:86.844685px;}
.wsd{word-spacing:95.575663px;}
.ws1f{word-spacing:392.070469px;}
.ws21{word-spacing:399.899157px;}
._2e{margin-left:-184.600882px;}
._2f{margin-left:-182.681490px;}
._2d{margin-left:-176.934471px;}
._2c{margin-left:-171.198876px;}
._3c{margin-left:-144.215329px;}
._3d{margin-left:-142.715847px;}
._3b{margin-left:-138.226116px;}
._3a{margin-left:-133.745310px;}
._43{margin-left:-6.686880px;}
._2{margin-left:-5.385120px;}
._42{margin-left:-3.714480px;}
._6{margin-left:-2.259120px;}
._0{margin-left:-1.008000px;}
._1{width:1.896000px;}
._17{width:3.082560px;}
._25{width:4.801680px;}
._7{width:5.919600px;}
._8{width:7.640640px;}
._26{width:8.925360px;}
._32{width:10.104000px;}
._12{width:11.350320px;}
._11{width:12.717360px;}
._24{width:14.299440px;}
._1d{width:15.741120px;}
._18{width:17.184960px;}
._19{width:18.785520px;}
._36{width:19.856640px;}
._d{width:22.660560px;}
._f{width:23.953440px;}
._9{width:25.019280px;}
._e{width:26.030160px;}
._a{width:27.122400px;}
._10{width:28.725840px;}
._38{width:29.905200px;}
._20{width:31.924080px;}
._21{width:33.090960px;}
._2b{width:34.259520px;}
._4{width:35.377920px;}
._5{width:36.713280px;}
._b{width:39.592800px;}
._c{width:40.640640px;}
._29{width:41.710800px;}
._16{width:42.878160px;}
._1b{width:44.899920px;}
._1e{width:47.679840px;}
._1f{width:49.686240px;}
._37{width:51.055920px;}
._15{width:52.712400px;}
._1c{width:54.671760px;}
._3e{width:56.491920px;}
._3f{width:57.800400px;}
._31{width:60.231600px;}
._2a{width:61.314240px;}
._14{width:62.363760px;}
._13{width:63.598320px;}
._34{width:66.633840px;}
._33{width:67.710720px;}
._44{width:68.767680px;}
._41{width:72.019440px;}
._40{width:73.099200px;}
._3{width:75.563280px;}
._39{width:78.087600px;}
._35{width:98.055360px;}
._28{width:104.703427px;}
._27{width:115.556160px;}
._1a{width:121.305600px;}
._22{width:173.868480px;}
._23{width:175.513680px;}
._30{width:2682.600000px;}
.fc5{color:transparent;}
.fc3{color:rgb(0,0,255);}
.fc4{color:rgb(192,0,0);}
.fc2{color:rgb(0,112,192);}
.fc6{color:rgb(51,51,51);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fsb{font-size:16.552873px;}
.fs9{font-size:21.188281px;}
.fse{font-size:27.311160px;}
.fs10{font-size:30.255837px;}
.fs7{font-size:30.658437px;}
.fs5{font-size:33.052170px;}
.fsf{font-size:33.272958px;}
.fsd{font-size:36.438623px;}
.fsc{font-size:36.927033px;}
.fsa{font-size:38.959469px;}
.fs8{font-size:40.234042px;}
.fs6{font-size:51.724500px;}
.fs4{font-size:54.000000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs3{font-size:84.240000px;}
.fs2{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.ycf{bottom:2.267765px;}
.y6{bottom:2.880000px;}
.y2{bottom:3.960000px;}
.ybb{bottom:5.231792px;}
.y80{bottom:6.696984px;}
.y50{bottom:8.100000px;}
.y60{bottom:8.145000px;}
.y4e{bottom:8.280000px;}
.y53{bottom:8.820000px;}
.yba{bottom:10.484392px;}
.y4c{bottom:10.620000px;}
.y4a{bottom:13.140000px;}
.y7f{bottom:13.420502px;}
.y5{bottom:16.920000px;}
.y6e{bottom:18.040194px;}
.y111{bottom:22.141387px;}
.y94{bottom:24.030788px;}
.y81{bottom:26.852858px;}
.y48{bottom:27.360000px;}
.y45{bottom:29.520000px;}
.ybc{bottom:29.984792px;}
.y65{bottom:33.934143px;}
.y4{bottom:34.740000px;}
.y59{bottom:35.820000px;}
.y47{bottom:37.440000px;}
.y112{bottom:39.153789px;}
.y114{bottom:39.836385px;}
.y66{bottom:44.926941px;}
.ybd{bottom:46.863229px;}
.y113{bottom:55.815380px;}
.y82{bottom:56.141087px;}
.y44{bottom:57.240000px;}
.y11c{bottom:62.088874px;}
.y11f{bottom:63.232623px;}
.ybe{bottom:63.357534px;}
.y11b{bottom:69.801376px;}
.y67{bottom:76.354337px;}
.y9e{bottom:76.841729px;}
.ybf{bottom:80.239940px;}
.y120{bottom:80.245025px;}
.y115{bottom:80.815757px;}
.y122{bottom:80.929904px;}
.yb8{bottom:81.576000px;}
.y25{bottom:81.936000px;}
.y11a{bottom:83.791177px;}
.y43{bottom:85.140000px;}
.y83{bottom:85.429879px;}
.y129{bottom:86.515475px;}
.y9d{bottom:87.398385px;}
.y95{bottom:94.601751px;}
.yf4{bottom:96.156000px;}
.y121{bottom:96.910421px;}
.yc0{bottom:97.117936px;}
.yd7{bottom:98.660199px;}
.yd0{bottom:98.660215px;}
.y119{bottom:99.086815px;}
.ye3{bottom:100.296000px;}
.y41{bottom:101.196000px;}
.y116{bottom:106.042145px;}
.y9c{bottom:106.118102px;}
.y68{bottom:107.780056px;}
.y117{bottom:109.694835px;}
.y118{bottom:113.180109px;}
.yc1{bottom:113.987111px;}
.y84{bottom:114.706253px;}
.y7d{bottom:115.956000px;}
.y7e{bottom:116.056500px;}
.y9b{bottom:117.165897px;}
.yb7{bottom:117.756000px;}
.y24{bottom:118.116000px;}
.yd6{bottom:118.157880px;}
.y8c{bottom:123.409566px;}
.y8d{bottom:123.889414px;}
.yf3{bottom:124.056000px;}
.y9a{bottom:124.369262px;}
.y96{bottom:125.808806px;}
.yd4{bottom:126.030165px;}
.y8e{bottom:126.288654px;}
.y8f{bottom:127.242705px;}
.yd1{bottom:129.412827px;}
.yc2{bottom:130.494647px;}
.y123{bottom:131.451167px;}
.yd5{bottom:133.157114px;}
.y90{bottom:133.486374px;}
.y98{bottom:134.925918px;}
.y99{bottom:135.405766px;}
.y91{bottom:136.365462px;}
.ye2{bottom:136.656000px;}
.y109{bottom:136.983470px;}
.y40{bottom:137.376000px;}
.y92{bottom:137.799361px;}
.y93{bottom:138.759057px;}
.y69{bottom:139.209129px;}
.y8b{bottom:140.485279px;}
.y97{bottom:141.169587px;}
.yd3{bottom:141.787960px;}
.y85{bottom:143.993916px;}
.y6d{bottom:147.093225px;}
.yc3{bottom:147.372643px;}
.y124{bottom:147.424074px;}
.yd2{bottom:150.784855px;}
.yca{bottom:152.279985px;}
.y110{bottom:153.131402px;}
.yb6{bottom:153.930000px;}
.y23{bottom:154.290000px;}
.yf2{bottom:160.230000px;}
.ycb{bottom:160.540352px;}
.ycc{bottom:161.290080px;}
.ycd{bottom:162.785149px;}
.y128{bottom:163.351323px;}
.y125{bottom:163.404591px;}
.yc4{bottom:164.241818px;}
.y10d{bottom:165.801669px;}
.yce{bottom:166.542672px;}
.y10a{bottom:167.978063px;}
.y11d{bottom:168.883626px;}
.y6a{bottom:170.636525px;}
.ye1{bottom:172.830000px;}
.y86{bottom:173.281580px;}
.y3f{bottom:173.730000px;}
.y10f{bottom:179.955841px;}
.yc5{bottom:181.119814px;}
.y10c{bottom:188.699467px;}
.y11e{bottom:189.825713px;}
.yb5{bottom:190.110000px;}
.y22{bottom:190.650000px;}
.y10e{bottom:194.863380px;}
.yf1{bottom:196.410000px;}
.yd8{bottom:196.536714px;}
.yc6{bottom:197.627350px;}
.y6b{bottom:202.062244px;}
.y87{bottom:202.552308px;}
.y10b{bottom:203.295006px;}
.yc8{bottom:206.249373px;}
.ye0{bottom:209.010000px;}
.y3e{bottom:209.910000px;}
.yc7{bottom:214.496526px;}
.y106{bottom:219.351620px;}
.yb4{bottom:226.290000px;}
.y21{bottom:226.830000px;}
.y88{bottom:231.839972px;}
.yf0{bottom:232.590000px;}
.y6c{bottom:233.492993px;}
.y127{bottom:233.559061px;}
.y108{bottom:236.473603px;}
.ydf{bottom:245.190000px;}
.y3d{bottom:246.090000px;}
.y107{bottom:246.693524px;}
.y8a{bottom:246.726550px;}
.y9f{bottom:251.574144px;}
.y101{bottom:251.883387px;}
.y63{bottom:254.910000px;}
.y89{bottom:261.133281px;}
.yb3{bottom:262.650000px;}
.y20{bottom:263.010000px;}
.y102{bottom:268.434637px;}
.yef{bottom:268.950000px;}
.y62{bottom:275.250000px;}
.yde{bottom:281.370000px;}
.y3c{bottom:282.270000px;}
.y103{bottom:285.556619px;}
.y105{bottom:286.127352px;}
.yb2{bottom:298.830000px;}
.y1f{bottom:299.190000px;}
.y104{bottom:302.107869px;}
.y61{bottom:303.690000px;}
.yee{bottom:305.130000px;}
.ydd{bottom:317.730000px;}
.y3b{bottom:318.630000px;}
.y5f{bottom:332.310000px;}
.yb1{bottom:335.010000px;}
.y1e{bottom:335.550000px;}
.yed{bottom:341.355000px;}
.y100{bottom:352.347571px;}
.ydc{bottom:353.955000px;}
.y3a{bottom:354.855000px;}
.y5e{bottom:360.795000px;}
.yb0{bottom:371.235000px;}
.y1d{bottom:371.775000px;}
.yff{bottom:376.889079px;}
.yec{bottom:377.535000px;}
.yfe{bottom:388.585295px;}
.y5d{bottom:389.415000px;}
.ydb{bottom:390.135000px;}
.y39{bottom:391.035000px;}
.y1c{bottom:399.495000px;}
.yaf{bottom:407.595000px;}
.y13e{bottom:407.955000px;}
.yf6{bottom:407.997819px;}
.yf9{bottom:412.852852px;}
.yeb{bottom:413.895000px;}
.y5c{bottom:417.855000px;}
.y7c{bottom:420.555000px;}
.yda{bottom:426.315000px;}
.y38{bottom:427.215000px;}
.yf8{bottom:430.545567px;}
.y1b{bottom:435.675000px;}
.yfd{bottom:442.523345px;}
.yae{bottom:443.775000px;}
.y13d{bottom:444.135000px;}
.y5b{bottom:446.475000px;}
.yf7{bottom:446.526084px;}
.yea{bottom:450.075000px;}
.yfa{bottom:455.087075px;}
.y7b{bottom:456.735000px;}
.yd9{bottom:457.995000px;}
.y126{bottom:458.686497px;}
.y37{bottom:463.575000px;}
.y1a{bottom:472.035000px;}
.yfb{bottom:473.297255px;}
.y5a{bottom:474.915000px;}
.yad{bottom:479.955000px;}
.yfc{bottom:480.199316px;}
.y13c{bottom:480.315000px;}
.ye9{bottom:486.255000px;}
.y7a{bottom:492.915000px;}
.y36{bottom:499.755000px;}
.y58{bottom:503.535000px;}
.y19{bottom:508.215000px;}
.yac{bottom:516.135000px;}
.y13b{bottom:516.675000px;}
.ye8{bottom:522.435000px;}
.y79{bottom:529.275000px;}
.y35{bottom:535.935000px;}
.y18{bottom:544.395000px;}
.yab{bottom:552.495000px;}
.y13a{bottom:552.855000px;}
.ye7{bottom:558.615000px;}
.y78{bottom:565.455000px;}
.y34{bottom:572.115000px;}
.y57{bottom:576.435000px;}
.y17{bottom:580.575000px;}
.yaa{bottom:588.675000px;}
.y139{bottom:589.035000px;}
.ye6{bottom:594.975000px;}
.y77{bottom:601.635000px;}
.y33{bottom:608.325000px;}
.y56{bottom:612.645000px;}
.y16{bottom:616.785000px;}
.ya9{bottom:624.885000px;}
.y138{bottom:625.245000px;}
.ye5{bottom:631.185000px;}
.y76{bottom:637.845000px;}
.y32{bottom:644.685000px;}
.y55{bottom:648.825000px;}
.y15{bottom:653.145000px;}
.ya8{bottom:661.065000px;}
.y137{bottom:661.605000px;}
.ye4{bottom:662.865000px;}
.yf5{bottom:663.840000px;}
.y75{bottom:674.205000px;}
.y31{bottom:680.865000px;}
.y13f{bottom:681.045000px;}
.y54{bottom:685.005000px;}
.y14{bottom:689.325000px;}
.ya7{bottom:697.425000px;}
.y136{bottom:697.785000px;}
.y52{bottom:705.345000px;}
.y74{bottom:710.385000px;}
.y30{bottom:717.045000px;}
.y13{bottom:725.505000px;}
.ya6{bottom:733.605000px;}
.y135{bottom:733.965000px;}
.y51{bottom:734.505000px;}
.y73{bottom:746.565000px;}
.y2f{bottom:753.225000px;}
.y12{bottom:761.685000px;}
.y4f{bottom:763.125000px;}
.ya5{bottom:769.785000px;}
.y134{bottom:770.145000px;}
.y72{bottom:782.745000px;}
.y2e{bottom:789.585000px;}
.y4d{bottom:791.565000px;}
.y11{bottom:798.045000px;}
.ya4{bottom:805.965000px;}
.y133{bottom:806.505000px;}
.y71{bottom:819.105000px;}
.y4b{bottom:820.185000px;}
.y2d{bottom:825.765000px;}
.y10{bottom:834.225000px;}
.ya3{bottom:842.145000px;}
.y132{bottom:842.685000px;}
.y49{bottom:851.145000px;}
.y70{bottom:855.285000px;}
.y2c{bottom:861.945000px;}
.yf{bottom:870.405000px;}
.ya2{bottom:878.550000px;}
.y131{bottom:878.910000px;}
.y42{bottom:884.850000px;}
.y64{bottom:886.965000px;}
.y6f{bottom:887.010000px;}
.y2b{bottom:898.170000px;}
.ye{bottom:906.630000px;}
.ya1{bottom:914.730000px;}
.y130{bottom:915.090000px;}
.y46{bottom:932.550000px;}
.y2a{bottom:934.530000px;}
.yd{bottom:942.990000px;}
.ya0{bottom:946.410000px;}
.yb9{bottom:946.440000px;}
.y12f{bottom:951.270000px;}
.yc9{bottom:965.524360px;}
.y29{bottom:970.710000px;}
.yc{bottom:979.170000px;}
.y12e{bottom:987.630000px;}
.y28{bottom:1006.890000px;}
.yb{bottom:1015.350000px;}
.y12d{bottom:1023.810000px;}
.y27{bottom:1043.070000px;}
.ya{bottom:1051.530000px;}
.y12c{bottom:1059.990000px;}
.y26{bottom:1079.430000px;}
.y9{bottom:1087.710000px;}
.y12b{bottom:1096.170000px;}
.y8{bottom:1115.610000px;}
.y12a{bottom:1124.070000px;}
.y7{bottom:1151.820000px;}
.y3{bottom:1176.120000px;}
.y1{bottom:1200.240000px;}
.h20{height:12.414655px;}
.h1c{height:15.891211px;}
.h2{height:22.140000px;}
.h18{height:24.159716px;}
.h22{height:27.695275px;}
.h13{height:27.720000px;}
.h16{height:27.756000px;}
.h12{height:27.900000px;}
.h6{height:28.440000px;}
.h25{height:28.484687px;}
.h1e{height:29.219601px;}
.h1a{height:29.409356px;}
.h11{height:30.240000px;}
.h2b{height:31.555892px;}
.h10{height:32.796000px;}
.h2a{height:34.702656px;}
.h19{height:37.808387px;}
.h24{height:38.004345px;}
.h26{height:40.287276px;}
.h28{height:40.956935px;}
.h27{height:42.570207px;}
.hf{height:46.980000px;}
.h4{height:48.761719px;}
.h3{height:53.015625px;}
.h15{height:55.440000px;}
.he{height:57.060000px;}
.h29{height:60.894533px;}
.h5{height:65.884219px;}
.h14{height:72.846211px;}
.hb{height:74.244727px;}
.h9{height:82.635820px;}
.ha{height:82.676953px;}
.hc{height:83.238047px;}
.h8{height:84.898125px;}
.h2c{height:87.695156px;}
.hd{height:104.760000px;}
.h7{height:108.843750px;}
.h21{height:200.300033px;}
.h1f{height:225.000000px;}
.h1d{height:256.391253px;}
.h17{height:284.395885px;}
.h1b{height:288.000000px;}
.h23{height:507.594488px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:70.200000px;}
.we{width:100.980000px;}
.wd{width:101.196000px;}
.wc{width:101.340000px;}
.w5{width:102.060000px;}
.w6{width:161.490000px;}
.wa{width:182.550000px;}
.w9{width:209.550000px;}
.wb{width:211.170000px;}
.w8{width:214.590000px;}
.w7{width:424.875000px;}
.wf{width:575.851377px;}
.w13{width:619.438481px;}
.w14{width:644.397657px;}
.w11{width:653.531892px;}
.w12{width:670.481146px;}
.w10{width:707.383907px;}
.w3{width:802.080000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x3{left:-1.800000px;}
.x0{left:0.000000px;}
.x18{left:7.560000px;}
.x1{left:8.640000px;}
.x2a{left:10.623001px;}
.x2b{left:13.272003px;}
.x29{left:15.922054px;}
.x6a{left:33.690127px;}
.x7{left:37.590000px;}
.x23{left:39.080176px;}
.x2d{left:51.349383px;}
.x6b{left:65.452192px;}
.x6c{left:66.812566px;}
.x4{left:74.339987px;}
.x2{left:78.840000px;}
.x22{left:80.371000px;}
.x72{left:82.534015px;}
.x5{left:84.959987px;}
.x21{left:86.826856px;}
.x43{left:90.567298px;}
.x13{left:92.195987px;}
.x1b{left:96.516000px;}
.x20{left:99.740947px;}
.x6d{left:112.998496px;}
.x6f{left:114.485748px;}
.x51{left:124.462500px;}
.x9{left:125.495987px;}
.x15{left:127.475987px;}
.x2c{left:133.399636px;}
.x6e{left:136.599638px;}
.x17{left:153.030000px;}
.x1f{left:158.490000px;}
.xa{left:172.289987px;}
.x12{left:174.809987px;}
.x70{left:195.147942px;}
.xc{left:206.669987px;}
.x2e{left:207.864871px;}
.x2f{left:219.345276px;}
.x44{left:222.994900px;}
.x5d{left:228.934873px;}
.x53{left:233.879297px;}
.x30{left:235.268368px;}
.x56{left:248.398649px;}
.x31{left:252.073770px;}
.xf{left:256.169987px;}
.x54{left:259.399349px;}
.xd{left:264.629987px;}
.x58{left:265.795713px;}
.x5b{left:267.273811px;}
.x71{left:275.122111px;}
.xb{left:279.254987px;}
.x24{left:283.760198px;}
.x5a{left:291.825907px;}
.x11{left:294.734987px;}
.x55{left:300.681400px;}
.xe{left:304.634987px;}
.x14{left:306.074987px;}
.x10{left:313.814987px;}
.x19{left:315.255000px;}
.x59{left:319.347273px;}
.x45{left:326.939745px;}
.x5c{left:327.980404px;}
.x32{left:344.934257px;}
.x46{left:352.077377px;}
.x68{left:364.043340px;}
.x33{left:370.573134px;}
.x16{left:375.914987px;}
.x47{left:381.396415px;}
.x73{left:406.411073px;}
.x64{left:416.626943px;}
.x67{left:420.551091px;}
.x57{left:425.953330px;}
.x69{left:434.821915px;}
.x5f{left:436.679344px;}
.x65{left:440.695060px;}
.x63{left:442.382444px;}
.x66{left:444.527644px;}
.x8{left:446.474987px;}
.x5e{left:458.288327px;}
.x48{left:467.730167px;}
.x62{left:479.988874px;}
.x60{left:489.354510px;}
.x1c{left:491.685000px;}
.x34{left:494.366360px;}
.x35{left:518.230236px;}
.x40{left:520.877159px;}
.x52{left:528.648322px;}
.x1a{left:530.565000px;}
.x61{left:539.047322px;}
.x36{left:545.664873px;}
.x37{left:557.145276px;}
.x49{left:564.955240px;}
.x38{left:568.646441px;}
.x4a{left:576.702533px;}
.x39{left:579.244536px;}
.x4b{left:587.584029px;}
.x3a{left:589.863392px;}
.x1d{left:593.745000px;}
.x4c{left:598.485201px;}
.x3b{left:600.492627px;}
.x4d{left:609.396213px;}
.x3c{left:611.090722px;}
.x4e{left:619.441428px;}
.x3d{left:621.709578px;}
.x41{left:627.781607px;}
.x3e{left:632.307673px;}
.x42{left:640.335665px;}
.x3f{left:642.936909px;}
.x27{left:662.334218px;}
.x28{left:675.579242px;}
.x1e{left:695.670000px;}
.x25{left:734.369987px;}
.x6{left:737.820000px;}
.x50{left:768.929987px;}
.x4f{left:772.709987px;}
.x26{left:800.249987px;}
@media print{
.v7{vertical-align:-72.999678pt;}
.v6{vertical-align:-30.628479pt;}
.v3{vertical-align:-26.880000pt;}
.v2{vertical-align:-17.837679pt;}
.v4{vertical-align:-8.320000pt;}
.v5{vertical-align:-6.114873pt;}
.vb{vertical-align:-1.569304pt;}
.v0{vertical-align:0.000000pt;}
.v9{vertical-align:2.029272pt;}
.vc{vertical-align:5.519620pt;}
.v8{vertical-align:8.144145pt;}
.va{vertical-align:12.202689pt;}
.vd{vertical-align:20.346834pt;}
.v1{vertical-align:26.880000pt;}
.ls1c{letter-spacing:-3.091099pt;}
.ls24{letter-spacing:-2.414852pt;}
.ls36{letter-spacing:-1.258667pt;}
.ls35{letter-spacing:-1.120000pt;}
.ls34{letter-spacing:-0.960000pt;}
.ls33{letter-spacing:-0.944000pt;}
.ls37{letter-spacing:-0.885333pt;}
.lsd{letter-spacing:-0.800000pt;}
.ls17{letter-spacing:-0.336533pt;}
.ls15{letter-spacing:-0.320000pt;}
.lse{letter-spacing:-0.303467pt;}
.ls22{letter-spacing:-0.250667pt;}
.ls1b{letter-spacing:-0.224807pt;}
.ls23{letter-spacing:-0.175626pt;}
.ls1a{letter-spacing:-0.163353pt;}
.ls10{letter-spacing:-0.160000pt;}
.lsf{letter-spacing:-0.143467pt;}
.ls16{letter-spacing:-0.137600pt;}
.ls9{letter-spacing:0.000000pt;}
.ls20{letter-spacing:0.016000pt;}
.ls18{letter-spacing:0.017504pt;}
.ls1{letter-spacing:0.024960pt;}
.ls13{letter-spacing:0.033280pt;}
.ls5{letter-spacing:0.184960pt;}
.ls0{letter-spacing:0.192000pt;}
.ls21{letter-spacing:0.232533pt;}
.ls38{letter-spacing:0.259200pt;}
.lsb{letter-spacing:0.303467pt;}
.lsa{letter-spacing:0.320000pt;}
.lsc{letter-spacing:0.336533pt;}
.ls2b{letter-spacing:0.707122pt;}
.ls2c{letter-spacing:0.761236pt;}
.ls1f{letter-spacing:1.760000pt;}
.ls26{letter-spacing:2.400000pt;}
.ls3a{letter-spacing:3.786667pt;}
.ls11{letter-spacing:4.960000pt;}
.ls14{letter-spacing:8.160000pt;}
.ls1e{letter-spacing:9.440000pt;}
.ls1d{letter-spacing:9.600000pt;}
.ls28{letter-spacing:10.720000pt;}
.ls12{letter-spacing:20.320000pt;}
.ls27{letter-spacing:22.240000pt;}
.ls30{letter-spacing:32.729619pt;}
.ls39{letter-spacing:33.098667pt;}
.ls29{letter-spacing:35.040000pt;}
.ls8{letter-spacing:35.680000pt;}
.ls19{letter-spacing:36.960000pt;}
.ls6{letter-spacing:45.280000pt;}
.ls4{letter-spacing:45.920000pt;}
.ls25{letter-spacing:50.400000pt;}
.ls2e{letter-spacing:60.719459pt;}
.ls2a{letter-spacing:70.744648pt;}
.ls3b{letter-spacing:74.543360pt;}
.ls32{letter-spacing:78.450470pt;}
.ls2d{letter-spacing:78.455882pt;}
.ls31{letter-spacing:78.647986pt;}
.ls3{letter-spacing:88.800000pt;}
.ls2{letter-spacing:89.440000pt;}
.ls7{letter-spacing:96.480000pt;}
.ls2f{letter-spacing:164.347616pt;}
.ws4{word-spacing:-75.216533pt;}
.ws0{word-spacing:-24.000000pt;}
.ws2{word-spacing:-19.040000pt;}
.ws3{word-spacing:-19.023467pt;}
.ws1d{word-spacing:-18.979200pt;}
.ws14{word-spacing:-18.952533pt;}
.ws16{word-spacing:-18.753280pt;}
.ws8{word-spacing:-18.744960pt;}
.ws1{word-spacing:-18.720000pt;}
.wsb{word-spacing:-18.582400pt;}
.ws6{word-spacing:-18.576533pt;}
.ws15{word-spacing:-18.469333pt;}
.ws5{word-spacing:-18.416533pt;}
.ws9{word-spacing:-18.400000pt;}
.wsc{word-spacing:-18.383467pt;}
.ws1c{word-spacing:-17.834667pt;}
.ws1a{word-spacing:-17.776000pt;}
.ws1b{word-spacing:-17.461333pt;}
.wsa{word-spacing:-12.000000pt;}
.ws13{word-spacing:-9.211750pt;}
.ws19{word-spacing:-8.731192pt;}
.ws12{word-spacing:-5.009851pt;}
.ws11{word-spacing:-4.785044pt;}
.ws18{word-spacing:-3.913835pt;}
.ws17{word-spacing:-3.738209pt;}
.ws10{word-spacing:-0.035764pt;}
.ws1e{word-spacing:-0.032390pt;}
.ws23{word-spacing:-0.029576pt;}
.wsf{word-spacing:-0.027252pt;}
.ws22{word-spacing:-0.026894pt;}
.ws7{word-spacing:0.000000pt;}
.ws20{word-spacing:37.388906pt;}
.wse{word-spacing:77.195276pt;}
.wsd{word-spacing:84.956145pt;}
.ws1f{word-spacing:348.507084pt;}
.ws21{word-spacing:355.465918pt;}
._2e{margin-left:-164.089673pt;}
._2f{margin-left:-162.383547pt;}
._2d{margin-left:-157.275085pt;}
._2c{margin-left:-152.176779pt;}
._3c{margin-left:-128.191404pt;}
._3d{margin-left:-126.858530pt;}
._3b{margin-left:-122.867659pt;}
._3a{margin-left:-118.884720pt;}
._43{margin-left:-5.943893pt;}
._2{margin-left:-4.786773pt;}
._42{margin-left:-3.301760pt;}
._6{margin-left:-2.008107pt;}
._0{margin-left:-0.896000pt;}
._1{width:1.685333pt;}
._17{width:2.740053pt;}
._25{width:4.268160pt;}
._7{width:5.261867pt;}
._8{width:6.791680pt;}
._26{width:7.933653pt;}
._32{width:8.981333pt;}
._12{width:10.089173pt;}
._11{width:11.304320pt;}
._24{width:12.710613pt;}
._1d{width:13.992107pt;}
._18{width:15.275520pt;}
._19{width:16.698240pt;}
._36{width:17.650347pt;}
._d{width:20.142720pt;}
._f{width:21.291947pt;}
._9{width:22.239360pt;}
._e{width:23.137920pt;}
._a{width:24.108800pt;}
._10{width:25.534080pt;}
._38{width:26.582400pt;}
._20{width:28.376960pt;}
._21{width:29.414187pt;}
._2b{width:30.452907pt;}
._4{width:31.447040pt;}
._5{width:32.634027pt;}
._b{width:35.193600pt;}
._c{width:36.125013pt;}
._29{width:37.076267pt;}
._16{width:38.113920pt;}
._1b{width:39.911040pt;}
._1e{width:42.382080pt;}
._1f{width:44.165547pt;}
._37{width:45.383040pt;}
._15{width:46.855467pt;}
._1c{width:48.597120pt;}
._3e{width:50.215040pt;}
._3f{width:51.378133pt;}
._31{width:53.539200pt;}
._2a{width:54.501547pt;}
._14{width:55.434453pt;}
._13{width:56.531840pt;}
._34{width:59.230080pt;}
._33{width:60.187307pt;}
._44{width:61.126827pt;}
._41{width:64.017280pt;}
._40{width:64.977067pt;}
._3{width:67.167360pt;}
._39{width:69.411200pt;}
._35{width:87.160320pt;}
._28{width:93.069713pt;}
._27{width:102.716587pt;}
._1a{width:107.827200pt;}
._22{width:154.549760pt;}
._23{width:156.012160pt;}
._30{width:2384.533333pt;}
.fsb{font-size:14.713665pt;}
.fs9{font-size:18.834028pt;}
.fse{font-size:24.276587pt;}
.fs10{font-size:26.894077pt;}
.fs7{font-size:27.251944pt;}
.fs5{font-size:29.379707pt;}
.fsf{font-size:29.575963pt;}
.fsd{font-size:32.389887pt;}
.fsc{font-size:32.824030pt;}
.fsa{font-size:34.630639pt;}
.fs8{font-size:35.763593pt;}
.fs6{font-size:45.977334pt;}
.fs4{font-size:48.000000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs3{font-size:74.880000pt;}
.fs2{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.ycf{bottom:2.015791pt;}
.y6{bottom:2.560000pt;}
.y2{bottom:3.520000pt;}
.ybb{bottom:4.650482pt;}
.y80{bottom:5.952875pt;}
.y50{bottom:7.200000pt;}
.y60{bottom:7.240000pt;}
.y4e{bottom:7.360000pt;}
.y53{bottom:7.840000pt;}
.yba{bottom:9.319459pt;}
.y4c{bottom:9.440000pt;}
.y4a{bottom:11.680000pt;}
.y7f{bottom:11.929335pt;}
.y5{bottom:15.040000pt;}
.y6e{bottom:16.035728pt;}
.y111{bottom:19.681233pt;}
.y94{bottom:21.360700pt;}
.y81{bottom:23.869208pt;}
.y48{bottom:24.320000pt;}
.y45{bottom:26.240000pt;}
.ybc{bottom:26.653148pt;}
.y65{bottom:30.163683pt;}
.y4{bottom:30.880000pt;}
.y59{bottom:31.840000pt;}
.y47{bottom:33.280000pt;}
.y112{bottom:34.803368pt;}
.y114{bottom:35.410120pt;}
.y66{bottom:39.935058pt;}
.ybd{bottom:41.656204pt;}
.y113{bottom:49.613671pt;}
.y82{bottom:49.903188pt;}
.y44{bottom:50.880000pt;}
.y11c{bottom:55.190111pt;}
.y11f{bottom:56.206776pt;}
.ybe{bottom:56.317808pt;}
.y11b{bottom:62.045668pt;}
.y67{bottom:67.870521pt;}
.y9e{bottom:68.303759pt;}
.ybf{bottom:71.324391pt;}
.y120{bottom:71.328911pt;}
.y115{bottom:71.836229pt;}
.y122{bottom:71.937692pt;}
.yb8{bottom:72.512000pt;}
.y25{bottom:72.832000pt;}
.y11a{bottom:74.481047pt;}
.y43{bottom:75.680000pt;}
.y83{bottom:75.937671pt;}
.y129{bottom:76.902645pt;}
.y9d{bottom:77.687454pt;}
.y95{bottom:84.090445pt;}
.yf4{bottom:85.472000pt;}
.y121{bottom:86.142596pt;}
.yc0{bottom:86.327054pt;}
.yd7{bottom:87.697955pt;}
.yd0{bottom:87.697969pt;}
.y119{bottom:88.077169pt;}
.ye3{bottom:89.152000pt;}
.y41{bottom:89.952000pt;}
.y116{bottom:94.259684pt;}
.y9c{bottom:94.327202pt;}
.y68{bottom:95.804494pt;}
.y117{bottom:97.506520pt;}
.y118{bottom:100.604542pt;}
.yc1{bottom:101.321877pt;}
.y84{bottom:101.961113pt;}
.y7d{bottom:103.072000pt;}
.y7e{bottom:103.161333pt;}
.y9b{bottom:104.147464pt;}
.yb7{bottom:104.672000pt;}
.y24{bottom:104.992000pt;}
.yd6{bottom:105.029227pt;}
.y8c{bottom:109.697392pt;}
.y8d{bottom:110.123924pt;}
.yf3{bottom:110.272000pt;}
.y9a{bottom:110.550455pt;}
.y96{bottom:111.830050pt;}
.yd4{bottom:112.026813pt;}
.y8e{bottom:112.256582pt;}
.y8f{bottom:113.104627pt;}
.yd1{bottom:115.033624pt;}
.yc2{bottom:115.995242pt;}
.y123{bottom:116.845482pt;}
.yd5{bottom:118.361879pt;}
.y90{bottom:118.654555pt;}
.y98{bottom:119.934150pt;}
.y99{bottom:120.360681pt;}
.y91{bottom:121.213744pt;}
.ye2{bottom:121.472000pt;}
.y109{bottom:121.763084pt;}
.y40{bottom:122.112000pt;}
.y92{bottom:122.488321pt;}
.y93{bottom:123.341384pt;}
.y69{bottom:123.741448pt;}
.y8b{bottom:124.875804pt;}
.y97{bottom:125.484078pt;}
.yd3{bottom:126.033743pt;}
.y85{bottom:127.994592pt;}
.y6d{bottom:130.749533pt;}
.yc3{bottom:130.997905pt;}
.y124{bottom:131.043622pt;}
.yd2{bottom:134.030982pt;}
.yca{bottom:135.359987pt;}
.y110{bottom:136.116802pt;}
.yb6{bottom:136.826667pt;}
.y23{bottom:137.146667pt;}
.yf2{bottom:142.426667pt;}
.ycb{bottom:142.702535pt;}
.ycc{bottom:143.368960pt;}
.ycd{bottom:144.697911pt;}
.y128{bottom:145.201176pt;}
.y125{bottom:145.248526pt;}
.yc4{bottom:145.992727pt;}
.y10d{bottom:147.379261pt;}
.yce{bottom:148.037931pt;}
.y10a{bottom:149.313834pt;}
.y11d{bottom:150.118778pt;}
.y6a{bottom:151.676911pt;}
.ye1{bottom:153.626667pt;}
.y86{bottom:154.028071pt;}
.y3f{bottom:154.426667pt;}
.y10f{bottom:159.960748pt;}
.yc5{bottom:160.995390pt;}
.y10c{bottom:167.732859pt;}
.y11e{bottom:168.733967pt;}
.yb5{bottom:168.986667pt;}
.y22{bottom:169.466667pt;}
.y10e{bottom:173.211894pt;}
.yf1{bottom:174.586667pt;}
.yd8{bottom:174.699301pt;}
.yc6{bottom:175.668756pt;}
.y6b{bottom:179.610883pt;}
.y87{bottom:180.046496pt;}
.y10b{bottom:180.706672pt;}
.yc8{bottom:183.332776pt;}
.ye0{bottom:185.786667pt;}
.y3e{bottom:186.586667pt;}
.yc7{bottom:190.663578pt;}
.y106{bottom:194.979218pt;}
.yb4{bottom:201.146667pt;}
.y21{bottom:201.626667pt;}
.y88{bottom:206.079975pt;}
.yf0{bottom:206.746667pt;}
.y6c{bottom:207.549327pt;}
.y127{bottom:207.608054pt;}
.y108{bottom:210.198758pt;}
.ydf{bottom:217.946667pt;}
.y3d{bottom:218.746667pt;}
.y107{bottom:219.283132pt;}
.y8a{bottom:219.312489pt;}
.y9f{bottom:223.621461pt;}
.y101{bottom:223.896344pt;}
.y63{bottom:226.586667pt;}
.y89{bottom:232.118472pt;}
.yb3{bottom:233.466667pt;}
.y20{bottom:233.786667pt;}
.y102{bottom:238.608566pt;}
.yef{bottom:239.066667pt;}
.y62{bottom:244.666667pt;}
.yde{bottom:250.106667pt;}
.y3c{bottom:250.906667pt;}
.y103{bottom:253.828106pt;}
.y105{bottom:254.335424pt;}
.yb2{bottom:265.626667pt;}
.y1f{bottom:265.946667pt;}
.y104{bottom:268.540328pt;}
.y61{bottom:269.946667pt;}
.yee{bottom:271.226667pt;}
.ydd{bottom:282.426667pt;}
.y3b{bottom:283.226667pt;}
.y5f{bottom:295.386667pt;}
.yb1{bottom:297.786667pt;}
.y1e{bottom:298.266667pt;}
.yed{bottom:303.426667pt;}
.y100{bottom:313.197840pt;}
.ydc{bottom:314.626667pt;}
.y3a{bottom:315.426667pt;}
.y5e{bottom:320.706667pt;}
.yb0{bottom:329.986667pt;}
.y1d{bottom:330.466667pt;}
.yff{bottom:335.012514pt;}
.yec{bottom:335.586667pt;}
.yfe{bottom:345.409151pt;}
.y5d{bottom:346.146667pt;}
.ydb{bottom:346.786667pt;}
.y39{bottom:347.586667pt;}
.y1c{bottom:355.106667pt;}
.yaf{bottom:362.306667pt;}
.y13e{bottom:362.626667pt;}
.yf6{bottom:362.664728pt;}
.yf9{bottom:366.980313pt;}
.yeb{bottom:367.906667pt;}
.y5c{bottom:371.426667pt;}
.y7c{bottom:373.826667pt;}
.yda{bottom:378.946667pt;}
.y38{bottom:379.746667pt;}
.yf8{bottom:382.707171pt;}
.y1b{bottom:387.266667pt;}
.yfd{bottom:393.354084pt;}
.yae{bottom:394.466667pt;}
.y13d{bottom:394.786667pt;}
.y5b{bottom:396.866667pt;}
.yf7{bottom:396.912075pt;}
.yea{bottom:400.066667pt;}
.yfa{bottom:404.521845pt;}
.y7b{bottom:405.986667pt;}
.yd9{bottom:407.106667pt;}
.y126{bottom:407.721330pt;}
.y37{bottom:412.066667pt;}
.y1a{bottom:419.586667pt;}
.yfb{bottom:420.708671pt;}
.y5a{bottom:422.146667pt;}
.yad{bottom:426.626667pt;}
.yfc{bottom:426.843837pt;}
.y13c{bottom:426.946667pt;}
.ye9{bottom:432.226667pt;}
.y7a{bottom:438.146667pt;}
.y36{bottom:444.226667pt;}
.y58{bottom:447.586667pt;}
.y19{bottom:451.746667pt;}
.yac{bottom:458.786667pt;}
.y13b{bottom:459.266667pt;}
.ye8{bottom:464.386667pt;}
.y79{bottom:470.466667pt;}
.y35{bottom:476.386667pt;}
.y18{bottom:483.906667pt;}
.yab{bottom:491.106667pt;}
.y13a{bottom:491.426667pt;}
.ye7{bottom:496.546667pt;}
.y78{bottom:502.626667pt;}
.y34{bottom:508.546667pt;}
.y57{bottom:512.386667pt;}
.y17{bottom:516.066667pt;}
.yaa{bottom:523.266667pt;}
.y139{bottom:523.586667pt;}
.ye6{bottom:528.866667pt;}
.y77{bottom:534.786667pt;}
.y33{bottom:540.733333pt;}
.y56{bottom:544.573333pt;}
.y16{bottom:548.253333pt;}
.ya9{bottom:555.453333pt;}
.y138{bottom:555.773333pt;}
.ye5{bottom:561.053333pt;}
.y76{bottom:566.973333pt;}
.y32{bottom:573.053333pt;}
.y55{bottom:576.733333pt;}
.y15{bottom:580.573333pt;}
.ya8{bottom:587.613333pt;}
.y137{bottom:588.093333pt;}
.ye4{bottom:589.213333pt;}
.yf5{bottom:590.080000pt;}
.y75{bottom:599.293333pt;}
.y31{bottom:605.213333pt;}
.y13f{bottom:605.373333pt;}
.y54{bottom:608.893333pt;}
.y14{bottom:612.733333pt;}
.ya7{bottom:619.933333pt;}
.y136{bottom:620.253333pt;}
.y52{bottom:626.973333pt;}
.y74{bottom:631.453333pt;}
.y30{bottom:637.373333pt;}
.y13{bottom:644.893333pt;}
.ya6{bottom:652.093333pt;}
.y135{bottom:652.413333pt;}
.y51{bottom:652.893333pt;}
.y73{bottom:663.613333pt;}
.y2f{bottom:669.533333pt;}
.y12{bottom:677.053333pt;}
.y4f{bottom:678.333333pt;}
.ya5{bottom:684.253333pt;}
.y134{bottom:684.573333pt;}
.y72{bottom:695.773333pt;}
.y2e{bottom:701.853333pt;}
.y4d{bottom:703.613333pt;}
.y11{bottom:709.373333pt;}
.ya4{bottom:716.413333pt;}
.y133{bottom:716.893333pt;}
.y71{bottom:728.093333pt;}
.y4b{bottom:729.053333pt;}
.y2d{bottom:734.013333pt;}
.y10{bottom:741.533333pt;}
.ya3{bottom:748.573333pt;}
.y132{bottom:749.053333pt;}
.y49{bottom:756.573333pt;}
.y70{bottom:760.253333pt;}
.y2c{bottom:766.173333pt;}
.yf{bottom:773.693333pt;}
.ya2{bottom:780.933333pt;}
.y131{bottom:781.253333pt;}
.y42{bottom:786.533333pt;}
.y64{bottom:788.413333pt;}
.y6f{bottom:788.453333pt;}
.y2b{bottom:798.373333pt;}
.ye{bottom:805.893333pt;}
.ya1{bottom:813.093333pt;}
.y130{bottom:813.413333pt;}
.y46{bottom:828.933333pt;}
.y2a{bottom:830.693333pt;}
.yd{bottom:838.213333pt;}
.ya0{bottom:841.253333pt;}
.yb9{bottom:841.280000pt;}
.y12f{bottom:845.573333pt;}
.yc9{bottom:858.243876pt;}
.y29{bottom:862.853333pt;}
.yc{bottom:870.373333pt;}
.y12e{bottom:877.893333pt;}
.y28{bottom:895.013333pt;}
.yb{bottom:902.533333pt;}
.y12d{bottom:910.053333pt;}
.y27{bottom:927.173333pt;}
.ya{bottom:934.693333pt;}
.y12c{bottom:942.213333pt;}
.y26{bottom:959.493333pt;}
.y9{bottom:966.853333pt;}
.y12b{bottom:974.373333pt;}
.y8{bottom:991.653333pt;}
.y12a{bottom:999.173333pt;}
.y7{bottom:1023.840000pt;}
.y3{bottom:1045.440000pt;}
.y1{bottom:1066.880000pt;}
.h20{height:11.035249pt;}
.h1c{height:14.125521pt;}
.h2{height:19.680000pt;}
.h18{height:21.475303pt;}
.h22{height:24.618022pt;}
.h13{height:24.640000pt;}
.h16{height:24.672000pt;}
.h12{height:24.800000pt;}
.h6{height:25.280000pt;}
.h25{height:25.319721pt;}
.h1e{height:25.972979pt;}
.h1a{height:26.141650pt;}
.h11{height:26.880000pt;}
.h2b{height:28.049682pt;}
.h10{height:29.152000pt;}
.h2a{height:30.846805pt;}
.h19{height:33.607455pt;}
.h24{height:33.781640pt;}
.h26{height:35.810912pt;}
.h28{height:36.406165pt;}
.h27{height:37.840184pt;}
.hf{height:41.760000pt;}
.h4{height:43.343750pt;}
.h3{height:47.125000pt;}
.h15{height:49.280000pt;}
.he{height:50.720000pt;}
.h29{height:54.128474pt;}
.h5{height:58.563750pt;}
.h14{height:64.752187pt;}
.hb{height:65.995312pt;}
.h9{height:73.454062pt;}
.ha{height:73.490625pt;}
.hc{height:73.989375pt;}
.h8{height:75.465000pt;}
.h2c{height:77.951250pt;}
.hd{height:93.120000pt;}
.h7{height:96.750000pt;}
.h21{height:178.044474pt;}
.h1f{height:200.000000pt;}
.h1d{height:227.903336pt;}
.h17{height:252.796342pt;}
.h1b{height:256.000000pt;}
.h23{height:451.195101pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:62.400000pt;}
.we{width:89.760000pt;}
.wd{width:89.952000pt;}
.wc{width:90.080000pt;}
.w5{width:90.720000pt;}
.w6{width:143.546667pt;}
.wa{width:162.266667pt;}
.w9{width:186.266667pt;}
.wb{width:187.706667pt;}
.w8{width:190.746667pt;}
.w7{width:377.666667pt;}
.wf{width:511.867891pt;}
.w13{width:550.611983pt;}
.w14{width:572.797917pt;}
.w11{width:580.917237pt;}
.w12{width:595.983241pt;}
.w10{width:628.785695pt;}
.w3{width:712.960000pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x3{left:-1.600000pt;}
.x0{left:0.000000pt;}
.x18{left:6.720000pt;}
.x1{left:7.680000pt;}
.x2a{left:9.442668pt;}
.x2b{left:11.797336pt;}
.x29{left:14.152937pt;}
.x6a{left:29.946780pt;}
.x7{left:33.413333pt;}
.x23{left:34.737934pt;}
.x2d{left:45.643896pt;}
.x6b{left:58.179727pt;}
.x6c{left:59.388948pt;}
.x4{left:66.079988pt;}
.x2{left:70.080000pt;}
.x22{left:71.440889pt;}
.x72{left:73.363569pt;}
.x5{left:75.519988pt;}
.x21{left:77.179428pt;}
.x43{left:80.504265pt;}
.x13{left:81.951988pt;}
.x1b{left:85.792000pt;}
.x20{left:88.658620pt;}
.x6d{left:100.443108pt;}
.x6f{left:101.765109pt;}
.x51{left:110.633333pt;}
.x9{left:111.551988pt;}
.x15{left:113.311988pt;}
.x2c{left:118.577455pt;}
.x6e{left:121.421901pt;}
.x17{left:136.026667pt;}
.x1f{left:140.880000pt;}
.xa{left:153.146655pt;}
.x12{left:155.386655pt;}
.x70{left:173.464837pt;}
.xc{left:183.706655pt;}
.x2e{left:184.768775pt;}
.x2f{left:194.973579pt;}
.x44{left:198.217689pt;}
.x5d{left:203.497665pt;}
.x53{left:207.892708pt;}
.x30{left:209.127438pt;}
.x56{left:220.798799pt;}
.x31{left:224.065574pt;}
.xf{left:227.706655pt;}
.x54{left:230.577199pt;}
.xd{left:235.226655pt;}
.x58{left:236.262856pt;}
.x5b{left:237.576721pt;}
.x71{left:244.552988pt;}
.xb{left:248.226655pt;}
.x24{left:252.231287pt;}
.x5a{left:259.400806pt;}
.x11{left:261.986655pt;}
.x55{left:267.272356pt;}
.xe{left:270.786655pt;}
.x14{left:272.066655pt;}
.x10{left:278.946655pt;}
.x19{left:280.226667pt;}
.x59{left:283.864243pt;}
.x45{left:290.613107pt;}
.x5c{left:291.538137pt;}
.x32{left:306.608228pt;}
.x46{left:312.957668pt;}
.x68{left:323.594080pt;}
.x33{left:329.398342pt;}
.x16{left:334.146655pt;}
.x47{left:339.019035pt;}
.x73{left:361.254288pt;}
.x64{left:370.335061pt;}
.x67{left:373.823192pt;}
.x57{left:378.625183pt;}
.x69{left:386.508369pt;}
.x5f{left:388.159417pt;}
.x65{left:391.728942pt;}
.x63{left:393.228840pt;}
.x66{left:395.135684pt;}
.x8{left:396.866655pt;}
.x5e{left:407.367402pt;}
.x48{left:415.760149pt;}
.x62{left:426.656777pt;}
.x60{left:434.981786pt;}
.x1c{left:437.053333pt;}
.x34{left:439.436765pt;}
.x35{left:460.649099pt;}
.x40{left:463.001920pt;}
.x52{left:469.909619pt;}
.x1a{left:471.613333pt;}
.x61{left:479.153175pt;}
.x36{left:485.035442pt;}
.x37{left:495.240246pt;}
.x49{left:502.182435pt;}
.x38{left:505.463503pt;}
.x4a{left:512.624473pt;}
.x39{left:514.884032pt;}
.x4b{left:522.296914pt;}
.x3a{left:524.323015pt;}
.x1d{left:527.773333pt;}
.x4c{left:531.986845pt;}
.x3b{left:533.771224pt;}
.x4d{left:541.685523pt;}
.x3c{left:543.191753pt;}
.x4e{left:550.614602pt;}
.x3d{left:552.630736pt;}
.x41{left:558.028095pt;}
.x3e{left:562.051265pt;}
.x42{left:569.187258pt;}
.x3f{left:571.499474pt;}
.x27{left:588.741527pt;}
.x28{left:600.514882pt;}
.x1e{left:618.373333pt;}
.x25{left:652.773322pt;}
.x6{left:655.840000pt;}
.x50{left:683.493322pt;}
.x4f{left:686.853322pt;}
.x26{left:711.333322pt;}
}




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