
    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_96fa7cd6e6c8562f9b3dd235.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.159180;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_406335de77c165ecec6931a7.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.033691;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_cef4c86bc40c175f5915a7be.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.165039;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_423a47e64b8bd00f4da6272b.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.051000;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_f7022f737e66b0dc0fd4ab64.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_cbf4ae9a6b3e1d0205798a45.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.175293;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_0d85f03655c87dd2c7dcf9d6.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.758789;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_57d8271b759b0976ac9a6040.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.995117;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_527ab71aecbd7d888e97d175.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.165039;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_854c6dbb30cbb8e5b990d8ba.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.767090;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_3fb0cdd025ac52fe7c8c8430.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.912109;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;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,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);}
.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);}
.v9{vertical-align:-71.280000px;}
.v5{vertical-align:-57.024000px;}
.va{vertical-align:-54.720000px;}
.v1{vertical-align:-40.200000px;}
.v4{vertical-align:-17.040000px;}
.v2{vertical-align:-14.700000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:42.720000px;}
.v8{vertical-align:83.232000px;}
.v7{vertical-align:87.000000px;}
.v6{vertical-align:187.500000px;}
.ls1a{letter-spacing:-3.024000px;}
.ls3d{letter-spacing:-2.700000px;}
.ls3e{letter-spacing:-2.556000px;}
.lsc{letter-spacing:-2.160000px;}
.ls14{letter-spacing:-1.440000px;}
.ls4a{letter-spacing:-1.152000px;}
.ls44{letter-spacing:-0.852000px;}
.ls32{letter-spacing:-0.720000px;}
.ls31{letter-spacing:-0.432000px;}
.ls24{letter-spacing:-0.384600px;}
.ls38{letter-spacing:-0.360000px;}
.ls1d{letter-spacing:-0.348600px;}
.ls1{letter-spacing:-0.346800px;}
.ls10{letter-spacing:-0.288000px;}
.ls3a{letter-spacing:-0.270000px;}
.ls4b{letter-spacing:-0.247800px;}
.ls3f{letter-spacing:-0.180000px;}
.ls1c{letter-spacing:-0.172800px;}
.ls23{letter-spacing:-0.144000px;}
.ls47{letter-spacing:-0.132600px;}
.ls1f{letter-spacing:-0.092400px;}
.ls1b{letter-spacing:-0.048240px;}
.ls3c{letter-spacing:-0.036000px;}
.ls27{letter-spacing:-0.020880px;}
.lsf{letter-spacing:-0.000003px;}
.ls0{letter-spacing:0.000000px;}
.ls37{letter-spacing:0.000003px;}
.ls45{letter-spacing:0.040200px;}
.ls2b{letter-spacing:0.072000px;}
.ls48{letter-spacing:0.097800px;}
.ls30{letter-spacing:0.108000px;}
.ls49{letter-spacing:0.135600px;}
.ls11{letter-spacing:0.144000px;}
.ls22{letter-spacing:0.169800px;}
.ls29{letter-spacing:0.180000px;}
.ls39{letter-spacing:0.186600px;}
.ls35{letter-spacing:0.195000px;}
.ls46{letter-spacing:0.203400px;}
.ls2d{letter-spacing:0.216000px;}
.ls2a{letter-spacing:0.219000px;}
.ls2e{letter-spacing:0.256200px;}
.ls36{letter-spacing:0.265200px;}
.ls28{letter-spacing:0.270000px;}
.ls17{letter-spacing:0.277800px;}
.ls33{letter-spacing:0.288000px;}
.ls34{letter-spacing:0.339000px;}
.ls2c{letter-spacing:0.341400px;}
.ls26{letter-spacing:0.345600px;}
.ls3b{letter-spacing:1.710000px;}
.lsb{letter-spacing:8.520000px;}
.ls4{letter-spacing:8.547840px;}
.lsa{letter-spacing:8.580000px;}
.ls5{letter-spacing:8.760000px;}
.ls9{letter-spacing:8.880000px;}
.ls8{letter-spacing:8.940000px;}
.ls7{letter-spacing:9.240000px;}
.ls6{letter-spacing:9.720000px;}
.ls42{letter-spacing:12.240000px;}
.lse{letter-spacing:19.008000px;}
.ls21{letter-spacing:21.240000px;}
.ls20{letter-spacing:21.888000px;}
.ls25{letter-spacing:21.960000px;}
.ls1e{letter-spacing:22.066560px;}
.ls19{letter-spacing:28.684224px;}
.ls18{letter-spacing:28.798560px;}
.ls15{letter-spacing:37.831104px;}
.ls16{letter-spacing:37.945440px;}
.ls2f{letter-spacing:49.608000px;}
.ls40{letter-spacing:55.291104px;}
.ls41{letter-spacing:55.405440px;}
.ls13{letter-spacing:66.415104px;}
.ls12{letter-spacing:66.529440px;}
.ls43{letter-spacing:67.645440px;}
.ls3{letter-spacing:920.992800px;}
.lsd{letter-spacing:931.728000px;}
.ls2{letter-spacing:967.204800px;}
.sc_{text-shadow:none;}
.sc9{text-shadow:-0.015em 0 rgb(0,0,153),0 0.015em rgb(0,0,153),0.015em 0 rgb(0,0,153),0 -0.015em  rgb(0,0,153);}
.sc8{text-shadow:-0.015em 0 rgb(47,85,151),0 0.015em rgb(47,85,151),0.015em 0 rgb(47,85,151),0 -0.015em  rgb(47,85,151);}
.sc7{text-shadow:-0.015em 0 rgb(53,30,34),0 0.015em rgb(53,30,34),0.015em 0 rgb(53,30,34),0 -0.015em  rgb(53,30,34);}
.sc6{text-shadow:-0.015em 0 rgb(255,255,255),0 0.015em rgb(255,255,255),0.015em 0 rgb(255,255,255),0 -0.015em  rgb(255,255,255);}
.sc5{text-shadow:-0.015em 0 rgb(237,125,49),0 0.015em rgb(237,125,49),0.015em 0 rgb(237,125,49),0 -0.015em  rgb(237,125,49);}
.sc4{text-shadow:-0.015em 0 rgb(84,130,53),0 0.015em rgb(84,130,53),0.015em 0 rgb(84,130,53),0 -0.015em  rgb(84,130,53);}
.sc3{text-shadow:-0.015em 0 rgb(255,102,0),0 0.015em rgb(255,102,0),0.015em 0 rgb(255,102,0),0 -0.015em  rgb(255,102,0);}
.sc2{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc1{text-shadow:-0.015em 0 rgb(255,93,93),0 0.015em rgb(255,93,93),0.015em 0 rgb(255,93,93),0 -0.015em  rgb(255,93,93);}
.sc0{text-shadow:-0.015em 0 rgb(56,87,35),0 0.015em rgb(56,87,35),0.015em 0 rgb(56,87,35),0 -0.015em  rgb(56,87,35);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc9{-webkit-text-stroke:0.015em rgb(0,0,153);text-shadow:none;}
.sc8{-webkit-text-stroke:0.015em rgb(47,85,151);text-shadow:none;}
.sc7{-webkit-text-stroke:0.015em rgb(53,30,34);text-shadow:none;}
.sc6{-webkit-text-stroke:0.015em rgb(255,255,255);text-shadow:none;}
.sc5{-webkit-text-stroke:0.015em rgb(237,125,49);text-shadow:none;}
.sc4{-webkit-text-stroke:0.015em rgb(84,130,53);text-shadow:none;}
.sc3{-webkit-text-stroke:0.015em rgb(255,102,0);text-shadow:none;}
.sc2{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(255,93,93);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(56,87,35);text-shadow:none;}
}
.ws30{word-spacing:-120.240000px;}
.ws47{word-spacing:-83.980800px;}
.ws48{word-spacing:-83.952000px;}
.ws46{word-spacing:-78.048000px;}
.ws1d{word-spacing:-72.000000px;}
.ws45{word-spacing:-67.680000px;}
.ws42{word-spacing:-64.828800px;}
.ws2a{word-spacing:-60.076800px;}
.ws31{word-spacing:-60.048000px;}
.ws43{word-spacing:-52.876800px;}
.ws69{word-spacing:-49.348800px;}
.ws16{word-spacing:-31.538880px;}
.ws39{word-spacing:-31.363200px;}
.ws23{word-spacing:-30.222720px;}
.ws22{word-spacing:-30.196800px;}
.ws3b{word-spacing:-29.160000px;}
.ws0{word-spacing:-28.828800px;}
.ws20{word-spacing:-28.149120px;}
.ws1f{word-spacing:-28.123200px;}
.ws9{word-spacing:-27.099072px;}
.ws28{word-spacing:-27.072000px;}
.ws17{word-spacing:-25.945920px;}
.ws1{word-spacing:-25.920000px;}
.ws10{word-spacing:-24.883200px;}
.ws1e{word-spacing:-23.716800px;}
.ws2f{word-spacing:-22.632192px;}
.ws32{word-spacing:-22.605120px;}
.ws1c{word-spacing:-21.643200px;}
.ws18{word-spacing:-20.304000px;}
.ws49{word-spacing:-19.465920px;}
.ws8{word-spacing:-19.440000px;}
.ws55{word-spacing:-17.910000px;}
.ws3c{word-spacing:-16.947072px;}
.ws3d{word-spacing:-16.920000px;}
.ws59{word-spacing:-16.380000px;}
.ws5d{word-spacing:-16.225920px;}
.ws52{word-spacing:-16.200000px;}
.ws56{word-spacing:-16.164000px;}
.ws6{word-spacing:-16.074720px;}
.ws5f{word-spacing:-16.020000px;}
.ws58{word-spacing:-15.840000px;}
.ws35{word-spacing:-15.189120px;}
.ws2c{word-spacing:-15.163200px;}
.ws40{word-spacing:-14.077440px;}
.ws5a{word-spacing:-13.644000px;}
.ws57{word-spacing:-13.500000px;}
.ws4f{word-spacing:-13.324920px;}
.ws4e{word-spacing:-13.248000px;}
.ws50{word-spacing:-13.180920px;}
.ws4d{word-spacing:-12.985920px;}
.ws15{word-spacing:-12.960000px;}
.ws4b{word-spacing:-12.528000px;}
.ws63{word-spacing:-12.480192px;}
.ws62{word-spacing:-12.453120px;}
.ws4c{word-spacing:-12.240000px;}
.ws66{word-spacing:-12.152520px;}
.ws68{word-spacing:-12.058800px;}
.ws67{word-spacing:-12.021000px;}
.ws65{word-spacing:-11.989320px;}
.ws64{word-spacing:-11.949120px;}
.ws61{word-spacing:-11.923200px;}
.ws2e{word-spacing:-1.036224px;}
.ws44{word-spacing:-0.822912px;}
.ws1a{word-spacing:-0.456000px;}
.ws25{word-spacing:-0.312000px;}
.ws2d{word-spacing:-0.275808px;}
.ws29{word-spacing:-0.168000px;}
.ws41{word-spacing:-0.167760px;}
.ws3f{word-spacing:-0.150720px;}
.ws26{word-spacing:-0.107664px;}
.ws4{word-spacing:0.000000px;}
.wse{word-spacing:0.055200px;}
.ws19{word-spacing:0.180000px;}
.ws2{word-spacing:0.313920px;}
.wsb{word-spacing:0.701040px;}
.ws4a{word-spacing:0.720000px;}
.ws2b{word-spacing:1.152000px;}
.wsc{word-spacing:1.152480px;}
.wsd{word-spacing:1.196160px;}
.ws1b{word-spacing:1.296000px;}
.wsa{word-spacing:1.374528px;}
.ws3{word-spacing:1.792800px;}
.ws27{word-spacing:2.136000px;}
.ws21{word-spacing:2.629920px;}
.ws24{word-spacing:7.488000px;}
.wsf{word-spacing:12.080160px;}
.ws13{word-spacing:14.053440px;}
.ws14{word-spacing:14.245920px;}
.ws11{word-spacing:34.591680px;}
.ws12{word-spacing:51.351840px;}
.ws53{word-spacing:62.642376px;}
.ws5e{word-spacing:63.090000px;}
.ws60{word-spacing:64.710000px;}
.ws5b{word-spacing:65.970000px;}
.ws5c{word-spacing:67.770000px;}
.ws54{word-spacing:67.950000px;}
.ws51{word-spacing:72.449991px;}
.ws34{word-spacing:75.750960px;}
.ws37{word-spacing:76.944720px;}
.ws36{word-spacing:79.091760px;}
.ws33{word-spacing:87.281256px;}
.ws7{word-spacing:395.188320px;}
.ws3e{word-spacing:519.060000px;}
.ws38{word-spacing:580.470864px;}
.ws3a{word-spacing:1232.190000px;}
.ws5{word-spacing:3344.169120px;}
._10{margin-left:-13.411008px;}
._20{margin-left:-12.094272px;}
._c{margin-left:-10.508544px;}
._f{margin-left:-9.234000px;}
._d{margin-left:-7.730064px;}
._11{margin-left:-6.639792px;}
._e{margin-left:-5.200560px;}
._2{margin-left:-4.036032px;}
._3{margin-left:-2.593728px;}
._0{margin-left:-1.080000px;}
._1{width:1.620000px;}
._6{width:2.772000px;}
._7{width:3.864960px;}
._8{width:4.893120px;}
._a{width:6.111360px;}
._15{width:7.419120px;}
._5{width:8.503920px;}
._13{width:10.095120px;}
._4{width:11.116080px;}
._14{width:12.691920px;}
._1b{width:17.820000px;}
._1a{width:19.951920px;}
._1f{width:22.478976px;}
._1e{width:23.559696px;}
._1c{width:41.730960px;}
._17{width:59.064000px;}
._9{width:76.899360px;}
._12{width:340.431552px;}
._b{width:425.325120px;}
._18{width:627.226944px;}
._19{width:3268.620000px;}
._16{width:3892.060032px;}
._1d{width:4172.977440px;}
.fcb{color:rgb(112,173,71);}
.fc9{color:rgb(255,102,0);}
.fc8{color:rgb(79,98,40);}
.fc16{color:rgb(0,32,96);}
.fc6{color:rgb(192,0,0);}
.fc12{color:rgb(38,38,38);}
.fcc{color:rgb(127,127,127);}
.fc13{color:rgb(0,88,40);}
.fc5{color:rgb(0,0,0);}
.fc1{color:rgb(255,93,93);}
.fc4{color:rgb(64,64,64);}
.fca{color:rgb(137,137,137);}
.fc2{color:rgb(255,255,255);}
.fc3{color:rgb(255,0,0);}
.fcf{color:rgb(84,130,53);}
.fc0{color:rgb(56,87,35);}
.fcd{color:rgb(237,125,49);}
.fc18{color:rgb(252,75,4);}
.fce{color:rgb(204,0,102);}
.fc17{color:rgb(32,56,100);}
.fc10{color:rgb(122,38,14);}
.fc7{color:transparent;}
.fc11{color:rgb(53,30,34);}
.fc14{color:rgb(47,85,151);}
.fc15{color:rgb(0,0,153);}
.fc19{color:rgb(5,99,193);}
.fc1a{color:rgb(34,34,34);}
.fc1b{color:rgb(64,61,57);}
.fc1d{color:rgb(112,48,160);}
.fc1c{color:rgb(191,63,120);}
.fs5{font-size:7.200000px;}
.fs4{font-size:48.240000px;}
.fs23{font-size:63.360000px;}
.fs34{font-size:66.240000px;}
.fs3c{font-size:66.384000px;}
.fs10{font-size:72.000000px;}
.fs38{font-size:72.144000px;}
.fs2f{font-size:74.880000px;}
.fs7{font-size:79.920000px;}
.fs21{font-size:84.240000px;}
.fs25{font-size:84.384000px;}
.fs9{font-size:87.840000px;}
.fsb{font-size:87.984000px;}
.fs2d{font-size:90.000000px;}
.fs2e{font-size:90.144000px;}
.fs6{font-size:95.760000px;}
.fse{font-size:108.000000px;}
.fsf{font-size:108.144000px;}
.fs14{font-size:113.760000px;}
.fs16{font-size:113.904000px;}
.fs17{font-size:120.240000px;}
.fs1b{font-size:120.384000px;}
.fs26{font-size:126.000000px;}
.fs27{font-size:126.144000px;}
.fs8{font-size:128.160000px;}
.fs1c{font-size:131.760000px;}
.fs15{font-size:138.240000px;}
.fs3{font-size:144.000000px;}
.fs1{font-size:144.144000px;}
.fs1f{font-size:156.240000px;}
.fs1e{font-size:156.384000px;}
.fs2a{font-size:162.000000px;}
.fs2b{font-size:162.144000px;}
.fs12{font-size:167.760000px;}
.fs13{font-size:167.904000px;}
.fs28{font-size:174.240000px;}
.fs29{font-size:174.384000px;}
.fs2c{font-size:180.000000px;}
.fs39{font-size:203.760000px;}
.fs2{font-size:216.144000px;}
.fs3a{font-size:239.760000px;}
.fs19{font-size:239.904000px;}
.fs32{font-size:264.240000px;}
.fs33{font-size:264.384000px;}
.fs0{font-size:270.000000px;}
.fs20{font-size:288.000000px;}
.fs24{font-size:300.240000px;}
.fs1d{font-size:300.384000px;}
.fs30{font-size:324.000000px;}
.fs31{font-size:324.144000px;}
.fsa{font-size:329.760000px;}
.fsd{font-size:336.240000px;}
.fsc{font-size:336.384000px;}
.fs1a{font-size:360.000000px;}
.fs18{font-size:360.144000px;}
.fs3d{font-size:378.144000px;}
.fs35{font-size:390.240000px;}
.fs36{font-size:419.760000px;}
.fs11{font-size:419.904000px;}
.fs22{font-size:432.000000px;}
.fs3b{font-size:480.384000px;}
.fs37{font-size:527.904000px;}
.y0{bottom:0.000000px;}
.y10c{bottom:20.196000px;}
.y187{bottom:29.376000px;}
.yfe{bottom:30.132000px;}
.y25{bottom:31.032000px;}
.y111{bottom:31.392000px;}
.ya{bottom:32.220000px;}
.y8{bottom:35.568000px;}
.ybc{bottom:36.324000px;}
.yf6{bottom:38.700000px;}
.y13c{bottom:40.896000px;}
.y18a{bottom:42.120000px;}
.yd1{bottom:42.156000px;}
.y17a{bottom:44.712000px;}
.y86{bottom:45.000000px;}
.y4f{bottom:45.288000px;}
.y189{bottom:46.440000px;}
.yc{bottom:48.960000px;}
.y156{bottom:49.212000px;}
.y7{bottom:49.968000px;}
.y10a{bottom:57.312000px;}
.y9{bottom:58.500000px;}
.y185{bottom:59.508000px;}
.y179{bottom:62.532000px;}
.ye{bottom:63.144000px;}
.y9f{bottom:73.404000px;}
.y155{bottom:73.512000px;}
.y184{bottom:73.908000px;}
.y112{bottom:76.500000px;}
.yfd{bottom:77.904000px;}
.y120{bottom:79.128000px;}
.y178{bottom:80.388000px;}
.yf4{bottom:80.565000px;}
.y10e{bottom:82.800000px;}
.yf1{bottom:85.320000px;}
.y186{bottom:85.860000px;}
.yc8{bottom:87.444000px;}
.ya7{bottom:89.784000px;}
.y64{bottom:92.088000px;}
.y177{bottom:98.208000px;}
.yd0{bottom:102.672000px;}
.yfc{bottom:103.104000px;}
.ydc{bottom:103.755000px;}
.y11f{bottom:108.288000px;}
.yf9{bottom:109.368000px;}
.y3e{bottom:109.620000px;}
.y2b{bottom:110.376000px;}
.yc7{bottom:112.644000px;}
.y154{bottom:112.752000px;}
.yc6{bottom:117.036000px;}
.y49{bottom:120.420000px;}
.y1f{bottom:124.452000px;}
.y9e{bottom:124.524000px;}
.yfb{bottom:128.304000px;}
.y176{bottom:130.968000px;}
.y40{bottom:131.040000px;}
.y153{bottom:137.052000px;}
.y93{bottom:138.672000px;}
.yd2{bottom:138.852000px;}
.yc5{bottom:144.036000px;}
.y106{bottom:146.448000px;}
.y175{bottom:148.788000px;}
.y62{bottom:152.280000px;}
.y11e{bottom:152.385000px;}
.yfa{bottom:153.510000px;}
.ye0{bottom:156.240000px;}
.yf8{bottom:156.270000px;}
.y1e{bottom:157.395000px;}
.y9d{bottom:160.530000px;}
.y17f{bottom:162.390000px;}
.y73{bottom:163.290000px;}
.y174{bottom:166.605000px;}
.y130{bottom:167.220000px;}
.y10f{bottom:174.930000px;}
.y152{bottom:176.325000px;}
.y24{bottom:177.480000px;}
.yec{bottom:178.740000px;}
.y11{bottom:179.100000px;}
.yc9{bottom:179.280000px;}
.y20{bottom:179.610000px;}
.y4e{bottom:181.155000px;}
.y124{bottom:181.335000px;}
.y3f{bottom:181.440000px;}
.yf7{bottom:181.470000px;}
.y12c{bottom:183.420000px;}
.y3d{bottom:184.500000px;}
.y61{bottom:184.680000px;}
.yb4{bottom:187.305000px;}
.y12f{bottom:188.820000px;}
.y92{bottom:189.645000px;}
.y1d{bottom:190.335000px;}
.ya6{bottom:191.880000px;}
.yf3{bottom:193.680000px;}
.y11d{bottom:196.485000px;}
.y9c{bottom:196.530000px;}
.y173{bottom:199.545000px;}
.y6c{bottom:199.905000px;}
.y151{bottom:200.625000px;}
.yf5{bottom:202.680000px;}
.y123{bottom:202.935000px;}
.y77{bottom:203.505000px;}
.y12b{bottom:205.020000px;}
.y84{bottom:207.930000px;}
.y17e{bottom:209.190000px;}
.y12e{bottom:210.420000px;}
.y60{bottom:217.080000px;}
.y10{bottom:219.600000px;}
.ybb{bottom:220.935000px;}
.y12{bottom:223.230000px;}
.y122{bottom:224.535000px;}
.y11c{bottom:225.645000px;}
.y12a{bottom:226.650000px;}
.y8b{bottom:227.160000px;}
.yaf{bottom:227.595000px;}
.ya5{bottom:227.880000px;}
.yef{bottom:231.765000px;}
.yea{bottom:231.840000px;}
.ye5{bottom:231.945000px;}
.y12d{bottom:232.020000px;}
.y172{bottom:232.305000px;}
.y9b{bottom:232.560000px;}
.y23{bottom:232.920000px;}
.yb2{bottom:234.255000px;}
.yb3{bottom:234.285000px;}
.y3c{bottom:234.930000px;}
.y48{bottom:235.620000px;}
.y150{bottom:240.045000px;}
.y91{bottom:240.585000px;}
.y32{bottom:243.750000px;}
.y5{bottom:245.370000px;}
.y15c{bottom:245.445000px;}
.y121{bottom:246.135000px;}
.y6b{bottom:246.750000px;}
.y6{bottom:248.040000px;}
.y129{bottom:248.250000px;}
.y171{bottom:250.170000px;}
.y17d{bottom:256.035000px;}
.yee{bottom:256.965000px;}
.ye9{bottom:257.040000px;}
.ye4{bottom:257.145000px;}
.y5f{bottom:258.480000px;}
.yae{bottom:261.435000px;}
.y159{bottom:261.870000px;}
.yf2{bottom:263.055000px;}
.ya4{bottom:263.880000px;}
.y14f{bottom:264.345000px;}
.yc4{bottom:265.290000px;}
.y170{bottom:267.990000px;}
.y9a{bottom:268.560000px;}
.y55{bottom:268.740000px;}
.y11b{bottom:269.970000px;}
.ye7{bottom:271.980000px;}
.y47{bottom:274.500000px;}
.y2a{bottom:278.460000px;}
.yed{bottom:282.165000px;}
.ye8{bottom:282.240000px;}
.ye3{bottom:282.345000px;}
.y4d{bottom:283.605000px;}
.y31{bottom:284.115000px;}
.y105{bottom:287.175000px;}
.y5e{bottom:290.910000px;}
.y90{bottom:291.705000px;}
.yc3{bottom:292.290000px;}
.y3b{bottom:292.890000px;}
.y6a{bottom:294.630000px;}
.yad{bottom:295.485000px;}
.y139{bottom:299.055000px;}
.y11a{bottom:299.130000px;}
.y3{bottom:300.450000px;}
.y16f{bottom:300.750000px;}
.y83{bottom:302.655000px;}
.y17c{bottom:302.835000px;}
.y138{bottom:303.375000px;}
.y14e{bottom:303.630000px;}
.y54{bottom:311.940000px;}
.y46{bottom:313.380000px;}
.ya3{bottom:314.850000px;}
.y72{bottom:318.135000px;}
.y16e{bottom:318.570000px;}
.y109{bottom:319.290000px;}
.y99{bottom:319.500000px;}
.y110{bottom:321.555000px;}
.y29{bottom:323.850000px;}
.y30{bottom:324.435000px;}
.y7a{bottom:327.135000px;}
.y14d{bottom:327.930000px;}
.y119{bottom:328.290000px;}
.y5d{bottom:332.310000px;}
.y104{bottom:332.565000px;}
.ycb{bottom:336.630000px;}
.yf0{bottom:336.750000px;}
.y8a{bottom:337.350000px;}
.y137{bottom:338.475000px;}
.y13d{bottom:341.355000px;}
.yba{bottom:341.535000px;}
.y34{bottom:341.820000px;}
.y13f{bottom:342.255000px;}
.y82{bottom:345.855000px;}
.y69{bottom:346.110000px;}
.y3a{bottom:350.850000px;}
.y16d{bottom:351.510000px;}
.y45{bottom:352.260000px;}
.y2d{bottom:354.675000px;}
.y53{bottom:355.140000px;}
.y13b{bottom:355.215000px;}
.y98{bottom:355.500000px;}
.y188{bottom:356.655000px;}
.y76{bottom:359.070000px;}
.y158{bottom:359.100000px;}
.yca{bottom:359.130000px;}
.y71{bottom:360.255000px;}
.y5c{bottom:364.710000px;}
.y2f{bottom:364.755000px;}
.ye2{bottom:365.220000px;}
.y183{bottom:366.015000px;}
.y14c{bottom:367.170000px;}
.y28{bottom:369.210000px;}
.y16c{bottom:369.330000px;}
.y118{bottom:372.390000px;}
.y33{bottom:374.250000px;}
.y2{bottom:375.555000px;}
.y103{bottom:377.925000px;}
.yda{bottom:382.290000px;}
.y89{bottom:384.870000px;}
.yb9{bottom:385.095000px;}
.yb6{bottom:385.200000px;}
.ybe{bottom:386.310000px;}
.ya2{bottom:386.850000px;}
.y16b{bottom:387.150000px;}
.y10b{bottom:388.650000px;}
.y81{bottom:389.055000px;}
.y17{bottom:389.880000px;}
.y44{bottom:391.170000px;}
.y14b{bottom:391.470000px;}
.y97{bottom:391.530000px;}
.yd8{bottom:393.375000px;}
.y8f{bottom:393.630000px;}
.y68{bottom:396.540000px;}
.y52{bottom:398.370000px;}
.y2c{bottom:400.035000px;}
.y108{bottom:400.290000px;}
.y113{bottom:400.320000px;}
.yd6{bottom:401.550000px;}
.y75{bottom:404.460000px;}
.y2e{bottom:405.075000px;}
.y5b{bottom:406.110000px;}
.y39{bottom:408.855000px;}
.y1c{bottom:413.385000px;}
.y27{bottom:414.570000px;}
.y117{bottom:416.520000px;}
.y70{bottom:417.315000px;}
.y22{bottom:417.675000px;}
.y79{bottom:419.685000px;}
.y16a{bottom:419.940000px;}
.y13a{bottom:420.045000px;}
.y19{bottom:420.195000px;}
.y181{bottom:421.710000px;}
.ybd{bottom:422.310000px;}
.y16{bottom:422.820000px;}
.y182{bottom:423.105000px;}
.y13e{bottom:423.255000px;}
.y102{bottom:423.285000px;}
.yb5{bottom:428.760000px;}
.yb8{bottom:428.835000px;}
.y43{bottom:430.050000px;}
.yeb{bottom:430.095000px;}
.y14a{bottom:430.890000px;}
.y80{bottom:432.285000px;}
.y88{bottom:432.390000px;}
.y169{bottom:437.760000px;}
.y5a{bottom:438.555000px;}
.y51{bottom:441.570000px;}
.y67{bottom:443.340000px;}
.y4c{bottom:444.390000px;}
.y8e{bottom:444.750000px;}
.y15{bottom:445.110000px;}
.yd3{bottom:445.215000px;}
.y116{bottom:445.680000px;}
.y1b{bottom:446.325000px;}
.y1{bottom:450.435000px;}
.y18{bottom:453.135000px;}
.yd9{bottom:453.570000px;}
.y149{bottom:455.190000px;}
.y168{bottom:455.580000px;}
.y157{bottom:456.330000px;}
.y6f{bottom:459.435000px;}
.yc2{bottom:464.505000px;}
.y74{bottom:464.760000px;}
.y38{bottom:466.815000px;}
.y101{bottom:468.645000px;}
.y42{bottom:468.930000px;}
.yb1{bottom:470.985000px;}
.yb7{bottom:472.395000px;}
.y7f{bottom:475.485000px;}
.y180{bottom:477.180000px;}
.y148{bottom:479.520000px;}
.y59{bottom:479.955000px;}
.y8d{bottom:480.780000px;}
.y107{bottom:481.320000px;}
.yf{bottom:485.790000px;}
.y167{bottom:488.340000px;}
.y13{bottom:488.775000px;}
.yd5{bottom:488.850000px;}
.ya1{bottom:488.955000px;}
.y1a{bottom:489.090000px;}
.y115{bottom:489.960000px;}
.yac{bottom:490.425000px;}
.y66{bottom:491.220000px;}
.yc1{bottom:491.505000px;}
.y96{bottom:493.590000px;}
.y78{bottom:497.445000px;}
.yd7{bottom:500.295000px;}
.y6e{bottom:501.585000px;}
.y147{bottom:503.820000px;}
.y166{bottom:506.160000px;}
.y21{bottom:508.425000px;}
.y58{bottom:512.355000px;}
.y100{bottom:514.050000px;}
.yb0{bottom:517.785000px;}
.y7e{bottom:518.685000px;}
.y37{bottom:522.285000px;}
.ye6{bottom:523.410000px;}
.yab{bottom:524.265000px;}
.ya0{bottom:524.955000px;}
.y146{bottom:528.120000px;}
.y95{bottom:529.590000px;}
.yd4{bottom:532.410000px;}
.yde{bottom:532.800000px;}
.ycd{bottom:536.040000px;}
.y165{bottom:539.100000px;}
.y145{bottom:552.420000px;}
.y57{bottom:553.755000px;}
.y164{bottom:556.950000px;}
.yaa{bottom:558.330000px;}
.y7d{bottom:561.885000px;}
.ycc{bottom:563.040000px;}
.y50{bottom:567.465000px;}
.y36{bottom:570.165000px;}
.y17b{bottom:571.680000px;}
.y163{bottom:574.770000px;}
.y85{bottom:581.610000px;}
.y63{bottom:582.225000px;}
.y144{bottom:591.660000px;}
.ya9{bottom:592.170000px;}
.y134{bottom:594.435000px;}
.y128{bottom:595.260000px;}
.y8c{bottom:596.520000px;}
.y87{bottom:603.255000px;}
.y7c{bottom:605.130000px;}
.y4{bottom:605.235000px;}
.y4b{bottom:605.340000px;}
.y162{bottom:607.530000px;}
.y41{bottom:610.560000px;}
.yb{bottom:615.030000px;}
.y143{bottom:615.990000px;}
.y133{bottom:616.065000px;}
.ye1{bottom:616.755000px;}
.y127{bottom:616.860000px;}
.y6d{bottom:619.710000px;}
.y35{bottom:620.565000px;}
.y161{bottom:625.350000px;}
.ya8{bottom:626.190000px;}
.y65{bottom:633.780000px;}
.y114{bottom:634.605000px;}
.yd{bottom:635.115000px;}
.y132{bottom:637.665000px;}
.y126{bottom:638.490000px;}
.yc0{bottom:643.170000px;}
.y94{bottom:644.610000px;}
.yff{bottom:644.790000px;}
.y26{bottom:645.450000px;}
.y7b{bottom:648.330000px;}
.y10d{bottom:648.360000px;}
.y56{bottom:653.145000px;}
.y142{bottom:655.230000px;}
.y160{bottom:658.110000px;}
.ydb{bottom:658.800000px;}
.y131{bottom:659.265000px;}
.y125{bottom:660.090000px;}
.y136{bottom:661.650000px;}
.ybf{bottom:670.170000px;}
.ycf{bottom:675.150000px;}
.y15f{bottom:675.930000px;}
.y141{bottom:679.530000px;}
.y14{bottom:681.660000px;}
.y4a{bottom:688.935000px;}
.y15e{bottom:693.750000px;}
.ydd{bottom:696.750000px;}
.yce{bottom:702.150000px;}
.y140{bottom:703.830000px;}
.ydf{bottom:714.240000px;}
.y15d{bottom:726.735000px;}
.y135{bottom:744.225000px;}
.y15b{bottom:804.060000px;}
.y15a{bottom:808.380000px;}
.h7{height:7.161328px;}
.h62{height:30.996000px;}
.h6{height:33.840000px;}
.h5{height:41.631120px;}
.h63{height:48.060000px;}
.h8{height:50.580000px;}
.h2a{height:58.812188px;}
.h4d{height:58.819922px;}
.h3c{height:59.670000px;}
.h5d{height:61.485469px;}
.h5c{height:61.619133px;}
.h50{height:65.884219px;}
.h13{height:66.832031px;}
.h55{height:66.965695px;}
.h3b{height:67.128750px;}
.h52{height:71.613281px;}
.h38{height:71.718750px;}
.h39{height:71.833500px;}
.h28{height:78.193477px;}
.h2d{height:78.327141px;}
.ha{height:79.490742px;}
.h1f{height:79.998047px;}
.hc{height:82.392891px;}
.h36{height:83.540039px;}
.h5a{height:83.673703px;}
.h45{height:86.062500px;}
.h4b{height:86.177250px;}
.h9{height:88.886602px;}
.h37{height:95.816250px;}
.h11{height:100.248047px;}
.h17{height:100.381711px;}
.h19{height:105.594609px;}
.h1a{height:105.728273px;}
.h21{height:111.609492px;}
.h22{height:111.743156px;}
.h56{height:114.750000px;}
.h12{height:114.864750px;}
.h2e{height:116.956055px;}
.h2f{height:117.089719px;}
.hb{height:120.212578px;}
.h23{height:122.302617px;}
.h5f{height:124.503750px;}
.h60{height:124.618500px;}
.he{height:125.247961px;}
.h3d{height:126.802969px;}
.h18{height:128.317500px;}
.h4{height:133.664062px;}
.h1b{height:133.683750px;}
.h1d{height:133.797727px;}
.h2{height:134.783086px;}
.h35{height:137.548828px;}
.h26{height:145.025508px;}
.h25{height:145.159172px;}
.h3a{height:150.360750px;}
.h32{height:150.372070px;}
.h34{height:150.505734px;}
.h44{height:151.200000px;}
.h15{height:155.718633px;}
.h16{height:155.852297px;}
.h30{height:161.733516px;}
.h5e{height:165.168633px;}
.h3{height:172.239750px;}
.h49{height:176.580000px;}
.h57{height:189.134648px;}
.h59{height:224.189648px;}
.h1e{height:224.324297px;}
.h2c{height:229.431445px;}
.h2b{height:229.541484px;}
.h3f{height:237.312070px;}
.h33{height:237.372070px;}
.h42{height:247.079883px;}
.h43{height:247.214531px;}
.h40{height:247.587891px;}
.h41{height:247.697930px;}
.h1{height:252.465820px;}
.h27{height:269.296875px;}
.h3e{height:275.097656px;}
.h46{height:277.200000px;}
.h4e{height:280.741992px;}
.h24{height:280.876641px;}
.h4f{height:286.875000px;}
.h61{height:288.962578px;}
.h58{height:304.995000px;}
.hd{height:308.344922px;}
.h10{height:314.404102px;}
.hf{height:314.538750px;}
.h29{height:330.117188px;}
.h20{height:336.621094px;}
.h1c{height:336.755742px;}
.h31{height:349.367180px;}
.h4a{height:352.980000px;}
.h51{height:364.897266px;}
.h53{height:392.500195px;}
.h14{height:392.634844px;}
.h47{height:444.780000px;}
.h5b{height:449.187188px;}
.h4c{height:476.280000px;}
.h54{height:493.621172px;}
.h48{height:529.380000px;}
.h0{height:810.000000px;}
.w8{width:87.840000px;}
.w2{width:96.120000px;}
.w9{width:103.896000px;}
.w4{width:181.440000px;}
.w3{width:455.610000px;}
.w6{width:710.925000px;}
.w5{width:944.820000px;}
.w7{width:1348.740000px;}
.w1{width:1439.999979px;}
.w0{width:1440.000000px;}
.xb2{left:-15.660043px;}
.x0{left:0.000000px;}
.x8b{left:11.010000px;}
.x88{left:54.323979px;}
.x7f{left:59.579979px;}
.x3d{left:60.731979px;}
.x48{left:67.247979px;}
.x44{left:72.323979px;}
.xab{left:73.979979px;}
.xa0{left:76.751979px;}
.x10{left:80.999979px;}
.x3a{left:87.119979px;}
.x58{left:88.667979px;}
.xa6{left:93.455979px;}
.xa5{left:96.011979px;}
.x87{left:97.451979px;}
.xac{left:99.000000px;}
.x93{left:104.111979px;}
.x2d{left:106.523979px;}
.x90{left:109.799979px;}
.x2{left:115.919979px;}
.x59{left:119.447979px;}
.x98{left:126.863979px;}
.x1{left:128.087979px;}
.xb4{left:139.247979px;}
.xb5{left:140.975979px;}
.x22{left:142.595979px;}
.x3f{left:145.115979px;}
.x26{left:146.447979px;}
.xad{left:152.279979px;}
.x23{left:155.264979px;}
.x66{left:157.214979px;}
.x40{left:158.609979px;}
.xb3{left:161.894979px;}
.x24{left:164.264979px;}
.x29{left:168.584979px;}
.x11{left:169.994979px;}
.x9b{left:171.869979px;}
.x81{left:173.669979px;}
.x91{left:176.654979px;}
.x8a{left:184.320000px;}
.x2a{left:185.684979px;}
.xb1{left:187.049979px;}
.x92{left:189.074979px;}
.x9f{left:191.774979px;}
.x82{left:195.089979px;}
.x9e{left:196.994979px;}
.x41{left:199.109979px;}
.x38{left:202.109979px;}
.x69{left:207.104979px;}
.xb8{left:216.930000px;}
.x9a{left:218.309979px;}
.x2b{left:219.344979px;}
.x39{left:224.249979px;}
.x96{left:226.049979px;}
.xb{left:240.404979px;}
.x50{left:244.409979px;}
.x5{left:262.289979px;}
.x8e{left:266.969979px;}
.x8d{left:268.409979px;}
.x1a{left:282.269979px;}
.x25{left:283.964979px;}
.x6{left:291.269979px;}
.x1b{left:296.309979px;}
.x1d{left:297.719979px;}
.x19{left:300.629979px;}
.x71{left:309.344979px;}
.x72{left:314.204979px;}
.x7{left:335.550000px;}
.x63{left:354.749979px;}
.x73{left:358.379979px;}
.x8c{left:365.580000px;}
.xe{left:368.609979px;}
.x57{left:371.054979px;}
.x74{left:372.599979px;}
.x2c{left:376.529979px;}
.x94{left:400.064979px;}
.x12{left:425.519979px;}
.x1e{left:432.389979px;}
.x97{left:438.809979px;}
.x70{left:444.344979px;}
.x13{left:449.819979px;}
.x9d{left:451.079979px;}
.x8{left:458.175000px;}
.x9{left:472.604979px;}
.x3b{left:481.394979px;}
.x64{left:483.839979px;}
.xb6{left:486.284979px;}
.x65{left:492.659979px;}
.xf{left:498.314979px;}
.xaa{left:525.809979px;}
.xa9{left:528.374979px;}
.x75{left:529.949979px;}
.xb7{left:579.779979px;}
.x80{left:605.489979px;}
.x1c{left:608.609979px;}
.x5a{left:623.159979px;}
.xaf{left:636.584979px;}
.xae{left:653.369979px;}
.xc{left:655.484979px;}
.x2f{left:659.594979px;}
.xb0{left:664.019979px;}
.x54{left:665.024979px;}
.x3e{left:680.759979px;}
.xa2{left:688.964979px;}
.x53{left:702.644979px;}
.xa3{left:715.064979px;}
.x30{left:719.894979px;}
.x1f{left:722.849979px;}
.x31{left:725.654979px;}
.x36{left:736.994979px;}
.x6f{left:747.719979px;}
.xa4{left:748.904979px;}
.x35{left:752.654979px;}
.x15{left:755.639979px;}
.x14{left:757.079979px;}
.x2e{left:759.494979px;}
.x34{left:766.874979px;}
.x37{left:767.954979px;}
.x76{left:769.289979px;}
.x5f{left:776.699979px;}
.x77{left:781.349979px;}
.x5d{left:782.999979px;}
.x3c{left:784.799979px;}
.x20{left:786.209979px;}
.x46{left:787.754979px;}
.x45{left:793.154979px;}
.x16{left:798.119979px;}
.x49{left:800.459979px;}
.x4d{left:804.059979px;}
.x32{left:806.324979px;}
.x5e{left:822.599979px;}
.x4b{left:824.039979px;}
.x60{left:830.729979px;}
.x68{left:833.504979px;}
.x55{left:838.589979px;}
.x33{left:883.724979px;}
.x4{left:896.684979px;}
.x67{left:904.604979px;}
.x4a{left:907.559979px;}
.x4f{left:920.519979px;}
.x8f{left:929.444979px;}
.x4c{left:937.079979px;}
.x4e{left:941.759979px;}
.x52{left:947.129979px;}
.x7d{left:949.604979px;}
.x28{left:955.514979px;}
.x7e{left:962.384979px;}
.x43{left:972.074979px;}
.x42{left:974.309979px;}
.x3{left:981.539979px;}
.x17{left:983.879979px;}
.xa7{left:989.204979px;}
.xa8{left:991.589979px;}
.x5c{left:1001.234979px;}
.x56{left:1010.129979px;}
.x78{left:1014.194979px;}
.xb9{left:1017.645000px;}
.x79{left:1024.634979px;}
.x95{left:1031.549979px;}
.x18{left:1066.679979px;}
.x47{left:1092.344979px;}
.x83{left:1095.479979px;}
.xd{left:1101.269979px;}
.x85{left:1103.579979px;}
.x6a{left:1107.464979px;}
.x7c{left:1112.474979px;}
.x6c{left:1115.564979px;}
.x7b{left:1122.014979px;}
.x86{left:1124.999979px;}
.x6d{left:1136.984979px;}
.x7a{left:1142.714979px;}
.x84{left:1161.539979px;}
.x61{left:1166.834979px;}
.x6b{left:1173.524979px;}
.x89{left:1309.289979px;}
.x9c{left:1310.369979px;}
.x27{left:1311.449979px;}
.x21{left:1320.119979px;}
.xa1{left:1343.444979px;}
.xa{left:1360.004979px;}
.x6e{left:1370.879979px;}
.x5b{left:1377.869979px;}
.x62{left:1379.489979px;}
.x51{left:1380.749979px;}
.x99{left:1407.779979px;}
@media print{
.v9{vertical-align:-63.360000pt;}
.v5{vertical-align:-50.688000pt;}
.va{vertical-align:-48.640000pt;}
.v1{vertical-align:-35.733333pt;}
.v4{vertical-align:-15.146667pt;}
.v2{vertical-align:-13.066667pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:37.973333pt;}
.v8{vertical-align:73.984000pt;}
.v7{vertical-align:77.333333pt;}
.v6{vertical-align:166.666667pt;}
.ls1a{letter-spacing:-2.688000pt;}
.ls3d{letter-spacing:-2.400000pt;}
.ls3e{letter-spacing:-2.272000pt;}
.lsc{letter-spacing:-1.920000pt;}
.ls14{letter-spacing:-1.280000pt;}
.ls4a{letter-spacing:-1.024000pt;}
.ls44{letter-spacing:-0.757333pt;}
.ls32{letter-spacing:-0.640000pt;}
.ls31{letter-spacing:-0.384000pt;}
.ls24{letter-spacing:-0.341867pt;}
.ls38{letter-spacing:-0.320000pt;}
.ls1d{letter-spacing:-0.309867pt;}
.ls1{letter-spacing:-0.308267pt;}
.ls10{letter-spacing:-0.256000pt;}
.ls3a{letter-spacing:-0.240000pt;}
.ls4b{letter-spacing:-0.220267pt;}
.ls3f{letter-spacing:-0.160000pt;}
.ls1c{letter-spacing:-0.153600pt;}
.ls23{letter-spacing:-0.128000pt;}
.ls47{letter-spacing:-0.117867pt;}
.ls1f{letter-spacing:-0.082133pt;}
.ls1b{letter-spacing:-0.042880pt;}
.ls3c{letter-spacing:-0.032000pt;}
.ls27{letter-spacing:-0.018560pt;}
.lsf{letter-spacing:-0.000003pt;}
.ls0{letter-spacing:0.000000pt;}
.ls37{letter-spacing:0.000003pt;}
.ls45{letter-spacing:0.035733pt;}
.ls2b{letter-spacing:0.064000pt;}
.ls48{letter-spacing:0.086933pt;}
.ls30{letter-spacing:0.096000pt;}
.ls49{letter-spacing:0.120533pt;}
.ls11{letter-spacing:0.128000pt;}
.ls22{letter-spacing:0.150933pt;}
.ls29{letter-spacing:0.160000pt;}
.ls39{letter-spacing:0.165867pt;}
.ls35{letter-spacing:0.173333pt;}
.ls46{letter-spacing:0.180800pt;}
.ls2d{letter-spacing:0.192000pt;}
.ls2a{letter-spacing:0.194667pt;}
.ls2e{letter-spacing:0.227733pt;}
.ls36{letter-spacing:0.235733pt;}
.ls28{letter-spacing:0.240000pt;}
.ls17{letter-spacing:0.246933pt;}
.ls33{letter-spacing:0.256000pt;}
.ls34{letter-spacing:0.301333pt;}
.ls2c{letter-spacing:0.303467pt;}
.ls26{letter-spacing:0.307200pt;}
.ls3b{letter-spacing:1.520000pt;}
.lsb{letter-spacing:7.573333pt;}
.ls4{letter-spacing:7.598080pt;}
.lsa{letter-spacing:7.626667pt;}
.ls5{letter-spacing:7.786667pt;}
.ls9{letter-spacing:7.893333pt;}
.ls8{letter-spacing:7.946667pt;}
.ls7{letter-spacing:8.213333pt;}
.ls6{letter-spacing:8.640000pt;}
.ls42{letter-spacing:10.880000pt;}
.lse{letter-spacing:16.896000pt;}
.ls21{letter-spacing:18.880000pt;}
.ls20{letter-spacing:19.456000pt;}
.ls25{letter-spacing:19.520000pt;}
.ls1e{letter-spacing:19.614720pt;}
.ls19{letter-spacing:25.497088pt;}
.ls18{letter-spacing:25.598720pt;}
.ls15{letter-spacing:33.627648pt;}
.ls16{letter-spacing:33.729280pt;}
.ls2f{letter-spacing:44.096000pt;}
.ls40{letter-spacing:49.147648pt;}
.ls41{letter-spacing:49.249280pt;}
.ls13{letter-spacing:59.035648pt;}
.ls12{letter-spacing:59.137280pt;}
.ls43{letter-spacing:60.129280pt;}
.ls3{letter-spacing:818.660267pt;}
.lsd{letter-spacing:828.202667pt;}
.ls2{letter-spacing:859.737600pt;}
.ws30{word-spacing:-106.880000pt;}
.ws47{word-spacing:-74.649600pt;}
.ws48{word-spacing:-74.624000pt;}
.ws46{word-spacing:-69.376000pt;}
.ws1d{word-spacing:-64.000000pt;}
.ws45{word-spacing:-60.160000pt;}
.ws42{word-spacing:-57.625600pt;}
.ws2a{word-spacing:-53.401600pt;}
.ws31{word-spacing:-53.376000pt;}
.ws43{word-spacing:-47.001600pt;}
.ws69{word-spacing:-43.865600pt;}
.ws16{word-spacing:-28.034560pt;}
.ws39{word-spacing:-27.878400pt;}
.ws23{word-spacing:-26.864640pt;}
.ws22{word-spacing:-26.841600pt;}
.ws3b{word-spacing:-25.920000pt;}
.ws0{word-spacing:-25.625600pt;}
.ws20{word-spacing:-25.021440pt;}
.ws1f{word-spacing:-24.998400pt;}
.ws9{word-spacing:-24.088064pt;}
.ws28{word-spacing:-24.064000pt;}
.ws17{word-spacing:-23.063040pt;}
.ws1{word-spacing:-23.040000pt;}
.ws10{word-spacing:-22.118400pt;}
.ws1e{word-spacing:-21.081600pt;}
.ws2f{word-spacing:-20.117504pt;}
.ws32{word-spacing:-20.093440pt;}
.ws1c{word-spacing:-19.238400pt;}
.ws18{word-spacing:-18.048000pt;}
.ws49{word-spacing:-17.303040pt;}
.ws8{word-spacing:-17.280000pt;}
.ws55{word-spacing:-15.920000pt;}
.ws3c{word-spacing:-15.064064pt;}
.ws3d{word-spacing:-15.040000pt;}
.ws59{word-spacing:-14.560000pt;}
.ws5d{word-spacing:-14.423040pt;}
.ws52{word-spacing:-14.400000pt;}
.ws56{word-spacing:-14.368000pt;}
.ws6{word-spacing:-14.288640pt;}
.ws5f{word-spacing:-14.240000pt;}
.ws58{word-spacing:-14.080000pt;}
.ws35{word-spacing:-13.501440pt;}
.ws2c{word-spacing:-13.478400pt;}
.ws40{word-spacing:-12.513280pt;}
.ws5a{word-spacing:-12.128000pt;}
.ws57{word-spacing:-12.000000pt;}
.ws4f{word-spacing:-11.844373pt;}
.ws4e{word-spacing:-11.776000pt;}
.ws50{word-spacing:-11.716373pt;}
.ws4d{word-spacing:-11.543040pt;}
.ws15{word-spacing:-11.520000pt;}
.ws4b{word-spacing:-11.136000pt;}
.ws63{word-spacing:-11.093504pt;}
.ws62{word-spacing:-11.069440pt;}
.ws4c{word-spacing:-10.880000pt;}
.ws66{word-spacing:-10.802240pt;}
.ws68{word-spacing:-10.718933pt;}
.ws67{word-spacing:-10.685333pt;}
.ws65{word-spacing:-10.657173pt;}
.ws64{word-spacing:-10.621440pt;}
.ws61{word-spacing:-10.598400pt;}
.ws2e{word-spacing:-0.921088pt;}
.ws44{word-spacing:-0.731477pt;}
.ws1a{word-spacing:-0.405333pt;}
.ws25{word-spacing:-0.277333pt;}
.ws2d{word-spacing:-0.245163pt;}
.ws29{word-spacing:-0.149333pt;}
.ws41{word-spacing:-0.149120pt;}
.ws3f{word-spacing:-0.133973pt;}
.ws26{word-spacing:-0.095701pt;}
.ws4{word-spacing:0.000000pt;}
.wse{word-spacing:0.049067pt;}
.ws19{word-spacing:0.160000pt;}
.ws2{word-spacing:0.279040pt;}
.wsb{word-spacing:0.623147pt;}
.ws4a{word-spacing:0.640000pt;}
.ws2b{word-spacing:1.024000pt;}
.wsc{word-spacing:1.024427pt;}
.wsd{word-spacing:1.063253pt;}
.ws1b{word-spacing:1.152000pt;}
.wsa{word-spacing:1.221803pt;}
.ws3{word-spacing:1.593600pt;}
.ws27{word-spacing:1.898667pt;}
.ws21{word-spacing:2.337707pt;}
.ws24{word-spacing:6.656000pt;}
.wsf{word-spacing:10.737920pt;}
.ws13{word-spacing:12.491947pt;}
.ws14{word-spacing:12.663040pt;}
.ws11{word-spacing:30.748160pt;}
.ws12{word-spacing:45.646080pt;}
.ws53{word-spacing:55.682112pt;}
.ws5e{word-spacing:56.080000pt;}
.ws60{word-spacing:57.520000pt;}
.ws5b{word-spacing:58.640000pt;}
.ws5c{word-spacing:60.240000pt;}
.ws54{word-spacing:60.400000pt;}
.ws51{word-spacing:64.399992pt;}
.ws34{word-spacing:67.334187pt;}
.ws37{word-spacing:68.395307pt;}
.ws36{word-spacing:70.303787pt;}
.ws33{word-spacing:77.583339pt;}
.ws7{word-spacing:351.278507pt;}
.ws3e{word-spacing:461.386667pt;}
.ws38{word-spacing:515.974101pt;}
.ws3a{word-spacing:1095.280000pt;}
.ws5{word-spacing:2972.594773pt;}
._10{margin-left:-11.920896pt;}
._20{margin-left:-10.750464pt;}
._c{margin-left:-9.340928pt;}
._f{margin-left:-8.208000pt;}
._d{margin-left:-6.871168pt;}
._11{margin-left:-5.902037pt;}
._e{margin-left:-4.622720pt;}
._2{margin-left:-3.587584pt;}
._3{margin-left:-2.305536pt;}
._0{margin-left:-0.960000pt;}
._1{width:1.440000pt;}
._6{width:2.464000pt;}
._7{width:3.435520pt;}
._8{width:4.349440pt;}
._a{width:5.432320pt;}
._15{width:6.594773pt;}
._5{width:7.559040pt;}
._13{width:8.973440pt;}
._4{width:9.880960pt;}
._14{width:11.281707pt;}
._1b{width:15.840000pt;}
._1a{width:17.735040pt;}
._1f{width:19.981312pt;}
._1e{width:20.941952pt;}
._1c{width:37.094187pt;}
._17{width:52.501333pt;}
._9{width:68.354987pt;}
._12{width:302.605824pt;}
._b{width:378.066773pt;}
._18{width:557.535061pt;}
._19{width:2905.440000pt;}
._16{width:3459.608917pt;}
._1d{width:3709.313280pt;}
.fs5{font-size:6.400000pt;}
.fs4{font-size:42.880000pt;}
.fs23{font-size:56.320000pt;}
.fs34{font-size:58.880000pt;}
.fs3c{font-size:59.008000pt;}
.fs10{font-size:64.000000pt;}
.fs38{font-size:64.128000pt;}
.fs2f{font-size:66.560000pt;}
.fs7{font-size:71.040000pt;}
.fs21{font-size:74.880000pt;}
.fs25{font-size:75.008000pt;}
.fs9{font-size:78.080000pt;}
.fsb{font-size:78.208000pt;}
.fs2d{font-size:80.000000pt;}
.fs2e{font-size:80.128000pt;}
.fs6{font-size:85.120000pt;}
.fse{font-size:96.000000pt;}
.fsf{font-size:96.128000pt;}
.fs14{font-size:101.120000pt;}
.fs16{font-size:101.248000pt;}
.fs17{font-size:106.880000pt;}
.fs1b{font-size:107.008000pt;}
.fs26{font-size:112.000000pt;}
.fs27{font-size:112.128000pt;}
.fs8{font-size:113.920000pt;}
.fs1c{font-size:117.120000pt;}
.fs15{font-size:122.880000pt;}
.fs3{font-size:128.000000pt;}
.fs1{font-size:128.128000pt;}
.fs1f{font-size:138.880000pt;}
.fs1e{font-size:139.008000pt;}
.fs2a{font-size:144.000000pt;}
.fs2b{font-size:144.128000pt;}
.fs12{font-size:149.120000pt;}
.fs13{font-size:149.248000pt;}
.fs28{font-size:154.880000pt;}
.fs29{font-size:155.008000pt;}
.fs2c{font-size:160.000000pt;}
.fs39{font-size:181.120000pt;}
.fs2{font-size:192.128000pt;}
.fs3a{font-size:213.120000pt;}
.fs19{font-size:213.248000pt;}
.fs32{font-size:234.880000pt;}
.fs33{font-size:235.008000pt;}
.fs0{font-size:240.000000pt;}
.fs20{font-size:256.000000pt;}
.fs24{font-size:266.880000pt;}
.fs1d{font-size:267.008000pt;}
.fs30{font-size:288.000000pt;}
.fs31{font-size:288.128000pt;}
.fsa{font-size:293.120000pt;}
.fsd{font-size:298.880000pt;}
.fsc{font-size:299.008000pt;}
.fs1a{font-size:320.000000pt;}
.fs18{font-size:320.128000pt;}
.fs3d{font-size:336.128000pt;}
.fs35{font-size:346.880000pt;}
.fs36{font-size:373.120000pt;}
.fs11{font-size:373.248000pt;}
.fs22{font-size:384.000000pt;}
.fs3b{font-size:427.008000pt;}
.fs37{font-size:469.248000pt;}
.y0{bottom:0.000000pt;}
.y10c{bottom:17.952000pt;}
.y187{bottom:26.112000pt;}
.yfe{bottom:26.784000pt;}
.y25{bottom:27.584000pt;}
.y111{bottom:27.904000pt;}
.ya{bottom:28.640000pt;}
.y8{bottom:31.616000pt;}
.ybc{bottom:32.288000pt;}
.yf6{bottom:34.400000pt;}
.y13c{bottom:36.352000pt;}
.y18a{bottom:37.440000pt;}
.yd1{bottom:37.472000pt;}
.y17a{bottom:39.744000pt;}
.y86{bottom:40.000000pt;}
.y4f{bottom:40.256000pt;}
.y189{bottom:41.280000pt;}
.yc{bottom:43.520000pt;}
.y156{bottom:43.744000pt;}
.y7{bottom:44.416000pt;}
.y10a{bottom:50.944000pt;}
.y9{bottom:52.000000pt;}
.y185{bottom:52.896000pt;}
.y179{bottom:55.584000pt;}
.ye{bottom:56.128000pt;}
.y9f{bottom:65.248000pt;}
.y155{bottom:65.344000pt;}
.y184{bottom:65.696000pt;}
.y112{bottom:68.000000pt;}
.yfd{bottom:69.248000pt;}
.y120{bottom:70.336000pt;}
.y178{bottom:71.456000pt;}
.yf4{bottom:71.613333pt;}
.y10e{bottom:73.600000pt;}
.yf1{bottom:75.840000pt;}
.y186{bottom:76.320000pt;}
.yc8{bottom:77.728000pt;}
.ya7{bottom:79.808000pt;}
.y64{bottom:81.856000pt;}
.y177{bottom:87.296000pt;}
.yd0{bottom:91.264000pt;}
.yfc{bottom:91.648000pt;}
.ydc{bottom:92.226667pt;}
.y11f{bottom:96.256000pt;}
.yf9{bottom:97.216000pt;}
.y3e{bottom:97.440000pt;}
.y2b{bottom:98.112000pt;}
.yc7{bottom:100.128000pt;}
.y154{bottom:100.224000pt;}
.yc6{bottom:104.032000pt;}
.y49{bottom:107.040000pt;}
.y1f{bottom:110.624000pt;}
.y9e{bottom:110.688000pt;}
.yfb{bottom:114.048000pt;}
.y176{bottom:116.416000pt;}
.y40{bottom:116.480000pt;}
.y153{bottom:121.824000pt;}
.y93{bottom:123.264000pt;}
.yd2{bottom:123.424000pt;}
.yc5{bottom:128.032000pt;}
.y106{bottom:130.176000pt;}
.y175{bottom:132.256000pt;}
.y62{bottom:135.360000pt;}
.y11e{bottom:135.453333pt;}
.yfa{bottom:136.453333pt;}
.ye0{bottom:138.880000pt;}
.yf8{bottom:138.906667pt;}
.y1e{bottom:139.906667pt;}
.y9d{bottom:142.693333pt;}
.y17f{bottom:144.346667pt;}
.y73{bottom:145.146667pt;}
.y174{bottom:148.093333pt;}
.y130{bottom:148.640000pt;}
.y10f{bottom:155.493333pt;}
.y152{bottom:156.733333pt;}
.y24{bottom:157.760000pt;}
.yec{bottom:158.880000pt;}
.y11{bottom:159.200000pt;}
.yc9{bottom:159.360000pt;}
.y20{bottom:159.653333pt;}
.y4e{bottom:161.026667pt;}
.y124{bottom:161.186667pt;}
.y3f{bottom:161.280000pt;}
.yf7{bottom:161.306667pt;}
.y12c{bottom:163.040000pt;}
.y3d{bottom:164.000000pt;}
.y61{bottom:164.160000pt;}
.yb4{bottom:166.493333pt;}
.y12f{bottom:167.840000pt;}
.y92{bottom:168.573333pt;}
.y1d{bottom:169.186667pt;}
.ya6{bottom:170.560000pt;}
.yf3{bottom:172.160000pt;}
.y11d{bottom:174.653333pt;}
.y9c{bottom:174.693333pt;}
.y173{bottom:177.373333pt;}
.y6c{bottom:177.693333pt;}
.y151{bottom:178.333333pt;}
.yf5{bottom:180.160000pt;}
.y123{bottom:180.386667pt;}
.y77{bottom:180.893333pt;}
.y12b{bottom:182.240000pt;}
.y84{bottom:184.826667pt;}
.y17e{bottom:185.946667pt;}
.y12e{bottom:187.040000pt;}
.y60{bottom:192.960000pt;}
.y10{bottom:195.200000pt;}
.ybb{bottom:196.386667pt;}
.y12{bottom:198.426667pt;}
.y122{bottom:199.586667pt;}
.y11c{bottom:200.573333pt;}
.y12a{bottom:201.466667pt;}
.y8b{bottom:201.920000pt;}
.yaf{bottom:202.306667pt;}
.ya5{bottom:202.560000pt;}
.yef{bottom:206.013333pt;}
.yea{bottom:206.080000pt;}
.ye5{bottom:206.173333pt;}
.y12d{bottom:206.240000pt;}
.y172{bottom:206.493333pt;}
.y9b{bottom:206.720000pt;}
.y23{bottom:207.040000pt;}
.yb2{bottom:208.226667pt;}
.yb3{bottom:208.253333pt;}
.y3c{bottom:208.826667pt;}
.y48{bottom:209.440000pt;}
.y150{bottom:213.373333pt;}
.y91{bottom:213.853333pt;}
.y32{bottom:216.666667pt;}
.y5{bottom:218.106667pt;}
.y15c{bottom:218.173333pt;}
.y121{bottom:218.786667pt;}
.y6b{bottom:219.333333pt;}
.y6{bottom:220.480000pt;}
.y129{bottom:220.666667pt;}
.y171{bottom:222.373333pt;}
.y17d{bottom:227.586667pt;}
.yee{bottom:228.413333pt;}
.ye9{bottom:228.480000pt;}
.ye4{bottom:228.573333pt;}
.y5f{bottom:229.760000pt;}
.yae{bottom:232.386667pt;}
.y159{bottom:232.773333pt;}
.yf2{bottom:233.826667pt;}
.ya4{bottom:234.560000pt;}
.y14f{bottom:234.973333pt;}
.yc4{bottom:235.813333pt;}
.y170{bottom:238.213333pt;}
.y9a{bottom:238.720000pt;}
.y55{bottom:238.880000pt;}
.y11b{bottom:239.973333pt;}
.ye7{bottom:241.760000pt;}
.y47{bottom:244.000000pt;}
.y2a{bottom:247.520000pt;}
.yed{bottom:250.813333pt;}
.ye8{bottom:250.880000pt;}
.ye3{bottom:250.973333pt;}
.y4d{bottom:252.093333pt;}
.y31{bottom:252.546667pt;}
.y105{bottom:255.266667pt;}
.y5e{bottom:258.586667pt;}
.y90{bottom:259.293333pt;}
.yc3{bottom:259.813333pt;}
.y3b{bottom:260.346667pt;}
.y6a{bottom:261.893333pt;}
.yad{bottom:262.653333pt;}
.y139{bottom:265.826667pt;}
.y11a{bottom:265.893333pt;}
.y3{bottom:267.066667pt;}
.y16f{bottom:267.333333pt;}
.y83{bottom:269.026667pt;}
.y17c{bottom:269.186667pt;}
.y138{bottom:269.666667pt;}
.y14e{bottom:269.893333pt;}
.y54{bottom:277.280000pt;}
.y46{bottom:278.560000pt;}
.ya3{bottom:279.866667pt;}
.y72{bottom:282.786667pt;}
.y16e{bottom:283.173333pt;}
.y109{bottom:283.813333pt;}
.y99{bottom:284.000000pt;}
.y110{bottom:285.826667pt;}
.y29{bottom:287.866667pt;}
.y30{bottom:288.386667pt;}
.y7a{bottom:290.786667pt;}
.y14d{bottom:291.493333pt;}
.y119{bottom:291.813333pt;}
.y5d{bottom:295.386667pt;}
.y104{bottom:295.613333pt;}
.ycb{bottom:299.226667pt;}
.yf0{bottom:299.333333pt;}
.y8a{bottom:299.866667pt;}
.y137{bottom:300.866667pt;}
.y13d{bottom:303.426667pt;}
.yba{bottom:303.586667pt;}
.y34{bottom:303.840000pt;}
.y13f{bottom:304.226667pt;}
.y82{bottom:307.426667pt;}
.y69{bottom:307.653333pt;}
.y3a{bottom:311.866667pt;}
.y16d{bottom:312.453333pt;}
.y45{bottom:313.120000pt;}
.y2d{bottom:315.266667pt;}
.y53{bottom:315.680000pt;}
.y13b{bottom:315.746667pt;}
.y98{bottom:316.000000pt;}
.y188{bottom:317.026667pt;}
.y76{bottom:319.173333pt;}
.y158{bottom:319.200000pt;}
.yca{bottom:319.226667pt;}
.y71{bottom:320.226667pt;}
.y5c{bottom:324.186667pt;}
.y2f{bottom:324.226667pt;}
.ye2{bottom:324.640000pt;}
.y183{bottom:325.346667pt;}
.y14c{bottom:326.373333pt;}
.y28{bottom:328.186667pt;}
.y16c{bottom:328.293333pt;}
.y118{bottom:331.013333pt;}
.y33{bottom:332.666667pt;}
.y2{bottom:333.826667pt;}
.y103{bottom:335.933333pt;}
.yda{bottom:339.813333pt;}
.y89{bottom:342.106667pt;}
.yb9{bottom:342.306667pt;}
.yb6{bottom:342.400000pt;}
.ybe{bottom:343.386667pt;}
.ya2{bottom:343.866667pt;}
.y16b{bottom:344.133333pt;}
.y10b{bottom:345.466667pt;}
.y81{bottom:345.826667pt;}
.y17{bottom:346.560000pt;}
.y44{bottom:347.706667pt;}
.y14b{bottom:347.973333pt;}
.y97{bottom:348.026667pt;}
.yd8{bottom:349.666667pt;}
.y8f{bottom:349.893333pt;}
.y68{bottom:352.480000pt;}
.y52{bottom:354.106667pt;}
.y2c{bottom:355.586667pt;}
.y108{bottom:355.813333pt;}
.y113{bottom:355.840000pt;}
.yd6{bottom:356.933333pt;}
.y75{bottom:359.520000pt;}
.y2e{bottom:360.066667pt;}
.y5b{bottom:360.986667pt;}
.y39{bottom:363.426667pt;}
.y1c{bottom:367.453333pt;}
.y27{bottom:368.506667pt;}
.y117{bottom:370.240000pt;}
.y70{bottom:370.946667pt;}
.y22{bottom:371.266667pt;}
.y79{bottom:373.053333pt;}
.y16a{bottom:373.280000pt;}
.y13a{bottom:373.373333pt;}
.y19{bottom:373.506667pt;}
.y181{bottom:374.853333pt;}
.ybd{bottom:375.386667pt;}
.y16{bottom:375.840000pt;}
.y182{bottom:376.093333pt;}
.y13e{bottom:376.226667pt;}
.y102{bottom:376.253333pt;}
.yb5{bottom:381.120000pt;}
.yb8{bottom:381.186667pt;}
.y43{bottom:382.266667pt;}
.yeb{bottom:382.306667pt;}
.y14a{bottom:383.013333pt;}
.y80{bottom:384.253333pt;}
.y88{bottom:384.346667pt;}
.y169{bottom:389.120000pt;}
.y5a{bottom:389.826667pt;}
.y51{bottom:392.506667pt;}
.y67{bottom:394.080000pt;}
.y4c{bottom:395.013333pt;}
.y8e{bottom:395.333333pt;}
.y15{bottom:395.653333pt;}
.yd3{bottom:395.746667pt;}
.y116{bottom:396.160000pt;}
.y1b{bottom:396.733333pt;}
.y1{bottom:400.386667pt;}
.y18{bottom:402.786667pt;}
.yd9{bottom:403.173333pt;}
.y149{bottom:404.613333pt;}
.y168{bottom:404.960000pt;}
.y157{bottom:405.626667pt;}
.y6f{bottom:408.386667pt;}
.yc2{bottom:412.893333pt;}
.y74{bottom:413.120000pt;}
.y38{bottom:414.946667pt;}
.y101{bottom:416.573333pt;}
.y42{bottom:416.826667pt;}
.yb1{bottom:418.653333pt;}
.yb7{bottom:419.906667pt;}
.y7f{bottom:422.653333pt;}
.y180{bottom:424.160000pt;}
.y148{bottom:426.240000pt;}
.y59{bottom:426.626667pt;}
.y8d{bottom:427.360000pt;}
.y107{bottom:427.840000pt;}
.yf{bottom:431.813333pt;}
.y167{bottom:434.080000pt;}
.y13{bottom:434.466667pt;}
.yd5{bottom:434.533333pt;}
.ya1{bottom:434.626667pt;}
.y1a{bottom:434.746667pt;}
.y115{bottom:435.520000pt;}
.yac{bottom:435.933333pt;}
.y66{bottom:436.640000pt;}
.yc1{bottom:436.893333pt;}
.y96{bottom:438.746667pt;}
.y78{bottom:442.173333pt;}
.yd7{bottom:444.706667pt;}
.y6e{bottom:445.853333pt;}
.y147{bottom:447.840000pt;}
.y166{bottom:449.920000pt;}
.y21{bottom:451.933333pt;}
.y58{bottom:455.426667pt;}
.y100{bottom:456.933333pt;}
.yb0{bottom:460.253333pt;}
.y7e{bottom:461.053333pt;}
.y37{bottom:464.253333pt;}
.ye6{bottom:465.253333pt;}
.yab{bottom:466.013333pt;}
.ya0{bottom:466.626667pt;}
.y146{bottom:469.440000pt;}
.y95{bottom:470.746667pt;}
.yd4{bottom:473.253333pt;}
.yde{bottom:473.600000pt;}
.ycd{bottom:476.480000pt;}
.y165{bottom:479.200000pt;}
.y145{bottom:491.040000pt;}
.y57{bottom:492.226667pt;}
.y164{bottom:495.066667pt;}
.yaa{bottom:496.293333pt;}
.y7d{bottom:499.453333pt;}
.ycc{bottom:500.480000pt;}
.y50{bottom:504.413333pt;}
.y36{bottom:506.813333pt;}
.y17b{bottom:508.160000pt;}
.y163{bottom:510.906667pt;}
.y85{bottom:516.986667pt;}
.y63{bottom:517.533333pt;}
.y144{bottom:525.920000pt;}
.ya9{bottom:526.373333pt;}
.y134{bottom:528.386667pt;}
.y128{bottom:529.120000pt;}
.y8c{bottom:530.240000pt;}
.y87{bottom:536.226667pt;}
.y7c{bottom:537.893333pt;}
.y4{bottom:537.986667pt;}
.y4b{bottom:538.080000pt;}
.y162{bottom:540.026667pt;}
.y41{bottom:542.720000pt;}
.yb{bottom:546.693333pt;}
.y143{bottom:547.546667pt;}
.y133{bottom:547.613333pt;}
.ye1{bottom:548.226667pt;}
.y127{bottom:548.320000pt;}
.y6d{bottom:550.853333pt;}
.y35{bottom:551.613333pt;}
.y161{bottom:555.866667pt;}
.ya8{bottom:556.613333pt;}
.y65{bottom:563.360000pt;}
.y114{bottom:564.093333pt;}
.yd{bottom:564.546667pt;}
.y132{bottom:566.813333pt;}
.y126{bottom:567.546667pt;}
.yc0{bottom:571.706667pt;}
.y94{bottom:572.986667pt;}
.yff{bottom:573.146667pt;}
.y26{bottom:573.733333pt;}
.y7b{bottom:576.293333pt;}
.y10d{bottom:576.320000pt;}
.y56{bottom:580.573333pt;}
.y142{bottom:582.426667pt;}
.y160{bottom:584.986667pt;}
.ydb{bottom:585.600000pt;}
.y131{bottom:586.013333pt;}
.y125{bottom:586.746667pt;}
.y136{bottom:588.133333pt;}
.ybf{bottom:595.706667pt;}
.ycf{bottom:600.133333pt;}
.y15f{bottom:600.826667pt;}
.y141{bottom:604.026667pt;}
.y14{bottom:605.920000pt;}
.y4a{bottom:612.386667pt;}
.y15e{bottom:616.666667pt;}
.ydd{bottom:619.333333pt;}
.yce{bottom:624.133333pt;}
.y140{bottom:625.626667pt;}
.ydf{bottom:634.880000pt;}
.y15d{bottom:645.986667pt;}
.y135{bottom:661.533333pt;}
.y15b{bottom:714.720000pt;}
.y15a{bottom:718.560000pt;}
.h7{height:6.365625pt;}
.h62{height:27.552000pt;}
.h6{height:30.080000pt;}
.h5{height:37.005440pt;}
.h63{height:42.720000pt;}
.h8{height:44.960000pt;}
.h2a{height:52.277500pt;}
.h4d{height:52.284375pt;}
.h3c{height:53.040000pt;}
.h5d{height:54.653750pt;}
.h5c{height:54.772562pt;}
.h50{height:58.563750pt;}
.h13{height:59.406250pt;}
.h55{height:59.525062pt;}
.h3b{height:59.670000pt;}
.h52{height:63.656250pt;}
.h38{height:63.750000pt;}
.h39{height:63.852000pt;}
.h28{height:69.505312pt;}
.h2d{height:69.624125pt;}
.ha{height:70.658438pt;}
.h1f{height:71.109375pt;}
.hc{height:73.238125pt;}
.h36{height:74.257812pt;}
.h5a{height:74.376625pt;}
.h45{height:76.500000pt;}
.h4b{height:76.602000pt;}
.h9{height:79.010312pt;}
.h37{height:85.170000pt;}
.h11{height:89.109375pt;}
.h17{height:89.228188pt;}
.h19{height:93.861875pt;}
.h1a{height:93.980687pt;}
.h21{height:99.208437pt;}
.h22{height:99.327250pt;}
.h56{height:102.000000pt;}
.h12{height:102.102000pt;}
.h2e{height:103.960938pt;}
.h2f{height:104.079750pt;}
.hb{height:106.855625pt;}
.h23{height:108.713437pt;}
.h5f{height:110.670000pt;}
.h60{height:110.772000pt;}
.he{height:111.331521pt;}
.h3d{height:112.713750pt;}
.h18{height:114.060000pt;}
.h4{height:118.812500pt;}
.h1b{height:118.830000pt;}
.h1d{height:118.931312pt;}
.h2{height:119.807187pt;}
.h35{height:122.265625pt;}
.h26{height:128.911563pt;}
.h25{height:129.030375pt;}
.h3a{height:133.654000pt;}
.h32{height:133.664062pt;}
.h34{height:133.782875pt;}
.h44{height:134.400000pt;}
.h15{height:138.416562pt;}
.h16{height:138.535375pt;}
.h30{height:143.763125pt;}
.h5e{height:146.816562pt;}
.h3{height:153.102000pt;}
.h49{height:156.960000pt;}
.h57{height:168.119687pt;}
.h59{height:199.279687pt;}
.h1e{height:199.399375pt;}
.h2c{height:203.939063pt;}
.h2b{height:204.036875pt;}
.h3f{height:210.944063pt;}
.h33{height:210.997396pt;}
.h42{height:219.626563pt;}
.h43{height:219.746250pt;}
.h40{height:220.078125pt;}
.h41{height:220.175937pt;}
.h1{height:224.414062pt;}
.h27{height:239.375000pt;}
.h3e{height:244.531250pt;}
.h46{height:246.400000pt;}
.h4e{height:249.548437pt;}
.h24{height:249.668125pt;}
.h4f{height:255.000000pt;}
.h61{height:256.855625pt;}
.h58{height:271.106667pt;}
.hd{height:274.084375pt;}
.h10{height:279.470312pt;}
.hf{height:279.590000pt;}
.h29{height:293.437500pt;}
.h20{height:299.218750pt;}
.h1c{height:299.338437pt;}
.h31{height:310.548604pt;}
.h4a{height:313.760000pt;}
.h51{height:324.353125pt;}
.h53{height:348.889063pt;}
.h14{height:349.008750pt;}
.h47{height:395.360000pt;}
.h5b{height:399.277500pt;}
.h4c{height:423.360000pt;}
.h54{height:438.774375pt;}
.h48{height:470.560000pt;}
.h0{height:720.000000pt;}
.w8{width:78.080000pt;}
.w2{width:85.440000pt;}
.w9{width:92.352000pt;}
.w4{width:161.280000pt;}
.w3{width:404.986667pt;}
.w6{width:631.933333pt;}
.w5{width:839.840000pt;}
.w7{width:1198.880000pt;}
.w1{width:1279.999981pt;}
.w0{width:1280.000000pt;}
.xb2{left:-13.920039pt;}
.x0{left:0.000000pt;}
.x8b{left:9.786667pt;}
.x88{left:48.287981pt;}
.x7f{left:52.959981pt;}
.x3d{left:53.983981pt;}
.x48{left:59.775981pt;}
.x44{left:64.287981pt;}
.xab{left:65.759981pt;}
.xa0{left:68.223981pt;}
.x10{left:71.999981pt;}
.x3a{left:77.439981pt;}
.x58{left:78.815981pt;}
.xa6{left:83.071981pt;}
.xa5{left:85.343981pt;}
.x87{left:86.623981pt;}
.xac{left:88.000000pt;}
.x93{left:92.543981pt;}
.x2d{left:94.687981pt;}
.x90{left:97.599981pt;}
.x2{left:103.039981pt;}
.x59{left:106.175981pt;}
.x98{left:112.767981pt;}
.x1{left:113.855981pt;}
.xb4{left:123.775981pt;}
.xb5{left:125.311981pt;}
.x22{left:126.751981pt;}
.x3f{left:128.991981pt;}
.x26{left:130.175981pt;}
.xad{left:135.359981pt;}
.x23{left:138.013314pt;}
.x66{left:139.746648pt;}
.x40{left:140.986648pt;}
.xb3{left:143.906648pt;}
.x24{left:146.013314pt;}
.x29{left:149.853314pt;}
.x11{left:151.106648pt;}
.x9b{left:152.773314pt;}
.x81{left:154.373314pt;}
.x91{left:157.026648pt;}
.x8a{left:163.840000pt;}
.x2a{left:165.053314pt;}
.xb1{left:166.266648pt;}
.x92{left:168.066648pt;}
.x9f{left:170.466648pt;}
.x82{left:173.413314pt;}
.x9e{left:175.106648pt;}
.x41{left:176.986648pt;}
.x38{left:179.653314pt;}
.x69{left:184.093314pt;}
.xb8{left:192.826667pt;}
.x9a{left:194.053314pt;}
.x2b{left:194.973314pt;}
.x39{left:199.333314pt;}
.x96{left:200.933314pt;}
.xb{left:213.693314pt;}
.x50{left:217.253314pt;}
.x5{left:233.146648pt;}
.x8e{left:237.306648pt;}
.x8d{left:238.586648pt;}
.x1a{left:250.906648pt;}
.x25{left:252.413314pt;}
.x6{left:258.906648pt;}
.x1b{left:263.386648pt;}
.x1d{left:264.639981pt;}
.x19{left:267.226648pt;}
.x71{left:274.973314pt;}
.x72{left:279.293314pt;}
.x7{left:298.266667pt;}
.x63{left:315.333314pt;}
.x73{left:318.559981pt;}
.x8c{left:324.960000pt;}
.xe{left:327.653314pt;}
.x57{left:329.826648pt;}
.x74{left:331.199981pt;}
.x2c{left:334.693314pt;}
.x94{left:355.613314pt;}
.x12{left:378.239981pt;}
.x1e{left:384.346648pt;}
.x97{left:390.053314pt;}
.x70{left:394.973314pt;}
.x13{left:399.839981pt;}
.x9d{left:400.959981pt;}
.x8{left:407.266667pt;}
.x9{left:420.093314pt;}
.x3b{left:427.906648pt;}
.x64{left:430.079981pt;}
.xb6{left:432.253314pt;}
.x65{left:437.919981pt;}
.xf{left:442.946648pt;}
.xaa{left:467.386648pt;}
.xa9{left:469.666648pt;}
.x75{left:471.066648pt;}
.xb7{left:515.359981pt;}
.x80{left:538.213314pt;}
.x1c{left:540.986648pt;}
.x5a{left:553.919981pt;}
.xaf{left:565.853314pt;}
.xae{left:580.773314pt;}
.xc{left:582.653314pt;}
.x2f{left:586.306648pt;}
.xb0{left:590.239981pt;}
.x54{left:591.133314pt;}
.x3e{left:605.119981pt;}
.xa2{left:612.413314pt;}
.x53{left:624.573314pt;}
.xa3{left:635.613314pt;}
.x30{left:639.906648pt;}
.x1f{left:642.533314pt;}
.x31{left:645.026648pt;}
.x36{left:655.106648pt;}
.x6f{left:664.639981pt;}
.xa4{left:665.693314pt;}
.x35{left:669.026648pt;}
.x15{left:671.679981pt;}
.x14{left:672.959981pt;}
.x2e{left:675.106648pt;}
.x34{left:681.666648pt;}
.x37{left:682.626648pt;}
.x76{left:683.813314pt;}
.x5f{left:690.399981pt;}
.x77{left:694.533314pt;}
.x5d{left:695.999981pt;}
.x3c{left:697.599981pt;}
.x20{left:698.853314pt;}
.x46{left:700.226648pt;}
.x45{left:705.026648pt;}
.x16{left:709.439981pt;}
.x49{left:711.519981pt;}
.x4d{left:714.719981pt;}
.x32{left:716.733314pt;}
.x5e{left:731.199981pt;}
.x4b{left:732.479981pt;}
.x60{left:738.426648pt;}
.x68{left:740.893314pt;}
.x55{left:745.413314pt;}
.x33{left:785.533314pt;}
.x4{left:797.053314pt;}
.x67{left:804.093314pt;}
.x4a{left:806.719981pt;}
.x4f{left:818.239981pt;}
.x8f{left:826.173314pt;}
.x4c{left:832.959981pt;}
.x4e{left:837.119981pt;}
.x52{left:841.893314pt;}
.x7d{left:844.093314pt;}
.x28{left:849.346648pt;}
.x7e{left:855.453314pt;}
.x43{left:864.066648pt;}
.x42{left:866.053314pt;}
.x3{left:872.479981pt;}
.x17{left:874.559981pt;}
.xa7{left:879.293314pt;}
.xa8{left:881.413314pt;}
.x5c{left:889.986648pt;}
.x56{left:897.893314pt;}
.x78{left:901.506648pt;}
.xb9{left:904.573333pt;}
.x79{left:910.786648pt;}
.x95{left:916.933314pt;}
.x18{left:948.159981pt;}
.x47{left:970.973314pt;}
.x83{left:973.759981pt;}
.xd{left:978.906648pt;}
.x85{left:980.959981pt;}
.x6a{left:984.413314pt;}
.x7c{left:988.866648pt;}
.x6c{left:991.613314pt;}
.x7b{left:997.346648pt;}
.x86{left:999.999981pt;}
.x6d{left:1010.653314pt;}
.x7a{left:1015.746648pt;}
.x84{left:1032.479981pt;}
.x61{left:1037.186648pt;}
.x6b{left:1043.133314pt;}
.x89{left:1163.813314pt;}
.x9c{left:1164.773314pt;}
.x27{left:1165.733314pt;}
.x21{left:1173.439981pt;}
.xa1{left:1194.173314pt;}
.xa{left:1208.893314pt;}
.x6e{left:1218.559981pt;}
.x5b{left:1224.773314pt;}
.x62{left:1226.213314pt;}
.x51{left:1227.333314pt;}
.x99{left:1251.359981pt;}
}




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