
    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_1104ccf88c4f1b9c26865d5f.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.202148;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_8be9eab7a2c83401bbc8968e.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.172852;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_00942d008178a8dbffe5904f.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.202148;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_c6854826ce1c4ec9261e2c6c.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.051270;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_59c7c6fb77798c65a05b50c8.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.739746;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_18222a3f5bf25748ab9ee3b3.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.730957;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_cda39cad93072cc90b50ee1c.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.958008;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_16ef5f6ba851cce8336b395d.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.958008;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_ac42fc185a433b4158a20636.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.172852;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_2fe00a8919213d1479df7444.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.053223;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3{vertical-align:-116.040000px;}
.v2{vertical-align:-74.640000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:32.400000px;}
.v4{vertical-align:50.400000px;}
.v5{vertical-align:57.600000px;}
.v6{vertical-align:86.520000px;}
.ls42{letter-spacing:-0.357600px;}
.ls4a{letter-spacing:-0.288000px;}
.ls14{letter-spacing:-0.250800px;}
.ls15{letter-spacing:-0.223800px;}
.ls13{letter-spacing:-0.216000px;}
.ls2a{letter-spacing:-0.178800px;}
.ls7{letter-spacing:-0.144000px;}
.ls49{letter-spacing:-0.136200px;}
.ls47{letter-spacing:-0.132600px;}
.ls20{letter-spacing:-0.121800px;}
.ls44{letter-spacing:-0.120000px;}
.lsf{letter-spacing:-0.114600px;}
.ls48{letter-spacing:-0.113400px;}
.ls36{letter-spacing:-0.112200px;}
.ls3a{letter-spacing:-0.108600px;}
.ls2f{letter-spacing:-0.106800px;}
.ls1{letter-spacing:-0.102600px;}
.ls23{letter-spacing:-0.083400px;}
.ls29{letter-spacing:-0.072600px;}
.ls12{letter-spacing:-0.072000px;}
.ls41{letter-spacing:-0.067200px;}
.ls38{letter-spacing:-0.064800px;}
.ls2b{letter-spacing:-0.064200px;}
.ls37{letter-spacing:-0.063600px;}
.ls3c{letter-spacing:-0.063000px;}
.ls45{letter-spacing:-0.061800px;}
.ls1f{letter-spacing:-0.060600px;}
.ls39{letter-spacing:-0.058560px;}
.ls1b{letter-spacing:-0.041640px;}
.ls3e{letter-spacing:-0.040200px;}
.ls22{letter-spacing:-0.037440px;}
.ls2{letter-spacing:-0.036000px;}
.ls1c{letter-spacing:-0.032040px;}
.ls3d{letter-spacing:-0.027600px;}
.ls16{letter-spacing:-0.016920px;}
.ls40{letter-spacing:-0.015840px;}
.ls3f{letter-spacing:-0.012840px;}
.ls32{letter-spacing:-0.002520px;}
.ls1a{letter-spacing:-0.000023px;}
.ls21{letter-spacing:-0.000011px;}
.ls35{letter-spacing:-0.000003px;}
.ls0{letter-spacing:0.000000px;}
.ls28{letter-spacing:0.000011px;}
.ls30{letter-spacing:0.000023px;}
.ls43{letter-spacing:0.002520px;}
.ls3b{letter-spacing:0.011160px;}
.ls10{letter-spacing:0.025560px;}
.ls33{letter-spacing:0.029880px;}
.ls4d{letter-spacing:0.030240px;}
.lsa{letter-spacing:0.035280px;}
.ls1e{letter-spacing:0.036720px;}
.ls31{letter-spacing:0.045120px;}
.ls4c{letter-spacing:0.059760px;}
.ls1d{letter-spacing:0.060600px;}
.ls4e{letter-spacing:0.060840px;}
.ls51{letter-spacing:0.063000px;}
.ls6{letter-spacing:0.064200px;}
.ls50{letter-spacing:0.069600px;}
.ls5{letter-spacing:0.072000px;}
.ls4f{letter-spacing:0.073800px;}
.lsb{letter-spacing:0.077400px;}
.ls9{letter-spacing:0.079800px;}
.lsc{letter-spacing:0.083400px;}
.ls11{letter-spacing:0.103800px;}
.lse{letter-spacing:0.119400px;}
.lsd{letter-spacing:0.120000px;}
.ls8{letter-spacing:0.216000px;}
.ls34{letter-spacing:0.228600px;}
.ls4b{letter-spacing:0.262200px;}
.ls2d{letter-spacing:0.276600px;}
.ls19{letter-spacing:0.312600px;}
.ls2c{letter-spacing:30.780000px;}
.ls3{letter-spacing:32.328000px;}
.ls4{letter-spacing:32.688000px;}
.ls2e{letter-spacing:43.763760px;}
.ls46{letter-spacing:53.520480px;}
.ls25{letter-spacing:85.956000px;}
.ls24{letter-spacing:85.998000px;}
.ls26{letter-spacing:94.398000px;}
.ls27{letter-spacing:94.440000px;}
.ls18{letter-spacing:194.358000px;}
.ls17{letter-spacing:194.400000px;}
.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;}
}
.ws54{word-spacing:-81.360000px;}
.ws6a{word-spacing:-71.759520px;}
.ws2a{word-spacing:-65.088000px;}
.wse{word-spacing:-59.636880px;}
.ws58{word-spacing:-54.529320px;}
.ws20{word-spacing:-54.294240px;}
.ws1c{word-spacing:-54.267120px;}
.ws1a{word-spacing:-54.225480px;}
.ws47{word-spacing:-54.199920px;}
.ws2c{word-spacing:-54.194520px;}
.ws2d{word-spacing:-54.088320px;}
.ws27{word-spacing:-48.843120px;}
.ws6{word-spacing:-48.816000px;}
.ws2f{word-spacing:-43.641480px;}
.ws23{word-spacing:-43.392000px;}
.ws24{word-spacing:-43.364880px;}
.ws25{word-spacing:-43.281480px;}
.ws22{word-spacing:-43.248000px;}
.ws9{word-spacing:-38.078520px;}
.wsb{word-spacing:-38.074920px;}
.ws57{word-spacing:-38.022240px;}
.ws29{word-spacing:-37.995120px;}
.ws31{word-spacing:-32.571120px;}
.ws12{word-spacing:-32.544000px;}
.ws11{word-spacing:-32.472000px;}
.ws16{word-spacing:-32.299920px;}
.ws5f{word-spacing:-27.166680px;}
.ws63{word-spacing:-27.162480px;}
.ws5{word-spacing:-27.157080px;}
.ws21{word-spacing:-27.153480px;}
.ws30{word-spacing:-27.120000px;}
.ws4{word-spacing:-27.092880px;}
.ws1{word-spacing:-24.408000px;}
.ws8{word-spacing:-24.372000px;}
.ws56{word-spacing:-21.723120px;}
.ws18{word-spacing:-19.269480px;}
.ws17{word-spacing:-18.956880px;}
.ws3f{word-spacing:-16.344000px;}
.ws3d{word-spacing:-16.299120px;}
.ws38{word-spacing:-16.272000px;}
.ws3a{word-spacing:-16.271997px;}
.ws42{word-spacing:-16.271520px;}
.ws43{word-spacing:-16.258920px;}
.ws41{word-spacing:-16.236120px;}
.ws39{word-spacing:-16.128000px;}
.wsd{word-spacing:-13.706520px;}
.ws49{word-spacing:-13.589640px;}
.wsc{word-spacing:-13.587120px;}
.ws48{word-spacing:-13.229520px;}
.ws5c{word-spacing:-1.233840px;}
.ws5d{word-spacing:-1.112040px;}
.ws67{word-spacing:-0.991440px;}
.ws32{word-spacing:-0.702960px;}
.ws3{word-spacing:-0.528000px;}
.ws65{word-spacing:-0.513000px;}
.ws33{word-spacing:-0.397440px;}
.ws40{word-spacing:-0.378600px;}
.ws69{word-spacing:-0.301200px;}
.ws1d{word-spacing:-0.234000px;}
.ws60{word-spacing:-0.164040px;}
.ws1b{word-spacing:-0.073080px;}
.ws66{word-spacing:-0.043200px;}
.ws2{word-spacing:0.000000px;}
.ws13{word-spacing:0.093960px;}
.ws10{word-spacing:0.180360px;}
.wsf{word-spacing:0.184320px;}
.ws4e{word-spacing:0.350880px;}
.ws52{word-spacing:0.360000px;}
.ws4f{word-spacing:0.400680px;}
.ws15{word-spacing:0.408000px;}
.ws3c{word-spacing:0.424800px;}
.ws68{word-spacing:0.494760px;}
.ws5e{word-spacing:0.567720px;}
.ws64{word-spacing:0.573960px;}
.ws53{word-spacing:0.576000px;}
.ws61{word-spacing:0.636600px;}
.ws2b{word-spacing:0.648000px;}
.wsa{word-spacing:0.874080px;}
.ws50{word-spacing:0.912000px;}
.ws3e{word-spacing:0.916320px;}
.ws51{word-spacing:0.936000px;}
.ws55{word-spacing:1.080080px;}
.ws14{word-spacing:1.095000px;}
.ws26{word-spacing:1.115280px;}
.ws3b{word-spacing:1.377720px;}
.ws28{word-spacing:1.560046px;}
.ws34{word-spacing:1.626120px;}
.ws19{word-spacing:1.746120px;}
.ws44{word-spacing:1.800000px;}
.ws7{word-spacing:9.432000px;}
.ws35{word-spacing:12.859560px;}
.ws36{word-spacing:13.514760px;}
.ws37{word-spacing:14.031000px;}
.ws45{word-spacing:14.796000px;}
.ws46{word-spacing:15.156000px;}
.ws4b{word-spacing:15.737400px;}
.ws4a{word-spacing:22.584000px;}
.ws5a{word-spacing:26.247960px;}
.ws59{word-spacing:27.463080px;}
.ws62{word-spacing:27.573960px;}
.ws5b{word-spacing:28.879320px;}
.ws0{word-spacing:64.440840px;}
.ws1e{word-spacing:111.061800px;}
.ws1f{word-spacing:111.125400px;}
.ws2e{word-spacing:111.181800px;}
.ws4c{word-spacing:135.336000px;}
.ws4d{word-spacing:135.397800px;}
._7{margin-left:-4.536000px;}
._6{margin-left:-3.502080px;}
._2{margin-left:-2.028960px;}
._0{margin-left:-1.015680px;}
._1{width:1.043760px;}
._3{width:2.700000px;}
._15{width:4.272120px;}
._13{width:28.151400px;}
._12{width:29.550120px;}
._11{width:49.908240px;}
._e{width:51.779280px;}
._f{width:53.118240px;}
._10{width:55.685280px;}
._4{width:438.898920px;}
._d{width:753.093840px;}
._8{width:868.495680px;}
._14{width:958.039560px;}
._c{width:998.359560px;}
._5{width:1038.679560px;}
._9{width:2906.592000px;}
._a{width:2940.228960px;}
._b{width:3828.343680px;}
.fc9{color:rgb(192,0,0);}
.fc5{color:rgb(255,0,0);}
.fc8{color:transparent;}
.fc4{color:rgb(144,144,133);}
.fc7{color:rgb(137,137,137);}
.fc6{color:rgb(255,255,255);}
.fc3{color:rgb(0,0,0);}
.fc1{color:rgb(64,64,64);}
.fc2{color:rgb(0,102,255);}
.fc0{color:rgb(7,82,154);}
.fsd{font-size:60.120000px;}
.fs9{font-size:72.000000px;}
.fs1e{font-size:72.120000px;}
.fs8{font-size:79.560000px;}
.fs1a{font-size:79.920000px;}
.fs15{font-size:83.880000px;}
.fs3{font-size:96.120000px;}
.fs4{font-size:108.000000px;}
.fs1b{font-size:111.960000px;}
.fs2{font-size:119.880000px;}
.fs1c{font-size:120.000000px;}
.fs1f{font-size:128.160000px;}
.fs13{font-size:142.920000px;}
.fs6{font-size:144.000000px;}
.fs7{font-size:144.120000px;}
.fsc{font-size:168.120000px;}
.fsb{font-size:168.240000px;}
.fs16{font-size:191.880000px;}
.fs17{font-size:192.000000px;}
.fs5{font-size:216.000000px;}
.fs12{font-size:216.120000px;}
.fs11{font-size:240.120000px;}
.fs14{font-size:240.240000px;}
.fs0{font-size:253.800000px;}
.fs1{font-size:253.920000px;}
.fsf{font-size:263.880000px;}
.fs10{font-size:264.000000px;}
.fs18{font-size:288.000000px;}
.fs20{font-size:288.120000px;}
.fs22{font-size:317.520000px;}
.fs19{font-size:324.000000px;}
.fsa{font-size:360.000000px;}
.fs1d{font-size:360.120000px;}
.fs21{font-size:381.000000px;}
.fse{font-size:396.000000px;}
.y0{bottom:0.000000px;}
.yc4{bottom:8.580000px;}
.ye1{bottom:12.300000px;}
.y9{bottom:21.840000px;}
.y13{bottom:27.060000px;}
.y7d{bottom:36.030000px;}
.y84{bottom:39.420000px;}
.yad{bottom:65.940000px;}
.ya8{bottom:66.750000px;}
.y6b{bottom:68.100000px;}
.y12{bottom:68.430000px;}
.y65{bottom:68.640000px;}
.y4a{bottom:68.820000px;}
.y9f{bottom:69.000000px;}
.y23{bottom:70.290000px;}
.y3c{bottom:70.620000px;}
.yf6{bottom:70.740000px;}
.y8{bottom:71.340000px;}
.y37{bottom:78.900000px;}
.ycd{bottom:80.640000px;}
.yfd{bottom:81.120000px;}
.y83{bottom:82.620000px;}
.ye2{bottom:82.770000px;}
.y74{bottom:83.850000px;}
.y7c{bottom:86.520000px;}
.y27{bottom:86.760000px;}
.y5b{bottom:87.240000px;}
.y42{bottom:89.130000px;}
.y64{bottom:89.220000px;}
.y3e{bottom:94.440000px;}
.y93{bottom:95.820000px;}
.y55{bottom:98.490000px;}
.yd2{bottom:102.210000px;}
.y7{bottom:102.840000px;}
.y6a{bottom:104.070000px;}
.y11{bottom:104.430000px;}
.y86{bottom:105.690000px;}
.yf3{bottom:106.740000px;}
.yfc{bottom:107.760000px;}
.y49{bottom:112.440000px;}
.yda{bottom:112.890000px;}
.y79{bottom:116.040000px;}
.y36{bottom:116.850000px;}
.ye7{bottom:118.470000px;}
.yb8{bottom:118.860000px;}
.y26{bottom:129.960000px;}
.y3b{bottom:130.470000px;}
.y8f{bottom:131.370000px;}
.y8c{bottom:136.950000px;}
.y73{bottom:141.840000px;}
.ycc{bottom:142.560000px;}
.yf2{bottom:142.740000px;}
.y22{bottom:145.890000px;}
.y85{bottom:148.860000px;}
.y2c{bottom:149.100000px;}
.y6{bottom:152.370000px;}
.y63{bottom:154.050000px;}
.y9b{bottom:154.500000px;}
.ya6{bottom:156.690000px;}
.y90{bottom:156.900000px;}
.y69{bottom:157.650000px;}
.yd5{bottom:159.270000px;}
.ye0{bottom:159.690000px;}
.yd1{bottom:159.810000px;}
.y41{bottom:161.130000px;}
.yc2{bottom:163.380000px;}
.ybf{bottom:166.440000px;}
.y5c{bottom:166.470000px;}
.ybc{bottom:166.500000px;}
.ye6{bottom:168.900000px;}
.y10{bottom:170.850000px;}
.y25{bottom:173.160000px;}
.yf1{bottom:178.740000px;}
.y35{bottom:181.680000px;}
.y48{bottom:184.470000px;}
.y91{bottom:186.330000px;}
.y5a{bottom:188.070000px;}
.y54{bottom:188.520000px;}
.y71{bottom:189.780000px;}
.y5{bottom:191.070000px;}
.y8e{bottom:192.120000px;}
.yfe{bottom:194.460000px;}
.yaa{bottom:196.950000px;}
.yd9{bottom:198.870000px;}
.y3a{bottom:202.470000px;}
.y9a{bottom:204.900000px;}
.yf{bottom:214.080000px;}
.ya5{bottom:214.290000px;}
.yf0{bottom:214.740000px;}
.y24{bottom:216.360000px;}
.y62{bottom:218.850000px;}
.y21{bottom:221.490000px;}
.y68{bottom:222.450000px;}
.yd0{bottom:223.740000px;}
.ydf{bottom:224.490000px;}
.yb7{bottom:226.860000px;}
.yab{bottom:229.890000px;}
.y78{bottom:231.270000px;}
.y40{bottom:233.130000px;}
.yfb{bottom:237.360000px;}
.y92{bottom:238.470000px;}
.y1a{bottom:241.620000px;}
.y8b{bottom:244.050000px;}
.y53{bottom:246.120000px;}
.y34{bottom:246.480000px;}
.yb3{bottom:247.770000px;}
.ycb{bottom:248.130000px;}
.y8d{bottom:249.720000px;}
.yf5{bottom:250.740000px;}
.y70{bottom:254.580000px;}
.y9e{bottom:255.300000px;}
.y47{bottom:256.470000px;}
.ye{bottom:257.280000px;}
.yac{bottom:259.320000px;}
.ye5{bottom:269.700000px;}
.yd8{bottom:270.870000px;}
.ya9{bottom:271.920000px;}
.y39{bottom:274.470000px;}
.y61{bottom:283.650000px;}
.yef{bottom:286.770000px;}
.y4{bottom:287.040000px;}
.y67{bottom:287.250000px;}
.y59{bottom:288.870000px;}
.yc6{bottom:292.020000px;}
.y4e{bottom:292.470000px;}
.y20{bottom:297.120000px;}
.yd4{bottom:300.120000px;}
.yc3{bottom:302.340000px;}
.y77{bottom:303.270000px;}
.ybb{bottom:303.330000px;}
.y99{bottom:305.700000px;}
.y8a{bottom:308.850000px;}
.y3d{bottom:310.470000px;}
.y33{bottom:311.280000px;}
.yb2{bottom:312.570000px;}
.y95{bottom:312.840000px;}
.y2b{bottom:319.290000px;}
.ye4{bottom:320.100000px;}
.yca{bottom:320.160000px;}
.yee{bottom:322.770000px;}
.y6f{bottom:326.580000px;}
.y46{bottom:328.470000px;}
.yd{bottom:329.280000px;}
.ya4{bottom:329.520000px;}
.yde{bottom:332.490000px;}
.yfa{bottom:334.560000px;}
.yb6{bottom:334.860000px;}
.y52{bottom:336.120000px;}
.y3f{bottom:341.130000px;}
.yd7{bottom:342.870000px;}
.y38{bottom:346.470000px;}
.y60{bottom:348.450000px;}
.y19{bottom:349.620000px;}
.y66{bottom:352.050000px;}
.y98{bottom:356.100000px;}
.yed{bottom:358.770000px;}
.y58{bottom:360.870000px;}
.y3{bottom:363.210000px;}
.y4d{bottom:364.470000px;}
.ye3{bottom:370.500000px;}
.y28{bottom:372.240000px;}
.y1f{bottom:372.720000px;}
.y89{bottom:373.650000px;}
.y76{bottom:375.270000px;}
.y32{bottom:376.080000px;}
.yc{bottom:377.160000px;}
.yb1{bottom:377.370000px;}
.y6d{bottom:378.420000px;}
.y7b{bottom:382.470000px;}
.ya3{bottom:387.120000px;}
.yec{bottom:394.770000px;}
.ydd{bottom:397.320000px;}
.y45{bottom:400.470000px;}
.y97{bottom:406.500000px;}
.y5f{bottom:413.250000px;}
.y43{bottom:418.470000px;}
.y6e{bottom:423.780000px;}
.y51{bottom:426.120000px;}
.ycf{bottom:429.840000px;}
.yf4{bottom:430.770000px;}
.y94{bottom:431.640000px;}
.yf9{bottom:431.790000px;}
.yd6{bottom:435.300000px;}
.y88{bottom:438.450000px;}
.y2{bottom:439.440000px;}
.ybe{bottom:440.070000px;}
.yba{bottom:440.130000px;}
.y31{bottom:440.880000px;}
.yc1{bottom:441.270000px;}
.yb{bottom:441.960000px;}
.yb0{bottom:442.170000px;}
.yb5{bottom:442.890000px;}
.ya2{bottom:444.720000px;}
.y75{bottom:447.270000px;}
.y1e{bottom:448.320000px;}
.y4c{bottom:454.470000px;}
.y96{bottom:456.900000px;}
.y18{bottom:457.620000px;}
.y57{bottom:461.670000px;}
.yc9{bottom:464.160000px;}
.y6c{bottom:464.820000px;}
.yeb{bottom:466.770000px;}
.y2a{bottom:477.720000px;}
.y5e{bottom:478.080000px;}
.y50{bottom:483.750000px;}
.y44{bottom:490.500000px;}
.yce{bottom:493.740000px;}
.yd3{bottom:501.750000px;}
.ya1{bottom:502.320000px;}
.yea{bottom:502.770000px;}
.y87{bottom:503.280000px;}
.ydc{bottom:505.320000px;}
.y30{bottom:505.710000px;}
.yaf{bottom:506.970000px;}
.y1{bottom:515.670000px;}
.y7a{bottom:518.580000px;}
.y1d{bottom:523.920000px;}
.y4b{bottom:526.500000px;}
.y9d{bottom:528.750000px;}
.yf8{bottom:528.990000px;}
.y82{bottom:535.350000px;}
.yc8{bottom:536.160000px;}
.ye9{bottom:538.770000px;}
.yb4{bottom:550.890000px;}
.y29{bottom:556.920000px;}
.ya0{bottom:559.920000px;}
.y56{bottom:562.500000px;}
.y72{bottom:567.570000px;}
.y5d{bottom:568.080000px;}
.ydb{bottom:570.120000px;}
.y2f{bottom:570.510000px;}
.yae{bottom:571.800000px;}
.y4f{bottom:573.750000px;}
.ye8{bottom:574.770000px;}
.ybd{bottom:576.870000px;}
.yb9{bottom:576.930000px;}
.y15{bottom:578.520000px;}
.yc0{bottom:580.230000px;}
.y1c{bottom:599.550000px;}
.y9c{bottom:600.750000px;}
.y81{bottom:607.380000px;}
.yc7{bottom:608.160000px;}
.y2e{bottom:635.310000px;}
.y14{bottom:643.320000px;}
.yf7{bottom:671.070000px;}
.y17{bottom:673.650000px;}
.y80{bottom:679.380000px;}
.y1b{bottom:693.660000px;}
.yc5{bottom:693.690000px;}
.ya7{bottom:693.870000px;}
.y2d{bottom:701.730000px;}
.y16{bottom:726.210000px;}
.y7e{bottom:729.030000px;}
.y7f{bottom:748.230000px;}
.ya{bottom:757.710000px;}
.h1b{height:57.442500px;}
.h16{height:59.797090px;}
.h28{height:61.558418px;}
.h1f{height:71.613281px;}
.h21{height:71.732637px;}
.h9{height:79.132676px;}
.h15{height:83.429473px;}
.h1c{height:83.970000px;}
.h4{height:95.603730px;}
.h23{height:98.419746px;}
.h25{height:104.836465px;}
.h5{height:110.583984px;}
.h24{height:119.236113px;}
.h3{height:122.748223px;}
.h1e{height:122.871094px;}
.h13{height:142.152363px;}
.h7{height:147.445312px;}
.h8{height:147.568184px;}
.h10{height:148.045312px;}
.hc{height:172.142402px;}
.hb{height:172.265273px;}
.h1d{height:190.849395px;}
.h17{height:196.470879px;}
.h18{height:196.593750px;}
.h6{height:221.167969px;}
.h12{height:221.290840px;}
.h11{height:245.865059px;}
.h14{height:245.987930px;}
.h1{height:259.872363px;}
.h2{height:259.995234px;}
.he{height:270.193535px;}
.hf{height:270.316406px;}
.h19{height:294.890625px;}
.h22{height:295.013496px;}
.h27{height:325.116914px;}
.h1a{height:331.751953px;}
.ha{height:368.613281px;}
.h20{height:368.736152px;}
.h26{height:390.115723px;}
.hd{height:405.474609px;}
.h0{height:810.000000px;}
.w1{width:1439.999979px;}
.w0{width:1440.000000px;}
.x0{left:0.000000px;}
.x9a{left:8.579979px;}
.xc8{left:9.839979px;}
.x10{left:20.069979px;}
.xb1{left:32.249979px;}
.x19{left:33.569979px;}
.x6e{left:34.589979px;}
.x98{left:38.729979px;}
.xc{left:44.999979px;}
.x17{left:49.259979px;}
.x79{left:53.009979px;}
.xb0{left:58.619979px;}
.xae{left:64.199979px;}
.x81{left:70.739979px;}
.x94{left:76.319979px;}
.x95{left:81.089979px;}
.xf{left:84.059979px;}
.x7c{left:90.629979px;}
.x16{left:96.929979px;}
.x8e{left:99.089979px;}
.x8f{left:102.179979px;}
.x49{left:112.439979px;}
.x51{left:117.719979px;}
.x1e{left:119.729979px;}
.x70{left:121.349979px;}
.x7b{left:132.389979px;}
.x5f{left:134.159979px;}
.xc1{left:135.269979px;}
.x3a{left:137.009979px;}
.x43{left:140.129979px;}
.xb4{left:142.439979px;}
.x54{left:143.729979px;}
.xa5{left:146.339979px;}
.x67{left:148.979979px;}
.x1f{left:150.509979px;}
.x80{left:153.269979px;}
.x8d{left:158.069979px;}
.xb7{left:160.469979px;}
.x24{left:163.169979px;}
.xc6{left:164.999979px;}
.x4c{left:167.159979px;}
.xa6{left:168.569979px;}
.x29{left:170.639979px;}
.x60{left:173.399979px;}
.x52{left:174.509979px;}
.x8c{left:181.829979px;}
.x73{left:182.879979px;}
.x42{left:184.049979px;}
.xbd{left:186.119979px;}
.xb6{left:187.649979px;}
.x22{left:189.269979px;}
.xa7{left:192.629979px;}
.x1{left:195.599979px;}
.x2{left:198.329979px;}
.x36{left:200.609979px;}
.x82{left:203.399979px;}
.xb2{left:208.439979px;}
.x4b{left:209.459979px;}
.x71{left:212.849979px;}
.xb5{left:214.289979px;}
.x40{left:216.719979px;}
.xa8{left:219.359979px;}
.x53{left:227.159979px;}
.x2e{left:230.849979px;}
.x11{left:232.649979px;}
.xb9{left:237.869979px;}
.x1b{left:239.159979px;}
.x23{left:241.289979px;}
.x12{left:243.449979px;}
.x27{left:247.319979px;}
.x4e{left:250.019979px;}
.xa1{left:255.299979px;}
.x2d{left:256.409979px;}
.x3{left:258.719979px;}
.x13{left:262.619979px;}
.xab{left:268.589979px;}
.x7{left:271.619979px;}
.xa3{left:272.639979px;}
.x74{left:280.559979px;}
.x3d{left:283.379979px;}
.xd{left:284.669979px;}
.xb3{left:285.809979px;}
.xc3{left:289.709979px;}
.x4{left:292.319979px;}
.xb8{left:296.579979px;}
.x38{left:299.699979px;}
.x5b{left:306.209979px;}
.x2c{left:312.749979px;}
.x26{left:314.369979px;}
.x15{left:316.049979px;}
.xa9{left:319.229979px;}
.x78{left:320.759979px;}
.xac{left:322.409979px;}
.x5{left:324.269979px;}
.xaa{left:328.529979px;}
.x7f{left:331.229979px;}
.x72{left:333.029979px;}
.x2b{left:334.139979px;}
.x35{left:335.279979px;}
.x1a{left:336.839979px;}
.x90{left:339.779979px;}
.x4d{left:341.759979px;}
.x9{left:346.409979px;}
.x7a{left:352.199979px;}
.x6{left:357.299979px;}
.x97{left:360.209979px;}
.x48{left:362.759979px;}
.x99{left:371.099979px;}
.x5c{left:374.309979px;}
.x37{left:375.599979px;}
.x62{left:377.849979px;}
.xc7{left:381.419979px;}
.xe{left:382.859979px;}
.x1c{left:383.909979px;}
.x34{left:387.479979px;}
.x18{left:390.569979px;}
.xb{left:395.099979px;}
.x77{left:397.529979px;}
.x75{left:399.299979px;}
.xbe{left:401.189979px;}
.x7d{left:403.049979px;}
.x28{left:410.969979px;}
.xc2{left:413.069979px;}
.xc4{left:416.489979px;}
.x7e{left:420.599979px;}
.x4f{left:427.439979px;}
.x3f{left:433.469979px;}
.xbb{left:435.119979px;}
.x20{left:436.499979px;}
.x61{left:437.999979px;}
.x6f{left:443.609979px;}
.x41{left:448.229979px;}
.x3e{left:450.779979px;}
.x2a{left:454.259979px;}
.x3b{left:455.849979px;}
.x76{left:456.899979px;}
.x45{left:460.619979px;}
.xbc{left:463.469979px;}
.x83{left:466.409979px;}
.x63{left:467.759979px;}
.x14{left:470.669979px;}
.x4a{left:473.099979px;}
.x68{left:474.149979px;}
.x1d{left:475.259979px;}
.x50{left:479.669979px;}
.x96{left:482.819979px;}
.x6b{left:484.319979px;}
.x8{left:485.459979px;}
.x21{left:487.499979px;}
.xbf{left:488.969979px;}
.x33{left:491.639979px;}
.x66{left:498.359979px;}
.x65{left:500.969979px;}
.x64{left:503.489979px;}
.x25{left:507.779979px;}
.xc5{left:512.759979px;}
.x47{left:528.149979px;}
.x39{left:545.669979px;}
.x5d{left:548.399979px;}
.x6d{left:551.369979px;}
.xaf{left:554.189979px;}
.xa{left:555.839979px;}
.x3c{left:568.769979px;}
.xad{left:579.719979px;}
.x87{left:598.349979px;}
.x8a{left:611.219979px;}
.xc0{left:614.219979px;}
.x8b{left:617.969979px;}
.x59{left:627.239979px;}
.x5a{left:636.599979px;}
.x44{left:639.479979px;}
.x6c{left:641.999979px;}
.x69{left:647.129979px;}
.x93{left:653.039979px;}
.x88{left:657.299979px;}
.x91{left:658.529979px;}
.x84{left:667.949979px;}
.x92{left:676.079979px;}
.x86{left:679.709979px;}
.x89{left:690.599979px;}
.x85{left:693.749979px;}
.x46{left:712.289979px;}
.x6a{left:722.009979px;}
.xa4{left:783.839979px;}
.x30{left:792.959979px;}
.xba{left:800.849979px;}
.xa2{left:823.259979px;}
.x31{left:843.359979px;}
.x32{left:844.439979px;}
.x2f{left:891.539979px;}
.x9e{left:930.569979px;}
.x9b{left:958.559979px;}
.x9c{left:959.819979px;}
.x55{left:985.049979px;}
.x57{left:996.299979px;}
.x9d{left:1004.939979px;}
.x56{left:1008.899979px;}
.xa0{left:1013.849979px;}
.x58{left:1090.529979px;}
.x9f{left:1143.449979px;}
.x5e{left:1387.949979px;}
@media print{
.v3{vertical-align:-103.146667pt;}
.v2{vertical-align:-66.346667pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:28.800000pt;}
.v4{vertical-align:44.800000pt;}
.v5{vertical-align:51.200000pt;}
.v6{vertical-align:76.906667pt;}
.ls42{letter-spacing:-0.317867pt;}
.ls4a{letter-spacing:-0.256000pt;}
.ls14{letter-spacing:-0.222933pt;}
.ls15{letter-spacing:-0.198933pt;}
.ls13{letter-spacing:-0.192000pt;}
.ls2a{letter-spacing:-0.158933pt;}
.ls7{letter-spacing:-0.128000pt;}
.ls49{letter-spacing:-0.121067pt;}
.ls47{letter-spacing:-0.117867pt;}
.ls20{letter-spacing:-0.108267pt;}
.ls44{letter-spacing:-0.106667pt;}
.lsf{letter-spacing:-0.101867pt;}
.ls48{letter-spacing:-0.100800pt;}
.ls36{letter-spacing:-0.099733pt;}
.ls3a{letter-spacing:-0.096533pt;}
.ls2f{letter-spacing:-0.094933pt;}
.ls1{letter-spacing:-0.091200pt;}
.ls23{letter-spacing:-0.074133pt;}
.ls29{letter-spacing:-0.064533pt;}
.ls12{letter-spacing:-0.064000pt;}
.ls41{letter-spacing:-0.059733pt;}
.ls38{letter-spacing:-0.057600pt;}
.ls2b{letter-spacing:-0.057067pt;}
.ls37{letter-spacing:-0.056533pt;}
.ls3c{letter-spacing:-0.056000pt;}
.ls45{letter-spacing:-0.054933pt;}
.ls1f{letter-spacing:-0.053867pt;}
.ls39{letter-spacing:-0.052053pt;}
.ls1b{letter-spacing:-0.037013pt;}
.ls3e{letter-spacing:-0.035733pt;}
.ls22{letter-spacing:-0.033280pt;}
.ls2{letter-spacing:-0.032000pt;}
.ls1c{letter-spacing:-0.028480pt;}
.ls3d{letter-spacing:-0.024533pt;}
.ls16{letter-spacing:-0.015040pt;}
.ls40{letter-spacing:-0.014080pt;}
.ls3f{letter-spacing:-0.011413pt;}
.ls32{letter-spacing:-0.002240pt;}
.ls1a{letter-spacing:-0.000020pt;}
.ls21{letter-spacing:-0.000010pt;}
.ls35{letter-spacing:-0.000003pt;}
.ls0{letter-spacing:0.000000pt;}
.ls28{letter-spacing:0.000010pt;}
.ls30{letter-spacing:0.000020pt;}
.ls43{letter-spacing:0.002240pt;}
.ls3b{letter-spacing:0.009920pt;}
.ls10{letter-spacing:0.022720pt;}
.ls33{letter-spacing:0.026560pt;}
.ls4d{letter-spacing:0.026880pt;}
.lsa{letter-spacing:0.031360pt;}
.ls1e{letter-spacing:0.032640pt;}
.ls31{letter-spacing:0.040107pt;}
.ls4c{letter-spacing:0.053120pt;}
.ls1d{letter-spacing:0.053867pt;}
.ls4e{letter-spacing:0.054080pt;}
.ls51{letter-spacing:0.056000pt;}
.ls6{letter-spacing:0.057067pt;}
.ls50{letter-spacing:0.061867pt;}
.ls5{letter-spacing:0.064000pt;}
.ls4f{letter-spacing:0.065600pt;}
.lsb{letter-spacing:0.068800pt;}
.ls9{letter-spacing:0.070933pt;}
.lsc{letter-spacing:0.074133pt;}
.ls11{letter-spacing:0.092267pt;}
.lse{letter-spacing:0.106133pt;}
.lsd{letter-spacing:0.106667pt;}
.ls8{letter-spacing:0.192000pt;}
.ls34{letter-spacing:0.203200pt;}
.ls4b{letter-spacing:0.233067pt;}
.ls2d{letter-spacing:0.245867pt;}
.ls19{letter-spacing:0.277867pt;}
.ls2c{letter-spacing:27.360000pt;}
.ls3{letter-spacing:28.736000pt;}
.ls4{letter-spacing:29.056000pt;}
.ls2e{letter-spacing:38.901120pt;}
.ls46{letter-spacing:47.573760pt;}
.ls25{letter-spacing:76.405333pt;}
.ls24{letter-spacing:76.442667pt;}
.ls26{letter-spacing:83.909333pt;}
.ls27{letter-spacing:83.946667pt;}
.ls18{letter-spacing:172.762667pt;}
.ls17{letter-spacing:172.800000pt;}
.ws54{word-spacing:-72.320000pt;}
.ws6a{word-spacing:-63.786240pt;}
.ws2a{word-spacing:-57.856000pt;}
.wse{word-spacing:-53.010560pt;}
.ws58{word-spacing:-48.470507pt;}
.ws20{word-spacing:-48.261547pt;}
.ws1c{word-spacing:-48.237440pt;}
.ws1a{word-spacing:-48.200427pt;}
.ws47{word-spacing:-48.177707pt;}
.ws2c{word-spacing:-48.172907pt;}
.ws2d{word-spacing:-48.078507pt;}
.ws27{word-spacing:-43.416107pt;}
.ws6{word-spacing:-43.392000pt;}
.ws2f{word-spacing:-38.792427pt;}
.ws23{word-spacing:-38.570667pt;}
.ws24{word-spacing:-38.546560pt;}
.ws25{word-spacing:-38.472427pt;}
.ws22{word-spacing:-38.442667pt;}
.ws9{word-spacing:-33.847573pt;}
.wsb{word-spacing:-33.844373pt;}
.ws57{word-spacing:-33.797547pt;}
.ws29{word-spacing:-33.773440pt;}
.ws31{word-spacing:-28.952107pt;}
.ws12{word-spacing:-28.928000pt;}
.ws11{word-spacing:-28.864000pt;}
.ws16{word-spacing:-28.711040pt;}
.ws5f{word-spacing:-24.148160pt;}
.ws63{word-spacing:-24.144427pt;}
.ws5{word-spacing:-24.139627pt;}
.ws21{word-spacing:-24.136427pt;}
.ws30{word-spacing:-24.106667pt;}
.ws4{word-spacing:-24.082560pt;}
.ws1{word-spacing:-21.696000pt;}
.ws8{word-spacing:-21.664000pt;}
.ws56{word-spacing:-19.309440pt;}
.ws18{word-spacing:-17.128427pt;}
.ws17{word-spacing:-16.850560pt;}
.ws3f{word-spacing:-14.528000pt;}
.ws3d{word-spacing:-14.488107pt;}
.ws38{word-spacing:-14.464000pt;}
.ws3a{word-spacing:-14.463997pt;}
.ws42{word-spacing:-14.463573pt;}
.ws43{word-spacing:-14.452373pt;}
.ws41{word-spacing:-14.432107pt;}
.ws39{word-spacing:-14.336000pt;}
.wsd{word-spacing:-12.183573pt;}
.ws49{word-spacing:-12.079680pt;}
.wsc{word-spacing:-12.077440pt;}
.ws48{word-spacing:-11.759573pt;}
.ws5c{word-spacing:-1.096747pt;}
.ws5d{word-spacing:-0.988480pt;}
.ws67{word-spacing:-0.881280pt;}
.ws32{word-spacing:-0.624853pt;}
.ws3{word-spacing:-0.469333pt;}
.ws65{word-spacing:-0.456000pt;}
.ws33{word-spacing:-0.353280pt;}
.ws40{word-spacing:-0.336533pt;}
.ws69{word-spacing:-0.267733pt;}
.ws1d{word-spacing:-0.208000pt;}
.ws60{word-spacing:-0.145813pt;}
.ws1b{word-spacing:-0.064960pt;}
.ws66{word-spacing:-0.038400pt;}
.ws2{word-spacing:0.000000pt;}
.ws13{word-spacing:0.083520pt;}
.ws10{word-spacing:0.160320pt;}
.wsf{word-spacing:0.163840pt;}
.ws4e{word-spacing:0.311893pt;}
.ws52{word-spacing:0.320000pt;}
.ws4f{word-spacing:0.356160pt;}
.ws15{word-spacing:0.362667pt;}
.ws3c{word-spacing:0.377600pt;}
.ws68{word-spacing:0.439787pt;}
.ws5e{word-spacing:0.504640pt;}
.ws64{word-spacing:0.510187pt;}
.ws53{word-spacing:0.512000pt;}
.ws61{word-spacing:0.565867pt;}
.ws2b{word-spacing:0.576000pt;}
.wsa{word-spacing:0.776960pt;}
.ws50{word-spacing:0.810667pt;}
.ws3e{word-spacing:0.814507pt;}
.ws51{word-spacing:0.832000pt;}
.ws55{word-spacing:0.960071pt;}
.ws14{word-spacing:0.973333pt;}
.ws26{word-spacing:0.991360pt;}
.ws3b{word-spacing:1.224640pt;}
.ws28{word-spacing:1.386707pt;}
.ws34{word-spacing:1.445440pt;}
.ws19{word-spacing:1.552107pt;}
.ws44{word-spacing:1.600000pt;}
.ws7{word-spacing:8.384000pt;}
.ws35{word-spacing:11.430720pt;}
.ws36{word-spacing:12.013120pt;}
.ws37{word-spacing:12.472000pt;}
.ws45{word-spacing:13.152000pt;}
.ws46{word-spacing:13.472000pt;}
.ws4b{word-spacing:13.988800pt;}
.ws4a{word-spacing:20.074667pt;}
.ws5a{word-spacing:23.331520pt;}
.ws59{word-spacing:24.411627pt;}
.ws62{word-spacing:24.510187pt;}
.ws5b{word-spacing:25.670507pt;}
.ws0{word-spacing:57.280747pt;}
.ws1e{word-spacing:98.721600pt;}
.ws1f{word-spacing:98.778133pt;}
.ws2e{word-spacing:98.828267pt;}
.ws4c{word-spacing:120.298667pt;}
.ws4d{word-spacing:120.353600pt;}
._7{margin-left:-4.032000pt;}
._6{margin-left:-3.112960pt;}
._2{margin-left:-1.803520pt;}
._0{margin-left:-0.902827pt;}
._1{width:0.927787pt;}
._3{width:2.400000pt;}
._15{width:3.797440pt;}
._13{width:25.023467pt;}
._12{width:26.266773pt;}
._11{width:44.362880pt;}
._e{width:46.026027pt;}
._f{width:47.216213pt;}
._10{width:49.498027pt;}
._4{width:390.132373pt;}
._d{width:669.416747pt;}
._8{width:771.996160pt;}
._14{width:851.590720pt;}
._c{width:887.430720pt;}
._5{width:923.270720pt;}
._9{width:2583.637333pt;}
._a{width:2613.536853pt;}
._b{width:3402.972160pt;}
.fsd{font-size:53.440000pt;}
.fs9{font-size:64.000000pt;}
.fs1e{font-size:64.106667pt;}
.fs8{font-size:70.720000pt;}
.fs1a{font-size:71.040000pt;}
.fs15{font-size:74.560000pt;}
.fs3{font-size:85.440000pt;}
.fs4{font-size:96.000000pt;}
.fs1b{font-size:99.520000pt;}
.fs2{font-size:106.560000pt;}
.fs1c{font-size:106.666667pt;}
.fs1f{font-size:113.920000pt;}
.fs13{font-size:127.040000pt;}
.fs6{font-size:128.000000pt;}
.fs7{font-size:128.106667pt;}
.fsc{font-size:149.440000pt;}
.fsb{font-size:149.546667pt;}
.fs16{font-size:170.560000pt;}
.fs17{font-size:170.666667pt;}
.fs5{font-size:192.000000pt;}
.fs12{font-size:192.106667pt;}
.fs11{font-size:213.440000pt;}
.fs14{font-size:213.546667pt;}
.fs0{font-size:225.600000pt;}
.fs1{font-size:225.706667pt;}
.fsf{font-size:234.560000pt;}
.fs10{font-size:234.666667pt;}
.fs18{font-size:256.000000pt;}
.fs20{font-size:256.106667pt;}
.fs22{font-size:282.240000pt;}
.fs19{font-size:288.000000pt;}
.fsa{font-size:320.000000pt;}
.fs1d{font-size:320.106667pt;}
.fs21{font-size:338.666667pt;}
.fse{font-size:352.000000pt;}
.y0{bottom:0.000000pt;}
.yc4{bottom:7.626667pt;}
.ye1{bottom:10.933333pt;}
.y9{bottom:19.413333pt;}
.y13{bottom:24.053333pt;}
.y7d{bottom:32.026667pt;}
.y84{bottom:35.040000pt;}
.yad{bottom:58.613333pt;}
.ya8{bottom:59.333333pt;}
.y6b{bottom:60.533333pt;}
.y12{bottom:60.826667pt;}
.y65{bottom:61.013333pt;}
.y4a{bottom:61.173333pt;}
.y9f{bottom:61.333333pt;}
.y23{bottom:62.480000pt;}
.y3c{bottom:62.773333pt;}
.yf6{bottom:62.880000pt;}
.y8{bottom:63.413333pt;}
.y37{bottom:70.133333pt;}
.ycd{bottom:71.680000pt;}
.yfd{bottom:72.106667pt;}
.y83{bottom:73.440000pt;}
.ye2{bottom:73.573333pt;}
.y74{bottom:74.533333pt;}
.y7c{bottom:76.906667pt;}
.y27{bottom:77.120000pt;}
.y5b{bottom:77.546667pt;}
.y42{bottom:79.226667pt;}
.y64{bottom:79.306667pt;}
.y3e{bottom:83.946667pt;}
.y93{bottom:85.173333pt;}
.y55{bottom:87.546667pt;}
.yd2{bottom:90.853333pt;}
.y7{bottom:91.413333pt;}
.y6a{bottom:92.506667pt;}
.y11{bottom:92.826667pt;}
.y86{bottom:93.946667pt;}
.yf3{bottom:94.880000pt;}
.yfc{bottom:95.786667pt;}
.y49{bottom:99.946667pt;}
.yda{bottom:100.346667pt;}
.y79{bottom:103.146667pt;}
.y36{bottom:103.866667pt;}
.ye7{bottom:105.306667pt;}
.yb8{bottom:105.653333pt;}
.y26{bottom:115.520000pt;}
.y3b{bottom:115.973333pt;}
.y8f{bottom:116.773333pt;}
.y8c{bottom:121.733333pt;}
.y73{bottom:126.080000pt;}
.ycc{bottom:126.720000pt;}
.yf2{bottom:126.880000pt;}
.y22{bottom:129.680000pt;}
.y85{bottom:132.320000pt;}
.y2c{bottom:132.533333pt;}
.y6{bottom:135.440000pt;}
.y63{bottom:136.933333pt;}
.y9b{bottom:137.333333pt;}
.ya6{bottom:139.280000pt;}
.y90{bottom:139.466667pt;}
.y69{bottom:140.133333pt;}
.yd5{bottom:141.573333pt;}
.ye0{bottom:141.946667pt;}
.yd1{bottom:142.053333pt;}
.y41{bottom:143.226667pt;}
.yc2{bottom:145.226667pt;}
.ybf{bottom:147.946667pt;}
.y5c{bottom:147.973333pt;}
.ybc{bottom:148.000000pt;}
.ye6{bottom:150.133333pt;}
.y10{bottom:151.866667pt;}
.y25{bottom:153.920000pt;}
.yf1{bottom:158.880000pt;}
.y35{bottom:161.493333pt;}
.y48{bottom:163.973333pt;}
.y91{bottom:165.626667pt;}
.y5a{bottom:167.173333pt;}
.y54{bottom:167.573333pt;}
.y71{bottom:168.693333pt;}
.y5{bottom:169.840000pt;}
.y8e{bottom:170.773333pt;}
.yfe{bottom:172.853333pt;}
.yaa{bottom:175.066667pt;}
.yd9{bottom:176.773333pt;}
.y3a{bottom:179.973333pt;}
.y9a{bottom:182.133333pt;}
.yf{bottom:190.293333pt;}
.ya5{bottom:190.480000pt;}
.yf0{bottom:190.880000pt;}
.y24{bottom:192.320000pt;}
.y62{bottom:194.533333pt;}
.y21{bottom:196.880000pt;}
.y68{bottom:197.733333pt;}
.yd0{bottom:198.880000pt;}
.ydf{bottom:199.546667pt;}
.yb7{bottom:201.653333pt;}
.yab{bottom:204.346667pt;}
.y78{bottom:205.573333pt;}
.y40{bottom:207.226667pt;}
.yfb{bottom:210.986667pt;}
.y92{bottom:211.973333pt;}
.y1a{bottom:214.773333pt;}
.y8b{bottom:216.933333pt;}
.y53{bottom:218.773333pt;}
.y34{bottom:219.093333pt;}
.yb3{bottom:220.240000pt;}
.ycb{bottom:220.560000pt;}
.y8d{bottom:221.973333pt;}
.yf5{bottom:222.880000pt;}
.y70{bottom:226.293333pt;}
.y9e{bottom:226.933333pt;}
.y47{bottom:227.973333pt;}
.ye{bottom:228.693333pt;}
.yac{bottom:230.506667pt;}
.ye5{bottom:239.733333pt;}
.yd8{bottom:240.773333pt;}
.ya9{bottom:241.706667pt;}
.y39{bottom:243.973333pt;}
.y61{bottom:252.133333pt;}
.yef{bottom:254.906667pt;}
.y4{bottom:255.146667pt;}
.y67{bottom:255.333333pt;}
.y59{bottom:256.773333pt;}
.yc6{bottom:259.573333pt;}
.y4e{bottom:259.973333pt;}
.y20{bottom:264.106667pt;}
.yd4{bottom:266.773333pt;}
.yc3{bottom:268.746667pt;}
.y77{bottom:269.573333pt;}
.ybb{bottom:269.626667pt;}
.y99{bottom:271.733333pt;}
.y8a{bottom:274.533333pt;}
.y3d{bottom:275.973333pt;}
.y33{bottom:276.693333pt;}
.yb2{bottom:277.840000pt;}
.y95{bottom:278.080000pt;}
.y2b{bottom:283.813333pt;}
.ye4{bottom:284.533333pt;}
.yca{bottom:284.586667pt;}
.yee{bottom:286.906667pt;}
.y6f{bottom:290.293333pt;}
.y46{bottom:291.973333pt;}
.yd{bottom:292.693333pt;}
.ya4{bottom:292.906667pt;}
.yde{bottom:295.546667pt;}
.yfa{bottom:297.386667pt;}
.yb6{bottom:297.653333pt;}
.y52{bottom:298.773333pt;}
.y3f{bottom:303.226667pt;}
.yd7{bottom:304.773333pt;}
.y38{bottom:307.973333pt;}
.y60{bottom:309.733333pt;}
.y19{bottom:310.773333pt;}
.y66{bottom:312.933333pt;}
.y98{bottom:316.533333pt;}
.yed{bottom:318.906667pt;}
.y58{bottom:320.773333pt;}
.y3{bottom:322.853333pt;}
.y4d{bottom:323.973333pt;}
.ye3{bottom:329.333333pt;}
.y28{bottom:330.880000pt;}
.y1f{bottom:331.306667pt;}
.y89{bottom:332.133333pt;}
.y76{bottom:333.573333pt;}
.y32{bottom:334.293333pt;}
.yc{bottom:335.253333pt;}
.yb1{bottom:335.440000pt;}
.y6d{bottom:336.373333pt;}
.y7b{bottom:339.973333pt;}
.ya3{bottom:344.106667pt;}
.yec{bottom:350.906667pt;}
.ydd{bottom:353.173333pt;}
.y45{bottom:355.973333pt;}
.y97{bottom:361.333333pt;}
.y5f{bottom:367.333333pt;}
.y43{bottom:371.973333pt;}
.y6e{bottom:376.693333pt;}
.y51{bottom:378.773333pt;}
.ycf{bottom:382.080000pt;}
.yf4{bottom:382.906667pt;}
.y94{bottom:383.680000pt;}
.yf9{bottom:383.813333pt;}
.yd6{bottom:386.933333pt;}
.y88{bottom:389.733333pt;}
.y2{bottom:390.613333pt;}
.ybe{bottom:391.173333pt;}
.yba{bottom:391.226667pt;}
.y31{bottom:391.893333pt;}
.yc1{bottom:392.240000pt;}
.yb{bottom:392.853333pt;}
.yb0{bottom:393.040000pt;}
.yb5{bottom:393.680000pt;}
.ya2{bottom:395.306667pt;}
.y75{bottom:397.573333pt;}
.y1e{bottom:398.506667pt;}
.y4c{bottom:403.973333pt;}
.y96{bottom:406.133333pt;}
.y18{bottom:406.773333pt;}
.y57{bottom:410.373333pt;}
.yc9{bottom:412.586667pt;}
.y6c{bottom:413.173333pt;}
.yeb{bottom:414.906667pt;}
.y2a{bottom:424.640000pt;}
.y5e{bottom:424.960000pt;}
.y50{bottom:430.000000pt;}
.y44{bottom:436.000000pt;}
.yce{bottom:438.880000pt;}
.yd3{bottom:446.000000pt;}
.ya1{bottom:446.506667pt;}
.yea{bottom:446.906667pt;}
.y87{bottom:447.360000pt;}
.ydc{bottom:449.173333pt;}
.y30{bottom:449.520000pt;}
.yaf{bottom:450.640000pt;}
.y1{bottom:458.373333pt;}
.y7a{bottom:460.960000pt;}
.y1d{bottom:465.706667pt;}
.y4b{bottom:468.000000pt;}
.y9d{bottom:470.000000pt;}
.yf8{bottom:470.213333pt;}
.y82{bottom:475.866667pt;}
.yc8{bottom:476.586667pt;}
.ye9{bottom:478.906667pt;}
.yb4{bottom:489.680000pt;}
.y29{bottom:495.040000pt;}
.ya0{bottom:497.706667pt;}
.y56{bottom:500.000000pt;}
.y72{bottom:504.506667pt;}
.y5d{bottom:504.960000pt;}
.ydb{bottom:506.773333pt;}
.y2f{bottom:507.120000pt;}
.yae{bottom:508.266667pt;}
.y4f{bottom:510.000000pt;}
.ye8{bottom:510.906667pt;}
.ybd{bottom:512.773333pt;}
.yb9{bottom:512.826667pt;}
.y15{bottom:514.240000pt;}
.yc0{bottom:515.760000pt;}
.y1c{bottom:532.933333pt;}
.y9c{bottom:534.000000pt;}
.y81{bottom:539.893333pt;}
.yc7{bottom:540.586667pt;}
.y2e{bottom:564.720000pt;}
.y14{bottom:571.840000pt;}
.yf7{bottom:596.506667pt;}
.y17{bottom:598.800000pt;}
.y80{bottom:603.893333pt;}
.y1b{bottom:616.586667pt;}
.yc5{bottom:616.613333pt;}
.ya7{bottom:616.773333pt;}
.y2d{bottom:623.760000pt;}
.y16{bottom:645.520000pt;}
.y7e{bottom:648.026667pt;}
.y7f{bottom:665.093333pt;}
.ya{bottom:673.520000pt;}
.h1b{height:51.060000pt;}
.h16{height:53.152969pt;}
.h28{height:54.718594pt;}
.h1f{height:63.656250pt;}
.h21{height:63.762344pt;}
.h9{height:70.340156pt;}
.h15{height:74.159531pt;}
.h1c{height:74.640000pt;}
.h4{height:84.981094pt;}
.h23{height:87.484219pt;}
.h25{height:93.187969pt;}
.h5{height:98.296875pt;}
.h24{height:105.987656pt;}
.h3{height:109.109531pt;}
.h1e{height:109.218750pt;}
.h13{height:126.357656pt;}
.h7{height:131.062500pt;}
.h8{height:131.171719pt;}
.h10{height:131.595833pt;}
.hc{height:153.015469pt;}
.hb{height:153.124687pt;}
.h1d{height:169.643906pt;}
.h17{height:174.640781pt;}
.h18{height:174.750000pt;}
.h6{height:196.593750pt;}
.h12{height:196.702969pt;}
.h11{height:218.546719pt;}
.h14{height:218.655937pt;}
.h1{height:230.997656pt;}
.h2{height:231.106875pt;}
.he{height:240.172031pt;}
.hf{height:240.281250pt;}
.h19{height:262.125000pt;}
.h22{height:262.234219pt;}
.h27{height:288.992812pt;}
.h1a{height:294.890625pt;}
.ha{height:327.656250pt;}
.h20{height:327.765469pt;}
.h26{height:346.769531pt;}
.hd{height:360.421875pt;}
.h0{height:720.000000pt;}
.w1{width:1279.999981pt;}
.w0{width:1280.000000pt;}
.x0{left:0.000000pt;}
.x9a{left:7.626648pt;}
.xc8{left:8.746648pt;}
.x10{left:17.839981pt;}
.xb1{left:28.666648pt;}
.x19{left:29.839981pt;}
.x6e{left:30.746648pt;}
.x98{left:34.426648pt;}
.xc{left:39.999981pt;}
.x17{left:43.786648pt;}
.x79{left:47.119981pt;}
.xb0{left:52.106648pt;}
.xae{left:57.066648pt;}
.x81{left:62.879981pt;}
.x94{left:67.839981pt;}
.x95{left:72.079981pt;}
.xf{left:74.719981pt;}
.x7c{left:80.559981pt;}
.x16{left:86.159981pt;}
.x8e{left:88.079981pt;}
.x8f{left:90.826648pt;}
.x49{left:99.946648pt;}
.x51{left:104.639981pt;}
.x1e{left:106.426648pt;}
.x70{left:107.866648pt;}
.x7b{left:117.679981pt;}
.x5f{left:119.253314pt;}
.xc1{left:120.239981pt;}
.x3a{left:121.786648pt;}
.x43{left:124.559981pt;}
.xb4{left:126.613314pt;}
.x54{left:127.759981pt;}
.xa5{left:130.079981pt;}
.x67{left:132.426648pt;}
.x1f{left:133.786648pt;}
.x80{left:136.239981pt;}
.x8d{left:140.506648pt;}
.xb7{left:142.639981pt;}
.x24{left:145.039981pt;}
.xc6{left:146.666648pt;}
.x4c{left:148.586648pt;}
.xa6{left:149.839981pt;}
.x29{left:151.679981pt;}
.x60{left:154.133314pt;}
.x52{left:155.119981pt;}
.x8c{left:161.626648pt;}
.x73{left:162.559981pt;}
.x42{left:163.599981pt;}
.xbd{left:165.439981pt;}
.xb6{left:166.799981pt;}
.x22{left:168.239981pt;}
.xa7{left:171.226648pt;}
.x1{left:173.866648pt;}
.x2{left:176.293314pt;}
.x36{left:178.319981pt;}
.x82{left:180.799981pt;}
.xb2{left:185.279981pt;}
.x4b{left:186.186648pt;}
.x71{left:189.199981pt;}
.xb5{left:190.479981pt;}
.x40{left:192.639981pt;}
.xa8{left:194.986648pt;}
.x53{left:201.919981pt;}
.x2e{left:205.199981pt;}
.x11{left:206.799981pt;}
.xb9{left:211.439981pt;}
.x1b{left:212.586648pt;}
.x23{left:214.479981pt;}
.x12{left:216.399981pt;}
.x27{left:219.839981pt;}
.x4e{left:222.239981pt;}
.xa1{left:226.933314pt;}
.x2d{left:227.919981pt;}
.x3{left:229.973314pt;}
.x13{left:233.439981pt;}
.xab{left:238.746648pt;}
.x7{left:241.439981pt;}
.xa3{left:242.346648pt;}
.x74{left:249.386648pt;}
.x3d{left:251.893314pt;}
.xd{left:253.039981pt;}
.xb3{left:254.053314pt;}
.xc3{left:257.519981pt;}
.x4{left:259.839981pt;}
.xb8{left:263.626648pt;}
.x38{left:266.399981pt;}
.x5b{left:272.186648pt;}
.x2c{left:277.999981pt;}
.x26{left:279.439981pt;}
.x15{left:280.933314pt;}
.xa9{left:283.759981pt;}
.x78{left:285.119981pt;}
.xac{left:286.586648pt;}
.x5{left:288.239981pt;}
.xaa{left:292.026648pt;}
.x7f{left:294.426648pt;}
.x72{left:296.026648pt;}
.x2b{left:297.013314pt;}
.x35{left:298.026648pt;}
.x1a{left:299.413314pt;}
.x90{left:302.026648pt;}
.x4d{left:303.786648pt;}
.x9{left:307.919981pt;}
.x7a{left:313.066648pt;}
.x6{left:317.599981pt;}
.x97{left:320.186648pt;}
.x48{left:322.453314pt;}
.x99{left:329.866648pt;}
.x5c{left:332.719981pt;}
.x37{left:333.866648pt;}
.x62{left:335.866648pt;}
.xc7{left:339.039981pt;}
.xe{left:340.319981pt;}
.x1c{left:341.253314pt;}
.x34{left:344.426648pt;}
.x18{left:347.173314pt;}
.xb{left:351.199981pt;}
.x77{left:353.359981pt;}
.x75{left:354.933314pt;}
.xbe{left:356.613314pt;}
.x7d{left:358.266648pt;}
.x28{left:365.306648pt;}
.xc2{left:367.173314pt;}
.xc4{left:370.213314pt;}
.x7e{left:373.866648pt;}
.x4f{left:379.946648pt;}
.x3f{left:385.306648pt;}
.xbb{left:386.773314pt;}
.x20{left:387.999981pt;}
.x61{left:389.333314pt;}
.x6f{left:394.319981pt;}
.x41{left:398.426648pt;}
.x3e{left:400.693314pt;}
.x2a{left:403.786648pt;}
.x3b{left:405.199981pt;}
.x76{left:406.133314pt;}
.x45{left:409.439981pt;}
.xbc{left:411.973314pt;}
.x83{left:414.586648pt;}
.x63{left:415.786648pt;}
.x14{left:418.373314pt;}
.x4a{left:420.533314pt;}
.x68{left:421.466648pt;}
.x1d{left:422.453314pt;}
.x50{left:426.373314pt;}
.x96{left:429.173314pt;}
.x6b{left:430.506648pt;}
.x8{left:431.519981pt;}
.x21{left:433.333314pt;}
.xbf{left:434.639981pt;}
.x33{left:437.013314pt;}
.x66{left:442.986648pt;}
.x65{left:445.306648pt;}
.x64{left:447.546648pt;}
.x25{left:451.359981pt;}
.xc5{left:455.786648pt;}
.x47{left:469.466648pt;}
.x39{left:485.039981pt;}
.x5d{left:487.466648pt;}
.x6d{left:490.106648pt;}
.xaf{left:492.613314pt;}
.xa{left:494.079981pt;}
.x3c{left:505.573314pt;}
.xad{left:515.306648pt;}
.x87{left:531.866648pt;}
.x8a{left:543.306648pt;}
.xc0{left:545.973314pt;}
.x8b{left:549.306648pt;}
.x59{left:557.546648pt;}
.x5a{left:565.866648pt;}
.x44{left:568.426648pt;}
.x6c{left:570.666648pt;}
.x69{left:575.226648pt;}
.x93{left:580.479981pt;}
.x88{left:584.266648pt;}
.x91{left:585.359981pt;}
.x84{left:593.733314pt;}
.x92{left:600.959981pt;}
.x86{left:604.186648pt;}
.x89{left:613.866648pt;}
.x85{left:616.666648pt;}
.x46{left:633.146648pt;}
.x6a{left:641.786648pt;}
.xa4{left:696.746648pt;}
.x30{left:704.853314pt;}
.xba{left:711.866648pt;}
.xa2{left:731.786648pt;}
.x31{left:749.653314pt;}
.x32{left:750.613314pt;}
.x2f{left:792.479981pt;}
.x9e{left:827.173314pt;}
.x9b{left:852.053314pt;}
.x9c{left:853.173314pt;}
.x55{left:875.599981pt;}
.x57{left:885.599981pt;}
.x9d{left:893.279981pt;}
.x56{left:896.799981pt;}
.xa0{left:901.199981pt;}
.x58{left:969.359981pt;}
.x9f{left:1016.399981pt;}
.x5e{left:1233.733314pt;}
}




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