
    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_a275575974ad81bf1a4ee007.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.093262;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_3811a7742227f6f354863b0f.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.910156;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_7b16d2eb2ab835b3f9911e30.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.893066;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_285fa8d63455111d90852235.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.910156;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_00a66d1602173e134ac5f481.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.900391;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_1f352db641de655a3b25d9c9.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.910645;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_fc3217a87b28a140b8b8e17e.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.871094;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_0b285f33ee5dc319042b9ea6.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.857910;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_9bc572694a34105a7b87846b.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.692383;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_2ab1c1865028dcca88126459.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.871094;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;}
.m1{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-19.980600px;}
.v3{vertical-align:-12.000000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:18.000000px;}
.v1{vertical-align:19.980600px;}
.ls22{letter-spacing:-3.300000px;}
.ls1e{letter-spacing:-1.458000px;}
.ls1c{letter-spacing:-1.242000px;}
.lsd{letter-spacing:-1.028160px;}
.ls1a{letter-spacing:-0.972000px;}
.lsb{letter-spacing:-0.907200px;}
.ls1b{letter-spacing:-0.810000px;}
.lsc{letter-spacing:-0.786240px;}
.ls20{letter-spacing:-0.756000px;}
.ls18{letter-spacing:-0.648000px;}
.ls10{letter-spacing:-0.604800px;}
.ls1d{letter-spacing:-0.486000px;}
.lsa{letter-spacing:-0.423360px;}
.ls2{letter-spacing:-0.420000px;}
.ls1f{letter-spacing:-0.324000px;}
.ls1{letter-spacing:-0.120000px;}
.ls0{letter-spacing:0.000000px;}
.ls21{letter-spacing:0.009600px;}
.ls8{letter-spacing:0.120960px;}
.ls12{letter-spacing:0.241920px;}
.lse{letter-spacing:0.362880px;}
.ls19{letter-spacing:0.594000px;}
.lsf{letter-spacing:0.604800px;}
.ls9{letter-spacing:0.665280px;}
.ls17{letter-spacing:0.702000px;}
.ls7{letter-spacing:0.725760px;}
.ls11{letter-spacing:0.786240px;}
.ls13{letter-spacing:0.907200px;}
.ls16{letter-spacing:0.918000px;}
.ls15{letter-spacing:11.394000px;}
.ls4{letter-spacing:12.156480px;}
.ls14{letter-spacing:12.821760px;}
.ls3{letter-spacing:13.063680px;}
.ls5{letter-spacing:14.333760px;}
.ls6{letter-spacing:15.240960px;}
.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;}
}
.ws14{word-spacing:-16.500000px;}
.ws1{word-spacing:-15.000000px;}
.ws9c{word-spacing:-14.333760px;}
.ws97{word-spacing:-14.273280px;}
.ws96{word-spacing:-14.031360px;}
.ws98{word-spacing:-13.789440px;}
.ws95{word-spacing:-13.668480px;}
.ws94{word-spacing:-13.245120px;}
.wsbe{word-spacing:-13.122000px;}
.ws9b{word-spacing:-13.063680px;}
.ws9a{word-spacing:-12.640320px;}
.wsc0{word-spacing:-12.204000px;}
.wse7{word-spacing:-12.000000px;}
.wsc3{word-spacing:-11.718000px;}
.ws106{word-spacing:-11.700000px;}
.wsbd{word-spacing:-11.556000px;}
.wsc2{word-spacing:-10.962000px;}
.wse8{word-spacing:-10.500000px;}
.ws0{word-spacing:-8.745000px;}
.ws113{word-spacing:-4.860000px;}
.wscb{word-spacing:-4.488000px;}
.ws75{word-spacing:-4.224000px;}
.ws10a{word-spacing:-4.200000px;}
.ws7{word-spacing:-3.720000px;}
.ws39{word-spacing:-3.630000px;}
.ws38{word-spacing:-3.432000px;}
.ws4{word-spacing:-3.300000px;}
.ws49{word-spacing:-3.234000px;}
.ws62{word-spacing:-3.168000px;}
.ws80{word-spacing:-3.102000px;}
.ws7c{word-spacing:-3.036000px;}
.ws3a{word-spacing:-2.970000px;}
.wsa1{word-spacing:-2.963520px;}
.ws2f{word-spacing:-2.904000px;}
.ws111{word-spacing:-2.880000px;}
.wsd0{word-spacing:-2.838000px;}
.ws109{word-spacing:-2.820000px;}
.ws6e{word-spacing:-2.706000px;}
.ws108{word-spacing:-2.700000px;}
.ws105{word-spacing:-2.640000px;}
.ws127{word-spacing:-2.520000px;}
.ws8c{word-spacing:-2.508000px;}
.ws31{word-spacing:-2.442000px;}
.ws45{word-spacing:-2.376000px;}
.ws135{word-spacing:-2.340000px;}
.ws22{word-spacing:-2.310000px;}
.ws68{word-spacing:-2.244000px;}
.wsfa{word-spacing:-2.178000px;}
.wsf2{word-spacing:-2.112000px;}
.ws112{word-spacing:-2.100000px;}
.ws40{word-spacing:-1.980000px;}
.ws102{word-spacing:-1.920000px;}
.ws71{word-spacing:-1.914000px;}
.ws99{word-spacing:-1.814400px;}
.ws3f{word-spacing:-1.782000px;}
.ws12a{word-spacing:-1.740000px;}
.wsf0{word-spacing:-1.716000px;}
.wsf6{word-spacing:-1.650000px;}
.ws134{word-spacing:-1.620000px;}
.ws8b{word-spacing:-1.584000px;}
.wsdb{word-spacing:-1.518000px;}
.ws8a{word-spacing:-1.452000px;}
.ws130{word-spacing:-1.440000px;}
.ws123{word-spacing:-1.380000px;}
.wsa5{word-spacing:-1.330560px;}
.ws5f{word-spacing:-1.320000px;}
.ws1c{word-spacing:-1.254000px;}
.ws50{word-spacing:-1.122000px;}
.ws3{word-spacing:-1.080000px;}
.ws6a{word-spacing:-1.056000px;}
.ws44{word-spacing:-0.990000px;}
.wsa9{word-spacing:-0.967680px;}
.ws74{word-spacing:-0.924000px;}
.ws5a{word-spacing:-0.858000px;}
.wsa3{word-spacing:-0.846720px;}
.ws4c{word-spacing:-0.792000px;}
.wsa7{word-spacing:-0.786240px;}
.ws121{word-spacing:-0.720000px;}
.wsbf{word-spacing:-0.702000px;}
.ws69{word-spacing:-0.660000px;}
.ws9d{word-spacing:-0.604800px;}
.ws33{word-spacing:-0.594000px;}
.wsab{word-spacing:-0.544320px;}
.ws1e{word-spacing:-0.528000px;}
.ws25{word-spacing:-0.462000px;}
.wsb1{word-spacing:-0.396000px;}
.wsba{word-spacing:-0.330000px;}
.wsa8{word-spacing:-0.302400px;}
.ws115{word-spacing:-0.300000px;}
.wsc4{word-spacing:-0.216000px;}
.ws46{word-spacing:-0.198000px;}
.ws70{word-spacing:-0.132000px;}
.wse1{word-spacing:-0.066000px;}
.ws2{word-spacing:0.000000px;}
.wsc5{word-spacing:0.054000px;}
.ws118{word-spacing:0.060000px;}
.ws5b{word-spacing:0.066000px;}
.wsb{word-spacing:0.120000px;}
.ws9f{word-spacing:0.181440px;}
.ws101{word-spacing:0.240000px;}
.ws56{word-spacing:0.264000px;}
.wsa2{word-spacing:0.302400px;}
.ws43{word-spacing:0.330000px;}
.ws10b{word-spacing:0.360000px;}
.ws37{word-spacing:0.396000px;}
.wsf{word-spacing:0.420000px;}
.ws9e{word-spacing:0.423360px;}
.ws53{word-spacing:0.462000px;}
.ws6f{word-spacing:0.528000px;}
.wsd8{word-spacing:0.594000px;}
.ws104{word-spacing:0.600000px;}
.wsd5{word-spacing:0.660000px;}
.wsc{word-spacing:0.720000px;}
.ws2e{word-spacing:0.726000px;}
.ws117{word-spacing:0.780000px;}
.wsa0{word-spacing:0.786240px;}
.wsf8{word-spacing:0.792000px;}
.ws52{word-spacing:0.858000px;}
.wsa4{word-spacing:0.907200px;}
.ws11d{word-spacing:0.960000px;}
.ws58{word-spacing:0.990000px;}
.wsa6{word-spacing:1.028160px;}
.ws3d{word-spacing:1.056000px;}
.wsc9{word-spacing:1.080000px;}
.ws125{word-spacing:1.140000px;}
.ws59{word-spacing:1.188000px;}
.ws20{word-spacing:1.254000px;}
.ws13{word-spacing:1.260000px;}
.wsfb{word-spacing:1.320000px;}
.wsff{word-spacing:1.380000px;}
.ws4f{word-spacing:1.386000px;}
.ws81{word-spacing:1.452000px;}
.wsc7{word-spacing:1.458000px;}
.ws11{word-spacing:1.500000px;}
.wsca{word-spacing:1.512000px;}
.wsbb{word-spacing:1.518000px;}
.wsc6{word-spacing:1.566000px;}
.wsac{word-spacing:1.572480px;}
.ws55{word-spacing:1.584000px;}
.ws1f{word-spacing:1.650000px;}
.ws42{word-spacing:1.716000px;}
.wsc8{word-spacing:1.728000px;}
.ws3c{word-spacing:1.782000px;}
.ws34{word-spacing:1.914000px;}
.ws8{word-spacing:2.100000px;}
.ws7b{word-spacing:2.112000px;}
.ws6{word-spacing:2.160000px;}
.wse4{word-spacing:2.178000px;}
.wsea{word-spacing:2.244000px;}
.ws88{word-spacing:2.310000px;}
.wsc1{word-spacing:2.430000px;}
.ws6b{word-spacing:2.508000px;}
.wsd7{word-spacing:2.574000px;}
.wse2{word-spacing:2.640000px;}
.wscf{word-spacing:2.706000px;}
.wsd4{word-spacing:2.772000px;}
.ws138{word-spacing:2.820000px;}
.wsaf{word-spacing:2.838000px;}
.wsbc{word-spacing:2.970000px;}
.ws122{word-spacing:3.000000px;}
.wsaa{word-spacing:3.102000px;}
.ws78{word-spacing:3.168000px;}
.ws2d{word-spacing:3.234000px;}
.wsda{word-spacing:3.366000px;}
.ws5d{word-spacing:3.432000px;}
.ws64{word-spacing:3.498000px;}
.wsf7{word-spacing:3.564000px;}
.ws10{word-spacing:3.600000px;}
.wsee{word-spacing:3.630000px;}
.ws137{word-spacing:3.660000px;}
.wsdc{word-spacing:3.696000px;}
.ws32{word-spacing:3.762000px;}
.ws9{word-spacing:3.780000px;}
.wsce{word-spacing:3.828000px;}
.ws136{word-spacing:3.840000px;}
.wsb4{word-spacing:3.894000px;}
.ws5{word-spacing:3.900000px;}
.ws51{word-spacing:3.960000px;}
.wsa{word-spacing:4.080000px;}
.wsf9{word-spacing:4.092000px;}
.wsf1{word-spacing:4.158000px;}
.ws7d{word-spacing:4.224000px;}
.ws13b{word-spacing:4.260000px;}
.ws2c{word-spacing:4.290000px;}
.ws12{word-spacing:4.320000px;}
.wscc{word-spacing:4.356000px;}
.wsd1{word-spacing:4.422000px;}
.ws13e{word-spacing:4.440000px;}
.ws86{word-spacing:4.488000px;}
.ws15{word-spacing:4.554000px;}
.ws131{word-spacing:4.560000px;}
.ws10f{word-spacing:4.680000px;}
.ws27{word-spacing:4.686000px;}
.wse3{word-spacing:4.752000px;}
.ws77{word-spacing:4.818000px;}
.wsd{word-spacing:4.860000px;}
.ws76{word-spacing:4.884000px;}
.ws3b{word-spacing:4.950000px;}
.ws16{word-spacing:5.016000px;}
.ws4d{word-spacing:5.082000px;}
.ws11f{word-spacing:5.100000px;}
.wse0{word-spacing:5.148000px;}
.ws124{word-spacing:5.160000px;}
.wsec{word-spacing:5.214000px;}
.ws7a{word-spacing:5.280000px;}
.ws84{word-spacing:5.346000px;}
.ws17{word-spacing:5.544000px;}
.ws110{word-spacing:5.580000px;}
.wsdf{word-spacing:5.610000px;}
.wsd9{word-spacing:5.808000px;}
.wse{word-spacing:5.820000px;}
.ws18{word-spacing:5.874000px;}
.ws93{word-spacing:5.940000px;}
.wsb0{word-spacing:6.006000px;}
.wsb2{word-spacing:6.072000px;}
.ws41{word-spacing:6.138000px;}
.ws119{word-spacing:6.180000px;}
.ws57{word-spacing:6.204000px;}
.ws12d{word-spacing:6.240000px;}
.ws65{word-spacing:6.270000px;}
.ws100{word-spacing:6.300000px;}
.ws36{word-spacing:6.336000px;}
.ws28{word-spacing:6.468000px;}
.ws12f{word-spacing:6.480000px;}
.ws54{word-spacing:6.534000px;}
.ws10d{word-spacing:6.540000px;}
.ws90{word-spacing:6.732000px;}
.ws10e{word-spacing:6.780000px;}
.ws139{word-spacing:6.840000px;}
.wsb5{word-spacing:6.864000px;}
.ws47{word-spacing:6.930000px;}
.ws61{word-spacing:6.996000px;}
.ws116{word-spacing:7.080000px;}
.ws21{word-spacing:7.128000px;}
.ws85{word-spacing:7.194000px;}
.ws11b{word-spacing:7.200000px;}
.wsf3{word-spacing:7.326000px;}
.ws6d{word-spacing:7.392000px;}
.ws48{word-spacing:7.458000px;}
.ws7f{word-spacing:7.590000px;}
.ws6c{word-spacing:7.656000px;}
.ws120{word-spacing:7.680000px;}
.ws7e{word-spacing:7.722000px;}
.wsb7{word-spacing:7.788000px;}
.ws72{word-spacing:7.854000px;}
.wsb8{word-spacing:7.920000px;}
.ws66{word-spacing:8.052000px;}
.wsb9{word-spacing:8.118000px;}
.ws13f{word-spacing:8.160000px;}
.wsd3{word-spacing:8.184000px;}
.wscd{word-spacing:8.250000px;}
.ws24{word-spacing:8.316000px;}
.ws35{word-spacing:8.382000px;}
.ws2a{word-spacing:8.448000px;}
.ws29{word-spacing:8.580000px;}
.wsd6{word-spacing:8.646000px;}
.wsf5{word-spacing:8.712000px;}
.ws30{word-spacing:8.778000px;}
.ws13d{word-spacing:8.820000px;}
.ws5e{word-spacing:8.844000px;}
.ws103{word-spacing:9.000000px;}
.ws4e{word-spacing:9.042000px;}
.ws26{word-spacing:9.108000px;}
.ws13a{word-spacing:9.180000px;}
.ws73{word-spacing:9.240000px;}
.ws8f{word-spacing:9.306000px;}
.wsad{word-spacing:9.372000px;}
.ws91{word-spacing:9.438000px;}
.ws11c{word-spacing:9.480000px;}
.ws1b{word-spacing:9.504000px;}
.wsb3{word-spacing:9.570000px;}
.ws82{word-spacing:9.636000px;}
.ws67{word-spacing:9.834000px;}
.wse9{word-spacing:9.900000px;}
.ws3e{word-spacing:10.164000px;}
.ws12b{word-spacing:10.200000px;}
.ws1d{word-spacing:10.230000px;}
.ws8e{word-spacing:10.296000px;}
.ws12e{word-spacing:10.560000px;}
.ws2b{word-spacing:10.758000px;}
.wse6{word-spacing:10.824000px;}
.wsd2{word-spacing:11.088000px;}
.wsdd{word-spacing:11.154000px;}
.wsfe{word-spacing:11.220000px;}
.ws4a{word-spacing:11.286000px;}
.ws23{word-spacing:11.616000px;}
.ws128{word-spacing:11.760000px;}
.wsfc{word-spacing:11.814000px;}
.ws60{word-spacing:11.880000px;}
.ws114{word-spacing:12.180000px;}
.ws83{word-spacing:12.342000px;}
.ws132{word-spacing:12.540000px;}
.wsb6{word-spacing:12.606000px;}
.ws19{word-spacing:12.672000px;}
.ws133{word-spacing:12.720000px;}
.ws10c{word-spacing:12.840000px;}
.ws107{word-spacing:12.900000px;}
.ws87{word-spacing:12.936000px;}
.ws12c{word-spacing:13.020000px;}
.wsae{word-spacing:13.200000px;}
.wse5{word-spacing:13.926000px;}
.ws11e{word-spacing:14.220000px;}
.ws129{word-spacing:14.280000px;}
.ws8d{word-spacing:14.388000px;}
.ws140{word-spacing:14.580000px;}
.ws89{word-spacing:14.586000px;}
.wsed{word-spacing:15.048000px;}
.wsde{word-spacing:15.444000px;}
.wseb{word-spacing:15.906000px;}
.wsfd{word-spacing:16.962000px;}
.wsf4{word-spacing:17.292000px;}
.ws92{word-spacing:17.358000px;}
.ws13c{word-spacing:17.760000px;}
.ws4b{word-spacing:18.018000px;}
.ws79{word-spacing:18.084000px;}
.ws142{word-spacing:18.180000px;}
.ws11a{word-spacing:19.680000px;}
.ws63{word-spacing:19.866000px;}
.ws141{word-spacing:20.520000px;}
.ws126{word-spacing:20.640000px;}
.wsef{word-spacing:21.384000px;}
.ws5c{word-spacing:21.714000px;}
.ws1a{word-spacing:26.862000px;}
._1c{margin-left:-1192.069080px;}
._19{margin-left:-1177.303680px;}
._17{margin-left:-1162.183680px;}
._15{margin-left:-1146.104280px;}
._2a{margin-left:-1056.948480px;}
._2d{margin-left:-1040.213280px;}
._24{margin-left:-1035.357120px;}
._3f{margin-left:-1023.321600px;}
._27{margin-left:-1018.621920px;}
._1f{margin-left:-1013.160960px;}
._43{margin-left:-1002.939840px;}
._3c{margin-left:-1001.669760px;}
._22{margin-left:-998.645760px;}
._35{margin-left:-988.848000px;}
._32{margin-left:-980.199360px;}
._1a{margin-left:-846.392880px;}
._40{margin-left:-845.268480px;}
._3e{margin-left:-843.998400px;}
._3a{margin-left:-839.403240px;}
._3d{margin-left:-825.854400px;}
._39{margin-left:-823.677120px;}
._42{margin-left:-822.407040px;}
._41{margin-left:-804.263040px;}
._3b{margin-left:-800.331840px;}
._56{margin-left:-794.983560px;}
._38{margin-left:-782.671680px;}
._34{margin-left:-780.917760px;}
._31{margin-left:-778.740480px;}
._44{margin-left:-764.502720px;}
._33{margin-left:-762.592320px;}
._30{margin-left:-760.415040px;}
._28{margin-left:-758.903040px;}
._37{margin-left:-757.693440px;}
._51{margin-left:-756.159600px;}
._29{margin-left:-745.899840px;}
._36{margin-left:-738.823680px;}
._4e{margin-left:-736.719600px;}
._2b{margin-left:-727.047840px;}
._4f{margin-left:-723.941640px;}
._4d{margin-left:-720.317400px;}
._49{margin-left:-719.069400px;}
._1b{margin-left:-717.837120px;}
._18{margin-left:-715.055040px;}
._2c{margin-left:-714.044640px;}
._2f{margin-left:-707.936160px;}
._4c{margin-left:-704.949600px;}
._57{margin-left:-703.247400px;}
._23{margin-left:-702.121920px;}
._53{margin-left:-700.877400px;}
._54{margin-left:-698.717400px;}
._2e{margin-left:-696.082080px;}
._59{margin-left:-693.585480px;}
._4b{margin-left:-687.568800px;}
._25{margin-left:-683.804640px;}
._52{margin-left:-681.647400px;}
._58{margin-left:-680.645400px;}
._48{margin-left:-678.328800px;}
._50{margin-left:-674.709600px;}
._1d{margin-left:-671.872320px;}
._26{margin-left:-670.861920px;}
._16{margin-left:-668.735640px;}
._4a{margin-left:-663.455400px;}
._55{margin-left:-661.997400px;}
._1e{margin-left:-658.929600px;}
._46{margin-left:-656.728800px;}
._47{margin-left:-655.008720px;}
._20{margin-left:-642.237120px;}
._45{margin-left:-639.448800px;}
._14{margin-left:-637.338240px;}
._21{margin-left:-629.294400px;}
._0{margin-left:-7.740000px;}
._6{margin-left:-6.660000px;}
._1{margin-left:-5.520000px;}
._7{margin-left:-3.840000px;}
._5{margin-left:-2.220000px;}
._4{margin-left:-1.200000px;}
._2{width:1.157400px;}
._11{width:2.230800px;}
._3{width:3.319800px;}
._9{width:4.320000px;}
._a{width:6.120000px;}
._8{width:7.440000px;}
._d{width:9.108000px;}
._e{width:10.296000px;}
._c{width:11.352000px;}
._10{width:12.408000px;}
._f{width:13.794000px;}
._5d{width:16.440000px;}
._12{width:18.414000px;}
._5a{width:19.470000px;}
._13{width:20.988000px;}
._5c{width:22.576200px;}
._60{width:24.230400px;}
._61{width:25.358400px;}
._b{width:26.664000px;}
._5b{width:28.512000px;}
._5e{width:35.460000px;}
._5f{width:37.140000px;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(35,31,32);}
.fs2{font-size:34.980000px;}
.fs8{font-size:42.000000px;}
.fs5{font-size:48.000000px;}
.fs7{font-size:54.000000px;}
.fs1{font-size:60.000000px;}
.fs6{font-size:60.480000px;}
.fs4{font-size:66.000000px;}
.fs0{font-size:72.000000px;}
.fs3{font-size:120.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:60.254100px;}
.y30{bottom:60.404250px;}
.y2f{bottom:110.581050px;}
.ybf{bottom:114.016350px;}
.y74{bottom:114.158100px;}
.yac{bottom:116.928150px;}
.y65{bottom:116.944350px;}
.y12f{bottom:124.144350px;}
.y2e{bottom:128.581050px;}
.ybe{bottom:132.016350px;}
.y73{bottom:132.158100px;}
.yab{bottom:136.728150px;}
.y64{bottom:136.744200px;}
.y134{bottom:140.219250px;}
.y12e{bottom:142.144350px;}
.y2d{bottom:146.581050px;}
.y72{bottom:150.158100px;}
.yaa{bottom:156.528150px;}
.y63{bottom:156.544350px;}
.y12d{bottom:160.144350px;}
.y2c{bottom:164.581050px;}
.y71{bottom:168.158100px;}
.ya9{bottom:176.328150px;}
.y62{bottom:176.344350px;}
.y12c{bottom:178.144350px;}
.yf7{bottom:179.079300px;}
.ycb{bottom:179.391150px;}
.y2b{bottom:182.581050px;}
.y16b{bottom:195.384300px;}
.ya8{bottom:196.128150px;}
.y61{bottom:196.144350px;}
.yf6{bottom:198.879300px;}
.y2a{bottom:200.581050px;}
.y133{bottom:212.219250px;}
.y16a{bottom:213.384300px;}
.y182{bottom:213.625950px;}
.y12b{bottom:214.144350px;}
.yc0{bottom:215.303250px;}
.ya7{bottom:215.928150px;}
.y60{bottom:215.944350px;}
.y169{bottom:231.384300px;}
.y12a{bottom:232.144350px;}
.yf8{bottom:233.776350px;}
.yeb{bottom:234.259050px;}
.ya6{bottom:235.728150px;}
.y5f{bottom:235.744200px;}
.yc1{bottom:244.469730px;}
.y168{bottom:249.384300px;}
.y178{bottom:249.625950px;}
.y129{bottom:250.144350px;}
.y26{bottom:251.869200px;}
.y5e{bottom:255.544350px;}
.yfb{bottom:260.776350px;}
.yf9{bottom:261.856350px;}
.yec{bottom:262.881210px;}
.y132{bottom:266.219250px;}
.y167{bottom:267.384300px;}
.y128{bottom:268.144350px;}
.yc2{bottom:273.091890px;}
.ya5{bottom:275.328150px;}
.y5d{bottom:275.344350px;}
.y166{bottom:285.384300px;}
.y127{bottom:286.144350px;}
.y25{bottom:287.869200px;}
.yfa{bottom:288.856350px;}
.yed{bottom:291.503370px;}
.ya4{bottom:295.128150px;}
.y5c{bottom:295.144350px;}
.yc3{bottom:301.714050px;}
.y165{bottom:303.384300px;}
.y177{bottom:303.625950px;}
.y126{bottom:304.144350px;}
.y24{bottom:305.869200px;}
.ya3{bottom:314.928150px;}
.y5b{bottom:314.944350px;}
.yfc{bottom:317.476350px;}
.yee{bottom:320.125530px;}
.y131{bottom:320.219250px;}
.y164{bottom:321.384300px;}
.y125{bottom:322.144350px;}
.y23{bottom:323.869200px;}
.yc4{bottom:330.336210px;}
.ya2{bottom:334.728150px;}
.y5a{bottom:334.744200px;}
.y163{bottom:339.384300px;}
.y124{bottom:340.144350px;}
.y22{bottom:341.869200px;}
.y104{bottom:343.396350px;}
.yff{bottom:343.936350px;}
.yfd{bottom:345.556350px;}
.yef{bottom:348.747690px;}
.ya1{bottom:354.528150px;}
.y59{bottom:354.544350px;}
.y162{bottom:357.384300px;}
.y181{bottom:357.625950px;}
.y123{bottom:358.144350px;}
.yc5{bottom:358.958370px;}
.y21{bottom:359.869200px;}
.yfe{bottom:372.556350px;}
.y130{bottom:374.219250px;}
.ya0{bottom:374.328150px;}
.y58{bottom:374.344350px;}
.y161{bottom:375.384300px;}
.y176{bottom:375.625950px;}
.y122{bottom:376.144350px;}
.yf0{bottom:377.369850px;}
.y20{bottom:377.869200px;}
.yc6{bottom:387.580530px;}
.y160{bottom:393.384300px;}
.y9f{bottom:394.128150px;}
.y57{bottom:394.144350px;}
.y1f{bottom:395.869200px;}
.y100{bottom:400.096350px;}
.yf1{bottom:405.992010px;}
.y15f{bottom:411.384300px;}
.y180{bottom:411.625950px;}
.y1e{bottom:413.869200px;}
.y9e{bottom:413.928150px;}
.y56{bottom:413.944350px;}
.yc7{bottom:416.202690px;}
.yc9{bottom:416.747010px;}
.y103{bottom:427.096350px;}
.y101{bottom:428.176350px;}
.y15e{bottom:429.384300px;}
.y1d{bottom:431.869200px;}
.y9d{bottom:433.728150px;}
.y55{bottom:433.744350px;}
.yf2{bottom:434.614170px;}
.yf4{bottom:435.158490px;}
.yc8{bottom:444.824850px;}
.y15d{bottom:447.384300px;}
.y175{bottom:447.625950px;}
.y1ab{bottom:447.626100px;}
.y1c{bottom:449.869200px;}
.y9c{bottom:453.528150px;}
.y54{bottom:453.544350px;}
.y102{bottom:454.636350px;}
.yf3{bottom:463.780650px;}
.y15c{bottom:465.384300px;}
.y17f{bottom:465.625950px;}
.y1aa{bottom:465.626100px;}
.y1b{bottom:467.869200px;}
.y9b{bottom:473.328150px;}
.y53{bottom:473.344350px;}
.yca{bottom:473.991330px;}
.y105{bottom:483.256350px;}
.y15b{bottom:483.384300px;}
.y1a9{bottom:483.626100px;}
.y1a{bottom:485.869200px;}
.yf5{bottom:492.402810px;}
.y9a{bottom:493.128150px;}
.y52{bottom:493.144350px;}
.y15a{bottom:501.384300px;}
.y1a8{bottom:501.626100px;}
.y19{bottom:503.869200px;}
.y108{bottom:510.256350px;}
.y106{bottom:511.336350px;}
.y99{bottom:512.928150px;}
.y51{bottom:512.944350px;}
.y159{bottom:519.384300px;}
.y1b0{bottom:519.625950px;}
.y1a7{bottom:519.626100px;}
.y98{bottom:532.728150px;}
.y50{bottom:532.744350px;}
.y158{bottom:537.384300px;}
.y174{bottom:537.625950px;}
.y1a6{bottom:537.626100px;}
.y107{bottom:538.336350px;}
.y18{bottom:539.869200px;}
.ybd{bottom:542.510250px;}
.y97{bottom:552.528150px;}
.y4f{bottom:552.544350px;}
.yea{bottom:552.810150px;}
.y157{bottom:555.384300px;}
.y1b4{bottom:555.625950px;}
.y1a5{bottom:555.626100px;}
.ybc{bottom:560.510250px;}
.y109{bottom:566.956350px;}
.y96{bottom:572.328150px;}
.y4e{bottom:572.344350px;}
.ye9{bottom:572.610150px;}
.y156{bottom:573.384300px;}
.y1a4{bottom:573.626100px;}
.y155{bottom:591.384300px;}
.y173{bottom:591.625950px;}
.y1a3{bottom:591.626100px;}
.y95{bottom:592.128150px;}
.y4d{bottom:592.144350px;}
.ye8{bottom:592.410150px;}
.y111{bottom:592.876350px;}
.y10c{bottom:593.416350px;}
.y17{bottom:593.869200px;}
.y10a{bottom:595.036350px;}
.ybb{bottom:607.884900px;}
.y154{bottom:609.384300px;}
.y17e{bottom:609.625950px;}
.y1a2{bottom:609.626100px;}
.y4c{bottom:611.944350px;}
.ye7{bottom:612.210150px;}
.y10b{bottom:621.496350px;}
.y153{bottom:627.384300px;}
.y1b3{bottom:627.625950px;}
.y1a1{bottom:627.626100px;}
.y16{bottom:629.869200px;}
.y94{bottom:631.728150px;}
.y4b{bottom:631.744350px;}
.ye6{bottom:632.010150px;}
.y78{bottom:640.987050px;}
.yad{bottom:644.353200px;}
.y152{bottom:645.384300px;}
.y172{bottom:645.625950px;}
.y1a0{bottom:645.626100px;}
.y15{bottom:647.869200px;}
.y10d{bottom:649.576350px;}
.y93{bottom:651.528150px;}
.y4a{bottom:651.544350px;}
.ye5{bottom:651.810150px;}
.y77{bottom:658.987050px;}
.y151{bottom:663.384300px;}
.y17d{bottom:663.625950px;}
.y19f{bottom:663.626100px;}
.y14{bottom:665.869200px;}
.y92{bottom:671.328150px;}
.y49{bottom:671.344350px;}
.ye4{bottom:671.610150px;}
.yae{bottom:672.975360px;}
.y110{bottom:676.576350px;}
.y76{bottom:676.987050px;}
.y10e{bottom:677.116350px;}
.y150{bottom:681.384300px;}
.y19e{bottom:681.626100px;}
.y13{bottom:683.869200px;}
.y91{bottom:691.128150px;}
.y48{bottom:691.144350px;}
.ye3{bottom:691.410150px;}
.y75{bottom:694.987050px;}
.y14f{bottom:699.384300px;}
.y1b2{bottom:699.625950px;}
.y19d{bottom:699.626100px;}
.yaf{bottom:701.597520px;}
.y12{bottom:701.869200px;}
.y10f{bottom:704.116350px;}
.y90{bottom:710.928150px;}
.y47{bottom:710.944350px;}
.ye2{bottom:711.210150px;}
.y14e{bottom:717.384300px;}
.y171{bottom:717.625950px;}
.y19c{bottom:717.626100px;}
.y11{bottom:719.869200px;}
.yb0{bottom:730.219680px;}
.y8f{bottom:730.728150px;}
.y46{bottom:730.744350px;}
.ye1{bottom:731.010150px;}
.y112{bottom:732.736350px;}
.y14d{bottom:735.384300px;}
.y19b{bottom:735.626100px;}
.y10{bottom:737.869200px;}
.y8e{bottom:750.528150px;}
.y45{bottom:750.544350px;}
.ye0{bottom:750.810150px;}
.y14c{bottom:753.384300px;}
.y1b1{bottom:753.625950px;}
.y19a{bottom:753.626100px;}
.yf{bottom:755.869200px;}
.yb1{bottom:758.841840px;}
.y115{bottom:759.736350px;}
.y113{bottom:760.816350px;}
.y8d{bottom:770.328150px;}
.y44{bottom:770.344350px;}
.ydf{bottom:770.610150px;}
.y14b{bottom:771.384300px;}
.y170{bottom:771.625950px;}
.y199{bottom:771.626100px;}
.ye{bottom:773.869200px;}
.y114{bottom:787.816350px;}
.yb2{bottom:788.008320px;}
.y14a{bottom:789.384300px;}
.y198{bottom:789.626100px;}
.y8c{bottom:790.128150px;}
.y43{bottom:790.144350px;}
.yde{bottom:790.410150px;}
.yd{bottom:791.869200px;}
.y149{bottom:807.384300px;}
.y1af{bottom:807.625950px;}
.y197{bottom:807.626100px;}
.yc{bottom:809.869200px;}
.y8b{bottom:809.928150px;}
.y42{bottom:809.944350px;}
.ydd{bottom:810.210150px;}
.y116{bottom:815.896350px;}
.yb3{bottom:816.630480px;}
.y148{bottom:825.384300px;}
.y196{bottom:825.626100px;}
.yb{bottom:827.869200px;}
.y8a{bottom:829.728150px;}
.y41{bottom:829.744200px;}
.ydc{bottom:830.010150px;}
.y147{bottom:843.384300px;}
.y16f{bottom:843.625950px;}
.y195{bottom:843.626100px;}
.y117{bottom:844.516350px;}
.yb4{bottom:845.252640px;}
.ya{bottom:845.869200px;}
.y89{bottom:849.528150px;}
.y40{bottom:849.544350px;}
.ydb{bottom:849.810150px;}
.y11b{bottom:850.996350px;}
.y146{bottom:861.384300px;}
.y17c{bottom:861.625950px;}
.y194{bottom:861.626100px;}
.y9{bottom:863.869200px;}
.y121{bottom:864.496350px;}
.y88{bottom:869.328150px;}
.y3f{bottom:869.344350px;}
.yda{bottom:869.610150px;}
.y119{bottom:870.976350px;}
.yb5{bottom:873.874800px;}
.y11a{bottom:879.076350px;}
.y145{bottom:879.384300px;}
.y193{bottom:879.626100px;}
.y8{bottom:881.869200px;}
.y118{bottom:887.176350px;}
.y87{bottom:889.128150px;}
.y3e{bottom:889.144350px;}
.yd9{bottom:889.410150px;}
.y144{bottom:897.384300px;}
.y192{bottom:897.626100px;}
.yb6{bottom:902.496960px;}
.y86{bottom:908.928150px;}
.y3d{bottom:908.944350px;}
.yd8{bottom:909.210150px;}
.y11c{bottom:914.176350px;}
.y143{bottom:915.384300px;}
.y191{bottom:915.626100px;}
.y7{bottom:917.869200px;}
.y85{bottom:928.728150px;}
.y3c{bottom:928.744200px;}
.yd7{bottom:929.010150px;}
.yb7{bottom:931.119120px;}
.y142{bottom:933.384300px;}
.y16e{bottom:933.625950px;}
.y190{bottom:933.626100px;}
.y11d{bottom:940.636350px;}
.y84{bottom:948.528150px;}
.y6f{bottom:948.544200px;}
.y3b{bottom:948.544350px;}
.yd6{bottom:948.810150px;}
.y141{bottom:951.384300px;}
.y1ae{bottom:951.625950px;}
.y18f{bottom:951.626100px;}
.y120{bottom:955.756350px;}
.y6{bottom:959.517300px;}
.yb8{bottom:959.741280px;}
.y11e{bottom:967.636350px;}
.y83{bottom:968.328150px;}
.y6e{bottom:968.344200px;}
.y3a{bottom:968.344350px;}
.yd5{bottom:968.610150px;}
.y140{bottom:969.384300px;}
.y18e{bottom:969.626100px;}
.y5{bottom:972.522150px;}
.y13f{bottom:987.384300px;}
.y18d{bottom:987.626100px;}
.y82{bottom:988.128150px;}
.y6d{bottom:988.144200px;}
.y39{bottom:988.144350px;}
.yb9{bottom:988.363440px;}
.yd4{bottom:988.410150px;}
.y4{bottom:995.517300px;}
.y11f{bottom:996.256350px;}
.y13e{bottom:1005.384300px;}
.y17b{bottom:1005.625950px;}
.y18c{bottom:1005.626100px;}
.y81{bottom:1007.928150px;}
.y6c{bottom:1007.944200px;}
.y38{bottom:1007.944350px;}
.yd3{bottom:1008.210150px;}
.y3{bottom:1008.522150px;}
.yba{bottom:1017.529920px;}
.y13d{bottom:1023.384300px;}
.y16d{bottom:1023.625950px;}
.y18b{bottom:1023.626100px;}
.y2{bottom:1026.522150px;}
.y80{bottom:1027.728150px;}
.y37{bottom:1027.744200px;}
.yd2{bottom:1028.010150px;}
.y13c{bottom:1041.384300px;}
.y1ad{bottom:1041.625950px;}
.y18a{bottom:1041.626100px;}
.y7f{bottom:1047.528150px;}
.y6b{bottom:1047.544200px;}
.y36{bottom:1047.544350px;}
.yd1{bottom:1047.810150px;}
.y13b{bottom:1059.384300px;}
.y189{bottom:1059.626100px;}
.y28{bottom:1061.442150px;}
.y7e{bottom:1067.328150px;}
.y6a{bottom:1067.344200px;}
.y35{bottom:1067.344350px;}
.yd0{bottom:1067.610150px;}
.y13a{bottom:1077.384300px;}
.y17a{bottom:1077.625950px;}
.y188{bottom:1077.626100px;}
.y7d{bottom:1087.128150px;}
.y69{bottom:1087.144200px;}
.y34{bottom:1087.144350px;}
.ycf{bottom:1087.410150px;}
.y139{bottom:1095.384300px;}
.y187{bottom:1095.626100px;}
.y27{bottom:1097.442150px;}
.y7c{bottom:1106.928150px;}
.y68{bottom:1106.944200px;}
.y33{bottom:1106.944350px;}
.yce{bottom:1107.210150px;}
.y138{bottom:1113.384300px;}
.y16c{bottom:1113.625950px;}
.y186{bottom:1113.626100px;}
.y7b{bottom:1126.728150px;}
.y32{bottom:1126.744200px;}
.ycd{bottom:1127.010150px;}
.y137{bottom:1131.384300px;}
.y1ac{bottom:1131.625950px;}
.y185{bottom:1131.626100px;}
.y7a{bottom:1146.528150px;}
.y67{bottom:1146.544200px;}
.y70{bottom:1146.544350px;}
.y136{bottom:1149.384300px;}
.y179{bottom:1149.625950px;}
.y184{bottom:1149.626100px;}
.y29{bottom:1165.304100px;}
.y79{bottom:1166.328150px;}
.y66{bottom:1166.344200px;}
.y31{bottom:1166.344350px;}
.ycc{bottom:1166.610150px;}
.y135{bottom:1167.384300px;}
.y183{bottom:1167.626100px;}
.h4{height:24.287871px;}
.h11{height:36.703125px;}
.h12{height:37.415039px;}
.h10{height:37.520508px;}
.h6{height:40.634766px;}
.h13{height:41.074219px;}
.he{height:41.107500px;}
.h5{height:41.660156px;}
.hc{height:41.689453px;}
.hd{height:42.022969px;}
.h8{height:45.181641px;}
.hf{height:45.729492px;}
.hb{height:45.826172px;}
.ha{height:45.858398px;}
.h3{height:52.646484px;}
.h9{height:57.911133px;}
.h2{height:63.175781px;}
.h7{height:82.148438px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:87.750000px;}
.x9{left:106.225950px;}
.xb{left:127.534800px;}
.x20{left:130.774350px;}
.xe{left:135.987000px;}
.x28{left:140.290650px;}
.x7{left:148.745100px;}
.x1e{left:167.769690px;}
.x8{left:170.004900px;}
.x4{left:174.344850px;}
.x1c{left:176.958000px;}
.x16{left:182.549400px;}
.x23{left:189.953700px;}
.x21{left:247.193700px;}
.x22{left:248.273700px;}
.xf{left:250.291500px;}
.x6{left:314.947950px;}
.x2{left:367.008450px;}
.x3{left:455.375250px;}
.xc{left:457.125000px;}
.x10{left:461.376900px;}
.xd{left:478.384800px;}
.x27{left:491.140800px;}
.x5{left:505.831650px;}
.x26{left:520.433700px;}
.x13{left:610.052040px;}
.x14{left:613.801800px;}
.x12{left:617.627160px;}
.x11{left:621.437400px;}
.x24{left:629.513700px;}
.x15{left:631.582920px;}
.x1b{left:634.620450px;}
.x19{left:636.253410px;}
.x1f{left:638.092410px;}
.x1a{left:640.033410px;}
.x17{left:641.651250px;}
.x1d{left:643.520490px;}
.x18{left:645.431250px;}
.x25{left:662.993700px;}
.xa{left:794.961600px;}
@media print{
.v2{vertical-align:-17.760533pt;}
.v3{vertical-align:-10.666667pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:16.000000pt;}
.v1{vertical-align:17.760533pt;}
.ls22{letter-spacing:-2.933333pt;}
.ls1e{letter-spacing:-1.296000pt;}
.ls1c{letter-spacing:-1.104000pt;}
.lsd{letter-spacing:-0.913920pt;}
.ls1a{letter-spacing:-0.864000pt;}
.lsb{letter-spacing:-0.806400pt;}
.ls1b{letter-spacing:-0.720000pt;}
.lsc{letter-spacing:-0.698880pt;}
.ls20{letter-spacing:-0.672000pt;}
.ls18{letter-spacing:-0.576000pt;}
.ls10{letter-spacing:-0.537600pt;}
.ls1d{letter-spacing:-0.432000pt;}
.lsa{letter-spacing:-0.376320pt;}
.ls2{letter-spacing:-0.373333pt;}
.ls1f{letter-spacing:-0.288000pt;}
.ls1{letter-spacing:-0.106667pt;}
.ls0{letter-spacing:0.000000pt;}
.ls21{letter-spacing:0.008533pt;}
.ls8{letter-spacing:0.107520pt;}
.ls12{letter-spacing:0.215040pt;}
.lse{letter-spacing:0.322560pt;}
.ls19{letter-spacing:0.528000pt;}
.lsf{letter-spacing:0.537600pt;}
.ls9{letter-spacing:0.591360pt;}
.ls17{letter-spacing:0.624000pt;}
.ls7{letter-spacing:0.645120pt;}
.ls11{letter-spacing:0.698880pt;}
.ls13{letter-spacing:0.806400pt;}
.ls16{letter-spacing:0.816000pt;}
.ls15{letter-spacing:10.128000pt;}
.ls4{letter-spacing:10.805760pt;}
.ls14{letter-spacing:11.397120pt;}
.ls3{letter-spacing:11.612160pt;}
.ls5{letter-spacing:12.741120pt;}
.ls6{letter-spacing:13.547520pt;}
.ws14{word-spacing:-14.666667pt;}
.ws1{word-spacing:-13.333333pt;}
.ws9c{word-spacing:-12.741120pt;}
.ws97{word-spacing:-12.687360pt;}
.ws96{word-spacing:-12.472320pt;}
.ws98{word-spacing:-12.257280pt;}
.ws95{word-spacing:-12.149760pt;}
.ws94{word-spacing:-11.773440pt;}
.wsbe{word-spacing:-11.664000pt;}
.ws9b{word-spacing:-11.612160pt;}
.ws9a{word-spacing:-11.235840pt;}
.wsc0{word-spacing:-10.848000pt;}
.wse7{word-spacing:-10.666667pt;}
.wsc3{word-spacing:-10.416000pt;}
.ws106{word-spacing:-10.400000pt;}
.wsbd{word-spacing:-10.272000pt;}
.wsc2{word-spacing:-9.744000pt;}
.wse8{word-spacing:-9.333333pt;}
.ws0{word-spacing:-7.773333pt;}
.ws113{word-spacing:-4.320000pt;}
.wscb{word-spacing:-3.989333pt;}
.ws75{word-spacing:-3.754667pt;}
.ws10a{word-spacing:-3.733333pt;}
.ws7{word-spacing:-3.306667pt;}
.ws39{word-spacing:-3.226667pt;}
.ws38{word-spacing:-3.050667pt;}
.ws4{word-spacing:-2.933333pt;}
.ws49{word-spacing:-2.874667pt;}
.ws62{word-spacing:-2.816000pt;}
.ws80{word-spacing:-2.757333pt;}
.ws7c{word-spacing:-2.698667pt;}
.ws3a{word-spacing:-2.640000pt;}
.wsa1{word-spacing:-2.634240pt;}
.ws2f{word-spacing:-2.581333pt;}
.ws111{word-spacing:-2.560000pt;}
.wsd0{word-spacing:-2.522667pt;}
.ws109{word-spacing:-2.506667pt;}
.ws6e{word-spacing:-2.405333pt;}
.ws108{word-spacing:-2.400000pt;}
.ws105{word-spacing:-2.346667pt;}
.ws127{word-spacing:-2.240000pt;}
.ws8c{word-spacing:-2.229333pt;}
.ws31{word-spacing:-2.170667pt;}
.ws45{word-spacing:-2.112000pt;}
.ws135{word-spacing:-2.080000pt;}
.ws22{word-spacing:-2.053333pt;}
.ws68{word-spacing:-1.994667pt;}
.wsfa{word-spacing:-1.936000pt;}
.wsf2{word-spacing:-1.877333pt;}
.ws112{word-spacing:-1.866667pt;}
.ws40{word-spacing:-1.760000pt;}
.ws102{word-spacing:-1.706667pt;}
.ws71{word-spacing:-1.701333pt;}
.ws99{word-spacing:-1.612800pt;}
.ws3f{word-spacing:-1.584000pt;}
.ws12a{word-spacing:-1.546667pt;}
.wsf0{word-spacing:-1.525333pt;}
.wsf6{word-spacing:-1.466667pt;}
.ws134{word-spacing:-1.440000pt;}
.ws8b{word-spacing:-1.408000pt;}
.wsdb{word-spacing:-1.349333pt;}
.ws8a{word-spacing:-1.290667pt;}
.ws130{word-spacing:-1.280000pt;}
.ws123{word-spacing:-1.226667pt;}
.wsa5{word-spacing:-1.182720pt;}
.ws5f{word-spacing:-1.173333pt;}
.ws1c{word-spacing:-1.114667pt;}
.ws50{word-spacing:-0.997333pt;}
.ws3{word-spacing:-0.960000pt;}
.ws6a{word-spacing:-0.938667pt;}
.ws44{word-spacing:-0.880000pt;}
.wsa9{word-spacing:-0.860160pt;}
.ws74{word-spacing:-0.821333pt;}
.ws5a{word-spacing:-0.762667pt;}
.wsa3{word-spacing:-0.752640pt;}
.ws4c{word-spacing:-0.704000pt;}
.wsa7{word-spacing:-0.698880pt;}
.ws121{word-spacing:-0.640000pt;}
.wsbf{word-spacing:-0.624000pt;}
.ws69{word-spacing:-0.586667pt;}
.ws9d{word-spacing:-0.537600pt;}
.ws33{word-spacing:-0.528000pt;}
.wsab{word-spacing:-0.483840pt;}
.ws1e{word-spacing:-0.469333pt;}
.ws25{word-spacing:-0.410667pt;}
.wsb1{word-spacing:-0.352000pt;}
.wsba{word-spacing:-0.293333pt;}
.wsa8{word-spacing:-0.268800pt;}
.ws115{word-spacing:-0.266667pt;}
.wsc4{word-spacing:-0.192000pt;}
.ws46{word-spacing:-0.176000pt;}
.ws70{word-spacing:-0.117333pt;}
.wse1{word-spacing:-0.058667pt;}
.ws2{word-spacing:0.000000pt;}
.wsc5{word-spacing:0.048000pt;}
.ws118{word-spacing:0.053333pt;}
.ws5b{word-spacing:0.058667pt;}
.wsb{word-spacing:0.106667pt;}
.ws9f{word-spacing:0.161280pt;}
.ws101{word-spacing:0.213333pt;}
.ws56{word-spacing:0.234667pt;}
.wsa2{word-spacing:0.268800pt;}
.ws43{word-spacing:0.293333pt;}
.ws10b{word-spacing:0.320000pt;}
.ws37{word-spacing:0.352000pt;}
.wsf{word-spacing:0.373333pt;}
.ws9e{word-spacing:0.376320pt;}
.ws53{word-spacing:0.410667pt;}
.ws6f{word-spacing:0.469333pt;}
.wsd8{word-spacing:0.528000pt;}
.ws104{word-spacing:0.533333pt;}
.wsd5{word-spacing:0.586667pt;}
.wsc{word-spacing:0.640000pt;}
.ws2e{word-spacing:0.645333pt;}
.ws117{word-spacing:0.693333pt;}
.wsa0{word-spacing:0.698880pt;}
.wsf8{word-spacing:0.704000pt;}
.ws52{word-spacing:0.762667pt;}
.wsa4{word-spacing:0.806400pt;}
.ws11d{word-spacing:0.853333pt;}
.ws58{word-spacing:0.880000pt;}
.wsa6{word-spacing:0.913920pt;}
.ws3d{word-spacing:0.938667pt;}
.wsc9{word-spacing:0.960000pt;}
.ws125{word-spacing:1.013333pt;}
.ws59{word-spacing:1.056000pt;}
.ws20{word-spacing:1.114667pt;}
.ws13{word-spacing:1.120000pt;}
.wsfb{word-spacing:1.173333pt;}
.wsff{word-spacing:1.226667pt;}
.ws4f{word-spacing:1.232000pt;}
.ws81{word-spacing:1.290667pt;}
.wsc7{word-spacing:1.296000pt;}
.ws11{word-spacing:1.333333pt;}
.wsca{word-spacing:1.344000pt;}
.wsbb{word-spacing:1.349333pt;}
.wsc6{word-spacing:1.392000pt;}
.wsac{word-spacing:1.397760pt;}
.ws55{word-spacing:1.408000pt;}
.ws1f{word-spacing:1.466667pt;}
.ws42{word-spacing:1.525333pt;}
.wsc8{word-spacing:1.536000pt;}
.ws3c{word-spacing:1.584000pt;}
.ws34{word-spacing:1.701333pt;}
.ws8{word-spacing:1.866667pt;}
.ws7b{word-spacing:1.877333pt;}
.ws6{word-spacing:1.920000pt;}
.wse4{word-spacing:1.936000pt;}
.wsea{word-spacing:1.994667pt;}
.ws88{word-spacing:2.053333pt;}
.wsc1{word-spacing:2.160000pt;}
.ws6b{word-spacing:2.229333pt;}
.wsd7{word-spacing:2.288000pt;}
.wse2{word-spacing:2.346667pt;}
.wscf{word-spacing:2.405333pt;}
.wsd4{word-spacing:2.464000pt;}
.ws138{word-spacing:2.506667pt;}
.wsaf{word-spacing:2.522667pt;}
.wsbc{word-spacing:2.640000pt;}
.ws122{word-spacing:2.666667pt;}
.wsaa{word-spacing:2.757333pt;}
.ws78{word-spacing:2.816000pt;}
.ws2d{word-spacing:2.874667pt;}
.wsda{word-spacing:2.992000pt;}
.ws5d{word-spacing:3.050667pt;}
.ws64{word-spacing:3.109333pt;}
.wsf7{word-spacing:3.168000pt;}
.ws10{word-spacing:3.200000pt;}
.wsee{word-spacing:3.226667pt;}
.ws137{word-spacing:3.253333pt;}
.wsdc{word-spacing:3.285333pt;}
.ws32{word-spacing:3.344000pt;}
.ws9{word-spacing:3.360000pt;}
.wsce{word-spacing:3.402667pt;}
.ws136{word-spacing:3.413333pt;}
.wsb4{word-spacing:3.461333pt;}
.ws5{word-spacing:3.466667pt;}
.ws51{word-spacing:3.520000pt;}
.wsa{word-spacing:3.626667pt;}
.wsf9{word-spacing:3.637333pt;}
.wsf1{word-spacing:3.696000pt;}
.ws7d{word-spacing:3.754667pt;}
.ws13b{word-spacing:3.786667pt;}
.ws2c{word-spacing:3.813333pt;}
.ws12{word-spacing:3.840000pt;}
.wscc{word-spacing:3.872000pt;}
.wsd1{word-spacing:3.930667pt;}
.ws13e{word-spacing:3.946667pt;}
.ws86{word-spacing:3.989333pt;}
.ws15{word-spacing:4.048000pt;}
.ws131{word-spacing:4.053333pt;}
.ws10f{word-spacing:4.160000pt;}
.ws27{word-spacing:4.165333pt;}
.wse3{word-spacing:4.224000pt;}
.ws77{word-spacing:4.282667pt;}
.wsd{word-spacing:4.320000pt;}
.ws76{word-spacing:4.341333pt;}
.ws3b{word-spacing:4.400000pt;}
.ws16{word-spacing:4.458667pt;}
.ws4d{word-spacing:4.517333pt;}
.ws11f{word-spacing:4.533333pt;}
.wse0{word-spacing:4.576000pt;}
.ws124{word-spacing:4.586667pt;}
.wsec{word-spacing:4.634667pt;}
.ws7a{word-spacing:4.693333pt;}
.ws84{word-spacing:4.752000pt;}
.ws17{word-spacing:4.928000pt;}
.ws110{word-spacing:4.960000pt;}
.wsdf{word-spacing:4.986667pt;}
.wsd9{word-spacing:5.162667pt;}
.wse{word-spacing:5.173333pt;}
.ws18{word-spacing:5.221333pt;}
.ws93{word-spacing:5.280000pt;}
.wsb0{word-spacing:5.338667pt;}
.wsb2{word-spacing:5.397333pt;}
.ws41{word-spacing:5.456000pt;}
.ws119{word-spacing:5.493333pt;}
.ws57{word-spacing:5.514667pt;}
.ws12d{word-spacing:5.546667pt;}
.ws65{word-spacing:5.573333pt;}
.ws100{word-spacing:5.600000pt;}
.ws36{word-spacing:5.632000pt;}
.ws28{word-spacing:5.749333pt;}
.ws12f{word-spacing:5.760000pt;}
.ws54{word-spacing:5.808000pt;}
.ws10d{word-spacing:5.813333pt;}
.ws90{word-spacing:5.984000pt;}
.ws10e{word-spacing:6.026667pt;}
.ws139{word-spacing:6.080000pt;}
.wsb5{word-spacing:6.101333pt;}
.ws47{word-spacing:6.160000pt;}
.ws61{word-spacing:6.218667pt;}
.ws116{word-spacing:6.293333pt;}
.ws21{word-spacing:6.336000pt;}
.ws85{word-spacing:6.394667pt;}
.ws11b{word-spacing:6.400000pt;}
.wsf3{word-spacing:6.512000pt;}
.ws6d{word-spacing:6.570667pt;}
.ws48{word-spacing:6.629333pt;}
.ws7f{word-spacing:6.746667pt;}
.ws6c{word-spacing:6.805333pt;}
.ws120{word-spacing:6.826667pt;}
.ws7e{word-spacing:6.864000pt;}
.wsb7{word-spacing:6.922667pt;}
.ws72{word-spacing:6.981333pt;}
.wsb8{word-spacing:7.040000pt;}
.ws66{word-spacing:7.157333pt;}
.wsb9{word-spacing:7.216000pt;}
.ws13f{word-spacing:7.253333pt;}
.wsd3{word-spacing:7.274667pt;}
.wscd{word-spacing:7.333333pt;}
.ws24{word-spacing:7.392000pt;}
.ws35{word-spacing:7.450667pt;}
.ws2a{word-spacing:7.509333pt;}
.ws29{word-spacing:7.626667pt;}
.wsd6{word-spacing:7.685333pt;}
.wsf5{word-spacing:7.744000pt;}
.ws30{word-spacing:7.802667pt;}
.ws13d{word-spacing:7.840000pt;}
.ws5e{word-spacing:7.861333pt;}
.ws103{word-spacing:8.000000pt;}
.ws4e{word-spacing:8.037333pt;}
.ws26{word-spacing:8.096000pt;}
.ws13a{word-spacing:8.160000pt;}
.ws73{word-spacing:8.213333pt;}
.ws8f{word-spacing:8.272000pt;}
.wsad{word-spacing:8.330667pt;}
.ws91{word-spacing:8.389333pt;}
.ws11c{word-spacing:8.426667pt;}
.ws1b{word-spacing:8.448000pt;}
.wsb3{word-spacing:8.506667pt;}
.ws82{word-spacing:8.565333pt;}
.ws67{word-spacing:8.741333pt;}
.wse9{word-spacing:8.800000pt;}
.ws3e{word-spacing:9.034667pt;}
.ws12b{word-spacing:9.066667pt;}
.ws1d{word-spacing:9.093333pt;}
.ws8e{word-spacing:9.152000pt;}
.ws12e{word-spacing:9.386667pt;}
.ws2b{word-spacing:9.562667pt;}
.wse6{word-spacing:9.621333pt;}
.wsd2{word-spacing:9.856000pt;}
.wsdd{word-spacing:9.914667pt;}
.wsfe{word-spacing:9.973333pt;}
.ws4a{word-spacing:10.032000pt;}
.ws23{word-spacing:10.325333pt;}
.ws128{word-spacing:10.453333pt;}
.wsfc{word-spacing:10.501333pt;}
.ws60{word-spacing:10.560000pt;}
.ws114{word-spacing:10.826667pt;}
.ws83{word-spacing:10.970667pt;}
.ws132{word-spacing:11.146667pt;}
.wsb6{word-spacing:11.205333pt;}
.ws19{word-spacing:11.264000pt;}
.ws133{word-spacing:11.306667pt;}
.ws10c{word-spacing:11.413333pt;}
.ws107{word-spacing:11.466667pt;}
.ws87{word-spacing:11.498667pt;}
.ws12c{word-spacing:11.573333pt;}
.wsae{word-spacing:11.733333pt;}
.wse5{word-spacing:12.378667pt;}
.ws11e{word-spacing:12.640000pt;}
.ws129{word-spacing:12.693333pt;}
.ws8d{word-spacing:12.789333pt;}
.ws140{word-spacing:12.960000pt;}
.ws89{word-spacing:12.965333pt;}
.wsed{word-spacing:13.376000pt;}
.wsde{word-spacing:13.728000pt;}
.wseb{word-spacing:14.138667pt;}
.wsfd{word-spacing:15.077333pt;}
.wsf4{word-spacing:15.370667pt;}
.ws92{word-spacing:15.429333pt;}
.ws13c{word-spacing:15.786667pt;}
.ws4b{word-spacing:16.016000pt;}
.ws79{word-spacing:16.074667pt;}
.ws142{word-spacing:16.160000pt;}
.ws11a{word-spacing:17.493333pt;}
.ws63{word-spacing:17.658667pt;}
.ws141{word-spacing:18.240000pt;}
.ws126{word-spacing:18.346667pt;}
.wsef{word-spacing:19.008000pt;}
.ws5c{word-spacing:19.301333pt;}
.ws1a{word-spacing:23.877333pt;}
._1c{margin-left:-1059.616960pt;}
._19{margin-left:-1046.492160pt;}
._17{margin-left:-1033.052160pt;}
._15{margin-left:-1018.759360pt;}
._2a{margin-left:-939.509760pt;}
._2d{margin-left:-924.634027pt;}
._24{margin-left:-920.317440pt;}
._3f{margin-left:-909.619200pt;}
._27{margin-left:-905.441707pt;}
._1f{margin-left:-900.587520pt;}
._43{margin-left:-891.502080pt;}
._3c{margin-left:-890.373120pt;}
._22{margin-left:-887.685120pt;}
._35{margin-left:-878.976000pt;}
._32{margin-left:-871.288320pt;}
._1a{margin-left:-752.349227pt;}
._40{margin-left:-751.349760pt;}
._3e{margin-left:-750.220800pt;}
._3a{margin-left:-746.136213pt;}
._3d{margin-left:-734.092800pt;}
._39{margin-left:-732.157440pt;}
._42{margin-left:-731.028480pt;}
._41{margin-left:-714.900480pt;}
._3b{margin-left:-711.406080pt;}
._56{margin-left:-706.652053pt;}
._38{margin-left:-695.708160pt;}
._34{margin-left:-694.149120pt;}
._31{margin-left:-692.213760pt;}
._44{margin-left:-679.557973pt;}
._33{margin-left:-677.859840pt;}
._30{margin-left:-675.924480pt;}
._28{margin-left:-674.580480pt;}
._37{margin-left:-673.505280pt;}
._51{margin-left:-672.141867pt;}
._29{margin-left:-663.022080pt;}
._36{margin-left:-656.732160pt;}
._4e{margin-left:-654.861867pt;}
._2b{margin-left:-646.264747pt;}
._4f{margin-left:-643.503680pt;}
._4d{margin-left:-640.282133pt;}
._49{margin-left:-639.172800pt;}
._1b{margin-left:-638.077440pt;}
._18{margin-left:-635.604480pt;}
._2c{margin-left:-634.706347pt;}
._2f{margin-left:-629.276587pt;}
._4c{margin-left:-626.621867pt;}
._57{margin-left:-625.108800pt;}
._23{margin-left:-624.108373pt;}
._53{margin-left:-623.002133pt;}
._54{margin-left:-621.082133pt;}
._2e{margin-left:-618.739627pt;}
._59{margin-left:-616.520427pt;}
._4b{margin-left:-611.172267pt;}
._25{margin-left:-607.826347pt;}
._52{margin-left:-605.908800pt;}
._58{margin-left:-605.018133pt;}
._48{margin-left:-602.958933pt;}
._50{margin-left:-599.741867pt;}
._1d{margin-left:-597.219840pt;}
._26{margin-left:-596.321707pt;}
._16{margin-left:-594.431680pt;}
._4a{margin-left:-589.738133pt;}
._55{margin-left:-588.442133pt;}
._1e{margin-left:-585.715200pt;}
._46{margin-left:-583.758933pt;}
._47{margin-left:-582.229973pt;}
._20{margin-left:-570.877440pt;}
._45{margin-left:-568.398933pt;}
._14{margin-left:-566.522880pt;}
._21{margin-left:-559.372800pt;}
._0{margin-left:-6.880000pt;}
._6{margin-left:-5.920000pt;}
._1{margin-left:-4.906667pt;}
._7{margin-left:-3.413333pt;}
._5{margin-left:-1.973333pt;}
._4{margin-left:-1.066667pt;}
._2{width:1.028800pt;}
._11{width:1.982933pt;}
._3{width:2.950933pt;}
._9{width:3.840000pt;}
._a{width:5.440000pt;}
._8{width:6.613333pt;}
._d{width:8.096000pt;}
._e{width:9.152000pt;}
._c{width:10.090667pt;}
._10{width:11.029333pt;}
._f{width:12.261333pt;}
._5d{width:14.613333pt;}
._12{width:16.368000pt;}
._5a{width:17.306667pt;}
._13{width:18.656000pt;}
._5c{width:20.067733pt;}
._60{width:21.538133pt;}
._61{width:22.540800pt;}
._b{width:23.701333pt;}
._5b{width:25.344000pt;}
._5e{width:31.520000pt;}
._5f{width:33.013333pt;}
.fs2{font-size:31.093333pt;}
.fs8{font-size:37.333333pt;}
.fs5{font-size:42.666667pt;}
.fs7{font-size:48.000000pt;}
.fs1{font-size:53.333333pt;}
.fs6{font-size:53.760000pt;}
.fs4{font-size:58.666667pt;}
.fs0{font-size:64.000000pt;}
.fs3{font-size:106.666667pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:53.559200pt;}
.y30{bottom:53.692667pt;}
.y2f{bottom:98.294267pt;}
.ybf{bottom:101.347867pt;}
.y74{bottom:101.473867pt;}
.yac{bottom:103.936133pt;}
.y65{bottom:103.950533pt;}
.y12f{bottom:110.350533pt;}
.y2e{bottom:114.294267pt;}
.ybe{bottom:117.347867pt;}
.y73{bottom:117.473867pt;}
.yab{bottom:121.536133pt;}
.y64{bottom:121.550400pt;}
.y134{bottom:124.639333pt;}
.y12e{bottom:126.350533pt;}
.y2d{bottom:130.294267pt;}
.y72{bottom:133.473867pt;}
.yaa{bottom:139.136133pt;}
.y63{bottom:139.150533pt;}
.y12d{bottom:142.350533pt;}
.y2c{bottom:146.294267pt;}
.y71{bottom:149.473867pt;}
.ya9{bottom:156.736133pt;}
.y62{bottom:156.750533pt;}
.y12c{bottom:158.350533pt;}
.yf7{bottom:159.181600pt;}
.ycb{bottom:159.458800pt;}
.y2b{bottom:162.294267pt;}
.y16b{bottom:173.674933pt;}
.ya8{bottom:174.336133pt;}
.y61{bottom:174.350533pt;}
.yf6{bottom:176.781600pt;}
.y2a{bottom:178.294267pt;}
.y133{bottom:188.639333pt;}
.y16a{bottom:189.674933pt;}
.y182{bottom:189.889733pt;}
.y12b{bottom:190.350533pt;}
.yc0{bottom:191.380667pt;}
.ya7{bottom:191.936133pt;}
.y60{bottom:191.950533pt;}
.y169{bottom:205.674933pt;}
.y12a{bottom:206.350533pt;}
.yf8{bottom:207.801200pt;}
.yeb{bottom:208.230267pt;}
.ya6{bottom:209.536133pt;}
.y5f{bottom:209.550400pt;}
.yc1{bottom:217.306427pt;}
.y168{bottom:221.674933pt;}
.y178{bottom:221.889733pt;}
.y129{bottom:222.350533pt;}
.y26{bottom:223.883733pt;}
.y5e{bottom:227.150533pt;}
.yfb{bottom:231.801200pt;}
.yf9{bottom:232.761200pt;}
.yec{bottom:233.672187pt;}
.y132{bottom:236.639333pt;}
.y167{bottom:237.674933pt;}
.y128{bottom:238.350533pt;}
.yc2{bottom:242.748347pt;}
.ya5{bottom:244.736133pt;}
.y5d{bottom:244.750533pt;}
.y166{bottom:253.674933pt;}
.y127{bottom:254.350533pt;}
.y25{bottom:255.883733pt;}
.yfa{bottom:256.761200pt;}
.yed{bottom:259.114107pt;}
.ya4{bottom:262.336133pt;}
.y5c{bottom:262.350533pt;}
.yc3{bottom:268.190267pt;}
.y165{bottom:269.674933pt;}
.y177{bottom:269.889733pt;}
.y126{bottom:270.350533pt;}
.y24{bottom:271.883733pt;}
.ya3{bottom:279.936133pt;}
.y5b{bottom:279.950533pt;}
.yfc{bottom:282.201200pt;}
.yee{bottom:284.556027pt;}
.y131{bottom:284.639333pt;}
.y164{bottom:285.674933pt;}
.y125{bottom:286.350533pt;}
.y23{bottom:287.883733pt;}
.yc4{bottom:293.632187pt;}
.ya2{bottom:297.536133pt;}
.y5a{bottom:297.550400pt;}
.y163{bottom:301.674933pt;}
.y124{bottom:302.350533pt;}
.y22{bottom:303.883733pt;}
.y104{bottom:305.241200pt;}
.yff{bottom:305.721200pt;}
.yfd{bottom:307.161200pt;}
.yef{bottom:309.997947pt;}
.ya1{bottom:315.136133pt;}
.y59{bottom:315.150533pt;}
.y162{bottom:317.674933pt;}
.y181{bottom:317.889733pt;}
.y123{bottom:318.350533pt;}
.yc5{bottom:319.074107pt;}
.y21{bottom:319.883733pt;}
.yfe{bottom:331.161200pt;}
.y130{bottom:332.639333pt;}
.ya0{bottom:332.736133pt;}
.y58{bottom:332.750533pt;}
.y161{bottom:333.674933pt;}
.y176{bottom:333.889733pt;}
.y122{bottom:334.350533pt;}
.yf0{bottom:335.439867pt;}
.y20{bottom:335.883733pt;}
.yc6{bottom:344.516027pt;}
.y160{bottom:349.674933pt;}
.y9f{bottom:350.336133pt;}
.y57{bottom:350.350533pt;}
.y1f{bottom:351.883733pt;}
.y100{bottom:355.641200pt;}
.yf1{bottom:360.881787pt;}
.y15f{bottom:365.674933pt;}
.y180{bottom:365.889733pt;}
.y1e{bottom:367.883733pt;}
.y9e{bottom:367.936133pt;}
.y56{bottom:367.950533pt;}
.yc7{bottom:369.957947pt;}
.yc9{bottom:370.441787pt;}
.y103{bottom:379.641200pt;}
.y101{bottom:380.601200pt;}
.y15e{bottom:381.674933pt;}
.y1d{bottom:383.883733pt;}
.y9d{bottom:385.536133pt;}
.y55{bottom:385.550533pt;}
.yf2{bottom:386.323707pt;}
.yf4{bottom:386.807547pt;}
.yc8{bottom:395.399867pt;}
.y15d{bottom:397.674933pt;}
.y175{bottom:397.889733pt;}
.y1ab{bottom:397.889867pt;}
.y1c{bottom:399.883733pt;}
.y9c{bottom:403.136133pt;}
.y54{bottom:403.150533pt;}
.y102{bottom:404.121200pt;}
.yf3{bottom:412.249467pt;}
.y15c{bottom:413.674933pt;}
.y17f{bottom:413.889733pt;}
.y1aa{bottom:413.889867pt;}
.y1b{bottom:415.883733pt;}
.y9b{bottom:420.736133pt;}
.y53{bottom:420.750533pt;}
.yca{bottom:421.325627pt;}
.y105{bottom:429.561200pt;}
.y15b{bottom:429.674933pt;}
.y1a9{bottom:429.889867pt;}
.y1a{bottom:431.883733pt;}
.yf5{bottom:437.691387pt;}
.y9a{bottom:438.336133pt;}
.y52{bottom:438.350533pt;}
.y15a{bottom:445.674933pt;}
.y1a8{bottom:445.889867pt;}
.y19{bottom:447.883733pt;}
.y108{bottom:453.561200pt;}
.y106{bottom:454.521200pt;}
.y99{bottom:455.936133pt;}
.y51{bottom:455.950533pt;}
.y159{bottom:461.674933pt;}
.y1b0{bottom:461.889733pt;}
.y1a7{bottom:461.889867pt;}
.y98{bottom:473.536133pt;}
.y50{bottom:473.550533pt;}
.y158{bottom:477.674933pt;}
.y174{bottom:477.889733pt;}
.y1a6{bottom:477.889867pt;}
.y107{bottom:478.521200pt;}
.y18{bottom:479.883733pt;}
.ybd{bottom:482.231333pt;}
.y97{bottom:491.136133pt;}
.y4f{bottom:491.150533pt;}
.yea{bottom:491.386800pt;}
.y157{bottom:493.674933pt;}
.y1b4{bottom:493.889733pt;}
.y1a5{bottom:493.889867pt;}
.ybc{bottom:498.231333pt;}
.y109{bottom:503.961200pt;}
.y96{bottom:508.736133pt;}
.y4e{bottom:508.750533pt;}
.ye9{bottom:508.986800pt;}
.y156{bottom:509.674933pt;}
.y1a4{bottom:509.889867pt;}
.y155{bottom:525.674933pt;}
.y173{bottom:525.889733pt;}
.y1a3{bottom:525.889867pt;}
.y95{bottom:526.336133pt;}
.y4d{bottom:526.350533pt;}
.ye8{bottom:526.586800pt;}
.y111{bottom:527.001200pt;}
.y10c{bottom:527.481200pt;}
.y17{bottom:527.883733pt;}
.y10a{bottom:528.921200pt;}
.ybb{bottom:540.342133pt;}
.y154{bottom:541.674933pt;}
.y17e{bottom:541.889733pt;}
.y1a2{bottom:541.889867pt;}
.y4c{bottom:543.950533pt;}
.ye7{bottom:544.186800pt;}
.y10b{bottom:552.441200pt;}
.y153{bottom:557.674933pt;}
.y1b3{bottom:557.889733pt;}
.y1a1{bottom:557.889867pt;}
.y16{bottom:559.883733pt;}
.y94{bottom:561.536133pt;}
.y4b{bottom:561.550533pt;}
.ye6{bottom:561.786800pt;}
.y78{bottom:569.766267pt;}
.yad{bottom:572.758400pt;}
.y152{bottom:573.674933pt;}
.y172{bottom:573.889733pt;}
.y1a0{bottom:573.889867pt;}
.y15{bottom:575.883733pt;}
.y10d{bottom:577.401200pt;}
.y93{bottom:579.136133pt;}
.y4a{bottom:579.150533pt;}
.ye5{bottom:579.386800pt;}
.y77{bottom:585.766267pt;}
.y151{bottom:589.674933pt;}
.y17d{bottom:589.889733pt;}
.y19f{bottom:589.889867pt;}
.y14{bottom:591.883733pt;}
.y92{bottom:596.736133pt;}
.y49{bottom:596.750533pt;}
.ye4{bottom:596.986800pt;}
.yae{bottom:598.200320pt;}
.y110{bottom:601.401200pt;}
.y76{bottom:601.766267pt;}
.y10e{bottom:601.881200pt;}
.y150{bottom:605.674933pt;}
.y19e{bottom:605.889867pt;}
.y13{bottom:607.883733pt;}
.y91{bottom:614.336133pt;}
.y48{bottom:614.350533pt;}
.ye3{bottom:614.586800pt;}
.y75{bottom:617.766267pt;}
.y14f{bottom:621.674933pt;}
.y1b2{bottom:621.889733pt;}
.y19d{bottom:621.889867pt;}
.yaf{bottom:623.642240pt;}
.y12{bottom:623.883733pt;}
.y10f{bottom:625.881200pt;}
.y90{bottom:631.936133pt;}
.y47{bottom:631.950533pt;}
.ye2{bottom:632.186800pt;}
.y14e{bottom:637.674933pt;}
.y171{bottom:637.889733pt;}
.y19c{bottom:637.889867pt;}
.y11{bottom:639.883733pt;}
.yb0{bottom:649.084160pt;}
.y8f{bottom:649.536133pt;}
.y46{bottom:649.550533pt;}
.ye1{bottom:649.786800pt;}
.y112{bottom:651.321200pt;}
.y14d{bottom:653.674933pt;}
.y19b{bottom:653.889867pt;}
.y10{bottom:655.883733pt;}
.y8e{bottom:667.136133pt;}
.y45{bottom:667.150533pt;}
.ye0{bottom:667.386800pt;}
.y14c{bottom:669.674933pt;}
.y1b1{bottom:669.889733pt;}
.y19a{bottom:669.889867pt;}
.yf{bottom:671.883733pt;}
.yb1{bottom:674.526080pt;}
.y115{bottom:675.321200pt;}
.y113{bottom:676.281200pt;}
.y8d{bottom:684.736133pt;}
.y44{bottom:684.750533pt;}
.ydf{bottom:684.986800pt;}
.y14b{bottom:685.674933pt;}
.y170{bottom:685.889733pt;}
.y199{bottom:685.889867pt;}
.ye{bottom:687.883733pt;}
.y114{bottom:700.281200pt;}
.yb2{bottom:700.451840pt;}
.y14a{bottom:701.674933pt;}
.y198{bottom:701.889867pt;}
.y8c{bottom:702.336133pt;}
.y43{bottom:702.350533pt;}
.yde{bottom:702.586800pt;}
.yd{bottom:703.883733pt;}
.y149{bottom:717.674933pt;}
.y1af{bottom:717.889733pt;}
.y197{bottom:717.889867pt;}
.yc{bottom:719.883733pt;}
.y8b{bottom:719.936133pt;}
.y42{bottom:719.950533pt;}
.ydd{bottom:720.186800pt;}
.y116{bottom:725.241200pt;}
.yb3{bottom:725.893760pt;}
.y148{bottom:733.674933pt;}
.y196{bottom:733.889867pt;}
.yb{bottom:735.883733pt;}
.y8a{bottom:737.536133pt;}
.y41{bottom:737.550400pt;}
.ydc{bottom:737.786800pt;}
.y147{bottom:749.674933pt;}
.y16f{bottom:749.889733pt;}
.y195{bottom:749.889867pt;}
.y117{bottom:750.681200pt;}
.yb4{bottom:751.335680pt;}
.ya{bottom:751.883733pt;}
.y89{bottom:755.136133pt;}
.y40{bottom:755.150533pt;}
.ydb{bottom:755.386800pt;}
.y11b{bottom:756.441200pt;}
.y146{bottom:765.674933pt;}
.y17c{bottom:765.889733pt;}
.y194{bottom:765.889867pt;}
.y9{bottom:767.883733pt;}
.y121{bottom:768.441200pt;}
.y88{bottom:772.736133pt;}
.y3f{bottom:772.750533pt;}
.yda{bottom:772.986800pt;}
.y119{bottom:774.201200pt;}
.yb5{bottom:776.777600pt;}
.y11a{bottom:781.401200pt;}
.y145{bottom:781.674933pt;}
.y193{bottom:781.889867pt;}
.y8{bottom:783.883733pt;}
.y118{bottom:788.601200pt;}
.y87{bottom:790.336133pt;}
.y3e{bottom:790.350533pt;}
.yd9{bottom:790.586800pt;}
.y144{bottom:797.674933pt;}
.y192{bottom:797.889867pt;}
.yb6{bottom:802.219520pt;}
.y86{bottom:807.936133pt;}
.y3d{bottom:807.950533pt;}
.yd8{bottom:808.186800pt;}
.y11c{bottom:812.601200pt;}
.y143{bottom:813.674933pt;}
.y191{bottom:813.889867pt;}
.y7{bottom:815.883733pt;}
.y85{bottom:825.536133pt;}
.y3c{bottom:825.550400pt;}
.yd7{bottom:825.786800pt;}
.yb7{bottom:827.661440pt;}
.y142{bottom:829.674933pt;}
.y16e{bottom:829.889733pt;}
.y190{bottom:829.889867pt;}
.y11d{bottom:836.121200pt;}
.y84{bottom:843.136133pt;}
.y6f{bottom:843.150400pt;}
.y3b{bottom:843.150533pt;}
.yd6{bottom:843.386800pt;}
.y141{bottom:845.674933pt;}
.y1ae{bottom:845.889733pt;}
.y18f{bottom:845.889867pt;}
.y120{bottom:849.561200pt;}
.y6{bottom:852.904267pt;}
.yb8{bottom:853.103360pt;}
.y11e{bottom:860.121200pt;}
.y83{bottom:860.736133pt;}
.y6e{bottom:860.750400pt;}
.y3a{bottom:860.750533pt;}
.yd5{bottom:860.986800pt;}
.y140{bottom:861.674933pt;}
.y18e{bottom:861.889867pt;}
.y5{bottom:864.464133pt;}
.y13f{bottom:877.674933pt;}
.y18d{bottom:877.889867pt;}
.y82{bottom:878.336133pt;}
.y6d{bottom:878.350400pt;}
.y39{bottom:878.350533pt;}
.yb9{bottom:878.545280pt;}
.yd4{bottom:878.586800pt;}
.y4{bottom:884.904267pt;}
.y11f{bottom:885.561200pt;}
.y13e{bottom:893.674933pt;}
.y17b{bottom:893.889733pt;}
.y18c{bottom:893.889867pt;}
.y81{bottom:895.936133pt;}
.y6c{bottom:895.950400pt;}
.y38{bottom:895.950533pt;}
.yd3{bottom:896.186800pt;}
.y3{bottom:896.464133pt;}
.yba{bottom:904.471040pt;}
.y13d{bottom:909.674933pt;}
.y16d{bottom:909.889733pt;}
.y18b{bottom:909.889867pt;}
.y2{bottom:912.464133pt;}
.y80{bottom:913.536133pt;}
.y37{bottom:913.550400pt;}
.yd2{bottom:913.786800pt;}
.y13c{bottom:925.674933pt;}
.y1ad{bottom:925.889733pt;}
.y18a{bottom:925.889867pt;}
.y7f{bottom:931.136133pt;}
.y6b{bottom:931.150400pt;}
.y36{bottom:931.150533pt;}
.yd1{bottom:931.386800pt;}
.y13b{bottom:941.674933pt;}
.y189{bottom:941.889867pt;}
.y28{bottom:943.504133pt;}
.y7e{bottom:948.736133pt;}
.y6a{bottom:948.750400pt;}
.y35{bottom:948.750533pt;}
.yd0{bottom:948.986800pt;}
.y13a{bottom:957.674933pt;}
.y17a{bottom:957.889733pt;}
.y188{bottom:957.889867pt;}
.y7d{bottom:966.336133pt;}
.y69{bottom:966.350400pt;}
.y34{bottom:966.350533pt;}
.ycf{bottom:966.586800pt;}
.y139{bottom:973.674933pt;}
.y187{bottom:973.889867pt;}
.y27{bottom:975.504133pt;}
.y7c{bottom:983.936133pt;}
.y68{bottom:983.950400pt;}
.y33{bottom:983.950533pt;}
.yce{bottom:984.186800pt;}
.y138{bottom:989.674933pt;}
.y16c{bottom:989.889733pt;}
.y186{bottom:989.889867pt;}
.y7b{bottom:1001.536133pt;}
.y32{bottom:1001.550400pt;}
.ycd{bottom:1001.786800pt;}
.y137{bottom:1005.674933pt;}
.y1ac{bottom:1005.889733pt;}
.y185{bottom:1005.889867pt;}
.y7a{bottom:1019.136133pt;}
.y67{bottom:1019.150400pt;}
.y70{bottom:1019.150533pt;}
.y136{bottom:1021.674933pt;}
.y179{bottom:1021.889733pt;}
.y184{bottom:1021.889867pt;}
.y29{bottom:1035.825867pt;}
.y79{bottom:1036.736133pt;}
.y66{bottom:1036.750400pt;}
.y31{bottom:1036.750533pt;}
.ycc{bottom:1036.986800pt;}
.y135{bottom:1037.674933pt;}
.y183{bottom:1037.889867pt;}
.h4{height:21.589219pt;}
.h11{height:32.625000pt;}
.h12{height:33.257812pt;}
.h10{height:33.351562pt;}
.h6{height:36.119792pt;}
.h13{height:36.510417pt;}
.he{height:36.540000pt;}
.h5{height:37.031250pt;}
.hc{height:37.057292pt;}
.hd{height:37.353750pt;}
.h8{height:40.161458pt;}
.hf{height:40.648438pt;}
.hb{height:40.734375pt;}
.ha{height:40.763021pt;}
.h3{height:46.796875pt;}
.h9{height:51.476562pt;}
.h2{height:56.156250pt;}
.h7{height:73.020833pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:78.000000pt;}
.x9{left:94.423067pt;}
.xb{left:113.364267pt;}
.x20{left:116.243867pt;}
.xe{left:120.877333pt;}
.x28{left:124.702800pt;}
.x7{left:132.217867pt;}
.x1e{left:149.128613pt;}
.x8{left:151.115467pt;}
.x4{left:154.973200pt;}
.x1c{left:157.296000pt;}
.x16{left:162.266133pt;}
.x23{left:168.847733pt;}
.x21{left:219.727733pt;}
.x22{left:220.687733pt;}
.xf{left:222.481333pt;}
.x6{left:279.953733pt;}
.x2{left:326.229733pt;}
.x3{left:404.778000pt;}
.xc{left:406.333333pt;}
.x10{left:410.112800pt;}
.xd{left:425.230933pt;}
.x27{left:436.569600pt;}
.x5{left:449.628133pt;}
.x26{left:462.607733pt;}
.x13{left:542.268480pt;}
.x14{left:545.601600pt;}
.x12{left:549.001920pt;}
.x11{left:552.388800pt;}
.x24{left:559.567733pt;}
.x15{left:561.407040pt;}
.x1b{left:564.107067pt;}
.x19{left:565.558587pt;}
.x1f{left:567.193253pt;}
.x1a{left:568.918587pt;}
.x17{left:570.356667pt;}
.x1d{left:572.018213pt;}
.x18{left:573.716667pt;}
.x25{left:589.327733pt;}
.xa{left:706.632533pt;}
}




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