
    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_975da79a3b92353d2c7df217.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.064000;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_ab2323fb2e747502da80e4d4.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.410000;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_a29f65994aac7e1c77da95f4.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.101000;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_697d35b85b26baaead2c4bf8.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.890000;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_ba9c638f055d7b100a940495.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.938965;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_8d800cfd3d59a5d707697693.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.715000;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_13859d10c33f9887b6c41194.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.579000;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_3cad6d178f8589c555856548.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.927000;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_a9ea6128220feb947550d214.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.927000;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_81b20fcbe5dc498bd8f3e836.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.927000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_2dc9f76492868f19c75f6b19.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.927000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_0f666d6f4a50d32a7e9f624a.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.927000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_ab2f89b1c0e9b478f78cbf1b.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.928000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_65cd3c2edf33668fed7ac1aa.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.928000;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:fff;src:url('chunks/assets/font_0b4555732a88f05616e23b0e.woff2')format("woff");}.fff{font-family:fff;line-height:0.927000;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:ff10;src:url('chunks/assets/font_dc552d15515a42608b2b6162.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.928000;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:ff11;src:url('chunks/assets/font_3de386ea30f329eb33607d4b.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.928000;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.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v5{vertical-align:-19.505460px;}
.v7{vertical-align:-11.523226px;}
.v8{vertical-align:-9.842755px;}
.v3{vertical-align:-8.042251px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:7.982234px;}
.va{vertical-align:9.902772px;}
.v2{vertical-align:11.403192px;}
.v4{vertical-align:14.644099px;}
.v1{vertical-align:18.545191px;}
.v9{vertical-align:23.826670px;}
.vd{vertical-align:32.229022px;}
.vb{vertical-align:33.549391px;}
.ve{vertical-align:36.310164px;}
.vc{vertical-align:53.054851px;}
.lse{letter-spacing:0.000000px;}
.ls39{letter-spacing:0.001921px;}
.ls7{letter-spacing:0.005281px;}
.ls4{letter-spacing:0.065298px;}
.ls25{letter-spacing:1.109110px;}
.ls2b{letter-spacing:1.145601px;}
.ls1e{letter-spacing:2.970832px;}
.ls17{letter-spacing:2.988897px;}
.ls1{letter-spacing:2.989617px;}
.ls1f{letter-spacing:3.000840px;}
.ls15{letter-spacing:3.030848px;}
.ls3{letter-spacing:3.060857px;}
.ls14{letter-spacing:3.090865px;}
.ls2e{letter-spacing:3.120874px;}
.ls12{letter-spacing:3.150882px;}
.lsb{letter-spacing:4.035770px;}
.lsc{letter-spacing:5.978994px;}
.ls16{letter-spacing:10.981154px;}
.lsd{letter-spacing:16.902051px;}
.ls29{letter-spacing:17.430091px;}
.ls33{letter-spacing:17.900371px;}
.ls2d{letter-spacing:17.953666px;}
.ls34{letter-spacing:17.960388px;}
.ls8{letter-spacing:18.185090px;}
.ls5{letter-spacing:18.905292px;}
.ls28{letter-spacing:19.050545px;}
.ls27{letter-spacing:19.170578px;}
.ls13{letter-spacing:19.355418px;}
.ls35{letter-spacing:20.885846px;}
.ls36{letter-spacing:20.945863px;}
.ls20{letter-spacing:21.005880px;}
.ls1c{letter-spacing:21.095905px;}
.ls10{letter-spacing:21.443282px;}
.ls22{letter-spacing:21.636056px;}
.ls2a{letter-spacing:21.871334px;}
.ls1d{letter-spacing:22.836392px;}
.lsf{letter-spacing:23.123753px;}
.ls11{letter-spacing:24.456846px;}
.ls21{letter-spacing:24.936980px;}
.ls23{letter-spacing:25.057014px;}
.ls1b{letter-spacing:25.417115px;}
.ls3a{letter-spacing:25.537148px;}
.ls2{letter-spacing:25.570098px;}
.ls3b{letter-spacing:25.657182px;}
.ls6{letter-spacing:25.899890px;}
.ls1a{letter-spacing:26.317367px;}
.ls26{letter-spacing:26.672678px;}
.ls19{letter-spacing:27.757770px;}
.lsa{letter-spacing:29.848875px;}
.ls24{letter-spacing:30.338492px;}
.ls9{letter-spacing:34.002158px;}
.ls18{letter-spacing:34.359618px;}
.ls3c{letter-spacing:36.640256px;}
.ls38{letter-spacing:36.700273px;}
.ls0{letter-spacing:40.268272px;}
.ls32{letter-spacing:44.476770px;}
.ls37{letter-spacing:65.495614px;}
.ls2f{letter-spacing:196.675054px;}
.ls2c{letter-spacing:205.737590px;}
.ls30{letter-spacing:391.609620px;}
.ls31{letter-spacing:394.730494px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(128,128,128),0 0.015em rgb(128,128,128),0.015em 0 rgb(128,128,128),0 -0.015em  rgb(128,128,128);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(128,128,128);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws105{word-spacing:-40.585281px;}
.ws7{word-spacing:-31.621772px;}
.ws6{word-spacing:-31.561755px;}
.ws28{word-spacing:-21.904211px;}
.wsc{word-spacing:-17.907093px;}
.ws4{word-spacing:-17.047712px;}
.wsab{word-spacing:-15.328951px;}
.wsf9{word-spacing:-14.452973px;}
.wsd3{word-spacing:-14.400965px;}
.wsfa{word-spacing:-14.386319px;}
.wsfe{word-spacing:-14.371191px;}
.wsff{word-spacing:-14.347538px;}
.wsd4{word-spacing:-14.346604px;}
.wsf2{word-spacing:-13.007680px;}
.wsf3{word-spacing:-12.963004px;}
.wse3{word-spacing:-12.960872px;}
.wse4{word-spacing:-12.911948px;}
.wsd8{word-spacing:-12.848731px;}
.wsde{word-spacing:-12.819875px;}
.wsd9{word-spacing:-12.772119px;}
.wsdf{word-spacing:-12.766448px;}
.ws3d{word-spacing:-11.951385px;}
.wse9{word-spacing:-11.522579px;}
.wse8{word-spacing:-11.520447px;}
.wsed{word-spacing:-11.502583px;}
.wsee{word-spacing:-11.475771px;}
.ws29{word-spacing:-9.197455px;}
.ws8{word-spacing:-8.585343px;}
.wsac{word-spacing:-7.457327px;}
.wsd{word-spacing:-7.360940px;}
.ws10c{word-spacing:-7.235625px;}
.ws9{word-spacing:-7.190253px;}
.ws70{word-spacing:-7.038290px;}
.ws50{word-spacing:-6.775177px;}
.ws27{word-spacing:-6.446284px;}
.ws4a{word-spacing:-6.314728px;}
.ws54{word-spacing:-6.248949px;}
.ws6d{word-spacing:-6.051614px;}
.ws8f{word-spacing:-5.985836px;}
.wsf7{word-spacing:-5.946255px;}
.wsf6{word-spacing:-5.905027px;}
.wsd0{word-spacing:-5.865648px;}
.ws98{word-spacing:-5.854279px;}
.wsfc{word-spacing:-5.814181px;}
.wsfb{word-spacing:-5.806064px;}
.ws123{word-spacing:-5.678790px;}
.ws4f{word-spacing:-5.656944px;}
.ws63{word-spacing:-5.591165px;}
.ws7a{word-spacing:-5.393830px;}
.wsd6{word-spacing:-5.382001px;}
.ws38{word-spacing:-5.328051px;}
.wsf0{word-spacing:-5.317708px;}
.wsdc{word-spacing:-5.303324px;}
.wsef{word-spacing:-5.290289px;}
.wse0{word-spacing:-5.279085px;}
.ws1e{word-spacing:-5.262273px;}
.ws44{word-spacing:-5.210058px;}
.ws7d{word-spacing:-5.130716px;}
.ws42{word-spacing:-5.099988px;}
.ws40{word-spacing:-5.093986px;}
.ws43{word-spacing:-5.072500px;}
.ws3f{word-spacing:-5.051134px;}
.ws3e{word-spacing:-5.042852px;}
.ws45{word-spacing:-4.992317px;}
.ws120{word-spacing:-4.961469px;}
.ws5c{word-spacing:-4.933381px;}
.ws11c{word-spacing:-4.801824px;}
.ws41{word-spacing:-4.768095px;}
.ws64{word-spacing:-4.736046px;}
.ws3c{word-spacing:-4.728604px;}
.ws33{word-spacing:-4.670267px;}
.wseb{word-spacing:-4.643030px;}
.wse6{word-spacing:-4.631676px;}
.ws4b{word-spacing:-4.604489px;}
.ws68{word-spacing:-4.538710px;}
.wsd1{word-spacing:-4.514910px;}
.ws6f{word-spacing:-4.472932px;}
.ws100{word-spacing:-4.407154px;}
.ws15{word-spacing:-4.355779px;}
.ws69{word-spacing:-4.341375px;}
.wsd5{word-spacing:-4.087930px;}
.ws97{word-spacing:-4.078262px;}
.wse1{word-spacing:-4.063420px;}
.wsdb{word-spacing:-4.017555px;}
.ws71{word-spacing:-4.012483px;}
.ws80{word-spacing:-3.946705px;}
.ws49{word-spacing:-3.617813px;}
.ws106{word-spacing:-3.552034px;}
.ws74{word-spacing:-3.486256px;}
.ws17{word-spacing:-3.420477px;}
.ws103{word-spacing:-3.288921px;}
.wse{word-spacing:-3.172728px;}
.ws90{word-spacing:-3.157364px;}
.wsb9{word-spacing:-3.091585px;}
.ws48{word-spacing:-3.025807px;}
.ws9f{word-spacing:-2.960029px;}
.ws37{word-spacing:-2.894250px;}
.ws1c{word-spacing:-2.828472px;}
.wsb3{word-spacing:-2.762693px;}
.wsb1{word-spacing:-2.696915px;}
.ws11{word-spacing:-2.688753px;}
.ws61{word-spacing:-2.631137px;}
.ws112{word-spacing:-2.499580px;}
.ws115{word-spacing:-2.368023px;}
.wsea{word-spacing:-2.362539px;}
.wse5{word-spacing:-2.315900px;}
.ws2d{word-spacing:-2.302244px;}
.ws81{word-spacing:-2.236466px;}
.ws25{word-spacing:-2.170688px;}
.ws113{word-spacing:-2.039131px;}
.ws53{word-spacing:-1.973352px;}
.wsa{word-spacing:-1.935902px;}
.ws6e{word-spacing:-1.907574px;}
.ws8b{word-spacing:-1.841796px;}
.ws95{word-spacing:-1.776017px;}
.ws101{word-spacing:-1.710239px;}
.wsf{word-spacing:-1.613252px;}
.ws7f{word-spacing:-1.578682px;}
.ws10a{word-spacing:-1.556596px;}
.wsbb{word-spacing:-1.512903px;}
.ws56{word-spacing:-1.381347px;}
.ws8c{word-spacing:-1.315568px;}
.ws67{word-spacing:-1.118233px;}
.ws118{word-spacing:-1.052455px;}
.ws9d{word-spacing:-0.986676px;}
.ws2c{word-spacing:-0.920898px;}
.ws6b{word-spacing:-0.855119px;}
.ws9a{word-spacing:-0.657784px;}
.ws36{word-spacing:-0.592006px;}
.ws35{word-spacing:-0.526227px;}
.ws60{word-spacing:-0.460449px;}
.ws5f{word-spacing:-0.394670px;}
.ws4c{word-spacing:-0.328892px;}
.ws34{word-spacing:-0.263114px;}
.ws66{word-spacing:-0.197335px;}
.ws96{word-spacing:-0.131557px;}
.ws26{word-spacing:-0.065778px;}
.ws121{word-spacing:-0.059777px;}
.ws10{word-spacing:-0.053775px;}
.ws5{word-spacing:-0.051194px;}
.ws1{word-spacing:-0.038351px;}
.ws46{word-spacing:-0.035890px;}
.ws2{word-spacing:0.000000px;}
.wsb0{word-spacing:0.043212px;}
.ws2f{word-spacing:0.065778px;}
.ws122{word-spacing:0.119553px;}
.ws24{word-spacing:0.131557px;}
.ws30{word-spacing:0.197335px;}
.wsb4{word-spacing:0.303925px;}
.ws7e{word-spacing:0.394670px;}
.wsb8{word-spacing:0.460449px;}
.wsb{word-spacing:0.483975px;}
.ws109{word-spacing:0.592006px;}
.ws1b{word-spacing:0.657784px;}
.ws73{word-spacing:0.723563px;}
.wsa3{word-spacing:0.789341px;}
.ws104{word-spacing:0.986676px;}
.wsa0{word-spacing:1.052455px;}
.ws88{word-spacing:1.118233px;}
.ws5d{word-spacing:1.249790px;}
.wsb2{word-spacing:1.260353px;}
.ws23{word-spacing:1.315568px;}
.wsda{word-spacing:1.500420px;}
.wsf4{word-spacing:1.527788px;}
.wsae{word-spacing:1.684311px;}
.wsb5{word-spacing:1.690073px;}
.ws91{word-spacing:1.710239px;}
.ws10d{word-spacing:1.725603px;}
.ws111{word-spacing:1.776017px;}
.ws117{word-spacing:1.841796px;}
.ws4d{word-spacing:1.907574px;}
.ws1f{word-spacing:2.039131px;}
.ws9e{word-spacing:2.170688px;}
.ws9c{word-spacing:2.236466px;}
.ws9b{word-spacing:2.433801px;}
.ws82{word-spacing:2.565358px;}
.ws7b{word-spacing:2.696915px;}
.ws20{word-spacing:2.828472px;}
.ws5b{word-spacing:2.960029px;}
.ws62{word-spacing:3.025807px;}
.wsad{word-spacing:3.091585px;}
.ws10b{word-spacing:3.157364px;}
.wsa5{word-spacing:3.288921px;}
.ws119{word-spacing:3.354699px;}
.ws7c{word-spacing:3.486256px;}
.ws94{word-spacing:3.552034px;}
.ws5e{word-spacing:3.815148px;}
.ws87{word-spacing:3.880926px;}
.ws18{word-spacing:3.946705px;}
.ws65{word-spacing:4.012483px;}
.ws4e{word-spacing:4.078262px;}
.ws11a{word-spacing:4.275597px;}
.ws59{word-spacing:4.407154px;}
.ws39{word-spacing:4.538710px;}
.ws3a{word-spacing:4.604489px;}
.ws51{word-spacing:4.670267px;}
.ws85{word-spacing:4.736046px;}
.wsaf{word-spacing:4.801824px;}
.ws22{word-spacing:4.867603px;}
.ws102{word-spacing:5.064938px;}
.ws57{word-spacing:5.262273px;}
.ws99{word-spacing:5.393830px;}
.ws58{word-spacing:5.459608px;}
.ws32{word-spacing:5.591165px;}
.ws47{word-spacing:5.843836px;}
.wsc8{word-spacing:5.920057px;}
.ws11d{word-spacing:6.183171px;}
.ws11e{word-spacing:6.380506px;}
.ws89{word-spacing:6.512063px;}
.ws1d{word-spacing:6.709398px;}
.ws10e{word-spacing:6.972512px;}
.ws114{word-spacing:7.104069px;}
.ws8a{word-spacing:7.235625px;}
.ws84{word-spacing:7.367182px;}
.ws92{word-spacing:7.432961px;}
.ws14{word-spacing:7.474732px;}
.ws1a{word-spacing:7.498739px;}
.wsba{word-spacing:7.761853px;}
.ws3b{word-spacing:8.024966px;}
.ws72{word-spacing:8.156523px;}
.ws21{word-spacing:8.353858px;}
.ws11b{word-spacing:8.419637px;}
.ws3{word-spacing:8.523766px;}
.ws12{word-spacing:8.550233px;}
.ws13{word-spacing:8.604008px;}
.wsc9{word-spacing:8.616972px;}
.ws2e{word-spacing:8.682750px;}
.ws31{word-spacing:8.748529px;}
.ws2a{word-spacing:8.814307px;}
.ws52{word-spacing:8.880086px;}
.wsa1{word-spacing:8.945864px;}
.ws19{word-spacing:9.274756px;}
.ws79{word-spacing:9.340535px;}
.wsa2{word-spacing:9.603648px;}
.wsbc{word-spacing:9.733285px;}
.ws83{word-spacing:9.800984px;}
.wscb{word-spacing:9.998319px;}
.ws8e{word-spacing:10.129876px;}
.wscf{word-spacing:10.195654px;}
.ws93{word-spacing:10.327211px;}
.ws5a{word-spacing:10.392989px;}
.ws86{word-spacing:10.524546px;}
.ws6a{word-spacing:10.590324px;}
.ws6c{word-spacing:10.853438px;}
.ws16{word-spacing:10.919217px;}
.ws116{word-spacing:10.984995px;}
.ws78{word-spacing:11.050773px;}
.ws77{word-spacing:11.116552px;}
.wsa4{word-spacing:11.248109px;}
.ws10f{word-spacing:11.313887px;}
.ws110{word-spacing:11.511222px;}
.ws2b{word-spacing:11.577001px;}
.ws107{word-spacing:11.774336px;}
.wsaa{word-spacing:11.840114px;}
.wsa7{word-spacing:12.037450px;}
.wsa6{word-spacing:12.103228px;}
.ws108{word-spacing:12.234785px;}
.ws11f{word-spacing:12.783338px;}
.wsca{word-spacing:13.155683px;}
.wsc7{word-spacing:14.142359px;}
.ws75{word-spacing:14.208137px;}
.ws8d{word-spacing:14.931700px;}
.wsb6{word-spacing:15.457927px;}
.ws124{word-spacing:16.079941px;}
.wsa8{word-spacing:16.823909px;}
.wsa9{word-spacing:17.036609px;}
.wsce{word-spacing:18.286399px;}
.wsb7{word-spacing:19.009961px;}
.ws76{word-spacing:20.391308px;}
.wscc{word-spacing:20.766773px;}
.wscd{word-spacing:20.983314px;}
.ws55{word-spacing:22.693552px;}
.wse2{word-spacing:38.527359px;}
.wsd7{word-spacing:59.089373px;}
.wse7{word-spacing:69.063836px;}
.wsf5{word-spacing:71.478514px;}
.wsf1{word-spacing:74.962138px;}
.wsbd{word-spacing:86.065532px;}
.wsd2{word-spacing:105.888531px;}
.wsf8{word-spacing:117.647201px;}
.wsbe{word-spacing:118.706989px;}
.wsc2{word-spacing:125.630527px;}
.wsbf{word-spacing:134.755001px;}
.wsc3{word-spacing:136.456117px;}
.wsdd{word-spacing:139.500987px;}
.wsc0{word-spacing:148.874313px;}
.wsc6{word-spacing:149.577230px;}
.wsec{word-spacing:161.573632px;}
.wsfd{word-spacing:163.329098px;}
.wsc5{word-spacing:164.481562px;}
.ws0{word-spacing:202.376830px;}
.wsc1{word-spacing:270.615751px;}
.wsc4{word-spacing:597.145074px;}
._1{margin-left:-40.421675px;}
._43{margin-left:-10.591373px;}
._38{margin-left:-9.456610px;}
._17{margin-left:-7.914535px;}
._37{margin-left:-6.571952px;}
._5{margin-left:-5.533789px;}
._d{margin-left:-4.430680px;}
._2{margin-left:-3.413215px;}
._0{margin-left:-1.534029px;}
._7{width:1.021726px;}
._b{width:2.194154px;}
._3e{width:3.518116px;}
._11{width:4.876005px;}
._39{width:6.199450px;}
._9{width:7.567398px;}
._8{width:8.578441px;}
._6{width:9.806085px;}
._e{width:11.552454px;}
._40{width:13.568238px;}
._15{width:15.011342px;}
._10{width:17.103528px;}
._c{width:18.681069px;}
._19{width:20.273195px;}
._a{width:21.509541px;}
._14{width:22.817847px;}
._12{width:25.258911px;}
._16{width:28.153161px;}
._46{width:29.707904px;}
._f{width:32.428758px;}
._4{width:33.897429px;}
._18{width:37.924856px;}
._13{width:41.052932px;}
._45{width:48.714549px;}
._42{width:57.095711px;}
._3d{width:78.367208px;}
._44{width:81.101066px;}
._41{width:82.452129px;}
._3c{width:95.590979px;}
._3b{width:106.390729px;}
._25{width:110.217252px;}
._2a{width:112.757643px;}
._2b{width:116.732676px;}
._1c{width:121.620444px;}
._3a{width:126.066050px;}
._1a{width:141.000589px;}
._1b{width:142.734354px;}
._3f{width:146.365048px;}
._1d{width:152.662093px;}
._20{width:154.363210px;}
._28{width:166.105857px;}
._1f{width:197.051959px;}
._23{width:200.658249px;}
._36{width:204.619357px;}
._32{width:206.010307px;}
._35{width:208.340399px;}
._22{width:214.745392px;}
._30{width:223.703740px;}
._27{width:234.687774px;}
._26{width:262.753550px;}
._2d{width:288.614549px;}
._1e{width:323.850653px;}
._2f{width:329.132131px;}
._2e{width:338.025181px;}
._2c{width:413.565206px;}
._29{width:414.836122px;}
._34{width:419.746936px;}
._21{width:523.646580px;}
._31{width:531.148680px;}
._24{width:608.810419px;}
._33{width:615.052166px;}
._3{width:1355.711393px;}
.fc3{color:transparent;}
.fc2{color:rgb(128,128,128);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(35,31,32);}
.fs2{font-size:35.830030px;}
.fs4{font-size:35.890046px;}
.fs0{font-size:38.350735px;}
.fs14{font-size:41.279752px;}
.fs13{font-size:41.376196px;}
.fs11{font-size:41.440457px;}
.fs12{font-size:41.448125px;}
.fse{font-size:45.922476px;}
.fsc{font-size:45.942876px;}
.fs7{font-size:46.032886px;}
.fsd{font-size:46.114657px;}
.fsb{font-size:46.218457px;}
.fs10{font-size:46.445856px;}
.fsf{font-size:46.621843px;}
.fs16{font-size:46.629511px;}
.fs15{font-size:46.790216px;}
.fs6{font-size:48.000000px;}
.fs1{font-size:51.194330px;}
.fsa{font-size:51.606490px;}
.fs1a{font-size:51.609850px;}
.fs19{font-size:51.694930px;}
.fs18{font-size:51.749351px;}
.fs9{font-size:51.802031px;}
.fs17{font-size:51.989112px;}
.fs3{font-size:53.775053px;}
.fs1b{font-size:59.776733px;}
.fs8{font-size:65.478329px;}
.fs5{font-size:65.778413px;}
.y0{bottom:0.000000px;}
.ye6{bottom:7.824745px;}
.y10d{bottom:7.850244px;}
.yc0{bottom:8.694158px;}
.ycd{bottom:8.721729px;}
.y11c{bottom:8.722491px;}
.y100{bottom:9.111378px;}
.yf3{bottom:9.120698px;}
.y129{bottom:10.115682px;}
.yda{bottom:10.148571px;}
.y3d{bottom:15.000000px;}
.y10c{bottom:20.847614px;}
.ye5{bottom:22.069900px;}
.yf2{bottom:22.070831px;}
.y11b{bottom:23.164008px;}
.yff{bottom:23.334663px;}
.ybf{bottom:24.522103px;}
.ycc{bottom:24.610274px;}
.y128{bottom:25.911377px;}
.yd9{bottom:26.000666px;}
.y3c{bottom:30.000000px;}
.y101{bottom:32.385256px;}
.yf4{bottom:32.432106px;}
.y10e{bottom:32.545141px;}
.ye7{bottom:33.726144px;}
.yce{bottom:34.720185px;}
.ydb{bottom:36.089127px;}
.y11d{bottom:36.161256px;}
.yc1{bottom:37.473481px;}
.y12a{bottom:38.835905px;}
.y3b{bottom:45.000000px;}
.y102{bottom:59.539328px;}
.yf5{bottom:59.628568px;}
.y10f{bottom:61.140752px;}
.ye8{bottom:62.218885px;}
.ycf{bottom:65.052917px;}
.ydc{bottom:67.794817px;}
.y11e{bottom:67.934146px;}
.yc2{bottom:69.132071px;}
.y12b{bottom:70.427144px;}
.yfa{bottom:84.234405px;}
.y107{bottom:85.399552px;}
.y103{bottom:86.693400px;}
.yf6{bottom:86.825031px;}
.y114{bottom:87.136409px;}
.yed{bottom:88.120419px;}
.y110{bottom:89.735148px;}
.ye9{bottom:90.710410px;}
.yd4{bottom:92.495462px;}
.yd0{bottom:95.384299px;}
.ye1{bottom:96.616590px;}
.y123{bottom:96.818200px;}
.yc7{bottom:97.911544px;}
.ydd{bottom:98.058849px;}
.y11f{bottom:99.705687px;}
.y130{bottom:100.583925px;}
.yc3{bottom:100.789311px;}
.y12c{bottom:102.019734px;}
.y104{bottom:113.847472px;}
.yf7{bottom:114.021493px;}
.y111{bottom:117.029756px;}
.yea{bottom:117.908087px;}
.y3a{bottom:120.130393px;}
.yd1{bottom:124.271323px;}
.y39{bottom:125.006758px;}
.y70{bottom:126.657220px;}
.yde{bottom:129.764539px;}
.y120{bottom:130.033019px;}
.yc4{bottom:131.008942px;}
.y115{bottom:131.398547px;}
.y38{bottom:134.774492px;}
.y12d{bottom:135.048582px;}
.y92{bottom:139.560832px;}
.y37{bottom:139.650857px;}
.yf8{bottom:139.922892px;}
.y105{bottom:141.001544px;}
.y112{bottom:145.624152px;}
.y6f{bottom:146.072655px;}
.yeb{bottom:146.400828px;}
.y109{bottom:147.988900px;}
.y36{bottom:149.418592px;}
.yb2{bottom:151.054049px;}
.y77{bottom:152.059331px;}
.y35{bottom:154.294957px;}
.yd2{bottom:154.604055px;}
.yd6{bottom:157.130989px;}
.y91{bottom:158.976267px;}
.ydf{bottom:160.027221px;}
.y121{bottom:161.804560px;}
.yc5{bottom:162.667532px;}
.y6e{bottom:165.503094px;}
.y12e{bottom:166.639822px;}
.yf9{bottom:167.120569px;}
.y106{bottom:168.155616px;}
.y76{bottom:171.489770px;}
.y113{bottom:172.919975px;}
.yb1{bottom:173.020198px;}
.yec{bottom:174.892353px;}
.y90{bottom:178.406706px;}
.yf1{bottom:180.070432px;}
.y27{bottom:180.117185px;}
.yfe{bottom:181.084513px;}
.yd3{bottom:184.935437px;}
.y10b{bottom:187.217268px;}
.ye4{bottom:187.844200px;}
.y75{bottom:190.905205px;}
.ye0{bottom:191.732911px;}
.y122{bottom:192.133242px;}
.yf0{bottom:194.316802px;}
.yc6{bottom:194.324772px;}
.yb0{bottom:194.986347px;}
.yfd{bottom:195.307798px;}
.y8f{bottom:197.837145px;}
.y12f{bottom:198.232411px;}
.ycb{bottom:199.379323px;}
.y26{bottom:199.547624px;}
.y6d{bottom:199.877716px;}
.y10a{bottom:201.514533px;}
.ye3{bottom:203.385499px;}
.yd8{bottom:206.144247px;}
.y11a{bottom:208.019117px;}
.ybe{bottom:208.715709px;}
.y74{bottom:210.335644px;}
.yca{bottom:213.822190px;}
.y127{bottom:214.029006px;}
.yaf{bottom:216.352328px;}
.y8e{bottom:217.267584px;}
.y25{bottom:218.963059px;}
.y6c{bottom:219.308155px;}
.yd7{bottom:221.996342px;}
.y24{bottom:222.624083px;}
.y119{bottom:223.904962px;}
.ybd{bottom:225.983812px;}
.y73{bottom:229.766083px;}
.y126{bottom:229.824701px;}
.y8d{bottom:236.698023px;}
.yae{bottom:237.733313px;}
.y23{bottom:238.393498px;}
.y6b{bottom:238.738594px;}
.yab{bottom:244.155110px;}
.y72{bottom:249.196522px;}
.y8c{bottom:256.113458px;}
.y22{bottom:257.823937px;}
.yad{bottom:259.099294px;}
.y71{bottom:268.626961px;}
.y131{bottom:272.723107px;}
.y8b{bottom:275.543897px;}
.y21{bottom:277.254376px;}
.yac{bottom:280.465274px;}
.y6a{bottom:288.042395px;}
.y125{bottom:290.203438px;}
.y8a{bottom:294.974336px;}
.y20{bottom:296.669810px;}
.yaa{bottom:302.431423px;}
.y69{bottom:307.472834px;}
.y34{bottom:313.339477px;}
.y89{bottom:314.404775px;}
.y1f{bottom:316.100249px;}
.ya9{bottom:323.812408px;}
.y68{bottom:326.903273px;}
.y33{bottom:332.769916px;}
.y88{bottom:333.835214px;}
.y1e{bottom:335.530688px;}
.ya6{bottom:339.311747px;}
.ya8{bottom:345.178389px;}
.y67{bottom:346.333712px;}
.y87{bottom:353.250649px;}
.y1d{bottom:354.961127px;}
.y66{bottom:365.749147px;}
.ya7{bottom:366.544370px;}
.y132{bottom:370.370441px;}
.y86{bottom:372.681088px;}
.y1c{bottom:374.391566px;}
.y65{bottom:385.179586px;}
.y32{bottom:385.509679px;}
.ya5{bottom:388.510519px;}
.y94{bottom:392.111527px;}
.y1b{bottom:393.807001px;}
.y108{bottom:395.547488px;}
.y64{bottom:404.610025px;}
.y31{bottom:404.940118px;}
.y85{bottom:408.796197px;}
.ya4{bottom:410.476667px;}
.yfc{bottom:412.594898px;}
.y1a{bottom:413.237440px;}
.y63{bottom:424.040464px;}
.y30{bottom:424.370557px;}
.yd5{bottom:426.456140px;}
.y84{bottom:428.226636px;}
.ya3{bottom:432.442816px;}
.y19{bottom:432.667879px;}
.y93{bottom:437.319181px;}
.y62{bottom:443.470903px;}
.yc9{bottom:443.588912px;}
.y2f{bottom:443.785991px;}
.ya2{bottom:444.746260px;}
.y18{bottom:452.098318px;}
.y61{bottom:462.886338px;}
.y2e{bottom:463.216430px;}
.y17{bottom:471.528757px;}
.ya1{bottom:475.789950px;}
.y83{bottom:481.041420px;}
.y60{bottom:482.316777px;}
.y2d{bottom:482.646869px;}
.y16{bottom:490.944192px;}
.ya0{bottom:497.155931px;}
.y82{bottom:500.456855px;}
.y5f{bottom:501.747216px;}
.y2c{bottom:502.077308px;}
.y15{bottom:510.374631px;}
.y9c{bottom:516.901458px;}
.y9f{bottom:518.521912px;}
.y81{bottom:519.887294px;}
.y5e{bottom:521.177655px;}
.y2b{bottom:521.507747px;}
.y14{bottom:529.805070px;}
.y9b{bottom:533.346061px;}
.y80{bottom:539.317733px;}
.y9e{bottom:539.902897px;}
.y5d{bottom:540.608094px;}
.y2a{bottom:540.923182px;}
.y13{bottom:549.235509px;}
.y7f{bottom:558.748172px;}
.y5c{bottom:560.023529px;}
.y29{bottom:560.353621px;}
.y9d{bottom:561.268877px;}
.y7e{bottom:578.163607px;}
.y5b{bottom:579.453968px;}
.y28{bottom:579.784060px;}
.y9a{bottom:581.749610px;}
.y124{bottom:584.780459px;}
.y99{bottom:589.806866px;}
.y7d{bottom:597.594046px;}
.y5a{bottom:598.884407px;}
.y12{bottom:599.214499px;}
.y118{bottom:601.387006px;}
.y7c{bottom:617.024485px;}
.y59{bottom:618.314846px;}
.y98{bottom:626.027005px;}
.y7b{bottom:636.454924px;}
.y11{bottom:636.574957px;}
.y58{bottom:637.730281px;}
.y97{bottom:642.456604px;}
.y10{bottom:653.004556px;}
.yfb{bottom:654.309922px;}
.y7a{bottom:655.885363px;}
.y57{bottom:657.160720px;}
.yf{bottom:669.449159px;}
.yef{bottom:671.823020px;}
.y79{bottom:675.300797px;}
.y56{bottom:676.591159px;}
.ye{bottom:685.878758px;}
.y55{bottom:696.021598px;}
.y96{bottom:698.947417px;}
.yd{bottom:702.323362px;}
.yc8{bottom:704.348929px;}
.y95{bottom:715.392020px;}
.y54{bottom:715.452037px;}
.y78{bottom:731.851627px;}
.y53{bottom:734.867471px;}
.ybc{bottom:738.489404px;}
.y52{bottom:754.297910px;}
.yc{bottom:757.133704px;}
.yb{bottom:773.578307px;}
.y51{bottom:773.728349px;}
.ya{bottom:790.007906px;}
.y50{bottom:793.158788px;}
.y9{bottom:806.452510px;}
.y4f{bottom:812.589227px;}
.y8{bottom:822.897113px;}
.y4e{bottom:832.004662px;}
.y7{bottom:839.326712px;}
.y4d{bottom:851.435101px;}
.y4c{bottom:870.865540px;}
.y117{bottom:887.850295px;}
.y4b{bottom:890.295979px;}
.y13c{bottom:897.618029px;}
.y116{bottom:904.961003px;}
.y4a{bottom:909.711414px;}
.yee{bottom:913.057351px;}
.y6{bottom:913.897586px;}
.y49{bottom:929.141853px;}
.ye2{bottom:930.101448px;}
.y48{bottom:948.572292px;}
.y13b{bottom:963.516475px;}
.y47{bottom:968.002731px;}
.y5{bottom:968.272807px;}
.y13a{bottom:981.446494px;}
.y46{bottom:987.433170px;}
.ybb{bottom:994.905262px;}
.y139{bottom:999.376513px;}
.y45{bottom:1006.848605px;}
.yba{bottom:1011.334861px;}
.y138{bottom:1017.321536px;}
.y44{bottom:1026.279044px;}
.yb9{bottom:1027.779464px;}
.y137{bottom:1035.251555px;}
.y4{bottom:1041.823395px;}
.yb8{bottom:1044.209063px;}
.y43{bottom:1045.709483px;}
.y136{bottom:1053.181574px;}
.yb7{bottom:1060.653666px;}
.y42{bottom:1065.139922px;}
.y135{bottom:1071.111593px;}
.yb6{bottom:1077.098269px;}
.y41{bottom:1084.570361px;}
.y134{bottom:1089.041612px;}
.yb5{bottom:1093.527868px;}
.y40{bottom:1103.985796px;}
.y133{bottom:1106.971631px;}
.yb4{bottom:1109.972471px;}
.y3f{bottom:1123.416235px;}
.yb3{bottom:1126.402070px;}
.y3e{bottom:1142.846674px;}
.y3{bottom:1144.407110px;}
.y2{bottom:1162.967306px;}
.y1{bottom:1179.606964px;}
.hc{height:18.803864px;}
.h30{height:26.193552px;}
.h25{height:30.092939px;}
.h24{height:30.163247px;}
.h21{height:30.168652px;}
.h22{height:30.174235px;}
.he{height:30.327089px;}
.h1{height:32.406371px;}
.h1c{height:33.431562px;}
.h19{height:33.446414px;}
.h1b{height:33.571470px;}
.h18{height:33.647037px;}
.h1f{height:33.812583px;}
.h1e{height:33.940702px;}
.h28{height:33.992914px;}
.h27{height:34.110068px;}
.hf{height:34.968750px;}
.h16{height:37.569525px;}
.h2e{height:37.623580px;}
.h2d{height:37.685604px;}
.h15{height:37.711879px;}
.h2b{height:37.725277px;}
.h2a{height:37.900063px;}
.hd{height:38.309324px;}
.h3{height:43.259209px;}
.h6{height:45.439920px;}
.h5{height:45.818926px;}
.h2f{height:50.511339px;}
.h2{height:54.662401px;}
.ha{height:55.582759px;}
.h4{height:56.862017px;}
.h7{height:57.383263px;}
.h8{height:57.443280px;}
.h9{height:58.871679px;}
.hb{height:70.226858px;}
.h10{height:73.095661px;}
.h12{height:80.357694px;}
.h13{height:81.750084px;}
.h11{height:83.381940px;}
.h20{height:216.386171px;}
.h23{height:217.347556px;}
.h26{height:223.661688px;}
.h1d{height:225.454207px;}
.h17{height:238.430420px;}
.h1a{height:246.555675px;}
.h29{height:248.512904px;}
.h14{height:250.504591px;}
.h2c{height:255.735353px;}
.h0{height:1263.000000px;}
.w5{width:276.010060px;}
.w6{width:278.764274px;}
.w7{width:285.079647px;}
.w4{width:287.833861px;}
.w2{width:304.508595px;}
.w3{width:315.863623px;}
.w8{width:317.816027px;}
.w1{width:319.815295px;}
.w9{width:327.001908px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x67{left:19.484638px;}
.x59{left:21.600885px;}
.x53{left:24.437878px;}
.x66{left:25.960561px;}
.x62{left:27.154924px;}
.x58{left:28.779658px;}
.x52{left:30.171977px;}
.x61{left:32.315588px;}
.x57{left:34.523147px;}
.x51{left:35.906047px;}
.x6c{left:45.390707px;}
.x4f{left:47.375566px;}
.x5d{left:48.861422px;}
.x60{left:50.379107px;}
.x6e{left:51.676241px;}
.x56{left:53.188509px;}
.x71{left:54.544804px;}
.x6f{left:56.125661px;}
.x6b{left:59.639507px;}
.x1{left:61.922102px;}
.x1b{left:64.202740px;}
.x36{left:68.508946px;}
.x5c{left:71.823260px;}
.x6d{left:73.179020px;}
.x35{left:75.785983px;}
.x21{left:80.092188px;}
.x22{left:83.318091px;}
.x3e{left:87.354221px;}
.x18{left:90.700157px;}
.x34{left:92.185573px;}
.x5a{left:94.017300px;}
.x54{left:98.945060px;}
.x64{left:107.564596px;}
.x1c{left:112.141159px;}
.x23{left:116.687432px;}
.x55{left:117.796462px;}
.x9{left:120.363461px;}
.x5b{left:123.487770px;}
.x24{left:125.149801px;}
.x69{left:127.773398px;}
.x65{left:133.470855px;}
.xe{left:138.668585px;}
.x2b{left:140.214017px;}
.x70{left:143.815287px;}
.x50{left:146.290959px;}
.x5e{left:150.755683px;}
.x25{left:152.547470px;}
.xd{left:167.461645px;}
.x4{left:171.257707px;}
.x2{left:178.069614px;}
.x44{left:182.420832px;}
.x37{left:184.491412px;}
.x4a{left:186.516979px;}
.x43{left:188.752604px;}
.x4b{left:189.877919px;}
.x17{left:194.109104px;}
.x38{left:195.459482px;}
.x3f{left:201.146074px;}
.x1d{left:214.049686px;}
.x2c{left:223.262264px;}
.x26{left:237.366212px;}
.x2d{left:239.196725px;}
.x49{left:245.018354px;}
.x45{left:247.794131px;}
.x4c{left:256.211488px;}
.x46{left:266.294310px;}
.x47{left:268.154831px;}
.x4e{left:269.655251px;}
.x48{left:271.155671px;}
.x4d{left:273.406301px;}
.x27{left:289.490803px;}
.x28{left:305.920402px;}
.x32{left:316.050000px;}
.xf{left:342.020507px;}
.x29{left:344.361163px;}
.x2e{left:346.521767px;}
.x2f{left:358.975253px;}
.x33{left:363.015000px;}
.x19{left:364.871904px;}
.x13{left:371.053634px;}
.x2a{left:387.648280px;}
.x10{left:392.089523px;}
.x42{left:396.545770px;}
.x11{left:404.903110px;}
.x14{left:421.122650px;}
.x1a{left:426.044027px;}
.x3{left:429.494993px;}
.x15{left:435.961804px;}
.x12{left:445.984609px;}
.x1e{left:455.287213px;}
.x39{left:456.757625px;}
.x76{left:465.250002px;}
.x30{left:471.866854px;}
.x16{left:477.058307px;}
.x72{left:481.304496px;}
.x1f{left:484.065269px;}
.x3a{left:485.550685px;}
.x77{left:490.847167px;}
.x5f{left:500.704150px;}
.x6a{left:502.081786px;}
.x68{left:505.916029px;}
.x63{left:507.293665px;}
.x31{left:518.349866px;}
.x5{left:547.367989px;}
.x40{left:574.675633px;}
.x20{left:582.987959px;}
.x73{left:594.286122px;}
.x6{left:598.547315px;}
.x75{left:600.242789px;}
.x7{left:611.330893px;}
.x74{left:621.233665px;}
.x3b{left:629.696034px;}
.xa{left:649.441561px;}
.x8{left:654.002838px;}
.xb{left:662.225140px;}
.x3c{left:679.915091px;}
.xc{left:704.897084px;}
.x41{left:777.127303px;}
.x3d{left:796.572746px;}
@media print{
.v5{vertical-align:-17.338187pt;}
.v7{vertical-align:-10.242867pt;}
.v8{vertical-align:-8.749116pt;}
.v3{vertical-align:-7.148668pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:7.095319pt;}
.va{vertical-align:8.802464pt;}
.v2{vertical-align:10.136171pt;}
.v4{vertical-align:13.016977pt;}
.v1{vertical-align:16.484614pt;}
.v9{vertical-align:21.179262pt;}
.vd{vertical-align:28.648019pt;}
.vb{vertical-align:29.821681pt;}
.ve{vertical-align:32.275701pt;}
.vc{vertical-align:47.159868pt;}
.lse{letter-spacing:0.000000pt;}
.ls39{letter-spacing:0.001707pt;}
.ls7{letter-spacing:0.004695pt;}
.ls4{letter-spacing:0.058043pt;}
.ls25{letter-spacing:0.985876pt;}
.ls2b{letter-spacing:1.018312pt;}
.ls1e{letter-spacing:2.640739pt;}
.ls17{letter-spacing:2.656797pt;}
.ls1{letter-spacing:2.657437pt;}
.ls1f{letter-spacing:2.667413pt;}
.ls15{letter-spacing:2.694087pt;}
.ls3{letter-spacing:2.720762pt;}
.ls14{letter-spacing:2.747436pt;}
.ls2e{letter-spacing:2.774110pt;}
.ls12{letter-spacing:2.800784pt;}
.lsb{letter-spacing:3.587351pt;}
.lsc{letter-spacing:5.314661pt;}
.ls16{letter-spacing:9.761026pt;}
.lsd{letter-spacing:15.024046pt;}
.ls29{letter-spacing:15.493414pt;}
.ls33{letter-spacing:15.911441pt;}
.ls2d{letter-spacing:15.958814pt;}
.ls34{letter-spacing:15.964789pt;}
.ls8{letter-spacing:16.164525pt;}
.ls5{letter-spacing:16.804704pt;}
.ls28{letter-spacing:16.933817pt;}
.ls27{letter-spacing:17.040514pt;}
.ls13{letter-spacing:17.204816pt;}
.ls35{letter-spacing:18.565197pt;}
.ls36{letter-spacing:18.618545pt;}
.ls20{letter-spacing:18.671893pt;}
.ls1c{letter-spacing:18.751916pt;}
.ls10{letter-spacing:19.060696pt;}
.ls22{letter-spacing:19.232050pt;}
.ls2a{letter-spacing:19.441186pt;}
.ls1d{letter-spacing:20.299015pt;}
.lsf{letter-spacing:20.554447pt;}
.ls11{letter-spacing:21.739419pt;}
.ls21{letter-spacing:22.166205pt;}
.ls23{letter-spacing:22.272901pt;}
.ls1b{letter-spacing:22.592991pt;}
.ls3a{letter-spacing:22.699687pt;}
.ls2{letter-spacing:22.728976pt;}
.ls3b{letter-spacing:22.806384pt;}
.ls6{letter-spacing:23.022124pt;}
.ls1a{letter-spacing:23.393215pt;}
.ls26{letter-spacing:23.709047pt;}
.ls19{letter-spacing:24.673573pt;}
.lsa{letter-spacing:26.532334pt;}
.ls24{letter-spacing:26.967549pt;}
.ls9{letter-spacing:30.224140pt;}
.ls18{letter-spacing:30.541883pt;}
.ls3c{letter-spacing:32.569117pt;}
.ls38{letter-spacing:32.622465pt;}
.ls0{letter-spacing:35.794020pt;}
.ls32{letter-spacing:39.534907pt;}
.ls37{letter-spacing:58.218323pt;}
.ls2f{letter-spacing:174.822270pt;}
.ls2c{letter-spacing:182.877858pt;}
.ls30{letter-spacing:348.097440pt;}
.ls31{letter-spacing:350.871550pt;}
.ws105{word-spacing:-36.075805pt;}
.ws7{word-spacing:-28.108241pt;}
.ws6{word-spacing:-28.054893pt;}
.ws28{word-spacing:-19.470410pt;}
.wsc{word-spacing:-15.917416pt;}
.ws4{word-spacing:-15.153522pt;}
.wsab{word-spacing:-13.625734pt;}
.wsf9{word-spacing:-12.847087pt;}
.wsd3{word-spacing:-12.800857pt;}
.wsfa{word-spacing:-12.787840pt;}
.wsfe{word-spacing:-12.774392pt;}
.wsff{word-spacing:-12.753367pt;}
.wsd4{word-spacing:-12.752537pt;}
.wsf2{word-spacing:-11.562382pt;}
.wsf3{word-spacing:-11.522670pt;}
.wse3{word-spacing:-11.520776pt;}
.wse4{word-spacing:-11.477287pt;}
.wsd8{word-spacing:-11.421094pt;}
.wsde{word-spacing:-11.395444pt;}
.wsd9{word-spacing:-11.352995pt;}
.wsdf{word-spacing:-11.347954pt;}
.ws3d{word-spacing:-10.623454pt;}
.wse9{word-spacing:-10.242292pt;}
.wse8{word-spacing:-10.240397pt;}
.wsed{word-spacing:-10.224518pt;}
.wsee{word-spacing:-10.200685pt;}
.ws29{word-spacing:-8.175515pt;}
.ws8{word-spacing:-7.631416pt;}
.wsac{word-spacing:-6.628736pt;}
.wsd{word-spacing:-6.543058pt;}
.ws10c{word-spacing:-6.431667pt;}
.ws9{word-spacing:-6.391336pt;}
.ws70{word-spacing:-6.256258pt;}
.ws50{word-spacing:-6.022379pt;}
.ws27{word-spacing:-5.730031pt;}
.ws4a{word-spacing:-5.613091pt;}
.ws54{word-spacing:-5.554622pt;}
.ws6d{word-spacing:-5.379212pt;}
.ws8f{word-spacing:-5.320743pt;}
.wsf7{word-spacing:-5.285560pt;}
.wsf6{word-spacing:-5.248913pt;}
.wsd0{word-spacing:-5.213909pt;}
.ws98{word-spacing:-5.203803pt;}
.wsfc{word-spacing:-5.168160pt;}
.wsfb{word-spacing:-5.160946pt;}
.ws123{word-spacing:-5.047813pt;}
.ws4f{word-spacing:-5.028394pt;}
.ws63{word-spacing:-4.969925pt;}
.ws7a{word-spacing:-4.794515pt;}
.wsd6{word-spacing:-4.784001pt;}
.ws38{word-spacing:-4.736046pt;}
.wsf0{word-spacing:-4.726852pt;}
.wsdc{word-spacing:-4.714066pt;}
.wsef{word-spacing:-4.702479pt;}
.wse0{word-spacing:-4.692520pt;}
.ws1e{word-spacing:-4.677576pt;}
.ws44{word-spacing:-4.631163pt;}
.ws7d{word-spacing:-4.560637pt;}
.ws42{word-spacing:-4.533322pt;}
.ws40{word-spacing:-4.527987pt;}
.ws43{word-spacing:-4.508889pt;}
.ws3f{word-spacing:-4.489897pt;}
.ws3e{word-spacing:-4.482535pt;}
.ws45{word-spacing:-4.437616pt;}
.ws120{word-spacing:-4.410195pt;}
.ws5c{word-spacing:-4.385228pt;}
.ws11c{word-spacing:-4.268288pt;}
.ws41{word-spacing:-4.238306pt;}
.ws64{word-spacing:-4.209818pt;}
.ws3c{word-spacing:-4.203203pt;}
.ws33{word-spacing:-4.151349pt;}
.wseb{word-spacing:-4.127138pt;}
.wse6{word-spacing:-4.117045pt;}
.ws4b{word-spacing:-4.092879pt;}
.ws68{word-spacing:-4.034409pt;}
.wsd1{word-spacing:-4.013253pt;}
.ws6f{word-spacing:-3.975940pt;}
.ws100{word-spacing:-3.917470pt;}
.ws15{word-spacing:-3.871804pt;}
.ws69{word-spacing:-3.859000pt;}
.wsd5{word-spacing:-3.633716pt;}
.ws97{word-spacing:-3.625121pt;}
.wse1{word-spacing:-3.611929pt;}
.wsdb{word-spacing:-3.571160pt;}
.ws71{word-spacing:-3.566652pt;}
.ws80{word-spacing:-3.508182pt;}
.ws49{word-spacing:-3.215834pt;}
.ws106{word-spacing:-3.157364pt;}
.ws74{word-spacing:-3.098894pt;}
.ws17{word-spacing:-3.040424pt;}
.ws103{word-spacing:-2.923485pt;}
.wse{word-spacing:-2.820203pt;}
.ws90{word-spacing:-2.806546pt;}
.wsb9{word-spacing:-2.748076pt;}
.ws48{word-spacing:-2.689606pt;}
.ws9f{word-spacing:-2.631137pt;}
.ws37{word-spacing:-2.572667pt;}
.ws1c{word-spacing:-2.514197pt;}
.wsb3{word-spacing:-2.455727pt;}
.wsb1{word-spacing:-2.397258pt;}
.ws11{word-spacing:-2.390002pt;}
.ws61{word-spacing:-2.338788pt;}
.ws112{word-spacing:-2.221849pt;}
.ws115{word-spacing:-2.104909pt;}
.wsea{word-spacing:-2.100035pt;}
.wse5{word-spacing:-2.058578pt;}
.ws2d{word-spacing:-2.046440pt;}
.ws81{word-spacing:-1.987970pt;}
.ws25{word-spacing:-1.929500pt;}
.ws113{word-spacing:-1.812561pt;}
.ws53{word-spacing:-1.754091pt;}
.wsa{word-spacing:-1.720802pt;}
.ws6e{word-spacing:-1.695621pt;}
.ws8b{word-spacing:-1.637152pt;}
.ws95{word-spacing:-1.578682pt;}
.ws101{word-spacing:-1.520212pt;}
.wsf{word-spacing:-1.434001pt;}
.ws7f{word-spacing:-1.403273pt;}
.ws10a{word-spacing:-1.383641pt;}
.wsbb{word-spacing:-1.344803pt;}
.ws56{word-spacing:-1.227864pt;}
.ws8c{word-spacing:-1.169394pt;}
.ws67{word-spacing:-0.993985pt;}
.ws118{word-spacing:-0.935515pt;}
.ws9d{word-spacing:-0.877046pt;}
.ws2c{word-spacing:-0.818576pt;}
.ws6b{word-spacing:-0.760106pt;}
.ws9a{word-spacing:-0.584697pt;}
.ws36{word-spacing:-0.526227pt;}
.ws35{word-spacing:-0.467758pt;}
.ws60{word-spacing:-0.409288pt;}
.ws5f{word-spacing:-0.350818pt;}
.ws4c{word-spacing:-0.292349pt;}
.ws34{word-spacing:-0.233879pt;}
.ws66{word-spacing:-0.175409pt;}
.ws96{word-spacing:-0.116939pt;}
.ws26{word-spacing:-0.058470pt;}
.ws121{word-spacing:-0.053135pt;}
.ws10{word-spacing:-0.047800pt;}
.ws5{word-spacing:-0.045506pt;}
.ws1{word-spacing:-0.034090pt;}
.ws46{word-spacing:-0.031902pt;}
.ws2{word-spacing:0.000000pt;}
.wsb0{word-spacing:0.038411pt;}
.ws2f{word-spacing:0.058470pt;}
.ws122{word-spacing:0.106270pt;}
.ws24{word-spacing:0.116939pt;}
.ws30{word-spacing:0.175409pt;}
.wsb4{word-spacing:0.270156pt;}
.ws7e{word-spacing:0.350818pt;}
.wsb8{word-spacing:0.409288pt;}
.wsb{word-spacing:0.430200pt;}
.ws109{word-spacing:0.526227pt;}
.ws1b{word-spacing:0.584697pt;}
.ws73{word-spacing:0.643167pt;}
.wsa3{word-spacing:0.701636pt;}
.ws104{word-spacing:0.877046pt;}
.wsa0{word-spacing:0.935515pt;}
.ws88{word-spacing:0.993985pt;}
.ws5d{word-spacing:1.110924pt;}
.wsb2{word-spacing:1.120314pt;}
.ws23{word-spacing:1.169394pt;}
.wsda{word-spacing:1.333707pt;}
.wsf4{word-spacing:1.358033pt;}
.wsae{word-spacing:1.497166pt;}
.wsb5{word-spacing:1.502287pt;}
.ws91{word-spacing:1.520212pt;}
.ws10d{word-spacing:1.533869pt;}
.ws111{word-spacing:1.578682pt;}
.ws117{word-spacing:1.637152pt;}
.ws4d{word-spacing:1.695621pt;}
.ws1f{word-spacing:1.812561pt;}
.ws9e{word-spacing:1.929500pt;}
.ws9c{word-spacing:1.987970pt;}
.ws9b{word-spacing:2.163379pt;}
.ws82{word-spacing:2.280318pt;}
.ws7b{word-spacing:2.397258pt;}
.ws20{word-spacing:2.514197pt;}
.ws5b{word-spacing:2.631137pt;}
.ws62{word-spacing:2.689606pt;}
.wsad{word-spacing:2.748076pt;}
.ws10b{word-spacing:2.806546pt;}
.wsa5{word-spacing:2.923485pt;}
.ws119{word-spacing:2.981955pt;}
.ws7c{word-spacing:3.098894pt;}
.ws94{word-spacing:3.157364pt;}
.ws5e{word-spacing:3.391243pt;}
.ws87{word-spacing:3.449712pt;}
.ws18{word-spacing:3.508182pt;}
.ws65{word-spacing:3.566652pt;}
.ws4e{word-spacing:3.625121pt;}
.ws11a{word-spacing:3.800531pt;}
.ws59{word-spacing:3.917470pt;}
.ws39{word-spacing:4.034409pt;}
.ws3a{word-spacing:4.092879pt;}
.ws51{word-spacing:4.151349pt;}
.ws85{word-spacing:4.209818pt;}
.wsaf{word-spacing:4.268288pt;}
.ws22{word-spacing:4.326758pt;}
.ws102{word-spacing:4.502167pt;}
.ws57{word-spacing:4.677576pt;}
.ws99{word-spacing:4.794515pt;}
.ws58{word-spacing:4.852985pt;}
.ws32{word-spacing:4.969925pt;}
.ws47{word-spacing:5.194521pt;}
.wsc8{word-spacing:5.262273pt;}
.ws11d{word-spacing:5.496152pt;}
.ws11e{word-spacing:5.671561pt;}
.ws89{word-spacing:5.788500pt;}
.ws1d{word-spacing:5.963909pt;}
.ws10e{word-spacing:6.197788pt;}
.ws114{word-spacing:6.314728pt;}
.ws8a{word-spacing:6.431667pt;}
.ws84{word-spacing:6.548606pt;}
.ws92{word-spacing:6.607076pt;}
.ws14{word-spacing:6.644207pt;}
.ws1a{word-spacing:6.665546pt;}
.wsba{word-spacing:6.899425pt;}
.ws3b{word-spacing:7.133303pt;}
.ws72{word-spacing:7.250243pt;}
.ws21{word-spacing:7.425652pt;}
.ws11b{word-spacing:7.484122pt;}
.ws3{word-spacing:7.576681pt;}
.ws12{word-spacing:7.600207pt;}
.ws13{word-spacing:7.648008pt;}
.wsc9{word-spacing:7.659531pt;}
.ws2e{word-spacing:7.718000pt;}
.ws31{word-spacing:7.776470pt;}
.ws2a{word-spacing:7.834940pt;}
.ws52{word-spacing:7.893410pt;}
.wsa1{word-spacing:7.951879pt;}
.ws19{word-spacing:8.244228pt;}
.ws79{word-spacing:8.302697pt;}
.wsa2{word-spacing:8.536576pt;}
.wsbc{word-spacing:8.651808pt;}
.ws83{word-spacing:8.711985pt;}
.wscb{word-spacing:8.887394pt;}
.ws8e{word-spacing:9.004334pt;}
.wscf{word-spacing:9.062804pt;}
.ws93{word-spacing:9.179743pt;}
.ws5a{word-spacing:9.238213pt;}
.ws86{word-spacing:9.355152pt;}
.ws6a{word-spacing:9.413622pt;}
.ws6c{word-spacing:9.647501pt;}
.ws16{word-spacing:9.705970pt;}
.ws116{word-spacing:9.764440pt;}
.ws78{word-spacing:9.822910pt;}
.ws77{word-spacing:9.881379pt;}
.wsa4{word-spacing:9.998319pt;}
.ws10f{word-spacing:10.056788pt;}
.ws110{word-spacing:10.232198pt;}
.ws2b{word-spacing:10.290667pt;}
.ws107{word-spacing:10.466076pt;}
.wsaa{word-spacing:10.524546pt;}
.wsa7{word-spacing:10.699955pt;}
.wsa6{word-spacing:10.758425pt;}
.ws108{word-spacing:10.875364pt;}
.ws11f{word-spacing:11.362967pt;}
.wsca{word-spacing:11.693940pt;}
.wsc7{word-spacing:12.570986pt;}
.ws75{word-spacing:12.629455pt;}
.ws8d{word-spacing:13.272622pt;}
.wsb6{word-spacing:13.740380pt;}
.ws124{word-spacing:14.293281pt;}
.wsa8{word-spacing:14.954586pt;}
.wsa9{word-spacing:15.143652pt;}
.wsce{word-spacing:16.254577pt;}
.wsb7{word-spacing:16.897743pt;}
.ws76{word-spacing:18.125607pt;}
.wscc{word-spacing:18.459354pt;}
.wscd{word-spacing:18.651834pt;}
.ws55{word-spacing:20.172047pt;}
.wse2{word-spacing:34.246541pt;}
.wsd7{word-spacing:52.523887pt;}
.wse7{word-spacing:61.390076pt;}
.wsf5{word-spacing:63.536457pt;}
.wsf1{word-spacing:66.633011pt;}
.wsbd{word-spacing:76.502695pt;}
.wsd2{word-spacing:94.123139pt;}
.wsf8{word-spacing:104.575290pt;}
.wsbe{word-spacing:105.517323pt;}
.wsc2{word-spacing:111.671579pt;}
.wsbf{word-spacing:119.782223pt;}
.wsc3{word-spacing:121.294326pt;}
.wsdd{word-spacing:124.000877pt;}
.wsc0{word-spacing:132.332723pt;}
.wsc6{word-spacing:132.957538pt;}
.wsec{word-spacing:143.621006pt;}
.wsfd{word-spacing:145.181421pt;}
.wsc5{word-spacing:146.205833pt;}
.ws0{word-spacing:179.890515pt;}
.wsc1{word-spacing:240.547334pt;}
.wsc4{word-spacing:530.795621pt;}
._1{margin-left:-35.930378pt;}
._43{margin-left:-9.414554pt;}
._38{margin-left:-8.405876pt;}
._17{margin-left:-7.035143pt;}
._37{margin-left:-5.841735pt;}
._5{margin-left:-4.918924pt;}
._d{margin-left:-3.938382pt;}
._2{margin-left:-3.033969pt;}
._0{margin-left:-1.363582pt;}
._7{width:0.908201pt;}
._b{width:1.950359pt;}
._3e{width:3.127214pt;}
._11{width:4.334227pt;}
._39{width:5.510622pt;}
._9{width:6.726576pt;}
._8{width:7.625281pt;}
._6{width:8.716520pt;}
._e{width:10.268848pt;}
._40{width:12.060656pt;}
._15{width:13.343415pt;}
._10{width:15.203136pt;}
._c{width:16.605395pt;}
._19{width:18.020618pt;}
._a{width:19.119592pt;}
._14{width:20.282531pt;}
._12{width:22.452365pt;}
._16{width:25.025032pt;}
._46{width:26.407026pt;}
._f{width:28.825562pt;}
._4{width:30.131048pt;}
._18{width:33.710983pt;}
._13{width:36.491495pt;}
._45{width:43.301821pt;}
._42{width:50.751743pt;}
._3d{width:69.659741pt;}
._44{width:72.089836pt;}
._41{width:73.290781pt;}
._3c{width:84.969759pt;}
._3b{width:94.569537pt;}
._25{width:97.970891pt;}
._2a{width:100.229016pt;}
._2b{width:103.762379pt;}
._1c{width:108.107062pt;}
._3a{width:112.058711pt;}
._1a{width:125.333857pt;}
._1b{width:126.874982pt;}
._3f{width:130.102265pt;}
._1d{width:135.699639pt;}
._20{width:137.211742pt;}
._28{width:147.649650pt;}
._1f{width:175.157297pt;}
._23{width:178.362888pt;}
._36{width:181.883873pt;}
._32{width:183.120273pt;}
._35{width:185.191466pt;}
._22{width:190.884793pt;}
._30{width:198.847768pt;}
._27{width:208.611355pt;}
._26{width:233.558711pt;}
._2d{width:256.546266pt;}
._1e{width:287.867247pt;}
._2f{width:292.561894pt;}
._2e{width:300.466827pt;}
._2c{width:367.613516pt;}
._29{width:368.743219pt;}
._34{width:373.108388pt;}
._21{width:465.463627pt;}
._31{width:472.132160pt;}
._24{width:541.164817pt;}
._33{width:546.713037pt;}
._3{width:1205.076794pt;}
.fs2{font-size:31.848915pt;}
.fs4{font-size:31.902263pt;}
.fs0{font-size:34.089542pt;}
.fs14{font-size:36.693112pt;}
.fs13{font-size:36.778841pt;}
.fs11{font-size:36.835961pt;}
.fs12{font-size:36.842777pt;}
.fse{font-size:40.819978pt;}
.fsc{font-size:40.838112pt;}
.fs7{font-size:40.918121pt;}
.fsd{font-size:40.990806pt;}
.fsb{font-size:41.083073pt;}
.fs10{font-size:41.285206pt;}
.fsf{font-size:41.441639pt;}
.fs16{font-size:41.448455pt;}
.fs15{font-size:41.591303pt;}
.fs6{font-size:42.666667pt;}
.fs1{font-size:45.506071pt;}
.fsa{font-size:45.872435pt;}
.fs1a{font-size:45.875422pt;}
.fs19{font-size:45.951049pt;}
.fs18{font-size:45.999423pt;}
.fs9{font-size:46.046250pt;}
.fs17{font-size:46.212544pt;}
.fs3{font-size:47.800047pt;}
.fs1b{font-size:53.134874pt;}
.fs8{font-size:58.202959pt;}
.fs5{font-size:58.469700pt;}
.y0{bottom:0.000000pt;}
.ye6{bottom:6.955329pt;}
.y10d{bottom:6.977995pt;}
.yc0{bottom:7.728141pt;}
.ycd{bottom:7.752648pt;}
.y11c{bottom:7.753325pt;}
.y100{bottom:8.099003pt;}
.yf3{bottom:8.107287pt;}
.y129{bottom:8.991718pt;}
.yda{bottom:9.020952pt;}
.y3d{bottom:13.333333pt;}
.y10c{bottom:18.531212pt;}
.ye5{bottom:19.617689pt;}
.yf2{bottom:19.618516pt;}
.y11b{bottom:20.590229pt;}
.yff{bottom:20.741923pt;}
.ybf{bottom:21.797425pt;}
.ycc{bottom:21.875799pt;}
.y128{bottom:23.032335pt;}
.yd9{bottom:23.111703pt;}
.y3c{bottom:26.666667pt;}
.y101{bottom:28.786894pt;}
.yf4{bottom:28.828539pt;}
.y10e{bottom:28.929014pt;}
.ye7{bottom:29.978795pt;}
.yce{bottom:30.862387pt;}
.ydb{bottom:32.079224pt;}
.y11d{bottom:32.143338pt;}
.yc1{bottom:33.309761pt;}
.y12a{bottom:34.520804pt;}
.y3b{bottom:40.000000pt;}
.y102{bottom:52.923847pt;}
.yf5{bottom:53.003172pt;}
.y10f{bottom:54.347335pt;}
.ye8{bottom:55.305675pt;}
.ycf{bottom:57.824815pt;}
.ydc{bottom:60.262059pt;}
.y11e{bottom:60.385908pt;}
.yc2{bottom:61.450730pt;}
.y12b{bottom:62.601906pt;}
.yfa{bottom:74.875026pt;}
.y107{bottom:75.910713pt;}
.y103{bottom:77.060800pt;}
.yf6{bottom:77.177805pt;}
.y114{bottom:77.454585pt;}
.yed{bottom:78.329261pt;}
.y110{bottom:79.764576pt;}
.ye9{bottom:80.631476pt;}
.yd4{bottom:82.218188pt;}
.yd0{bottom:84.786044pt;}
.ye1{bottom:85.881413pt;}
.y123{bottom:86.060622pt;}
.yc7{bottom:87.032483pt;}
.ydd{bottom:87.163421pt;}
.y11f{bottom:88.627277pt;}
.y130{bottom:89.407933pt;}
.yc3{bottom:89.590499pt;}
.y12c{bottom:90.684208pt;}
.y104{bottom:101.197753pt;}
.yf7{bottom:101.352438pt;}
.y111{bottom:104.026450pt;}
.yea{bottom:104.807189pt;}
.y3a{bottom:106.782572pt;}
.yd1{bottom:110.463398pt;}
.y39{bottom:111.117118pt;}
.y70{bottom:112.584196pt;}
.yde{bottom:115.346257pt;}
.y120{bottom:115.584906pt;}
.yc4{bottom:116.452393pt;}
.y115{bottom:116.798709pt;}
.y38{bottom:119.799549pt;}
.y12d{bottom:120.043184pt;}
.y92{bottom:124.054073pt;}
.y37{bottom:124.134095pt;}
.yf8{bottom:124.375904pt;}
.y105{bottom:125.334706pt;}
.y112{bottom:129.443691pt;}
.y6f{bottom:129.842360pt;}
.yeb{bottom:130.134069pt;}
.y109{bottom:131.545689pt;}
.y36{bottom:132.816526pt;}
.yb2{bottom:134.270266pt;}
.y77{bottom:135.163850pt;}
.y35{bottom:137.151073pt;}
.yd2{bottom:137.425826pt;}
.yd6{bottom:139.671991pt;}
.y91{bottom:141.312237pt;}
.ydf{bottom:142.246418pt;}
.y121{bottom:143.826275pt;}
.yc5{bottom:144.593362pt;}
.y6e{bottom:147.113861pt;}
.y12e{bottom:148.124286pt;}
.yf9{bottom:148.551617pt;}
.y106{bottom:149.471659pt;}
.y76{bottom:152.435351pt;}
.y113{bottom:153.706645pt;}
.yb1{bottom:153.795732pt;}
.yec{bottom:155.459870pt;}
.y90{bottom:158.583739pt;}
.yf1{bottom:160.062606pt;}
.y27{bottom:160.104164pt;}
.yfe{bottom:160.964011pt;}
.yd3{bottom:164.387055pt;}
.y10b{bottom:166.415349pt;}
.ye4{bottom:166.972623pt;}
.y75{bottom:169.693515pt;}
.ye0{bottom:170.429254pt;}
.y122{bottom:170.785104pt;}
.yf0{bottom:172.726046pt;}
.yc6{bottom:172.733131pt;}
.yb0{bottom:173.321197pt;}
.yfd{bottom:173.606932pt;}
.y8f{bottom:175.855240pt;}
.y12f{bottom:176.206588pt;}
.ycb{bottom:177.226065pt;}
.y26{bottom:177.375666pt;}
.y6d{bottom:177.669081pt;}
.y10a{bottom:179.124030pt;}
.ye3{bottom:180.787110pt;}
.yd8{bottom:183.239331pt;}
.y11a{bottom:184.905882pt;}
.ybe{bottom:185.525074pt;}
.y74{bottom:186.965017pt;}
.yca{bottom:190.064169pt;}
.y127{bottom:190.248005pt;}
.yaf{bottom:192.313180pt;}
.y8e{bottom:193.126741pt;}
.y25{bottom:194.633830pt;}
.y6c{bottom:194.940582pt;}
.yd7{bottom:197.330082pt;}
.y24{bottom:197.888074pt;}
.y119{bottom:199.026633pt;}
.ybd{bottom:200.874500pt;}
.y73{bottom:204.236518pt;}
.y126{bottom:204.288623pt;}
.y8d{bottom:210.398243pt;}
.yae{bottom:211.318500pt;}
.y23{bottom:211.905331pt;}
.y6b{bottom:212.212084pt;}
.yab{bottom:217.026765pt;}
.y72{bottom:221.508019pt;}
.y8c{bottom:227.656407pt;}
.y22{bottom:229.176833pt;}
.yad{bottom:230.310483pt;}
.y71{bottom:238.779521pt;}
.y131{bottom:242.420540pt;}
.y8b{bottom:244.927908pt;}
.y21{bottom:246.448334pt;}
.yac{bottom:249.302466pt;}
.y6a{bottom:256.037685pt;}
.y125{bottom:257.958612pt;}
.y8a{bottom:262.199410pt;}
.y20{bottom:263.706498pt;}
.yaa{bottom:268.827932pt;}
.y69{bottom:273.309186pt;}
.y34{bottom:278.523979pt;}
.y89{bottom:279.470911pt;}
.y1f{bottom:280.977999pt;}
.ya9{bottom:287.833252pt;}
.y68{bottom:290.580687pt;}
.y33{bottom:295.795481pt;}
.y88{bottom:296.742412pt;}
.y1e{bottom:298.249501pt;}
.ya6{bottom:301.610442pt;}
.ya8{bottom:306.825235pt;}
.y67{bottom:307.852189pt;}
.y87{bottom:314.000577pt;}
.y1d{bottom:315.521002pt;}
.y66{bottom:325.110353pt;}
.ya7{bottom:325.817218pt;}
.y132{bottom:329.218170pt;}
.y86{bottom:331.272078pt;}
.y1c{bottom:332.792503pt;}
.y65{bottom:342.381854pt;}
.y32{bottom:342.675270pt;}
.ya5{bottom:345.342683pt;}
.y94{bottom:348.543579pt;}
.y1b{bottom:350.050668pt;}
.y108{bottom:351.597767pt;}
.y64{bottom:359.653356pt;}
.y31{bottom:359.946771pt;}
.y85{bottom:363.374397pt;}
.ya4{bottom:364.868149pt;}
.yfc{bottom:366.751021pt;}
.y1a{bottom:367.322169pt;}
.y63{bottom:376.924857pt;}
.y30{bottom:377.218273pt;}
.yd5{bottom:379.072125pt;}
.y84{bottom:380.645899pt;}
.ya3{bottom:384.393614pt;}
.y19{bottom:384.593670pt;}
.y93{bottom:388.728161pt;}
.y62{bottom:394.196358pt;}
.yc9{bottom:394.301255pt;}
.y2f{bottom:394.476437pt;}
.ya2{bottom:395.330009pt;}
.y18{bottom:401.865172pt;}
.y61{bottom:411.454523pt;}
.y2e{bottom:411.747938pt;}
.y17{bottom:419.136673pt;}
.ya1{bottom:422.924400pt;}
.y83{bottom:427.592373pt;}
.y60{bottom:428.726024pt;}
.y2d{bottom:429.019439pt;}
.y16{bottom:436.394837pt;}
.ya0{bottom:441.916383pt;}
.y82{bottom:444.850538pt;}
.y5f{bottom:445.997525pt;}
.y2c{bottom:446.290941pt;}
.y15{bottom:453.666339pt;}
.y9c{bottom:459.467963pt;}
.y9f{bottom:460.908366pt;}
.y81{bottom:462.122039pt;}
.y5e{bottom:463.269027pt;}
.y2b{bottom:463.562442pt;}
.y14{bottom:470.937840pt;}
.y9b{bottom:474.085388pt;}
.y80{bottom:479.393540pt;}
.y9e{bottom:479.913686pt;}
.y5d{bottom:480.540528pt;}
.y2a{bottom:480.820606pt;}
.y13{bottom:488.209341pt;}
.y7f{bottom:496.665042pt;}
.y5c{bottom:497.798692pt;}
.y29{bottom:498.092108pt;}
.y9d{bottom:498.905669pt;}
.y7e{bottom:513.923206pt;}
.y5b{bottom:515.070194pt;}
.y28{bottom:515.363609pt;}
.y9a{bottom:517.110765pt;}
.y124{bottom:519.804852pt;}
.y99{bottom:524.272770pt;}
.y7d{bottom:531.194707pt;}
.y5a{bottom:532.341695pt;}
.y12{bottom:532.635110pt;}
.y118{bottom:534.566227pt;}
.y7c{bottom:548.466209pt;}
.y59{bottom:549.613196pt;}
.y98{bottom:556.468449pt;}
.y7b{bottom:565.737710pt;}
.y11{bottom:565.844406pt;}
.y58{bottom:566.871361pt;}
.y97{bottom:571.072537pt;}
.y10{bottom:580.448494pt;}
.yfb{bottom:581.608819pt;}
.y7a{bottom:583.009211pt;}
.y57{bottom:584.142862pt;}
.yf{bottom:595.065919pt;}
.yef{bottom:597.176018pt;}
.y79{bottom:600.267375pt;}
.y56{bottom:601.414363pt;}
.ye{bottom:609.670007pt;}
.y55{bottom:618.685865pt;}
.y96{bottom:621.286593pt;}
.yd{bottom:624.287433pt;}
.yc8{bottom:626.087937pt;}
.y95{bottom:635.904018pt;}
.y54{bottom:635.957366pt;}
.y78{bottom:650.534780pt;}
.y53{bottom:653.215530pt;}
.ybc{bottom:656.435025pt;}
.y52{bottom:670.487031pt;}
.yc{bottom:673.007737pt;}
.yb{bottom:687.625162pt;}
.y51{bottom:687.758533pt;}
.ya{bottom:702.229250pt;}
.y50{bottom:705.030034pt;}
.y9{bottom:716.846675pt;}
.y4f{bottom:722.301535pt;}
.y8{bottom:731.464100pt;}
.y4e{bottom:739.559700pt;}
.y7{bottom:746.068188pt;}
.y4d{bottom:756.831201pt;}
.y4c{bottom:774.102702pt;}
.y117{bottom:789.200262pt;}
.y4b{bottom:791.374204pt;}
.y13c{bottom:797.882692pt;}
.y116{bottom:804.409780pt;}
.y4a{bottom:808.632368pt;}
.yee{bottom:811.606534pt;}
.y6{bottom:812.353410pt;}
.y49{bottom:825.903869pt;}
.ye2{bottom:826.756843pt;}
.y48{bottom:843.175371pt;}
.y13b{bottom:856.459089pt;}
.y47{bottom:860.446872pt;}
.y5{bottom:860.686939pt;}
.y13a{bottom:872.396884pt;}
.y46{bottom:877.718373pt;}
.ybb{bottom:884.360233pt;}
.y139{bottom:888.334678pt;}
.y45{bottom:894.976538pt;}
.yba{bottom:898.964321pt;}
.y138{bottom:904.285810pt;}
.y44{bottom:912.248039pt;}
.yb9{bottom:913.581746pt;}
.y137{bottom:920.223605pt;}
.y4{bottom:926.065240pt;}
.yb8{bottom:928.185834pt;}
.y43{bottom:929.519540pt;}
.y136{bottom:936.161399pt;}
.yb7{bottom:942.803259pt;}
.y42{bottom:946.791042pt;}
.y135{bottom:952.099194pt;}
.yb6{bottom:957.420684pt;}
.y41{bottom:964.062543pt;}
.y134{bottom:968.036989pt;}
.yb5{bottom:972.024772pt;}
.y40{bottom:981.320707pt;}
.y133{bottom:983.974783pt;}
.yb4{bottom:986.642197pt;}
.y3f{bottom:998.592209pt;}
.yb3{bottom:1001.246285pt;}
.y3e{bottom:1015.863710pt;}
.y3{bottom:1017.250765pt;}
.y2{bottom:1033.748716pt;}
.y1{bottom:1048.539523pt;}
.hc{height:16.714545pt;}
.h30{height:23.283157pt;}
.h25{height:26.749279pt;}
.h24{height:26.811775pt;}
.h21{height:26.816580pt;}
.h22{height:26.821542pt;}
.he{height:26.957413pt;}
.h1{height:28.805663pt;}
.h1c{height:29.716944pt;}
.h19{height:29.730145pt;}
.h1b{height:29.841307pt;}
.h18{height:29.908477pt;}
.h1f{height:30.055630pt;}
.h1e{height:30.169513pt;}
.h28{height:30.215923pt;}
.h27{height:30.320060pt;}
.hf{height:31.083333pt;}
.h16{height:33.395133pt;}
.h2e{height:33.443183pt;}
.h2d{height:33.498315pt;}
.h15{height:33.521670pt;}
.h2b{height:33.533579pt;}
.h2a{height:33.688945pt;}
.hd{height:34.052732pt;}
.h3{height:38.452630pt;}
.h6{height:40.391040pt;}
.h5{height:40.727934pt;}
.h2f{height:44.898968pt;}
.h2{height:48.588801pt;}
.ha{height:49.406897pt;}
.h4{height:50.544015pt;}
.h7{height:51.007345pt;}
.h8{height:51.060693pt;}
.h9{height:52.330382pt;}
.hb{height:62.423874pt;}
.h10{height:64.973921pt;}
.h12{height:71.429061pt;}
.h13{height:72.666741pt;}
.h11{height:74.117280pt;}
.h20{height:192.343263pt;}
.h23{height:193.197828pt;}
.h26{height:198.810390pt;}
.h1d{height:200.403740pt;}
.h17{height:211.938151pt;}
.h1a{height:219.160600pt;}
.h29{height:220.900359pt;}
.h14{height:222.670748pt;}
.h2c{height:227.320314pt;}
.h0{height:1122.666667pt;}
.w5{width:245.342275pt;}
.w6{width:247.790466pt;}
.w7{width:253.404130pt;}
.w4{width:255.852321pt;}
.w2{width:270.674307pt;}
.w3{width:280.767664pt;}
.w8{width:282.503135pt;}
.w1{width:284.280262pt;}
.w9{width:290.668362pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x67{left:17.319678pt;}
.x59{left:19.200786pt;}
.x53{left:21.722558pt;}
.x66{left:23.076055pt;}
.x62{left:24.137710pt;}
.x58{left:25.581918pt;}
.x52{left:26.819535pt;}
.x61{left:28.724967pt;}
.x57{left:30.687242pt;}
.x51{left:31.916486pt;}
.x6c{left:40.347295pt;}
.x4f{left:42.111614pt;}
.x5d{left:43.432375pt;}
.x60{left:44.781429pt;}
.x6e{left:45.934437pt;}
.x56{left:47.278675pt;}
.x71{left:48.484270pt;}
.x6f{left:49.889476pt;}
.x6b{left:53.012895pt;}
.x1{left:55.041868pt;}
.x1b{left:57.069102pt;}
.x36{left:60.896841pt;}
.x5c{left:63.842898pt;}
.x6d{left:65.048018pt;}
.x35{left:67.365318pt;}
.x21{left:71.193056pt;}
.x22{left:74.060525pt;}
.x3e{left:77.648196pt;}
.x18{left:80.622362pt;}
.x34{left:81.942732pt;}
.x5a{left:83.570933pt;}
.x54{left:87.951165pt;}
.x64{left:95.612974pt;}
.x1c{left:99.681030pt;}
.x23{left:103.722162pt;}
.x55{left:104.707966pt;}
.x9{left:106.989743pt;}
.x5b{left:109.766906pt;}
.x24{left:111.244267pt;}
.x69{left:113.576353pt;}
.x65{left:118.640760pt;}
.xe{left:123.260964pt;}
.x2b{left:124.634682pt;}
.x70{left:127.835811pt;}
.x50{left:130.036408pt;}
.x5e{left:134.005052pt;}
.x25{left:135.597751pt;}
.xd{left:148.854795pt;}
.x4{left:152.229073pt;}
.x2{left:158.284101pt;}
.x44{left:162.151851pt;}
.x37{left:163.992366pt;}
.x4a{left:165.792870pt;}
.x43{left:167.780093pt;}
.x4b{left:168.780373pt;}
.x17{left:172.541426pt;}
.x38{left:173.741762pt;}
.x3f{left:178.796510pt;}
.x1d{left:190.266387pt;}
.x2c{left:198.455346pt;}
.x26{left:210.992189pt;}
.x2d{left:212.619311pt;}
.x49{left:217.794093pt;}
.x45{left:220.261450pt;}
.x4c{left:227.743545pt;}
.x46{left:236.706053pt;}
.x47{left:238.359850pt;}
.x4e{left:239.693556pt;}
.x48{left:241.027263pt;}
.x4d{left:243.027823pt;}
.x27{left:257.325158pt;}
.x28{left:271.929246pt;}
.x32{left:280.933333pt;}
.xf{left:304.018229pt;}
.x29{left:306.098811pt;}
.x2e{left:308.019349pt;}
.x2f{left:319.089114pt;}
.x33{left:322.680000pt;}
.x19{left:324.330581pt;}
.x13{left:329.825453pt;}
.x2a{left:344.576249pt;}
.x10{left:348.524020pt;}
.x42{left:352.485129pt;}
.x11{left:359.913875pt;}
.x14{left:374.331244pt;}
.x1a{left:378.705802pt;}
.x3{left:381.773327pt;}
.x15{left:387.521603pt;}
.x12{left:396.430764pt;}
.x1e{left:404.699745pt;}
.x39{left:406.006778pt;}
.x76{left:413.555557pt;}
.x30{left:419.437204pt;}
.x16{left:424.051829pt;}
.x72{left:427.826219pt;}
.x1f{left:430.280239pt;}
.x3a{left:431.600609pt;}
.x77{left:436.308593pt;}
.x5f{left:445.070356pt;}
.x6a{left:446.294921pt;}
.x68{left:449.703137pt;}
.x63{left:450.927702pt;}
.x31{left:460.755436pt;}
.x5{left:486.549323pt;}
.x40{left:510.822785pt;}
.x20{left:518.211519pt;}
.x73{left:528.254331pt;}
.x6{left:532.042058pt;}
.x75{left:533.549146pt;}
.x7{left:543.405238pt;}
.x74{left:552.207702pt;}
.x3b{left:559.729808pt;}
.xa{left:577.281388pt;}
.x8{left:581.335856pt;}
.xb{left:588.644569pt;}
.x3c{left:604.368970pt;}
.xc{left:626.575186pt;}
.x41{left:690.779825pt;}
.x3d{left:708.064663pt;}
}




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