
    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_7059a78a2818b3dca8353dea.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.971191;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_7afd3e751f0945fc14f37e78.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.874023;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_3dfd8c1684138794c93b0abf.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.873535;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_199011812859a9de34c9cfad.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.817871;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_7e5aefb2c0cecda717bc08a7.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.869629;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_f9b9ce51083d528ffa91a23b.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.915039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v3{vertical-align:-12.959995px;}
.vc{vertical-align:-10.079996px;}
.v4{vertical-align:-8.639997px;}
.v7{vertical-align:-7.199997px;}
.v6{vertical-align:-5.039998px;}
.v8{vertical-align:-2.159999px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:2.879999px;}
.vf{vertical-align:5.759998px;}
.v5{vertical-align:8.639997px;}
.v11{vertical-align:10.799996px;}
.vb{vertical-align:12.239995px;}
.vd{vertical-align:14.399994px;}
.va{vertical-align:15.839994px;}
.v9{vertical-align:17.999993px;}
.v10{vertical-align:19.439992px;}
.ve{vertical-align:27.359989px;}
.v2{vertical-align:32.399987px;}
.ls1{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.193711px;}
.ls0{letter-spacing:0.215860px;}
.lsf{letter-spacing:0.233964px;}
.lse{letter-spacing:0.234000px;}
.ls7{letter-spacing:3.527999px;}
.ls5{letter-spacing:8.833676px;}
.ls4{letter-spacing:12.707995px;}
.ls2{letter-spacing:14.435994px;}
.ls8{letter-spacing:20.087992px;}
.ls3{letter-spacing:26.675989px;}
.ls26{letter-spacing:79.467808px;}
.ls25{letter-spacing:85.947806px;}
.ls27{letter-spacing:95.307802px;}
.ls28{letter-spacing:114.829874px;}
.lsa{letter-spacing:123.628271px;}
.ls9{letter-spacing:124.373038px;}
.ls10{letter-spacing:150.027780px;}
.ls11{letter-spacing:150.747780px;}
.lsc{letter-spacing:177.628249px;}
.lsb{letter-spacing:178.368409px;}
.lsd{letter-spacing:179.088408px;}
.ls14{letter-spacing:183.863504px;}
.ls1c{letter-spacing:368.269773px;}
.ls23{letter-spacing:393.469763px;}
.ls1a{letter-spacing:415.069754px;}
.ls1d{letter-spacing:471.949731px;}
.ls18{letter-spacing:491.389723px;}
.ls21{letter-spacing:518.749713px;}
.ls24{letter-spacing:782.269607px;}
.ls15{letter-spacing:818.153673px;}
.ls16{letter-spacing:833.273667px;}
.ls1b{letter-spacing:865.069574px;}
.ls12{letter-spacing:898.909560px;}
.ls13{letter-spacing:911.149556px;}
.ls22{letter-spacing:931.309547px;}
.ls19{letter-spacing:943.549543px;}
.ls17{letter-spacing:986.749525px;}
.ls20{letter-spacing:1014.109514px;}
.ls1e{letter-spacing:1109.033556px;}
.ls1f{letter-spacing:1116.233554px;}
.ls29{letter-spacing:1136.393545px;}
.ls2a{letter-spacing:1143.593543px;}
.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;}
}
.wsa1{word-spacing:-190.046862px;}
.ws85{word-spacing:-130.556396px;}
.ws6e{word-spacing:-54.575942px;}
.ws2e{word-spacing:-35.999986px;}
.ws0{word-spacing:-16.487853px;}
.ws6a{word-spacing:-16.271993px;}
.ws3{word-spacing:-12.203995px;}
.wse{word-spacing:-9.437756px;}
.ws45{word-spacing:-8.135997px;}
.wsbc{word-spacing:-7.485117px;}
.ws95{word-spacing:-6.834237px;}
.ws7a{word-spacing:-6.183358px;}
.ws49{word-spacing:-5.369758px;}
.ws9b{word-spacing:-4.301962px;}
.ws7b{word-spacing:-4.067998px;}
.ws48{word-spacing:-3.025691px;}
.ws31{word-spacing:-2.663999px;}
.ws4a{word-spacing:-2.305691px;}
.ws53{word-spacing:-2.087999px;}
.ws6d{word-spacing:-1.943999px;}
.ws7{word-spacing:-1.583999px;}
.ws5f{word-spacing:-1.367999px;}
.ws4f{word-spacing:-1.224000px;}
.ws55{word-spacing:-1.080000px;}
.ws67{word-spacing:-0.936000px;}
.ws34{word-spacing:-0.792000px;}
.ws40{word-spacing:-0.611898px;}
.ws64{word-spacing:-0.504000px;}
.ws58{word-spacing:-0.360000px;}
.ws44{word-spacing:-0.233982px;}
.ws24{word-spacing:-0.198018px;}
.ws3a{word-spacing:-0.090018px;}
.ws17{word-spacing:-0.078948px;}
.ws39{word-spacing:-0.054000px;}
.ws18{word-spacing:-0.008439px;}
.ws6{word-spacing:0.000000px;}
.ws10{word-spacing:0.017961px;}
.ws29{word-spacing:0.053946px;}
.ws2d{word-spacing:0.090018px;}
.ws66{word-spacing:0.216000px;}
.ws2b{word-spacing:0.503928px;}
.ws16{word-spacing:0.522018px;}
.ws1{word-spacing:0.551524px;}
.ws62{word-spacing:0.648000px;}
.ws9{word-spacing:0.773928px;}
.ws90{word-spacing:1.007997px;}
.ws68{word-spacing:1.152000px;}
.ws19{word-spacing:1.159215px;}
.ws8{word-spacing:1.205982px;}
.wscd{word-spacing:1.206036px;}
.ws2{word-spacing:1.215299px;}
.ws2a{word-spacing:1.223910px;}
.wsd{word-spacing:1.242000px;}
.ws4{word-spacing:1.349999px;}
.ws41{word-spacing:1.386017px;}
.ws20{word-spacing:1.656017px;}
.ws52{word-spacing:1.871999px;}
.wsc5{word-spacing:1.928037px;}
.wsb4{word-spacing:2.090073px;}
.ws32{word-spacing:2.375999px;}
.wsf{word-spacing:2.478246px;}
.ws5d{word-spacing:2.591999px;}
.ws3c{word-spacing:2.645999px;}
.ws46{word-spacing:2.743888px;}
.ws4b{word-spacing:2.960419px;}
.ws59{word-spacing:3.095999px;}
.ws47{word-spacing:3.463888px;}
.ws1e{word-spacing:3.842368px;}
.ws61{word-spacing:4.031998px;}
.ws22{word-spacing:4.103944px;}
.ws28{word-spacing:4.562350px;}
.ws57{word-spacing:4.967998px;}
.ws3d{word-spacing:6.246016px;}
.ws5a{word-spacing:6.407997px;}
.ws2c{word-spacing:6.425997px;}
.ws60{word-spacing:6.551997px;}
.ws37{word-spacing:7.110015px;}
.ws38{word-spacing:7.145979px;}
.ws5c{word-spacing:8.279997px;}
.ws1b{word-spacing:8.549979px;}
.ws12{word-spacing:9.125996px;}
.ws54{word-spacing:10.007996px;}
.ws25{word-spacing:10.566014px;}
.ws33{word-spacing:13.895994px;}
.ws6c{word-spacing:15.047994px;}
.ws51{word-spacing:15.551994px;}
.ws4d{word-spacing:16.055994px;}
.ws6b{word-spacing:16.127994px;}
.ws5b{word-spacing:18.215993px;}
.ws43{word-spacing:18.521993px;}
.ws69{word-spacing:18.647993px;}
.ws42{word-spacing:18.827972px;}
.ws4e{word-spacing:19.367992px;}
.ws2f{word-spacing:21.311991px;}
.ws4c{word-spacing:21.959991px;}
.ws3f{word-spacing:23.561973px;}
.ws3e{word-spacing:23.669973px;}
.ws21{word-spacing:24.263918px;}
.ws63{word-spacing:24.407990px;}
.ws8c{word-spacing:25.551220px;}
.ws11{word-spacing:25.686008px;}
.ws50{word-spacing:25.847990px;}
.ws3b{word-spacing:26.999989px;}
.ws15{word-spacing:27.125971px;}
.ws14{word-spacing:27.143899px;}
.ws23{word-spacing:28.025989px;}
.ws1d{word-spacing:29.321988px;}
.ws65{word-spacing:30.887988px;}
.ws13{word-spacing:32.885987px;}
.ws5e{word-spacing:35.495986px;}
.ws7d{word-spacing:38.265133px;}
.ws8a{word-spacing:38.511373px;}
.ws1a{word-spacing:39.365984px;}
.ws30{word-spacing:40.535984px;}
.ws8f{word-spacing:40.671171px;}
.ws56{word-spacing:42.191983px;}
.ws8e{word-spacing:44.029512px;}
.ws1c{word-spacing:45.863802px;}
.ws26{word-spacing:46.025802px;}
.ws78{word-spacing:48.572736px;}
.ws89{word-spacing:50.505172px;}
.ws7c{word-spacing:51.945128px;}
.ws27{word-spacing:53.909798px;}
.ws79{word-spacing:61.082050px;}
.ws8b{word-spacing:61.304980px;}
.ws1f{word-spacing:61.685795px;}
.ws88{word-spacing:65.625123px;}
.wsa9{word-spacing:69.471390px;}
.ws8d{word-spacing:69.944991px;}
.wsa8{word-spacing:70.191791px;}
.wsc3{word-spacing:73.292644px;}
.ws92{word-spacing:73.605534px;}
.ws87{word-spacing:73.791258px;}
.wsc7{word-spacing:74.732644px;}
.wsc2{word-spacing:79.771504px;}
.wsa5{word-spacing:82.189692px;}
.wsbf{word-spacing:84.166739px;}
.wsa6{word-spacing:87.945128px;}
.wsa7{word-spacing:88.669608px;}
.wsb2{word-spacing:89.124444px;}
.wsaa{word-spacing:90.351783px;}
.ws97{word-spacing:91.545155px;}
.wsc1{word-spacing:92.728619px;}
.wsc4{word-spacing:93.451211px;}
.ws96{word-spacing:98.025095px;}
.ws81{word-spacing:102.414185px;}
.ws93{word-spacing:104.631857px;}
.ws80{word-spacing:109.614239px;}
.wsb0{word-spacing:111.759133px;}
.wsbe{word-spacing:113.869538px;}
.ws82{word-spacing:116.745073px;}
.wsc0{word-spacing:119.360415px;}
.ws91{word-spacing:119.625096px;}
.wsc6{word-spacing:120.080256px;}
.ws94{word-spacing:120.345096px;}
.ws86{word-spacing:122.509549px;}
.ws83{word-spacing:123.294234px;}
.wsac{word-spacing:123.945128px;}
.wsab{word-spacing:124.665263px;}
.wsa4{word-spacing:131.144909px;}
.wsa3{word-spacing:131.865312px;}
.ws9a{word-spacing:138.084425px;}
.ws9d{word-spacing:142.486716px;}
.ws77{word-spacing:142.713994px;}
.ws9e{word-spacing:143.206716px;}
.ws9f{word-spacing:146.738447px;}
.ws9c{word-spacing:151.054500px;}
.ws7e{word-spacing:152.194864px;}
.wscb{word-spacing:159.471253px;}
.ws73{word-spacing:162.154073px;}
.ws72{word-spacing:170.074228px;}
.ws99{word-spacing:172.180558px;}
.ws5{word-spacing:174.723200px;}
.wsa{word-spacing:175.440111px;}
.ws35{word-spacing:175.440350px;}
.ws74{word-spacing:177.274067px;}
.wsa0{word-spacing:177.680147px;}
.ws36{word-spacing:189.123144px;}
.wsb{word-spacing:189.450103px;}
.wsb9{word-spacing:193.311182px;}
.wsb3{word-spacing:207.924397px;}
.ws71{word-spacing:208.686761px;}
.wsb1{word-spacing:218.806686px;}
.ws84{word-spacing:229.859944px;}
.ws6f{word-spacing:319.211872px;}
.ws75{word-spacing:536.461760px;}
.ws70{word-spacing:544.751725px;}
.ws76{word-spacing:544.854017px;}
.wsc{word-spacing:696.041686px;}
.wsa2{word-spacing:813.278487px;}
.ws98{word-spacing:856.259693px;}
.ws7f{word-spacing:978.878420px;}
.wsb5{word-spacing:1097.678373px;}
.wsba{word-spacing:1123.846110px;}
.wsc8{word-spacing:1125.038362px;}
.wsaf{word-spacing:1139.219580px;}
.wsbd{word-spacing:1167.299569px;}
.wsb6{word-spacing:1238.957576px;}
.wsb8{word-spacing:1260.089640px;}
.wsc9{word-spacing:1267.846053px;}
.wsbb{word-spacing:1390.966004px;}
.wsb7{word-spacing:1506.797469px;}
.wscc{word-spacing:1524.165950px;}
.wsca{word-spacing:1534.965946px;}
.wsad{word-spacing:1605.689502px;}
.wsae{word-spacing:1798.649425px;}
._78{margin-left:-38.960804px;}
._1c{margin-left:-7.217207px;}
._2{margin-left:-4.657628px;}
._3{margin-left:-3.348140px;}
._16{margin-left:-2.343033px;}
._0{margin-left:-1.309090px;}
._1{width:1.123770px;}
._4{width:2.466020px;}
._13{width:4.086550px;}
._82{width:5.793440px;}
._14{width:7.497128px;}
._12{width:8.618038px;}
._d{width:11.267665px;}
._5{width:13.530821px;}
._11{width:14.547360px;}
._8{width:15.983994px;}
._17{width:17.063993px;}
._1d{width:18.260807px;}
._1b{width:20.447992px;}
._b{width:22.376519px;}
._e{width:24.169196px;}
._19{width:25.209215px;}
._f{width:31.216236px;}
._15{width:33.853077px;}
._5b{width:35.572645px;}
._58{width:37.423406px;}
._a{width:39.185801px;}
._10{width:40.525302px;}
._7{width:41.848527px;}
._18{width:43.343983px;}
._38{width:45.756107px;}
._66{width:47.017246px;}
._5e{width:48.042718px;}
._3c{width:49.747242px;}
._5c{width:50.823347px;}
._37{width:52.054405px;}
._c{width:53.428283px;}
._60{width:55.699099px;}
._1a{width:57.076102px;}
._62{width:58.502585px;}
._63{width:60.018654px;}
._64{width:62.592744px;}
._5d{width:63.882510px;}
._3a{width:65.496250px;}
._54{width:68.689117px;}
._3b{width:69.816392px;}
._39{width:72.021507px;}
._36{width:73.630269px;}
._52{width:75.859033px;}
._8a{width:78.433457px;}
._59{width:80.027585px;}
._56{width:84.582353px;}
._65{width:91.539728px;}
._51{width:96.013598px;}
._6a{width:97.831539px;}
._71{width:103.781985px;}
._6e{width:105.007419px;}
._4e{width:106.176649px;}
._1f{width:110.584115px;}
._4d{width:116.755802px;}
._41{width:124.848555px;}
._8d{width:126.263613px;}
._43{width:130.991856px;}
._3f{width:137.847704px;}
._29{width:140.814389px;}
._77{width:144.052438px;}
._4c{width:145.246896px;}
._2e{width:148.459322px;}
._7e{width:153.662377px;}
._7d{width:155.522758px;}
._5f{width:159.914069px;}
._3d{width:168.523123px;}
._3e{width:173.734289px;}
._53{width:182.805877px;}
._75{width:184.791209px;}
._2f{width:191.641015px;}
._1e{width:192.996064px;}
._4f{width:198.128765px;}
._6{width:203.399963px;}
._2c{width:222.086506px;}
._55{width:223.379431px;}
._91{width:232.836675px;}
._2b{width:235.117954px;}
._50{width:249.187879px;}
._68{width:267.677463px;}
._31{width:272.908275px;}
._76{width:274.780989px;}
._8f{width:281.487601px;}
._90{width:313.639619px;}
._61{width:320.933096px;}
._5a{width:327.637319px;}
._67{width:330.815652px;}
._57{width:338.786717px;}
._20{width:345.864952px;}
._33{width:348.226421px;}
._8e{width:354.192731px;}
._25{width:357.125748px;}
._24{width:363.569745px;}
._22{width:365.574355px;}
._2a{width:372.067182px;}
._32{width:386.186376px;}
._35{width:401.489961px;}
._2d{width:412.437566px;}
._30{width:415.906394px;}
._26{width:427.636629px;}
._27{width:436.024756px;}
._21{width:441.489423px;}
._70{width:444.153006px;}
._84{width:453.859980px;}
._6c{width:481.915357px;}
._83{width:500.304698px;}
._6d{width:511.233238px;}
._28{width:515.120914px;}
._23{width:544.998022px;}
._69{width:554.554118px;}
._6b{width:577.658696px;}
._8c{width:585.106481px;}
._73{width:594.901225px;}
._7c{width:604.388513px;}
._6f{width:631.197828px;}
._7a{width:632.792931px;}
._44{width:636.239148px;}
._72{width:638.366145px;}
._81{width:683.376361px;}
._7f{width:689.921135px;}
._42{width:702.265287px;}
._74{width:750.245720px;}
._80{width:766.347664px;}
._34{width:791.373283px;}
._79{width:825.227670px;}
._7b{width:827.006069px;}
._9{width:845.971843px;}
._46{width:854.376138px;}
._88{width:887.348400px;}
._45{width:895.005722px;}
._4b{width:915.384594px;}
._86{width:917.192817px;}
._47{width:922.639311px;}
._40{width:927.457549px;}
._48{width:928.767948px;}
._4a{width:938.809064px;}
._93{width:944.552806px;}
._49{width:957.359137px;}
._89{width:972.881021px;}
._95{width:1000.241011px;}
._8b{width:1056.507548px;}
._96{width:1083.867537px;}
._85{width:1109.627556px;}
._87{width:1111.405955px;}
._92{width:1136.987545px;}
._94{width:1138.765944px;}
._98{width:1165.021175px;}
._97{width:1276.382369px;}
.fc8{color:rgb(149,55,53);}
.fc7{color:rgb(192,80,77);}
.fc6{color:rgb(23,55,94);}
.fc3{color:rgb(37,64,97);}
.fc5{color:transparent;}
.fc2{color:rgb(99,37,35);}
.fc1{color:rgb(31,73,124);}
.fc4{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fsa{font-size:17.999993px;}
.fs6{font-size:23.759990px;}
.fs9{font-size:27.359989px;}
.fs8{font-size:30.239988px;}
.fsb{font-size:33.119987px;}
.fs5{font-size:35.999986px;}
.fs2{font-size:41.759983px;}
.fs4{font-size:48.239981px;}
.fs3{font-size:53.999978px;}
.fs1{font-size:59.759976px;}
.fs0{font-size:71.999971px;}
.fs7{font-size:107.999957px;}
.y1c{bottom:-12.240929px;}
.y30{bottom:-11.340704px;}
.y5d{bottom:-10.800706px;}
.y49{bottom:-10.080917px;}
.y43{bottom:-9.720964px;}
.y62{bottom:-9.720772px;}
.y2a{bottom:-9.720766px;}
.y57{bottom:-9.720754px;}
.y0{bottom:0.000000px;}
.y1cb{bottom:1.079123px;}
.y18f{bottom:1.079693px;}
.y45{bottom:2.879041px;}
.y64{bottom:2.879233px;}
.y2c{bottom:2.879239px;}
.y59{bottom:2.879251px;}
.y2{bottom:37.379985px;}
.y18e{bottom:166.260240px;}
.y18a{bottom:177.599929px;}
.y189{bottom:184.259926px;}
.y18{bottom:190.019924px;}
.y188{bottom:191.099924px;}
.y8a{bottom:194.519922px;}
.y187{bottom:197.759921px;}
.y186{bottom:204.599918px;}
.y185{bottom:211.259915px;}
.y125{bottom:216.479913px;}
.y184{bottom:218.099913px;}
.y124{bottom:223.139911px;}
.y182{bottom:224.759910px;}
.y181{bottom:228.179909px;}
.yda{bottom:228.899908px;}
.y183{bottom:231.599907px;}
.y60{bottom:233.579907px;}
.y123{bottom:238.259905px;}
.yd9{bottom:242.759903px;}
.y32{bottom:243.479903px;}
.y180{bottom:245.099902px;}
.y89{bottom:245.999902px;}
.y5f{bottom:249.779900px;}
.y17f{bottom:251.759899px;}
.yd8{bottom:253.739899px;}
.y101{bottom:257.339897px;}
.yab{bottom:257.879897px;}
.y17e{bottom:258.419897px;}
.y31{bottom:259.679896px;}
.y122{bottom:260.219896px;}
.y17d{bottom:261.839895px;}
.yd7{bottom:265.259894px;}
.y88{bottom:265.439894px;}
.y5e{bottom:265.979894px;}
.ya5{bottom:266.339893px;}
.y2f{bottom:271.020600px;}
.y100{bottom:271.739891px;}
.y17c{bottom:271.919891px;}
.y17a{bottom:275.339890px;}
.yd6{bottom:276.779889px;}
.y5c{bottom:276.780600px;}
.y17b{bottom:278.759888px;}
.y17{bottom:279.119888px;}
.y121{bottom:282.179887px;}
.y87{bottom:284.879886px;}
.y178{bottom:285.419886px;}
.yff{bottom:286.139886px;}
.y74{bottom:286.859885px;}
.ya4{bottom:287.939885px;}
.y177{bottom:288.839884px;}
.yd5{bottom:289.199884px;}
.y12{bottom:291.179884px;}
.y179{bottom:292.259883px;}
.yae{bottom:292.619883px;}
.yd4{bottom:298.199881px;}
.y175{bottom:298.919880px;}
.yfe{bottom:300.719880px;}
.y174{bottom:302.339879px;}
.y73{bottom:303.059879px;}
.y16{bottom:303.419879px;}
.y120{bottom:303.959878px;}
.y86{bottom:304.319878px;}
.y176{bottom:305.759878px;}
.yd3{bottom:307.199877px;}
.yad{bottom:308.819876px;}
.y9a{bottom:309.539876px;}
.y173{bottom:312.419875px;}
.yfd{bottom:315.119874px;}
.y11{bottom:315.479874px;}
.y172{bottom:315.839874px;}
.yac{bottom:316.919873px;}
.yd2{bottom:318.899872px;}
.y72{bottom:319.259872px;}
.y3d{bottom:320.699872px;}
.y85{bottom:323.759870px;}
.y11f{bottom:325.919870px;}
.y15{bottom:327.719869px;}
.yd1{bottom:328.079869px;}
.y170{bottom:329.339868px;}
.yfc{bottom:329.519868px;}
.y99{bottom:331.139868px;}
.y171{bottom:332.759867px;}
.y71{bottom:335.459866px;}
.y3c{bottom:336.899865px;}
.yd0{bottom:337.439865px;}
.y16f{bottom:339.599864px;}
.y10{bottom:339.779864px;}
.y84{bottom:343.199863px;}
.yfb{bottom:344.099862px;}
.y16e{bottom:346.259861px;}
.ycf{bottom:347.519861px;}
.y11e{bottom:347.879861px;}
.y16d{bottom:349.679860px;}
.y70{bottom:351.659859px;}
.y14{bottom:352.019859px;}
.y98{bottom:352.739859px;}
.y3b{bottom:353.099859px;}
.yce{bottom:356.699857px;}
.y16c{bottom:359.759856px;}
.y83{bottom:362.639855px;}
.yf{bottom:364.079854px;}
.y16b{bottom:366.599853px;}
.y6f{bottom:367.859853px;}
.y58{bottom:368.940600px;}
.ycd{bottom:369.119852px;}
.y3a{bottom:369.299852px;}
.y11d{bottom:369.659852px;}
.y5b{bottom:371.819851px;}
.yfa{bottom:372.899851px;}
.y16a{bottom:373.259851px;}
.y97{bottom:374.339850px;}
.y13{bottom:376.319849px;}
.y169{bottom:376.679849px;}
.ycc{bottom:380.639848px;}
.y82{bottom:382.079847px;}
.y6e{bottom:384.059846px;}
.y5a{bottom:384.419846px;}
.y39{bottom:385.499846px;}
.y168{bottom:386.759845px;}
.yf9{bottom:387.479845px;}
.ycb{bottom:389.999844px;}
.y167{bottom:390.179844px;}
.y11c{bottom:391.619843px;}
.y56{bottom:394.140600px;}
.ya3{bottom:395.939842px;}
.y2b{bottom:399.360600px;}
.y6d{bottom:400.259840px;}
.y81{bottom:401.519839px;}
.y38{bottom:401.699839px;}
.y2e{bottom:402.239839px;}
.yca{bottom:402.599839px;}
.y165{bottom:403.679839px;}
.y166{bottom:407.099837px;}
.yc9{bottom:411.599835px;}
.y11b{bottom:413.579835px;}
.y164{bottom:413.759834px;}
.y63{bottom:414.120600px;}
.y2d{bottom:414.839834px;}
.yf8{bottom:416.279833px;}
.y6c{bottom:416.459833px;}
.y66{bottom:416.999833px;}
.y163{bottom:417.179833px;}
.y96{bottom:417.539833px;}
.y37{bottom:417.899833px;}
.y80{bottom:420.959832px;}
.yc8{bottom:422.579831px;}
.y29{bottom:424.560600px;}
.y162{bottom:427.259829px;}
.ye{bottom:428.699829px;}
.y65{bottom:429.599828px;}
.y161{bottom:430.679828px;}
.yf7{bottom:430.859828px;}
.y67{bottom:431.399827px;}
.yc7{bottom:431.579827px;}
.y6b{bottom:432.659827px;}
.y36{bottom:434.099826px;}
.y11a{bottom:435.359826px;}
.yb{bottom:438.239825px;}
.y95{bottom:439.139824px;}
.y61{bottom:439.320600px;}
.y7f{bottom:440.399824px;}
.yc6{bottom:440.579824px;}
.y160{bottom:440.759824px;}
.yd{bottom:444.899822px;}
.y15e{bottom:447.419821px;}
.yf6{bottom:448.499821px;}
.y6a{bottom:448.859820px;}
.yc5{bottom:449.579820px;}
.y35{bottom:450.299820px;}
.y15d{bottom:450.839820px;}
.y15f{bottom:454.259818px;}
.ya{bottom:454.439818px;}
.y119{bottom:457.319817px;}
.y27{bottom:457.859817px;}
.y7e{bottom:459.839816px;}
.y94{bottom:460.739816px;}
.y15b{bottom:460.919816px;}
.yc{bottom:461.099816px;}
.yf5{bottom:462.899815px;}
.y28{bottom:464.159814px;}
.y15a{bottom:464.339814px;}
.y69{bottom:465.059814px;}
.y34{bottom:466.499813px;}
.y15c{bottom:467.759813px;}
.y26{bottom:470.459812px;}
.yf4{bottom:472.259811px;}
.y159{bottom:474.419810px;}
.y118{bottom:475.679810px;}
.y158{bottom:477.839809px;}
.y117{bottom:479.279808px;}
.y68{bottom:481.259807px;}
.yf3{bottom:481.799807px;}
.y93{bottom:482.339807px;}
.y33{bottom:482.699807px;}
.y157{bottom:488.099805px;}
.yc4{bottom:488.999804px;}
.yf2{bottom:491.699803px;}
.y155{bottom:494.759802px;}
.y9{bottom:495.839802px;}
.y154{bottom:498.179801px;}
.yaa{bottom:500.159800px;}
.y156{bottom:501.599799px;}
.y116{bottom:503.579799px;}
.y153{bottom:508.259797px;}
.y25{bottom:508.979796px;}
.y7d{bottom:509.159796px;}
.y152{bottom:515.099794px;}
.y18d{bottom:524.639790px;}
.y8f{bottom:538.499785px;}
.y18c{bottom:540.479784px;}
.y8e{bottom:549.299780px;}
.y18b{bottom:554.879778px;}
.y8d{bottom:560.099776px;}
.y1ca{bottom:692.040600px;}
.y1c6{bottom:696.539721px;}
.y1c5{bottom:703.379719px;}
.y1c4{bottom:710.039716px;}
.y151{bottom:715.079714px;}
.y24{bottom:715.799714px;}
.y1c3{bottom:716.879713px;}
.y7c{bottom:720.299712px;}
.y1c2{bottom:723.539711px;}
.y14e{bottom:726.959709px;}
.yf1{bottom:730.199708px;}
.y1c1{bottom:730.379708px;}
.y14d{bottom:734.699706px;}
.y1c0{bottom:737.039705px;}
.y14c{bottom:743.699703px;}
.y1be{bottom:747.119701px;}
.y115{bottom:748.559701px;}
.y1bf{bottom:750.539700px;}
.y14b{bottom:752.159699px;}
.y1bd{bottom:757.379697px;}
.y4c{bottom:758.999696px;}
.y14a{bottom:760.259696px;}
.yef{bottom:761.519695px;}
.y1bc{bottom:764.039694px;}
.y114{bottom:767.099693px;}
.yf0{bottom:768.359693px;}
.y149{bottom:769.979692px;}
.ya9{bottom:770.519692px;}
.y1bb{bottom:770.879692px;}
.y113{bottom:773.939690px;}
.y4b{bottom:775.199690px;}
.ybc{bottom:776.459689px;}
.y1ba{bottom:777.539689px;}
.y148{bottom:780.959688px;}
.yed{bottom:783.299687px;}
.y1b9{bottom:784.379686px;}
.y111{bottom:788.879684px;}
.yee{bottom:790.319684px;}
.y1b8{bottom:791.039684px;}
.y4a{bottom:791.399683px;}
.ya8{bottom:792.119683px;}
.y112{bottom:792.479683px;}
.ybb{bottom:793.919682px;}
.y1b6{bottom:794.459682px;}
.y110{bottom:795.719682px;}
.y147{bottom:796.979681px;}
.y1b7{bottom:797.879681px;}
.y145{bottom:800.399680px;}
.y48{bottom:801.480600px;}
.y146{bottom:803.819678px;}
.y1b4{bottom:804.539678px;}
.yeb{bottom:805.259678px;}
.y1e{bottom:806.339677px;}
.y8{bottom:806.699677px;}
.y1b3{bottom:807.959677px;}
.yba{bottom:809.759676px;}
.y144{bottom:810.479676px;}
.y1b5{bottom:811.379675px;}
.yec{bottom:812.099675px;}
.ya2{bottom:813.719675px;}
.y142{bottom:813.899674px;}
.y10f{bottom:814.259674px;}
.y143{bottom:817.319673px;}
.y1b1{bottom:818.039673px;}
.y1b0{bottom:821.459671px;}
.y1d{bottom:822.539671px;}
.y140{bottom:823.979670px;}
.y1b2{bottom:824.879670px;}
.yb9{bottom:825.959670px;}
.ye9{bottom:827.219669px;}
.y13f{bottom:827.399669px;}
.y7{bottom:828.659669px;}
.y141{bottom:830.819668px;}
.y1ae{bottom:831.539667px;}
.yea{bottom:834.059666px;}
.y1b{bottom:834.780600px;}
.y1ad{bottom:834.959666px;}
.ya1{bottom:835.319666px;}
.y10e{bottom:836.219666px;}
.y13d{bottom:837.479665px;}
.y1af{bottom:838.379665px;}
.y13c{bottom:840.899664px;}
.yb8{bottom:843.059663px;}
.y13e{bottom:844.319662px;}
.y1ab{bottom:845.039662px;}
.y21{bottom:848.279661px;}
.y1aa{bottom:848.459661px;}
.ye7{bottom:848.999660px;}
.y6{bottom:850.619660px;}
.y13a{bottom:850.979660px;}
.y1ac{bottom:851.879659px;}
.y7b{bottom:853.679659px;}
.y139{bottom:854.399658px;}
.ye8{bottom:856.019658px;}
.ya0{bottom:856.919657px;}
.y13b{bottom:857.819657px;}
.y10d{bottom:858.179657px;}
.y1a9{bottom:858.539657px;}
.yb7{bottom:859.619656px;}
.y137{bottom:864.479654px;}
.y1a8{bottom:865.199654px;}
.y136{bottom:867.899653px;}
.ye5{bottom:870.959652px;}
.y138{bottom:871.319651px;}
.y5{bottom:872.399651px;}
.y7a{bottom:875.279650px;}
.yb6{bottom:876.359649px;}
.ye6{bottom:877.799649px;}
.ya7{bottom:878.519649px;}
.y20{bottom:878.879648px;}
.y135{bottom:879.779648px;}
.y10c{bottom:879.959648px;}
.y1a7{bottom:882.119647px;}
.y1a6{bottom:885.539646px;}
.yc3{bottom:887.519645px;}
.y55{bottom:888.239645px;}
.y134{bottom:888.419645px;}
.yb5{bottom:892.199643px;}
.ye3{bottom:892.919643px;}
.y22{bottom:893.999642px;}
.y44{bottom:894.720600px;}
.y133{bottom:895.259642px;}
.y79{bottom:896.879641px;}
.y47{bottom:897.599641px;}
.y1a5{bottom:899.039640px;}
.ye4{bottom:899.759640px;}
.y9f{bottom:900.119640px;}
.y131{bottom:901.019640px;}
.y10b{bottom:901.919639px;}
.y132{bottom:902.459639px;}
.yc2{bottom:903.719639px;}
.y54{bottom:904.439638px;}
.yb4{bottom:908.039637px;}
.y1f{bottom:908.939636px;}
.y130{bottom:909.299636px;}
.y46{bottom:910.199636px;}
.y1a4{bottom:912.539635px;}
.ye2{bottom:914.699634px;}
.y1a3{bottom:915.959634px;}
.y12f{bottom:918.479633px;}
.yc1{bottom:919.919632px;}
.y42{bottom:919.920600px;}
.y53{bottom:920.639632px;}
.y9e{bottom:921.719631px;}
.y10a{bottom:923.879630px;}
.yb3{bottom:924.239630px;}
.y23{bottom:925.679630px;}
.y1a2{bottom:926.039630px;}
.y12e{bottom:929.099628px;}
.y4{bottom:930.719628px;}
.y12d{bottom:932.519627px;}
.yc0{bottom:936.119626px;}
.ye0{bottom:936.659625px;}
.y52{bottom:936.839625px;}
.y1a1{bottom:939.539624px;}
.y78{bottom:940.079624px;}
.y108{bottom:942.239623px;}
.y9d{bottom:943.319623px;}
.ye1{bottom:943.499623px;}
.y12c{bottom:944.219622px;}
.y109{bottom:945.659622px;}
.y12b{bottom:947.639621px;}
.y3{bottom:948.719621px;}
.y4d{bottom:949.079620px;}
.ybf{bottom:952.319619px;}
.y51{bottom:953.039619px;}
.ydf{bottom:954.479618px;}
.yb2{bottom:956.279617px;}
.y1a0{bottom:956.459617px;}
.yde{bottom:958.619617px;}
.y12a{bottom:959.159616px;}
.y77{bottom:961.679615px;}
.y1a{bottom:963.299615px;}
.y106{bottom:964.199614px;}
.ya6{bottom:964.919614px;}
.y19f{bottom:966.539613px;}
.y128{bottom:967.259613px;}
.y107{bottom:967.619613px;}
.ybe{bottom:968.519613px;}
.y50{bottom:969.239612px;}
.y127{bottom:970.859612px;}
.y105{bottom:971.039612px;}
.yb1{bottom:972.839611px;}
.y19d{bottom:973.199611px;}
.y129{bottom:974.099610px;}
.y19c{bottom:976.619609px;}
.y19e{bottom:980.039608px;}
.ydd{bottom:980.219608px;}
.y76{bottom:983.279607px;}
.y40{bottom:983.639607px;}
.y4f{bottom:985.439606px;}
.y9c{bottom:986.519605px;}
.y19a{bottom:986.699605px;}
.y104{bottom:989.579604px;}
.y41{bottom:989.939604px;}
.y199{bottom:990.119604px;}
.yb0{bottom:991.739603px;}
.y126{bottom:992.459603px;}
.ydc{bottom:993.179603px;}
.y19b{bottom:993.539603px;}
.y3f{bottom:996.239602px;}
.y197{bottom:1000.199600px;}
.ybd{bottom:1000.919600px;}
.y4e{bottom:1001.639599px;}
.ydb{bottom:1003.079599px;}
.y196{bottom:1003.619599px;}
.y198{bottom:1007.039597px;}
.y9b{bottom:1008.119597px;}
.y103{bottom:1011.359595px;}
.y150{bottom:1013.699595px;}
.y195{bottom:1013.879594px;}
.yaf{bottom:1014.959594px;}
.y19{bottom:1018.559593px;}
.y193{bottom:1020.539592px;}
.y192{bottom:1023.959590px;}
.y194{bottom:1027.379589px;}
.y14f{bottom:1029.899588px;}
.y102{bottom:1033.319587px;}
.y191{bottom:1034.039586px;}
.y3e{bottom:1034.759586px;}
.y75{bottom:1034.939586px;}
.y190{bottom:1040.879584px;}
.y1c9{bottom:1051.859579px;}
.y92{bottom:1062.299575px;}
.y8c{bottom:1065.539574px;}
.y1c8{bottom:1066.259573px;}
.y91{bottom:1073.099571px;}
.y1c7{bottom:1080.659568px;}
.y8b{bottom:1081.739567px;}
.y90{bottom:1083.899566px;}
.y1{bottom:1213.499515px;}
.hb{height:0.180000px;}
.h7{height:0.540000px;}
.hc{height:1.440000px;}
.h11{height:1.980000px;}
.hf{height:2.700000px;}
.h30{height:9.000000px;}
.h1a{height:19.023742px;}
.h1b{height:19.037102px;}
.h17{height:21.041007px;}
.h1e{height:21.695616px;}
.h2e{height:22.193429px;}
.h2b{height:22.415616px;}
.h2c{height:23.855615px;}
.h18{height:23.979365px;}
.h31{height:24.077100px;}
.h13{height:24.890615px;}
.h15{height:25.048818px;}
.h2d{height:26.081005px;}
.h1f{height:26.263114px;}
.h2a{height:26.735614px;}
.h29{height:28.175614px;}
.h16{height:28.546864px;}
.h3{height:29.056629px;}
.h24{height:30.557097px;}
.h28{height:32.495612px;}
.ha{height:33.114362px;}
.h2f{height:33.565416px;}
.h20{height:33.935611px;}
.h21{height:34.655611px;}
.h25{height:35.375611px;}
.h22{height:36.939360px;}
.h12{height:37.335923px;}
.h1c{height:37.535610px;}
.he{height:37.546860px;}
.hd{height:37.573227px;}
.h8{height:38.252797px;}
.h1d{height:38.255610px;}
.h2{height:41.581038px;}
.h19{height:41.979358px;}
.h4{height:42.820295px;}
.h9{height:45.700294px;}
.h5{height:47.387794px;}
.h26{height:49.055605px;}
.h6{height:50.097636px;}
.h23{height:51.339354px;}
.h27{height:54.815603px;}
.h1{height:57.093727px;}
.h10{height:70.652784px;}
.h14{height:75.726532px;}
.h0{height:1263.000000px;}
.w8{width:3.600000px;}
.w7{width:15.300000px;}
.w6{width:23.760000px;}
.wc{width:27.180000px;}
.w4{width:30.600000px;}
.w3{width:39.420000px;}
.w2{width:40.140000px;}
.wf{width:40.500000px;}
.w5{width:41.940000px;}
.w1{width:50.940000px;}
.wd{width:55.980000px;}
.we{width:227.520000px;}
.wa{width:429.660000px;}
.wb{width:434.160000px;}
.w9{width:474.840000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x18{left:181.619927px;}
.x42{left:185.399926px;}
.x53{left:186.839925px;}
.x3a{left:190.079924px;}
.x43{left:191.339923px;}
.x58{left:192.599923px;}
.x4c{left:193.679923px;}
.x23{left:195.119922px;}
.x3d{left:196.559921px;}
.x33{left:198.539921px;}
.x3b{left:201.419919px;}
.x27{left:204.480000px;}
.x19{left:206.279917px;}
.x3e{left:213.479915px;}
.x3c{left:218.339913px;}
.x28{left:219.780000px;}
.x50{left:223.919910px;}
.x29{left:226.440000px;}
.x36{left:233.459907px;}
.x34{left:238.140000px;}
.x31{left:240.660000px;}
.x52{left:245.159902px;}
.x10{left:246.959901px;}
.x11{left:248.219901px;}
.x35{left:253.440000px;}
.x24{left:256.500000px;}
.x3{left:259.739896px;}
.x32{left:262.260000px;}
.x2f{left:264.600000px;}
.x20{left:266.039894px;}
.xf{left:267.299893px;}
.x2d{left:273.239891px;}
.xa{left:274.679890px;}
.x1b{left:277.919889px;}
.x44{left:287.639885px;}
.x25{left:295.920000px;}
.x3f{left:296.999881px;}
.xb{left:298.979880px;}
.x26{left:300.780000px;}
.x2e{left:304.740000px;}
.x54{left:305.819878px;}
.x30{left:309.600000px;}
.x12{left:311.219876px;}
.x4{left:314.279874px;}
.x4a{left:339.299864px;}
.x9{left:343.079863px;}
.x21{left:347.579861px;}
.x39{left:350.100000px;}
.x22{left:353.699859px;}
.x2a{left:360.359856px;}
.x38{left:364.500000px;}
.x4f{left:370.619852px;}
.x4d{left:372.059851px;}
.x5{left:386.999845px;}
.x8{left:391.859843px;}
.x37{left:395.099842px;}
.x6{left:402.119839px;}
.x1f{left:413.639835px;}
.x7{left:415.079834px;}
.x1d{left:417.059833px;}
.x57{left:422.099831px;}
.x72{left:423.900000px;}
.x55{left:426.239830px;}
.x2b{left:430.919828px;}
.x2c{left:447.839821px;}
.x1e{left:451.079820px;}
.x1a{left:452.520000px;}
.x16{left:471.239812px;}
.x59{left:474.659810px;}
.x14{left:476.279809px;}
.x15{left:479.339808px;}
.x13{left:483.299807px;}
.xc{left:491.939803px;}
.x51{left:498.959800px;}
.x17{left:501.839799px;}
.xd{left:502.919799px;}
.xe{left:512.999795px;}
.x1c{left:518.219793px;}
.x5a{left:519.659792px;}
.x48{left:522.539791px;}
.x61{left:523.799790px;}
.x64{left:527.759789px;}
.x46{left:529.199788px;}
.x73{left:534.599786px;}
.x47{left:535.679786px;}
.x7a{left:536.759785px;}
.x79{left:543.419783px;}
.x49{left:545.039782px;}
.x6a{left:558.539777px;}
.x65{left:560.699776px;}
.x6c{left:563.399775px;}
.x45{left:565.019774px;}
.x5b{left:567.719773px;}
.x6f{left:569.519772px;}
.x5c{left:570.779772px;}
.x62{left:572.939771px;}
.x7b{left:576.539769px;}
.x40{left:578.339769px;}
.x66{left:592.199763px;}
.x67{left:594.899762px;}
.x6b{left:595.979762px;}
.x6d{left:597.059761px;}
.x74{left:599.039760px;}
.x78{left:600.479760px;}
.x75{left:601.739759px;}
.x70{left:603.179759px;}
.x41{left:604.253758px;}
.x7c{left:610.019756px;}
.x5d{left:615.779754px;}
.x5e{left:618.839752px;}
.x56{left:621.359751px;}
.x68{left:626.039750px;}
.x69{left:628.379749px;}
.x6e{left:630.539748px;}
.x76{left:632.519747px;}
.x77{left:635.219746px;}
.x71{left:636.659745px;}
.x7d{left:643.499743px;}
.x4e{left:644.759742px;}
.x5f{left:664.019734px;}
.x60{left:667.079733px;}
.x63{left:669.239732px;}
.x1{left:766.619693px;}
.x4b{left:835.739666px;}
.x2{left:844.919662px;}
@media print{
.v3{vertical-align:-11.519995pt;}
.vc{vertical-align:-8.959996pt;}
.v4{vertical-align:-7.679997pt;}
.v7{vertical-align:-6.399997pt;}
.v6{vertical-align:-4.479998pt;}
.v8{vertical-align:-1.919999pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:2.559999pt;}
.vf{vertical-align:5.119998pt;}
.v5{vertical-align:7.679997pt;}
.v11{vertical-align:9.599996pt;}
.vb{vertical-align:10.879996pt;}
.vd{vertical-align:12.799995pt;}
.va{vertical-align:14.079994pt;}
.v9{vertical-align:15.999994pt;}
.v10{vertical-align:17.279993pt;}
.ve{vertical-align:24.319990pt;}
.v2{vertical-align:28.799988pt;}
.ls1{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.172187pt;}
.ls0{letter-spacing:0.191875pt;}
.lsf{letter-spacing:0.207968pt;}
.lse{letter-spacing:0.208000pt;}
.ls7{letter-spacing:3.135999pt;}
.ls5{letter-spacing:7.852157pt;}
.ls4{letter-spacing:11.295995pt;}
.ls2{letter-spacing:12.831995pt;}
.ls8{letter-spacing:17.855993pt;}
.ls3{letter-spacing:23.711991pt;}
.ls26{letter-spacing:70.638052pt;}
.ls25{letter-spacing:76.398049pt;}
.ls27{letter-spacing:84.718046pt;}
.ls28{letter-spacing:102.070999pt;}
.lsa{letter-spacing:109.891796pt;}
.ls9{letter-spacing:110.553812pt;}
.ls10{letter-spacing:133.358027pt;}
.ls11{letter-spacing:133.998026pt;}
.lsc{letter-spacing:157.891777pt;}
.lsb{letter-spacing:158.549697pt;}
.lsd{letter-spacing:159.189696pt;}
.ls14{letter-spacing:163.434226pt;}
.ls1c{letter-spacing:327.350909pt;}
.ls23{letter-spacing:349.750900pt;}
.ls1a{letter-spacing:368.950892pt;}
.ls1d{letter-spacing:419.510872pt;}
.ls18{letter-spacing:436.790865pt;}
.ls21{letter-spacing:461.110856pt;}
.ls24{letter-spacing:695.350762pt;}
.ls15{letter-spacing:727.247709pt;}
.ls16{letter-spacing:740.687704pt;}
.ls1b{letter-spacing:768.950732pt;}
.ls12{letter-spacing:799.030720pt;}
.ls13{letter-spacing:809.910716pt;}
.ls22{letter-spacing:827.830709pt;}
.ls19{letter-spacing:838.710705pt;}
.ls17{letter-spacing:877.110689pt;}
.ls20{letter-spacing:901.430679pt;}
.ls1e{letter-spacing:985.807606pt;}
.ls1f{letter-spacing:992.207603pt;}
.ls29{letter-spacing:1010.127596pt;}
.ls2a{letter-spacing:1016.527593pt;}
.wsa1{word-spacing:-168.930544pt;}
.ws85{word-spacing:-116.050130pt;}
.ws6e{word-spacing:-48.511949pt;}
.ws2e{word-spacing:-31.999987pt;}
.ws0{word-spacing:-14.655869pt;}
.ws6a{word-spacing:-14.463994pt;}
.ws3{word-spacing:-10.847996pt;}
.wse{word-spacing:-8.389117pt;}
.ws45{word-spacing:-7.231997pt;}
.wsbc{word-spacing:-6.653437pt;}
.ws95{word-spacing:-6.074878pt;}
.ws7a{word-spacing:-5.496318pt;}
.ws49{word-spacing:-4.773118pt;}
.ws9b{word-spacing:-3.823966pt;}
.ws7b{word-spacing:-3.615999pt;}
.ws48{word-spacing:-2.689503pt;}
.ws31{word-spacing:-2.367999pt;}
.ws4a{word-spacing:-2.049503pt;}
.ws53{word-spacing:-1.855999pt;}
.ws6d{word-spacing:-1.727999pt;}
.ws7{word-spacing:-1.407999pt;}
.ws5f{word-spacing:-1.216000pt;}
.ws4f{word-spacing:-1.088000pt;}
.ws55{word-spacing:-0.960000pt;}
.ws67{word-spacing:-0.832000pt;}
.ws34{word-spacing:-0.704000pt;}
.ws40{word-spacing:-0.543909pt;}
.ws64{word-spacing:-0.448000pt;}
.ws58{word-spacing:-0.320000pt;}
.ws44{word-spacing:-0.207984pt;}
.ws24{word-spacing:-0.176016pt;}
.ws3a{word-spacing:-0.080016pt;}
.ws17{word-spacing:-0.070176pt;}
.ws39{word-spacing:-0.048000pt;}
.ws18{word-spacing:-0.007502pt;}
.ws6{word-spacing:0.000000pt;}
.ws10{word-spacing:0.015965pt;}
.ws29{word-spacing:0.047952pt;}
.ws2d{word-spacing:0.080016pt;}
.ws66{word-spacing:0.192000pt;}
.ws2b{word-spacing:0.447936pt;}
.ws16{word-spacing:0.464016pt;}
.ws1{word-spacing:0.490244pt;}
.ws62{word-spacing:0.576000pt;}
.ws9{word-spacing:0.687936pt;}
.ws90{word-spacing:0.895997pt;}
.ws68{word-spacing:1.024000pt;}
.ws19{word-spacing:1.030414pt;}
.ws8{word-spacing:1.071984pt;}
.wscd{word-spacing:1.072032pt;}
.ws2{word-spacing:1.080266pt;}
.ws2a{word-spacing:1.087920pt;}
.wsd{word-spacing:1.104000pt;}
.ws4{word-spacing:1.200000pt;}
.ws41{word-spacing:1.232016pt;}
.ws20{word-spacing:1.472015pt;}
.ws52{word-spacing:1.663999pt;}
.wsc5{word-spacing:1.713811pt;}
.wsb4{word-spacing:1.857842pt;}
.ws32{word-spacing:2.111999pt;}
.wsf{word-spacing:2.202886pt;}
.ws5d{word-spacing:2.303999pt;}
.ws3c{word-spacing:2.351999pt;}
.ws46{word-spacing:2.439011pt;}
.ws4b{word-spacing:2.631484pt;}
.ws59{word-spacing:2.751999pt;}
.ws47{word-spacing:3.079011pt;}
.ws1e{word-spacing:3.415439pt;}
.ws61{word-spacing:3.583999pt;}
.ws22{word-spacing:3.647951pt;}
.ws28{word-spacing:4.055422pt;}
.ws57{word-spacing:4.415998pt;}
.ws3d{word-spacing:5.552014pt;}
.ws5a{word-spacing:5.695998pt;}
.ws2c{word-spacing:5.711998pt;}
.ws60{word-spacing:5.823998pt;}
.ws37{word-spacing:6.320013pt;}
.ws38{word-spacing:6.351981pt;}
.ws5c{word-spacing:7.359997pt;}
.ws1b{word-spacing:7.599981pt;}
.ws12{word-spacing:8.111997pt;}
.ws54{word-spacing:8.895996pt;}
.ws25{word-spacing:9.392012pt;}
.ws33{word-spacing:12.351995pt;}
.ws6c{word-spacing:13.375995pt;}
.ws51{word-spacing:13.823994pt;}
.ws4d{word-spacing:14.271994pt;}
.ws6b{word-spacing:14.335994pt;}
.ws5b{word-spacing:16.191994pt;}
.ws43{word-spacing:16.463993pt;}
.ws69{word-spacing:16.575993pt;}
.ws42{word-spacing:16.735975pt;}
.ws4e{word-spacing:17.215993pt;}
.ws2f{word-spacing:18.943992pt;}
.ws4c{word-spacing:19.519992pt;}
.ws3f{word-spacing:20.943976pt;}
.ws3e{word-spacing:21.039976pt;}
.ws21{word-spacing:21.567927pt;}
.ws63{word-spacing:21.695991pt;}
.ws8c{word-spacing:22.712196pt;}
.ws11{word-spacing:22.832007pt;}
.ws50{word-spacing:22.975991pt;}
.ws3b{word-spacing:23.999990pt;}
.ws15{word-spacing:24.111974pt;}
.ws14{word-spacing:24.127910pt;}
.ws23{word-spacing:24.911990pt;}
.ws1d{word-spacing:26.063990pt;}
.ws65{word-spacing:27.455989pt;}
.ws13{word-spacing:29.231988pt;}
.ws5e{word-spacing:31.551987pt;}
.ws7d{word-spacing:34.013452pt;}
.ws8a{word-spacing:34.232332pt;}
.ws1a{word-spacing:34.991986pt;}
.ws30{word-spacing:36.031986pt;}
.ws8f{word-spacing:36.152152pt;}
.ws56{word-spacing:37.503985pt;}
.ws8e{word-spacing:39.137344pt;}
.ws1c{word-spacing:40.767824pt;}
.ws26{word-spacing:40.911824pt;}
.ws78{word-spacing:43.175765pt;}
.ws89{word-spacing:44.893486pt;}
.ws7c{word-spacing:46.173447pt;}
.ws27{word-spacing:47.919821pt;}
.ws79{word-spacing:54.295156pt;}
.ws8b{word-spacing:54.493316pt;}
.ws1f{word-spacing:54.831818pt;}
.ws88{word-spacing:58.333442pt;}
.wsa9{word-spacing:61.752346pt;}
.ws8d{word-spacing:62.173326pt;}
.wsa8{word-spacing:62.392703pt;}
.wsc3{word-spacing:65.149017pt;}
.ws92{word-spacing:65.427141pt;}
.ws87{word-spacing:65.592230pt;}
.wsc7{word-spacing:66.429017pt;}
.wsc2{word-spacing:70.908004pt;}
.wsa5{word-spacing:73.057504pt;}
.wsbf{word-spacing:74.814879pt;}
.wsa6{word-spacing:78.173447pt;}
.wsa7{word-spacing:78.817430pt;}
.wsb2{word-spacing:79.221728pt;}
.wsaa{word-spacing:80.312696pt;}
.ws97{word-spacing:81.373471pt;}
.wsc1{word-spacing:82.425439pt;}
.wsc4{word-spacing:83.067743pt;}
.ws96{word-spacing:87.133418pt;}
.ws81{word-spacing:91.034831pt;}
.ws93{word-spacing:93.006095pt;}
.ws80{word-spacing:97.434879pt;}
.wsb0{word-spacing:99.341451pt;}
.wsbe{word-spacing:101.217368pt;}
.ws82{word-spacing:103.773398pt;}
.wsc0{word-spacing:106.098146pt;}
.ws91{word-spacing:106.333419pt;}
.wsc6{word-spacing:106.738005pt;}
.ws94{word-spacing:106.973418pt;}
.ws86{word-spacing:108.897377pt;}
.ws83{word-spacing:109.594875pt;}
.wsac{word-spacing:110.173447pt;}
.wsab{word-spacing:110.813567pt;}
.wsa4{word-spacing:116.573253pt;}
.wsa3{word-spacing:117.213611pt;}
.ws9a{word-spacing:122.741711pt;}
.ws9d{word-spacing:126.654859pt;}
.ws77{word-spacing:126.856884pt;}
.ws9e{word-spacing:127.294858pt;}
.ws9f{word-spacing:130.434175pt;}
.ws9c{word-spacing:134.270666pt;}
.ws7e{word-spacing:135.284323pt;}
.wscb{word-spacing:141.752225pt;}
.ws73{word-spacing:144.136954pt;}
.ws72{word-spacing:151.177092pt;}
.ws99{word-spacing:153.049385pt;}
.ws5{word-spacing:155.309511pt;}
.wsa{word-spacing:155.946766pt;}
.ws35{word-spacing:155.946978pt;}
.ws74{word-spacing:157.576948pt;}
.wsa0{word-spacing:157.937908pt;}
.ws36{word-spacing:168.109462pt;}
.wsb{word-spacing:168.400092pt;}
.wsb9{word-spacing:171.832162pt;}
.wsb3{word-spacing:184.821686pt;}
.ws71{word-spacing:185.499343pt;}
.wsb1{word-spacing:194.494832pt;}
.ws84{word-spacing:204.319950pt;}
.ws6f{word-spacing:283.743887pt;}
.ws75{word-spacing:476.854898pt;}
.ws70{word-spacing:484.223755pt;}
.ws76{word-spacing:484.314682pt;}
.wsc{word-spacing:618.703721pt;}
.wsa2{word-spacing:722.914210pt;}
.ws98{word-spacing:761.119727pt;}
.ws7f{word-spacing:870.114151pt;}
.wsb5{word-spacing:975.714109pt;}
.wsba{word-spacing:998.974320pt;}
.wsc8{word-spacing:1000.034099pt;}
.wsaf{word-spacing:1012.639627pt;}
.wsbd{word-spacing:1037.599617pt;}
.wsb6{word-spacing:1101.295623pt;}
.wsb8{word-spacing:1120.079680pt;}
.wsc9{word-spacing:1126.974269pt;}
.wsbb{word-spacing:1236.414225pt;}
.wsb7{word-spacing:1339.375528pt;}
.wscc{word-spacing:1354.814178pt;}
.wsca{word-spacing:1364.414174pt;}
.wsad{word-spacing:1427.279557pt;}
.wsae{word-spacing:1598.799488pt;}
._78{margin-left:-34.631826pt;}
._1c{margin-left:-6.415295pt;}
._2{margin-left:-4.140114pt;}
._3{margin-left:-2.976124pt;}
._16{margin-left:-2.082696pt;}
._0{margin-left:-1.163636pt;}
._1{width:0.998906pt;}
._4{width:2.192017pt;}
._13{width:3.632489pt;}
._82{width:5.149724pt;}
._14{width:6.664114pt;}
._12{width:7.660478pt;}
._d{width:10.015702pt;}
._5{width:12.027397pt;}
._11{width:12.930987pt;}
._8{width:14.207994pt;}
._17{width:15.167994pt;}
._1d{width:16.231829pt;}
._1b{width:18.175993pt;}
._b{width:19.890239pt;}
._e{width:21.483730pt;}
._19{width:22.408191pt;}
._f{width:27.747765pt;}
._15{width:30.091624pt;}
._5b{width:31.620129pt;}
._58{width:33.265249pt;}
._a{width:34.831823pt;}
._10{width:36.022490pt;}
._7{width:37.198691pt;}
._18{width:38.527985pt;}
._38{width:40.672095pt;}
._66{width:41.793107pt;}
._5e{width:42.704638pt;}
._3c{width:44.219771pt;}
._5c{width:45.176309pt;}
._37{width:46.270582pt;}
._c{width:47.491807pt;}
._60{width:49.510310pt;}
._1a{width:50.734313pt;}
._62{width:52.002297pt;}
._63{width:53.349914pt;}
._64{width:55.637995pt;}
._5d{width:56.784453pt;}
._3a{width:58.218889pt;}
._54{width:61.056993pt;}
._3b{width:62.059015pt;}
._39{width:64.019117pt;}
._36{width:65.449128pt;}
._52{width:67.430252pt;}
._8a{width:69.718628pt;}
._59{width:71.135631pt;}
._56{width:75.184314pt;}
._65{width:81.368648pt;}
._51{width:85.345420pt;}
._6a{width:86.961368pt;}
._71{width:92.250653pt;}
._6e{width:93.339928pt;}
._4e{width:94.379243pt;}
._1f{width:98.296992pt;}
._4d{width:103.782935pt;}
._41{width:110.976493pt;}
._8d{width:112.234323pt;}
._43{width:116.437206pt;}
._3f{width:122.531292pt;}
._29{width:125.168346pt;}
._77{width:128.046611pt;}
._4c{width:129.108352pt;}
._2e{width:131.963842pt;}
._7e{width:136.588780pt;}
._7d{width:138.242451pt;}
._5f{width:142.145839pt;}
._3d{width:149.798331pt;}
._3e{width:154.430479pt;}
._53{width:162.494113pt;}
._75{width:164.258853pt;}
._2f{width:170.347569pt;}
._1e{width:171.552057pt;}
._4f{width:176.114458pt;}
._6{width:180.799967pt;}
._2c{width:197.410227pt;}
._55{width:198.559494pt;}
._91{width:206.965933pt;}
._2b{width:208.993737pt;}
._50{width:221.500337pt;}
._68{width:237.935523pt;}
._31{width:242.585133pt;}
._76{width:244.249768pt;}
._8f{width:250.211201pt;}
._90{width:278.790773pt;}
._61{width:285.273863pt;}
._5a{width:291.233173pt;}
._67{width:294.058357pt;}
._57{width:301.143749pt;}
._20{width:307.435513pt;}
._33{width:309.534596pt;}
._8e{width:314.837983pt;}
._25{width:317.445109pt;}
._24{width:323.173107pt;}
._22{width:324.954982pt;}
._2a{width:330.726384pt;}
._32{width:343.276779pt;}
._35{width:356.879965pt;}
._2d{width:366.611169pt;}
._30{width:369.694572pt;}
._26{width:380.121448pt;}
._27{width:387.577561pt;}
._21{width:392.435043pt;}
._70{width:394.802672pt;}
._84{width:403.431093pt;}
._6c{width:428.369206pt;}
._83{width:444.715287pt;}
._6d{width:454.429545pt;}
._28{width:457.885257pt;}
._23{width:484.442686pt;}
._69{width:492.936994pt;}
._6b{width:513.474396pt;}
._8c{width:520.094650pt;}
._73{width:528.801089pt;}
._7c{width:537.234234pt;}
._6f{width:561.064736pt;}
._7a{width:562.482605pt;}
._44{width:565.545910pt;}
._72{width:567.436573pt;}
._81{width:607.445655pt;}
._7f{width:613.263231pt;}
._42{width:624.235811pt;}
._74{width:666.885084pt;}
._80{width:681.197924pt;}
._34{width:703.442919pt;}
._79{width:733.535707pt;}
._7b{width:735.116506pt;}
._9{width:751.974971pt;}
._46{width:759.445456pt;}
._88{width:788.754133pt;}
._45{width:795.560642pt;}
._4b{width:813.675195pt;}
._86{width:815.282504pt;}
._47{width:820.123832pt;}
._40{width:824.406710pt;}
._48{width:825.571510pt;}
._4a{width:834.496946pt;}
._93{width:839.602495pt;}
._49{width:850.985900pt;}
._89{width:864.783130pt;}
._95{width:889.103120pt;}
._8b{width:939.117820pt;}
._96{width:963.437811pt;}
._85{width:986.335605pt;}
._87{width:987.916405pt;}
._92{width:1010.655596pt;}
._94{width:1012.236395pt;}
._98{width:1035.574378pt;}
._97{width:1134.562106pt;}
.fsa{font-size:15.999994pt;}
.fs6{font-size:21.119992pt;}
.fs9{font-size:24.319990pt;}
.fs8{font-size:26.879989pt;}
.fsb{font-size:29.439988pt;}
.fs5{font-size:31.999987pt;}
.fs2{font-size:37.119985pt;}
.fs4{font-size:42.879983pt;}
.fs3{font-size:47.999981pt;}
.fs1{font-size:53.119979pt;}
.fs0{font-size:63.999974pt;}
.fs7{font-size:95.999962pt;}
.y1c{bottom:-10.880826pt;}
.y30{bottom:-10.080626pt;}
.y5d{bottom:-9.600628pt;}
.y49{bottom:-8.960815pt;}
.y43{bottom:-8.640857pt;}
.y62{bottom:-8.640686pt;}
.y2a{bottom:-8.640681pt;}
.y57{bottom:-8.640670pt;}
.y0{bottom:0.000000pt;}
.y1cb{bottom:0.959220pt;}
.y18f{bottom:0.959727pt;}
.y45{bottom:2.559148pt;}
.y64{bottom:2.559318pt;}
.y2c{bottom:2.559324pt;}
.y59{bottom:2.559334pt;}
.y2{bottom:33.226653pt;}
.y18e{bottom:147.786880pt;}
.y18a{bottom:157.866604pt;}
.y189{bottom:163.786601pt;}
.y18{bottom:168.906599pt;}
.y188{bottom:169.866599pt;}
.y8a{bottom:172.906598pt;}
.y187{bottom:175.786596pt;}
.y186{bottom:181.866594pt;}
.y185{bottom:187.786592pt;}
.y125{bottom:192.426590pt;}
.y184{bottom:193.866589pt;}
.y124{bottom:198.346587pt;}
.y182{bottom:199.786587pt;}
.y181{bottom:202.826586pt;}
.yda{bottom:203.466585pt;}
.y183{bottom:205.866584pt;}
.y60{bottom:207.626584pt;}
.y123{bottom:211.786582pt;}
.yd9{bottom:215.786580pt;}
.y32{bottom:216.426580pt;}
.y180{bottom:217.866580pt;}
.y89{bottom:218.666579pt;}
.y5f{bottom:222.026578pt;}
.y17f{bottom:223.786577pt;}
.yd8{bottom:225.546576pt;}
.y101{bottom:228.746575pt;}
.yab{bottom:229.226575pt;}
.y17e{bottom:229.706575pt;}
.y31{bottom:230.826574pt;}
.y122{bottom:231.306574pt;}
.y17d{bottom:232.746574pt;}
.yd7{bottom:235.786572pt;}
.y88{bottom:235.946572pt;}
.y5e{bottom:236.426572pt;}
.ya5{bottom:236.746572pt;}
.y2f{bottom:240.907200pt;}
.y100{bottom:241.546570pt;}
.y17c{bottom:241.706570pt;}
.y17a{bottom:244.746569pt;}
.yd6{bottom:246.026568pt;}
.y5c{bottom:246.027200pt;}
.y17b{bottom:247.786568pt;}
.y17{bottom:248.106567pt;}
.y121{bottom:250.826566pt;}
.y87{bottom:253.226565pt;}
.y178{bottom:253.706565pt;}
.yff{bottom:254.346565pt;}
.y74{bottom:254.986565pt;}
.ya4{bottom:255.946564pt;}
.y177{bottom:256.746564pt;}
.yd5{bottom:257.066564pt;}
.y12{bottom:258.826563pt;}
.y179{bottom:259.786563pt;}
.yae{bottom:260.106563pt;}
.yd4{bottom:265.066561pt;}
.y175{bottom:265.706560pt;}
.yfe{bottom:267.306560pt;}
.y174{bottom:268.746559pt;}
.y73{bottom:269.386559pt;}
.y16{bottom:269.706559pt;}
.y120{bottom:270.186559pt;}
.y86{bottom:270.506558pt;}
.y176{bottom:271.786558pt;}
.yd3{bottom:273.066557pt;}
.yad{bottom:274.506557pt;}
.y9a{bottom:275.146557pt;}
.y173{bottom:277.706556pt;}
.yfd{bottom:280.106555pt;}
.y11{bottom:280.426554pt;}
.y172{bottom:280.746554pt;}
.yac{bottom:281.706554pt;}
.yd2{bottom:283.466553pt;}
.y72{bottom:283.786553pt;}
.y3d{bottom:285.066553pt;}
.y85{bottom:287.786552pt;}
.y11f{bottom:289.706551pt;}
.y15{bottom:291.306550pt;}
.yd1{bottom:291.626550pt;}
.y170{bottom:292.746550pt;}
.yfc{bottom:292.906550pt;}
.y99{bottom:294.346549pt;}
.y171{bottom:295.786548pt;}
.y71{bottom:298.186547pt;}
.y3c{bottom:299.466547pt;}
.yd0{bottom:299.946547pt;}
.y16f{bottom:301.866546pt;}
.y10{bottom:302.026546pt;}
.y84{bottom:305.066545pt;}
.yfb{bottom:305.866544pt;}
.y16e{bottom:307.786544pt;}
.ycf{bottom:308.906543pt;}
.y11e{bottom:309.226543pt;}
.y16d{bottom:310.826542pt;}
.y70{bottom:312.586542pt;}
.y14{bottom:312.906542pt;}
.y98{bottom:313.546541pt;}
.y3b{bottom:313.866541pt;}
.yce{bottom:317.066540pt;}
.y16c{bottom:319.786539pt;}
.y83{bottom:322.346538pt;}
.yf{bottom:323.626537pt;}
.y16b{bottom:325.866536pt;}
.y6f{bottom:326.986536pt;}
.y58{bottom:327.947200pt;}
.ycd{bottom:328.106535pt;}
.y3a{bottom:328.266535pt;}
.y11d{bottom:328.586535pt;}
.y5b{bottom:330.506534pt;}
.yfa{bottom:331.466534pt;}
.y16a{bottom:331.786534pt;}
.y97{bottom:332.746534pt;}
.y13{bottom:334.506533pt;}
.y169{bottom:334.826533pt;}
.ycc{bottom:338.346531pt;}
.y82{bottom:339.626531pt;}
.y6e{bottom:341.386530pt;}
.y5a{bottom:341.706530pt;}
.y39{bottom:342.666530pt;}
.y168{bottom:343.786529pt;}
.yf9{bottom:344.426529pt;}
.ycb{bottom:346.666528pt;}
.y167{bottom:346.826528pt;}
.y11c{bottom:348.106527pt;}
.y56{bottom:350.347200pt;}
.ya3{bottom:351.946526pt;}
.y2b{bottom:354.987200pt;}
.y6d{bottom:355.786524pt;}
.y81{bottom:356.906524pt;}
.y38{bottom:357.066524pt;}
.y2e{bottom:357.546524pt;}
.yca{bottom:357.866524pt;}
.y165{bottom:358.826523pt;}
.y166{bottom:361.866522pt;}
.yc9{bottom:365.866520pt;}
.y11b{bottom:367.626520pt;}
.y164{bottom:367.786520pt;}
.y63{bottom:368.107200pt;}
.y2d{bottom:368.746519pt;}
.yf8{bottom:370.026519pt;}
.y6c{bottom:370.186519pt;}
.y66{bottom:370.666518pt;}
.y163{bottom:370.826518pt;}
.y96{bottom:371.146518pt;}
.y37{bottom:371.466518pt;}
.y80{bottom:374.186517pt;}
.yc8{bottom:375.626516pt;}
.y29{bottom:377.387200pt;}
.y162{bottom:379.786515pt;}
.ye{bottom:381.066514pt;}
.y65{bottom:381.866514pt;}
.y161{bottom:382.826514pt;}
.yf7{bottom:382.986513pt;}
.y67{bottom:383.466513pt;}
.yc7{bottom:383.626513pt;}
.y6b{bottom:384.586513pt;}
.y36{bottom:385.866512pt;}
.y11a{bottom:386.986512pt;}
.yb{bottom:389.546511pt;}
.y95{bottom:390.346511pt;}
.y61{bottom:390.507200pt;}
.y7f{bottom:391.466510pt;}
.yc6{bottom:391.626510pt;}
.y160{bottom:391.786510pt;}
.yd{bottom:395.466508pt;}
.y15e{bottom:397.706508pt;}
.yf6{bottom:398.666507pt;}
.y6a{bottom:398.986507pt;}
.yc5{bottom:399.626507pt;}
.y35{bottom:400.266507pt;}
.y15d{bottom:400.746506pt;}
.y15f{bottom:403.786505pt;}
.ya{bottom:403.946505pt;}
.y119{bottom:406.506504pt;}
.y27{bottom:406.986504pt;}
.y7e{bottom:408.746503pt;}
.y94{bottom:409.546503pt;}
.y15b{bottom:409.706503pt;}
.yc{bottom:409.866503pt;}
.yf5{bottom:411.466502pt;}
.y28{bottom:412.586502pt;}
.y15a{bottom:412.746502pt;}
.y69{bottom:413.386501pt;}
.y34{bottom:414.666501pt;}
.y15c{bottom:415.786500pt;}
.y26{bottom:418.186499pt;}
.yf4{bottom:419.786499pt;}
.y159{bottom:421.706498pt;}
.y118{bottom:422.826498pt;}
.y158{bottom:424.746497pt;}
.y117{bottom:426.026496pt;}
.y68{bottom:427.786496pt;}
.yf3{bottom:428.266495pt;}
.y93{bottom:428.746495pt;}
.y33{bottom:429.066495pt;}
.y157{bottom:433.866493pt;}
.yc4{bottom:434.666493pt;}
.yf2{bottom:437.066492pt;}
.y155{bottom:439.786491pt;}
.y9{bottom:440.746490pt;}
.y154{bottom:442.826490pt;}
.yaa{bottom:444.586489pt;}
.y156{bottom:445.866488pt;}
.y116{bottom:447.626488pt;}
.y153{bottom:451.786486pt;}
.y25{bottom:452.426486pt;}
.y7d{bottom:452.586486pt;}
.y152{bottom:457.866484pt;}
.y18d{bottom:466.346480pt;}
.y8f{bottom:478.666475pt;}
.y18c{bottom:480.426474pt;}
.y8e{bottom:488.266471pt;}
.y18b{bottom:493.226469pt;}
.y8d{bottom:497.866468pt;}
.y1ca{bottom:615.147200pt;}
.y1c6{bottom:619.146419pt;}
.y1c5{bottom:625.226417pt;}
.y1c4{bottom:631.146414pt;}
.y151{bottom:635.626412pt;}
.y24{bottom:636.266412pt;}
.y1c3{bottom:637.226412pt;}
.y7c{bottom:640.266411pt;}
.y1c2{bottom:643.146409pt;}
.y14e{bottom:646.186408pt;}
.yf1{bottom:649.066407pt;}
.y1c1{bottom:649.226407pt;}
.y14d{bottom:653.066405pt;}
.y1c0{bottom:655.146405pt;}
.y14c{bottom:661.066402pt;}
.y1be{bottom:664.106401pt;}
.y115{bottom:665.386401pt;}
.y1bf{bottom:667.146400pt;}
.y14b{bottom:668.586399pt;}
.y1bd{bottom:673.226397pt;}
.y4c{bottom:674.666397pt;}
.y14a{bottom:675.786396pt;}
.yef{bottom:676.906396pt;}
.y1bc{bottom:679.146395pt;}
.y114{bottom:681.866394pt;}
.yf0{bottom:682.986393pt;}
.y149{bottom:684.426393pt;}
.ya9{bottom:684.906393pt;}
.y1bb{bottom:685.226393pt;}
.y113{bottom:687.946391pt;}
.y4b{bottom:689.066391pt;}
.ybc{bottom:690.186391pt;}
.y1ba{bottom:691.146390pt;}
.y148{bottom:694.186389pt;}
.yed{bottom:696.266388pt;}
.y1b9{bottom:697.226388pt;}
.y111{bottom:701.226386pt;}
.yee{bottom:702.506386pt;}
.y1b8{bottom:703.146385pt;}
.y4a{bottom:703.466385pt;}
.ya8{bottom:704.106385pt;}
.y112{bottom:704.426385pt;}
.ybb{bottom:705.706384pt;}
.y1b6{bottom:706.186384pt;}
.y110{bottom:707.306384pt;}
.y147{bottom:708.426383pt;}
.y1b7{bottom:709.226383pt;}
.y145{bottom:711.466382pt;}
.y48{bottom:712.427200pt;}
.y146{bottom:714.506381pt;}
.y1b4{bottom:715.146381pt;}
.yeb{bottom:715.786380pt;}
.y1e{bottom:716.746380pt;}
.y8{bottom:717.066380pt;}
.y1b3{bottom:718.186379pt;}
.yba{bottom:719.786379pt;}
.y144{bottom:720.426378pt;}
.y1b5{bottom:721.226378pt;}
.yec{bottom:721.866378pt;}
.ya2{bottom:723.306377pt;}
.y142{bottom:723.466377pt;}
.y10f{bottom:723.786377pt;}
.y143{bottom:726.506376pt;}
.y1b1{bottom:727.146376pt;}
.y1b0{bottom:730.186375pt;}
.y1d{bottom:731.146374pt;}
.y140{bottom:732.426374pt;}
.y1b2{bottom:733.226373pt;}
.yb9{bottom:734.186373pt;}
.ye9{bottom:735.306373pt;}
.y13f{bottom:735.466372pt;}
.y7{bottom:736.586372pt;}
.y141{bottom:738.506371pt;}
.y1ae{bottom:739.146371pt;}
.yea{bottom:741.386370pt;}
.y1b{bottom:742.027200pt;}
.y1ad{bottom:742.186370pt;}
.ya1{bottom:742.506370pt;}
.y10e{bottom:743.306369pt;}
.y13d{bottom:744.426369pt;}
.y1af{bottom:745.226369pt;}
.y13c{bottom:747.466368pt;}
.yb8{bottom:749.386367pt;}
.y13e{bottom:750.506366pt;}
.y1ab{bottom:751.146366pt;}
.y21{bottom:754.026365pt;}
.y1aa{bottom:754.186365pt;}
.ye7{bottom:754.666365pt;}
.y6{bottom:756.106364pt;}
.y13a{bottom:756.426364pt;}
.y1ac{bottom:757.226364pt;}
.y7b{bottom:758.826363pt;}
.y139{bottom:759.466363pt;}
.ye8{bottom:760.906362pt;}
.ya0{bottom:761.706362pt;}
.y13b{bottom:762.506362pt;}
.y10d{bottom:762.826362pt;}
.y1a9{bottom:763.146361pt;}
.yb7{bottom:764.106361pt;}
.y137{bottom:768.426359pt;}
.y1a8{bottom:769.066359pt;}
.y136{bottom:771.466358pt;}
.ye5{bottom:774.186357pt;}
.y138{bottom:774.506357pt;}
.y5{bottom:775.466356pt;}
.y7a{bottom:778.026355pt;}
.yb6{bottom:778.986355pt;}
.ye6{bottom:780.266355pt;}
.ya7{bottom:780.906354pt;}
.y20{bottom:781.226354pt;}
.y135{bottom:782.026354pt;}
.y10c{bottom:782.186354pt;}
.y1a7{bottom:784.106353pt;}
.y1a6{bottom:787.146352pt;}
.yc3{bottom:788.906351pt;}
.y55{bottom:789.546351pt;}
.y134{bottom:789.706351pt;}
.yb5{bottom:793.066349pt;}
.ye3{bottom:793.706349pt;}
.y22{bottom:794.666349pt;}
.y44{bottom:795.307200pt;}
.y133{bottom:795.786348pt;}
.y79{bottom:797.226348pt;}
.y47{bottom:797.866348pt;}
.y1a5{bottom:799.146347pt;}
.ye4{bottom:799.786347pt;}
.y9f{bottom:800.106347pt;}
.y131{bottom:800.906346pt;}
.y10b{bottom:801.706346pt;}
.y132{bottom:802.186346pt;}
.yc2{bottom:803.306345pt;}
.y54{bottom:803.946345pt;}
.yb4{bottom:807.146344pt;}
.y1f{bottom:807.946343pt;}
.y130{bottom:808.266343pt;}
.y46{bottom:809.066343pt;}
.y1a4{bottom:811.146342pt;}
.ye2{bottom:813.066341pt;}
.y1a3{bottom:814.186341pt;}
.y12f{bottom:816.426340pt;}
.yc1{bottom:817.706340pt;}
.y42{bottom:817.707200pt;}
.y53{bottom:818.346339pt;}
.y9e{bottom:819.306339pt;}
.y10a{bottom:821.226338pt;}
.yb3{bottom:821.546338pt;}
.y23{bottom:822.826338pt;}
.y1a2{bottom:823.146337pt;}
.y12e{bottom:825.866336pt;}
.y4{bottom:827.306336pt;}
.y12d{bottom:828.906335pt;}
.yc0{bottom:832.106334pt;}
.ye0{bottom:832.586334pt;}
.y52{bottom:832.746334pt;}
.y1a1{bottom:835.146333pt;}
.y78{bottom:835.626332pt;}
.y108{bottom:837.546332pt;}
.y9d{bottom:838.506331pt;}
.ye1{bottom:838.666331pt;}
.y12c{bottom:839.306331pt;}
.y109{bottom:840.586330pt;}
.y12b{bottom:842.346330pt;}
.y3{bottom:843.306329pt;}
.y4d{bottom:843.626329pt;}
.ybf{bottom:846.506328pt;}
.y51{bottom:847.146328pt;}
.ydf{bottom:848.426327pt;}
.yb2{bottom:850.026327pt;}
.y1a0{bottom:850.186327pt;}
.yde{bottom:852.106326pt;}
.y12a{bottom:852.586326pt;}
.y77{bottom:854.826325pt;}
.y1a{bottom:856.266324pt;}
.y106{bottom:857.066324pt;}
.ya6{bottom:857.706324pt;}
.y19f{bottom:859.146323pt;}
.y128{bottom:859.786323pt;}
.y107{bottom:860.106323pt;}
.ybe{bottom:860.906322pt;}
.y50{bottom:861.546322pt;}
.y127{bottom:862.986321pt;}
.y105{bottom:863.146321pt;}
.yb1{bottom:864.746321pt;}
.y19d{bottom:865.066321pt;}
.y129{bottom:865.866320pt;}
.y19c{bottom:868.106319pt;}
.y19e{bottom:871.146318pt;}
.ydd{bottom:871.306318pt;}
.y76{bottom:874.026317pt;}
.y40{bottom:874.346317pt;}
.y4f{bottom:875.946316pt;}
.y9c{bottom:876.906316pt;}
.y19a{bottom:877.066316pt;}
.y104{bottom:879.626315pt;}
.y41{bottom:879.946315pt;}
.y199{bottom:880.106315pt;}
.yb0{bottom:881.546314pt;}
.y126{bottom:882.186314pt;}
.ydc{bottom:882.826314pt;}
.y19b{bottom:883.146313pt;}
.y3f{bottom:885.546312pt;}
.y197{bottom:889.066311pt;}
.ybd{bottom:889.706311pt;}
.y4e{bottom:890.346311pt;}
.ydb{bottom:891.626310pt;}
.y196{bottom:892.106310pt;}
.y198{bottom:895.146309pt;}
.y9b{bottom:896.106308pt;}
.y103{bottom:898.986307pt;}
.y150{bottom:901.066306pt;}
.y195{bottom:901.226306pt;}
.yaf{bottom:902.186306pt;}
.y19{bottom:905.386305pt;}
.y193{bottom:907.146304pt;}
.y192{bottom:910.186303pt;}
.y194{bottom:913.226301pt;}
.y14f{bottom:915.466300pt;}
.y102{bottom:918.506299pt;}
.y191{bottom:919.146299pt;}
.y3e{bottom:919.786299pt;}
.y75{bottom:919.946299pt;}
.y190{bottom:925.226297pt;}
.y1c9{bottom:934.986293pt;}
.y92{bottom:944.266289pt;}
.y8c{bottom:947.146288pt;}
.y1c8{bottom:947.786288pt;}
.y91{bottom:953.866285pt;}
.y1c7{bottom:960.586282pt;}
.y8b{bottom:961.546282pt;}
.y90{bottom:963.466281pt;}
.y1{bottom:1078.666235pt;}
.hb{height:0.160000pt;}
.h7{height:0.480000pt;}
.hc{height:1.280000pt;}
.h11{height:1.760000pt;}
.hf{height:2.400000pt;}
.h30{height:8.000000pt;}
.h1a{height:16.909993pt;}
.h1b{height:16.921868pt;}
.h17{height:18.703118pt;}
.h1e{height:19.284992pt;}
.h2e{height:19.727492pt;}
.h2b{height:19.924992pt;}
.h2c{height:21.204992pt;}
.h18{height:21.314991pt;}
.h31{height:21.401866pt;}
.h13{height:22.124991pt;}
.h15{height:22.265616pt;}
.h2d{height:23.183116pt;}
.h1f{height:23.344991pt;}
.h2a{height:23.764990pt;}
.h29{height:25.044990pt;}
.h16{height:25.374990pt;}
.h3{height:25.828115pt;}
.h24{height:27.161864pt;}
.h28{height:28.884988pt;}
.ha{height:29.434988pt;}
.h2f{height:29.835926pt;}
.h20{height:30.164988pt;}
.h21{height:30.804988pt;}
.h25{height:31.444987pt;}
.h22{height:32.834987pt;}
.h12{height:33.187487pt;}
.h1c{height:33.364987pt;}
.he{height:33.374987pt;}
.hd{height:33.398424pt;}
.h8{height:34.002486pt;}
.h1d{height:34.004986pt;}
.h2{height:36.960923pt;}
.h19{height:37.314985pt;}
.h4{height:38.062485pt;}
.h9{height:40.622484pt;}
.h5{height:42.122483pt;}
.h26{height:43.604983pt;}
.h6{height:44.531232pt;}
.h23{height:45.634982pt;}
.h27{height:48.724981pt;}
.h1{height:50.749980pt;}
.h10{height:62.802475pt;}
.h14{height:67.312473pt;}
.h0{height:1122.666667pt;}
.w8{width:3.200000pt;}
.w7{width:13.600000pt;}
.w6{width:21.120000pt;}
.wc{width:24.160000pt;}
.w4{width:27.200000pt;}
.w3{width:35.040000pt;}
.w2{width:35.680000pt;}
.wf{width:36.000000pt;}
.w5{width:37.280000pt;}
.w1{width:45.280000pt;}
.wd{width:49.760000pt;}
.we{width:202.240000pt;}
.wa{width:381.920000pt;}
.wb{width:385.920000pt;}
.w9{width:422.080000pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x18{left:161.439935pt;}
.x42{left:164.799934pt;}
.x53{left:166.079934pt;}
.x3a{left:168.959932pt;}
.x43{left:170.079932pt;}
.x58{left:171.199932pt;}
.x4c{left:172.159931pt;}
.x23{left:173.439931pt;}
.x3d{left:174.719930pt;}
.x33{left:176.479929pt;}
.x3b{left:179.039928pt;}
.x27{left:181.760000pt;}
.x19{left:183.359927pt;}
.x3e{left:189.759924pt;}
.x3c{left:194.079922pt;}
.x28{left:195.360000pt;}
.x50{left:199.039920pt;}
.x29{left:201.280000pt;}
.x36{left:207.519917pt;}
.x34{left:211.680000pt;}
.x31{left:213.920000pt;}
.x52{left:217.919913pt;}
.x10{left:219.519912pt;}
.x11{left:220.639912pt;}
.x35{left:225.280000pt;}
.x24{left:228.000000pt;}
.x3{left:230.879908pt;}
.x32{left:233.120000pt;}
.x2f{left:235.200000pt;}
.x20{left:236.479905pt;}
.xf{left:237.599905pt;}
.x2d{left:242.879903pt;}
.xa{left:244.159902pt;}
.x1b{left:247.039901pt;}
.x44{left:255.679898pt;}
.x25{left:263.040000pt;}
.x3f{left:263.999894pt;}
.xb{left:265.759894pt;}
.x26{left:267.360000pt;}
.x2e{left:270.880000pt;}
.x54{left:271.839891pt;}
.x30{left:275.200000pt;}
.x12{left:276.639889pt;}
.x4{left:279.359888pt;}
.x4a{left:301.599879pt;}
.x9{left:304.959878pt;}
.x21{left:308.959876pt;}
.x39{left:311.200000pt;}
.x22{left:314.399874pt;}
.x2a{left:320.319872pt;}
.x38{left:324.000000pt;}
.x4f{left:329.439868pt;}
.x4d{left:330.719868pt;}
.x5{left:343.999862pt;}
.x8{left:348.319861pt;}
.x37{left:351.199860pt;}
.x6{left:357.439857pt;}
.x1f{left:367.679853pt;}
.x7{left:368.959852pt;}
.x1d{left:370.719852pt;}
.x57{left:375.199850pt;}
.x72{left:376.800000pt;}
.x55{left:378.879848pt;}
.x2b{left:383.039847pt;}
.x2c{left:398.079841pt;}
.x1e{left:400.959840pt;}
.x1a{left:402.240000pt;}
.x16{left:418.879832pt;}
.x59{left:421.919831pt;}
.x14{left:423.359831pt;}
.x15{left:426.079830pt;}
.x13{left:429.599828pt;}
.xc{left:437.279825pt;}
.x51{left:443.519823pt;}
.x17{left:446.079822pt;}
.xd{left:447.039821pt;}
.xe{left:455.999818pt;}
.x1c{left:460.639816pt;}
.x5a{left:461.919815pt;}
.x48{left:464.479814pt;}
.x61{left:465.599814pt;}
.x64{left:469.119812pt;}
.x46{left:470.399812pt;}
.x73{left:475.199810pt;}
.x47{left:476.159810pt;}
.x7a{left:477.119809pt;}
.x79{left:483.039807pt;}
.x49{left:484.479806pt;}
.x6a{left:496.479801pt;}
.x65{left:498.399801pt;}
.x6c{left:500.799800pt;}
.x45{left:502.239799pt;}
.x5b{left:504.639798pt;}
.x6f{left:506.239798pt;}
.x5c{left:507.359797pt;}
.x62{left:509.279796pt;}
.x7b{left:512.479795pt;}
.x40{left:514.079794pt;}
.x66{left:526.399789pt;}
.x67{left:528.799788pt;}
.x6b{left:529.759788pt;}
.x6d{left:530.719788pt;}
.x74{left:532.479787pt;}
.x78{left:533.759786pt;}
.x75{left:534.879786pt;}
.x70{left:536.159786pt;}
.x41{left:537.114452pt;}
.x7c{left:542.239783pt;}
.x5d{left:547.359781pt;}
.x5e{left:550.079780pt;}
.x56{left:552.319779pt;}
.x68{left:556.479777pt;}
.x69{left:558.559777pt;}
.x6e{left:560.479776pt;}
.x76{left:562.239775pt;}
.x77{left:564.639774pt;}
.x71{left:565.919774pt;}
.x7d{left:571.999771pt;}
.x4e{left:573.119771pt;}
.x5f{left:590.239764pt;}
.x60{left:592.959763pt;}
.x63{left:594.879762pt;}
.x1{left:681.439727pt;}
.x4b{left:742.879703pt;}
.x2{left:751.039700pt;}
}




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