
    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_a5af241063ccd149d194855e.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.906000;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_6207f0e8acefff1bdaf56535.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.713000;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_a8569b194647c7878bbc2028.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.900000;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_c44e3c8c9e1734c4a3bcd22b.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.893000;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_8e65f79c82edbaac345e0cc6.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.966309;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_362b9dc5154542230a056711.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.960938;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_5fa3cf4a3faf4d9527143464.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.677246;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_60abde9ad00a53b8e0a5e208.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.658000;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_e8bcd42154381b97e2ca2adf.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.909000;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_7d3d06f70737bedcb189beea.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.000000;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_20bc80bac8955a58493a9095.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.665000;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_b5e12f7eed636a1cb9705dfb.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.703450;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_17e3503a62271515b38331ea.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.521000;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_030b79666bf8bc1cc5a6a4ac.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.810000;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);}
.v1{vertical-align:-2.370000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:2.376000px;}
.v5{vertical-align:15.492180px;}
.v4{vertical-align:16.879680px;}
.v2{vertical-align:21.373320px;}
.v6{vertical-align:32.369520px;}
.v7{vertical-align:47.416380px;}
.ls1{letter-spacing:0.000000px;}
.ls10{letter-spacing:0.005137px;}
.ls16{letter-spacing:0.011141px;}
.ls17{letter-spacing:0.012157px;}
.ls8{letter-spacing:0.013541px;}
.ls1c{letter-spacing:0.016990px;}
.ls18{letter-spacing:0.017894px;}
.lsd{letter-spacing:0.029081px;}
.ls2{letter-spacing:0.033809px;}
.ls1f{letter-spacing:0.834197px;}
.lsb{letter-spacing:1.729156px;}
.ls13{letter-spacing:1.729916px;}
.lsf{letter-spacing:1.736176px;}
.ls5{letter-spacing:2.168132px;}
.ls3{letter-spacing:2.172812px;}
.ls20{letter-spacing:2.987495px;}
.ls0{letter-spacing:2.988137px;}
.ls1e{letter-spacing:2.988427px;}
.ls11{letter-spacing:3.012468px;}
.ls9{letter-spacing:8.467976px;}
.ls15{letter-spacing:14.147723px;}
.ls7{letter-spacing:14.154743px;}
.ls1a{letter-spacing:16.737030px;}
.lsa{letter-spacing:16.752581px;}
.ls12{letter-spacing:16.826130px;}
.ls19{letter-spacing:17.597628px;}
.ls14{letter-spacing:19.974168px;}
.ls4{letter-spacing:24.537689px;}
.lse{letter-spacing:24.724968px;}
.lsc{letter-spacing:26.447628px;}
.ls6{letter-spacing:32.282434px;}
.ls1b{letter-spacing:36.054648px;}
.ls1d{letter-spacing:40.901508px;}
.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;}
}
.wsd0{word-spacing:-35.865360px;}
.wsce{word-spacing:-21.234120px;}
.wse{word-spacing:-13.449600px;}
.ws5e{word-spacing:-13.375233px;}
.ws93{word-spacing:-9.788303px;}
.ws94{word-spacing:-8.515797px;}
.ws2{word-spacing:-0.065753px;}
.ws101{word-spacing:-0.059776px;}
.ws1e{word-spacing:-0.047821px;}
.ws5d{word-spacing:0.000000px;}
.wsc4{word-spacing:0.839280px;}
.ws10c{word-spacing:8.227309px;}
.ws123{word-spacing:12.049596px;}
.ws124{word-spacing:12.050935px;}
.ws1a{word-spacing:12.641763px;}
.wsf6{word-spacing:13.687536px;}
.ws125{word-spacing:13.848008px;}
.ws127{word-spacing:13.867591px;}
.ws126{word-spacing:13.868643px;}
.ws21{word-spacing:13.868955px;}
.wsbd{word-spacing:13.927117px;}
.ws31{word-spacing:13.927296px;}
.ws22{word-spacing:14.046549px;}
.ws76{word-spacing:14.167953px;}
.ws29{word-spacing:14.286488px;}
.ws2a{word-spacing:14.345785px;}
.ws51{word-spacing:14.404844px;}
.ws56{word-spacing:14.524514px;}
.wscd{word-spacing:14.525829px;}
.wsd2{word-spacing:14.644783px;}
.ws11{word-spacing:14.686102px;}
.wse4{word-spacing:14.704080px;}
.ws35{word-spacing:15.002899px;}
.ws117{word-spacing:15.111118px;}
.ws119{word-spacing:15.158126px;}
.ws118{word-spacing:15.160039px;}
.ws38{word-spacing:15.181926px;}
.ws28{word-spacing:15.361971px;}
.ws26{word-spacing:15.383058px;}
.ws27{word-spacing:15.389024px;}
.ws7e{word-spacing:15.421627px;}
.ws7d{word-spacing:15.422105px;}
.wsc1{word-spacing:15.600415px;}
.wse3{word-spacing:15.600714px;}
.ws87{word-spacing:15.719787px;}
.wsd8{word-spacing:15.781057px;}
.ws54{word-spacing:15.900011px;}
.wsbb{word-spacing:15.959189px;}
.ws65{word-spacing:16.019622px;}
.ws81{word-spacing:16.139173px;}
.ws85{word-spacing:16.557423px;}
.ws3d{word-spacing:16.677811px;}
.wsa5{word-spacing:16.680144px;}
.ws92{word-spacing:16.681009px;}
.wsa8{word-spacing:16.681779px;}
.ws97{word-spacing:16.685528px;}
.ws9e{word-spacing:16.687608px;}
.wsa4{word-spacing:16.687609px;}
.wsa9{word-spacing:16.687650px;}
.ws9d{word-spacing:16.687673px;}
.ws96{word-spacing:16.687737px;}
.ws98{word-spacing:16.687881px;}
.wsa7{word-spacing:16.688481px;}
.ws61{word-spacing:16.688624px;}
.wsad{word-spacing:16.688768px;}
.ws9f{word-spacing:16.689198px;}
.wsa3{word-spacing:16.689462px;}
.ws8e{word-spacing:16.689485px;}
.ws12c{word-spacing:16.689915px;}
.ws95{word-spacing:16.690059px;}
.ws9b{word-spacing:16.690202px;}
.wsa6{word-spacing:16.690346px;}
.wsac{word-spacing:16.690559px;}
.ws91{word-spacing:16.696062px;}
.ws99{word-spacing:16.767455px;}
.ws9a{word-spacing:16.785031px;}
.ws128{word-spacing:16.785891px;}
.ws23{word-spacing:16.976510px;}
.ws11a{word-spacing:17.023751px;}
.ws11b{word-spacing:17.024038px;}
.ws6b{word-spacing:17.036584px;}
.ws105{word-spacing:17.095881px;}
.wsbc{word-spacing:17.096419px;}
.ws89{word-spacing:17.154402px;}
.ws13{word-spacing:17.376668px;}
.wsc6{word-spacing:17.394281px;}
.wsc9{word-spacing:17.574325px;}
.ws6c{word-spacing:17.632726px;}
.wse7{word-spacing:17.693817px;}
.ws2b{word-spacing:17.752755px;}
.wsb4{word-spacing:17.832025px;}
.ws73{word-spacing:17.874040px;}
.ws47{word-spacing:17.885202px;}
.ws11c{word-spacing:18.076713px;}
.wsca{word-spacing:18.230721px;}
.ws106{word-spacing:18.230841px;}
.ws45{word-spacing:18.290915px;}
.wse6{word-spacing:18.350093px;}
.ws64{word-spacing:18.410586px;}
.ws10a{word-spacing:18.469883px;}
.wseb{word-spacing:18.471796px;}
.ws50{word-spacing:18.530436px;}
.ws59{word-spacing:18.888253px;}
.ws12{word-spacing:18.936015px;}
.ws115{word-spacing:18.936240px;}
.wsf9{word-spacing:18.948028px;}
.wsf8{word-spacing:18.976182px;}
.wsf7{word-spacing:18.978550px;}
.ws43{word-spacing:19.069313px;}
.wsee{word-spacing:19.187191px;}
.ws5a{word-spacing:19.188864px;}
.ws113{word-spacing:19.271702px;}
.ws114{word-spacing:19.318901px;}
.wsaa{word-spacing:19.320048px;}
.ws6e{word-spacing:19.366697px;}
.ws57{word-spacing:19.486248px;}
.ws55{word-spacing:19.486846px;}
.wsf{word-spacing:19.582080px;}
.wsb2{word-spacing:19.725888px;}
.ws18{word-spacing:19.797811px;}
.ws11f{word-spacing:19.844449px;}
.ws11e{word-spacing:19.845071px;}
.ws11d{word-spacing:19.845645px;}
.ws108{word-spacing:19.964632px;}
.ws4c{word-spacing:19.964931px;}
.ws86{word-spacing:20.083705px;}
.wsaf{word-spacing:20.084183px;}
.wsb9{word-spacing:20.085020px;}
.ws102{word-spacing:20.085561px;}
.wsba{word-spacing:20.144377px;}
.ws30{word-spacing:20.322867px;}
.wse2{word-spacing:20.323405px;}
.ws12a{word-spacing:20.466165px;}
.ws12b{word-spacing:20.467312px;}
.ws129{word-spacing:20.485504px;}
.ws20{word-spacing:20.502015px;}
.ws7f{word-spacing:20.502971px;}
.ws88{word-spacing:20.562149px;}
.ws58{word-spacing:20.681820px;}
.ws1b{word-spacing:20.765591px;}
.ws16{word-spacing:20.766774px;}
.ws121{word-spacing:20.801435px;}
.ws122{word-spacing:20.801865px;}
.ws120{word-spacing:20.802487px;}
.ws8b{word-spacing:20.855868px;}
.wsd9{word-spacing:20.860608px;}
.wsc{word-spacing:20.860668px;}
.wsf3{word-spacing:20.860728px;}
.wsa{word-spacing:20.860848px;}
.wse1{word-spacing:20.860967px;}
.ws39{word-spacing:20.861027px;}
.ws10f{word-spacing:20.861146px;}
.wsd{word-spacing:20.861266px;}
.ws2d{word-spacing:20.861684px;}
.ws9{word-spacing:20.861864px;}
.wsb{word-spacing:20.862282px;}
.ws6f{word-spacing:20.862342px;}
.wsc8{word-spacing:20.862461px;}
.ws37{word-spacing:21.040174px;}
.ws7a{word-spacing:21.099890px;}
.ws10d{word-spacing:21.100906px;}
.ws10e{word-spacing:21.101086px;}
.ws3f{word-spacing:21.159666px;}
.ws3c{word-spacing:21.219441px;}
.wsd7{word-spacing:21.340547px;}
.ws4e{word-spacing:21.578035px;}
.wsae{word-spacing:21.639843px;}
.ws4d{word-spacing:21.757780px;}
.wsfc{word-spacing:21.817377px;}
.wsf5{word-spacing:21.937406px;}
.wsf4{word-spacing:21.963470px;}
.wse8{word-spacing:21.996883px;}
.ws52{word-spacing:22.177704px;}
.wse5{word-spacing:22.237539px;}
.wsb5{word-spacing:22.714011px;}
.wsdb{word-spacing:22.774085px;}
.ws80{word-spacing:22.774802px;}
.ws40{word-spacing:22.893457px;}
.ws7{word-spacing:22.946819px;}
.ws6{word-spacing:22.946950px;}
.ws8{word-spacing:22.947937px;}
.ws4{word-spacing:22.948265px;}
.ws3{word-spacing:22.948528px;}
.ws5{word-spacing:22.948726px;}
.ws111{word-spacing:23.241290px;}
.ws110{word-spacing:23.241577px;}
.ws112{word-spacing:23.242007px;}
.wsc2{word-spacing:23.252948px;}
.ws10{word-spacing:23.295353px;}
.wsb8{word-spacing:23.373037px;}
.ws1c{word-spacing:23.724449px;}
.ws19{word-spacing:23.724556px;}
.wsea{word-spacing:23.730555px;}
.ws100{word-spacing:23.731631px;}
.ws1f{word-spacing:23.849867px;}
.wsff{word-spacing:23.851182px;}
.wsab{word-spacing:23.856853px;}
.ws8c{word-spacing:23.857607px;}
.ws8f{word-spacing:23.863153px;}
.ws53{word-spacing:23.970972px;}
.wscb{word-spacing:24.089507px;}
.wsbf{word-spacing:24.148207px;}
.ws74{word-spacing:24.267877px;}
.ws77{word-spacing:24.328669px;}
.wsc7{word-spacing:24.328849px;}
.ws17{word-spacing:24.370299px;}
.wscc{word-spacing:24.387309px;}
.ws83{word-spacing:24.443658px;}
.ws82{word-spacing:24.447264px;}
.ws84{word-spacing:24.448101px;}
.ws75{word-spacing:24.626471px;}
.wsc0{word-spacing:24.627069px;}
.wsa1{word-spacing:24.628039px;}
.wsf1{word-spacing:24.867785px;}
.wsb0{word-spacing:24.925469px;}
.ws5c{word-spacing:24.987277px;}
.ws10b{word-spacing:25.104616px;}
.wsfe{word-spacing:25.166006px;}
.wsb7{word-spacing:25.284959px;}
.ws2f{word-spacing:25.285198px;}
.ws66{word-spacing:25.285378px;}
.wsfa{word-spacing:25.524002px;}
.ws49{word-spacing:25.525197px;}
.ws116{word-spacing:25.535387px;}
.ws78{word-spacing:25.585033px;}
.ws67{word-spacing:25.643254px;}
.ws7b{word-spacing:25.702671px;}
.ws7c{word-spacing:25.702850px;}
.ws3b{word-spacing:25.703030px;}
.wsd6{word-spacing:26.001549px;}
.wse0{word-spacing:26.001848px;}
.wsd3{word-spacing:26.062162px;}
.wse9{word-spacing:26.300666px;}
.wsdf{word-spacing:26.360860px;}
.ws24{word-spacing:26.480770px;}
.wsd5{word-spacing:26.719335px;}
.wsbe{word-spacing:26.719454px;}
.wsb3{word-spacing:26.838993px;}
.ws48{word-spacing:27.078227px;}
.ws4a{word-spacing:27.078526px;}
.ws46{word-spacing:27.078825px;}
.ws8d{word-spacing:27.113611px;}
.ws68{word-spacing:27.854533px;}
.wsef{word-spacing:28.095130px;}
.ws107{word-spacing:28.155144px;}
.ws6d{word-spacing:28.213306px;}
.wsde{word-spacing:28.214083px;}
.ws34{word-spacing:28.214322px;}
.ws32{word-spacing:28.214502px;}
.wsf2{word-spacing:28.333336px;}
.ws6a{word-spacing:28.333455px;}
.ws62{word-spacing:28.334053px;}
.wsfb{word-spacing:28.334172px;}
.wsb1{word-spacing:28.453724px;}
.wsb6{word-spacing:28.930374px;}
.ws36{word-spacing:28.931331px;}
.wsf0{word-spacing:29.110119px;}
.ws15{word-spacing:29.265200px;}
.ws3e{word-spacing:29.410253px;}
.ws72{word-spacing:29.707816px;}
.wscf{word-spacing:29.768010px;}
.wsd1{word-spacing:29.768667px;}
.ws12d{word-spacing:29.841011px;}
.ws79{word-spacing:29.887441px;}
.ws33{word-spacing:30.007590px;}
.ws4f{word-spacing:30.486632px;}
.ws8a{word-spacing:30.603971px;}
.wsfd{word-spacing:30.605585px;}
.wsd4{word-spacing:30.844449px;}
.ws69{word-spacing:30.903387px;}
.ws42{word-spacing:31.082535px;}
.ws63{word-spacing:31.142131px;}
.ws14{word-spacing:31.363714px;}
.ws71{word-spacing:31.799842px;}
.ws70{word-spacing:31.821862px;}
.wsed{word-spacing:31.981022px;}
.ws44{word-spacing:32.337583px;}
.ws25{word-spacing:32.457135px;}
.wsdd{word-spacing:32.636581px;}
.ws103{word-spacing:32.815728px;}
.ws1d{word-spacing:32.815848px;}
.ws104{word-spacing:33.174322px;}
.ws4b{word-spacing:33.832631px;}
.wsec{word-spacing:33.952421px;}
.ws109{word-spacing:35.327918px;}
.ws2c{word-spacing:35.625421px;}
.wsda{word-spacing:35.685316px;}
.wsdc{word-spacing:35.686631px;}
.ws41{word-spacing:35.806063px;}
.ws3a{word-spacing:35.866376px;}
.ws2e{word-spacing:36.103386px;}
.ws5b{word-spacing:36.343087px;}
.wsc5{word-spacing:36.641725px;}
.wsc3{word-spacing:36.642562px;}
.ws5f{word-spacing:42.329058px;}
.ws1{word-spacing:50.067594px;}
.ws0{word-spacing:50.068168px;}
.wsa0{word-spacing:83.634253px;}
.ws90{word-spacing:83.635753px;}
.ws9c{word-spacing:143.413153px;}
.wsa2{word-spacing:143.414053px;}
.ws60{word-spacing:395.502889px;}
._1e{margin-left:-22.835785px;}
._6{margin-left:-7.299219px;}
._2{margin-left:-5.019843px;}
._1{margin-left:-3.586889px;}
._0{margin-left:-2.153720px;}
._a{margin-left:-1.077040px;}
._17{width:1.032234px;}
._c{width:2.331962px;}
._3{width:3.649964px;}
._e{width:15.719124px;}
._b{width:18.829090px;}
._15{width:20.444432px;}
._f{width:21.762048px;}
._1a{width:23.794444px;}
._1b{width:24.809279px;}
._1d{width:30.605705px;}
._14{width:33.474563px;}
._16{width:35.147096px;}
._d{width:36.704651px;}
._1c{width:40.216694px;}
._1f{width:47.820320px;}
._9{width:56.046950px;}
._7{width:73.150483px;}
._8{width:88.759886px;}
._20{width:116.205203px;}
._5{width:121.779862px;}
._11{width:132.906332px;}
._12{width:141.794967px;}
._18{width:143.461322px;}
._10{width:154.726390px;}
._4{width:172.754968px;}
._19{width:203.238506px;}
._13{width:375.046477px;}
.fc0{color:rgb(0,0,0);}
.fsb{font-size:29.887800px;}
.fs7{font-size:33.248100px;}
.fs9{font-size:35.622960px;}
.fsa{font-size:35.865600px;}
.fs5{font-size:37.997820px;}
.fs6{font-size:42.747540px;}
.fs8{font-size:47.497320px;}
.fs4{font-size:47.820600px;}
.fs3{font-size:53.798400px;}
.fs2{font-size:59.775600px;}
.fs1{font-size:65.753400px;}
.fs0{font-size:143.461800px;}
.y0{bottom:0.000000px;}
.y70{bottom:14.479500px;}
.y71{bottom:15.073500px;}
.y6b{bottom:44.166000px;}
.y61{bottom:50.102970px;}
.y60{bottom:61.977000px;}
.y66{bottom:73.852500px;}
.y5d{bottom:75.039000px;}
.y69{bottom:85.132065px;}
.y5e{bottom:86.913000px;}
.y67{bottom:96.412500px;}
.y5c{bottom:97.600500px;}
.y68{bottom:108.880665px;}
.y5f{bottom:109.474500px;}
.yfc{bottom:113.328450px;}
.y59{bottom:113.328855px;}
.y34{bottom:113.330205px;}
.yc4{bottom:113.330700px;}
.y97{bottom:113.331600px;}
.y6e{bottom:114.818670px;}
.y12b{bottom:114.887520px;}
.y6d{bottom:118.380585px;}
.y6a{bottom:127.285500px;}
.y12a{bottom:128.338305px;}
.y6c{bottom:129.067500px;}
.yfb{bottom:131.261100px;}
.y58{bottom:131.261505px;}
.y33{bottom:131.262855px;}
.yc3{bottom:131.263350px;}
.y96{bottom:131.264250px;}
.y129{bottom:141.787335px;}
.yfa{bottom:149.193150px;}
.y57{bottom:149.194155px;}
.y32{bottom:149.196705px;}
.yc2{bottom:149.197200px;}
.y95{bottom:149.198700px;}
.y128{bottom:155.237535px;}
.yf9{bottom:167.127600px;}
.y31{bottom:167.129355px;}
.yc1{bottom:167.129850px;}
.y94{bottom:167.131350px;}
.y56{bottom:167.878005px;}
.y127{bottom:168.686565px;}
.y126{bottom:182.135595px;}
.yf8{bottom:185.060250px;}
.y30{bottom:185.062005px;}
.yc0{bottom:185.062500px;}
.y93{bottom:185.064000px;}
.y55{bottom:185.810655px;}
.y125{bottom:195.586380px;}
.yf7{bottom:202.992900px;}
.y2f{bottom:202.994655px;}
.ybf{bottom:202.995150px;}
.y92{bottom:202.996650px;}
.y54{bottom:203.744505px;}
.y124{bottom:209.035410px;}
.y5b{bottom:219.312000px;}
.yf6{bottom:220.925550px;}
.y2e{bottom:220.927305px;}
.ybe{bottom:220.927800px;}
.y91{bottom:220.929300px;}
.y53{bottom:221.677155px;}
.y123{bottom:222.484440px;}
.y122{bottom:235.934640px;}
.yf5{bottom:238.858200px;}
.y2d{bottom:238.859955px;}
.y90{bottom:238.861950px;}
.y52{bottom:239.609805px;}
.ybd{bottom:248.119950px;}
.y121{bottom:249.383670px;}
.y6f{bottom:254.341500px;}
.y65{bottom:255.529500px;}
.yf4{bottom:256.790850px;}
.y2c{bottom:256.793805px;}
.y8f{bottom:256.795800px;}
.y51{bottom:257.542455px;}
.y62{bottom:259.684500px;}
.y64{bottom:261.466500px;}
.y120{bottom:262.834455px;}
.y63{bottom:267.403500px;}
.ybc{bottom:274.083450px;}
.yf3{bottom:274.724700px;}
.y2b{bottom:274.726455px;}
.y8e{bottom:274.728450px;}
.y50{bottom:275.475105px;}
.y11f{bottom:276.283485px;}
.y11e{bottom:289.732515px;}
.ybb{bottom:292.016100px;}
.yf2{bottom:292.656750px;}
.y2a{bottom:292.659105px;}
.y8d{bottom:292.661100px;}
.y4f{bottom:293.408955px;}
.y11d{bottom:303.182715px;}
.yba{bottom:309.948750px;}
.yf1{bottom:310.589400px;}
.y29{bottom:310.591755px;}
.y8c{bottom:310.593150px;}
.y4e{bottom:311.341605px;}
.y11c{bottom:316.631745px;}
.yb9{bottom:327.881400px;}
.y28{bottom:327.954255px;}
.yf0{bottom:328.522050px;}
.y8b{bottom:328.525800px;}
.y4d{bottom:329.274255px;}
.y11b{bottom:330.080775px;}
.y11a{bottom:343.531560px;}
.yb8{bottom:345.814050px;}
.y27{bottom:345.886905px;}
.yef{bottom:346.454100px;}
.y4c{bottom:347.206905px;}
.y8a{bottom:347.537100px;}
.y119{bottom:356.980590px;}
.yb7{bottom:363.748500px;}
.y26{bottom:363.819555px;}
.yee{bottom:364.388550px;}
.y4b{bottom:365.139555px;}
.y89{bottom:365.470950px;}
.y118{bottom:370.429620px;}
.y25{bottom:381.752205px;}
.yed{bottom:382.321200px;}
.y4a{bottom:383.072205px;}
.y88{bottom:383.403600px;}
.y117{bottom:383.879820px;}
.y24{bottom:399.686055px;}
.yec{bottom:400.253850px;}
.y49{bottom:401.006055px;}
.y87{bottom:401.336250px;}
.y116{bottom:404.782620px;}
.y23{bottom:417.618705px;}
.yeb{bottom:418.186500px;}
.y48{bottom:418.938105px;}
.y86{bottom:419.268900px;}
.yb6{bottom:420.064665px;}
.y115{bottom:428.936670px;}
.yb5{bottom:433.515450px;}
.y22{bottom:435.551355px;}
.yea{bottom:436.119150px;}
.y47{bottom:436.870155px;}
.y85{bottom:437.201550px;}
.y114{bottom:446.869320px;}
.yb4{bottom:446.964480px;}
.y21{bottom:453.484005px;}
.ye9{bottom:454.051800px;}
.y46{bottom:454.802205px;}
.y84{bottom:455.134200px;}
.yb3{bottom:460.413510px;}
.y113{bottom:464.803170px;}
.y20{bottom:471.416655px;}
.ye8{bottom:471.985650px;}
.y45{bottom:472.734255px;}
.y83{bottom:473.068050px;}
.yb2{bottom:473.863710px;}
.y112{bottom:486.798120px;}
.yb1{bottom:487.312740px;}
.y1f{bottom:489.350505px;}
.ye7{bottom:489.918300px;}
.y44{bottom:490.666905px;}
.y82{bottom:491.000700px;}
.yb0{bottom:496.888725px;}
.yaf{bottom:500.763540px;}
.y111{bottom:502.449120px;}
.y1e{bottom:507.283155px;}
.ye6{bottom:507.850950px;}
.y81{bottom:508.933350px;}
.y43{bottom:513.563055px;}
.yae{bottom:515.484630px;}
.y110{bottom:520.381770px;}
.yad{bottom:525.060615px;}
.y1d{bottom:525.215205px;}
.ye5{bottom:525.783600px;}
.y80{bottom:527.944050px;}
.yac{bottom:528.933660px;}
.y10f{bottom:538.314420px;}
.y42{bottom:543.714855px;}
.ye4{bottom:543.716250px;}
.yab{bottom:544.055010px;}
.y7f{bottom:545.876700px;}
.y1c{bottom:547.285155px;}
.y10e{bottom:556.248870px;}
.yaa{bottom:557.505210px;}
.y41{bottom:561.646905px;}
.ye3{bottom:561.648900px;}
.y7e{bottom:563.809350px;}
.y1b{bottom:567.629505px;}
.ya9{bottom:570.954240px;}
.y10d{bottom:574.181520px;}
.y40{bottom:579.581355px;}
.ye2{bottom:579.582750px;}
.y7d{bottom:581.743200px;}
.y1a{bottom:582.572670px;}
.ya8{bottom:584.403270px;}
.y10c{bottom:592.114170px;}
.y3f{bottom:597.514005px;}
.ye1{bottom:597.515400px;}
.y19{bottom:597.517005px;}
.ya7{bottom:597.854055px;}
.y7c{bottom:599.675850px;}
.y10b{bottom:610.046820px;}
.ya6{bottom:611.303085px;}
.y18{bottom:612.461340px;}
.y3e{bottom:615.446655px;}
.ye0{bottom:615.448050px;}
.y7b{bottom:617.608500px;}
.ya5{bottom:624.752115px;}
.y17{bottom:627.404505px;}
.y10a{bottom:627.979470px;}
.y3d{bottom:633.379305px;}
.ydf{bottom:633.380700px;}
.y7a{bottom:635.541150px;}
.ya4{bottom:638.202315px;}
.y16{bottom:642.348840px;}
.y109{bottom:645.911520px;}
.y3c{bottom:651.311955px;}
.yde{bottom:651.312750px;}
.ya3{bottom:651.651345px;}
.y79{bottom:653.473800px;}
.y15{bottom:657.292005px;}
.ya2{bottom:661.227330px;}
.ya1{bottom:665.101545px;}
.y108{bottom:667.907670px;}
.y3b{bottom:669.244605px;}
.ydd{bottom:669.245400px;}
.y78{bottom:671.406450px;}
.y14{bottom:672.236925px;}
.ya0{bottom:675.545880px;}
.y9f{bottom:679.420095px;}
.y107{bottom:685.670970px;}
.y3a{bottom:687.178455px;}
.ydc{bottom:687.179250px;}
.y13{bottom:687.181845px;}
.y9e{bottom:688.996080px;}
.y77{bottom:689.340300px;}
.y9d{bottom:692.869125px;}
.y106{bottom:699.120000px;}
.y12{bottom:702.125010px;}
.y39{bottom:705.111105px;}
.ydb{bottom:705.111900px;}
.y9c{bottom:706.318155px;}
.y76{bottom:707.272350px;}
.y11{bottom:717.069345px;}
.y9b{bottom:719.768940px;}
.y38{bottom:723.043755px;}
.yda{bottom:723.044550px;}
.y75{bottom:725.204400px;}
.y10{bottom:732.013680px;}
.y9a{bottom:733.217970px;}
.y37{bottom:740.976405px;}
.yd9{bottom:740.977200px;}
.y74{bottom:743.136450px;}
.y99{bottom:746.667000px;}
.yf{bottom:746.956845px;}
.y36{bottom:758.909055px;}
.yd8{bottom:758.909850px;}
.y73{bottom:761.068500px;}
.ye{bottom:761.901180px;}
.y98{bottom:764.521500px;}
.y35{bottom:776.841705px;}
.yd7{bottom:776.843700px;}
.yd{bottom:776.846100px;}
.yd6{bottom:794.776350px;}
.y72{bottom:796.629000px;}
.yd5{bottom:812.709000px;}
.y5a{bottom:818.245500px;}
.yc{bottom:828.319500px;}
.yd4{bottom:830.641650px;}
.yb{bottom:847.317000px;}
.yd3{bottom:848.574300px;}
.yd2{bottom:866.506950px;}
.ya{bottom:867.490500px;}
.yd1{bottom:884.440800px;}
.y9{bottom:887.665500px;}
.yd0{bottom:902.373450px;}
.y8{bottom:907.839000px;}
.ycf{bottom:920.306100px;}
.y7{bottom:927.731550px;}
.yce{bottom:938.238750px;}
.y6{bottom:947.851650px;}
.y105{bottom:956.166450px;}
.ycd{bottom:956.171400px;}
.y5{bottom:970.044000px;}
.y4{bottom:970.044450px;}
.y104{bottom:974.099100px;}
.ycc{bottom:974.104050px;}
.y103{bottom:992.031750px;}
.ycb{bottom:992.037900px;}
.y3{bottom:992.234850px;}
.y102{bottom:1009.964400px;}
.yca{bottom:1009.970550px;}
.y101{bottom:1027.898850px;}
.yc9{bottom:1027.903200px;}
.y2{bottom:1039.309650px;}
.y100{bottom:1045.831500px;}
.yc8{bottom:1045.835850px;}
.yff{bottom:1063.764150px;}
.yc7{bottom:1063.767900px;}
.y1{bottom:1081.152000px;}
.yfe{bottom:1081.696800px;}
.yc6{bottom:1081.700550px;}
.yfd{bottom:1099.629450px;}
.yc5{bottom:1099.635000px;}
.hf{height:22.517146px;}
.h1d{height:24.871000px;}
.h10{height:25.260763px;}
.h14{height:27.065100px;}
.hd{height:28.869437px;}
.h13{height:29.441100px;}
.he{height:32.478111px;}
.h25{height:32.804932px;}
.h15{height:32.900573px;}
.h17{height:33.187496px;}
.h18{height:35.865450px;}
.h11{height:36.086831px;}
.ha{height:37.336090px;}
.h9{height:37.605082px;}
.hb{height:41.006062px;}
.h8{height:41.125613px;}
.h24{height:41.420926px;}
.h7{height:41.425613px;}
.h16{height:41.484266px;}
.h1b{height:41.743660px;}
.h19{height:41.750680px;}
.h5{height:45.238339px;}
.h3{height:45.238939px;}
.h6{height:45.240139px;}
.h4{height:45.567008px;}
.h2{height:45.568808px;}
.h1f{height:48.392753px;}
.h20{height:48.631480px;}
.h22{height:48.633820px;}
.h1a{height:48.679676px;}
.h23{height:48.686696px;}
.h1c{height:57.240520px;}
.h1e{height:57.242860px;}
.h12{height:57.460151px;}
.h21{height:64.123660px;}
.h1{height:98.701718px;}
.hc{height:286.758000px;}
.h0{height:1188.000000px;}
.w1{width:599.646000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x29{left:8.371500px;}
.x28{left:25.998000px;}
.x23{left:43.401000px;}
.x19{left:72.252000px;}
.x12{left:73.446150px;}
.x1a{left:75.739500px;}
.x1b{left:79.515090px;}
.x2{left:88.314300px;}
.x3{left:119.529000px;}
.x4{left:133.239356px;}
.x1{left:143.995350px;}
.x27{left:145.157700px;}
.x17{left:156.558000px;}
.x8{left:200.164500px;}
.x13{left:203.428800px;}
.x5{left:215.965500px;}
.x24{left:221.970000px;}
.x9{left:233.944374px;}
.x1c{left:248.335500px;}
.x18{left:253.585500px;}
.x7{left:297.580500px;}
.x10{left:303.096000px;}
.xa{left:322.176000px;}
.xe{left:340.546500px;}
.xc{left:341.686500px;}
.x2c{left:350.436000px;}
.x1d{left:361.818000px;}
.x1e{left:367.756500px;}
.x1f{left:373.080000px;}
.x11{left:389.598000px;}
.x2b{left:398.443500px;}
.x26{left:415.892700px;}
.x2a{left:451.153500px;}
.xb{left:465.935813px;}
.x15{left:467.967735px;}
.x2d{left:473.011800px;}
.x22{left:477.166500px;}
.x20{left:480.496500px;}
.x21{left:481.702500px;}
.x14{left:482.910315px;}
.xf{left:488.818542px;}
.xd{left:517.799813px;}
.x6{left:538.192196px;}
.x25{left:548.004000px;}
.x36{left:563.495850px;}
.x16{left:565.433235px;}
.x38{left:583.380120px;}
.x3a{left:587.092716px;}
.x37{left:596.089200px;}
.x3b{left:614.418516px;}
.x2e{left:662.563968px;}
.x33{left:682.575969px;}
.x35{left:690.506409px;}
.x34{left:705.398229px;}
.x2f{left:714.680343px;}
.x31{left:732.555486px;}
.x32{left:751.754319px;}
.x30{left:778.068861px;}
.x39{left:824.634554px;}
@media print{
.v1{vertical-align:-2.106667pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:2.112000pt;}
.v5{vertical-align:13.770827pt;}
.v4{vertical-align:15.004160pt;}
.v2{vertical-align:18.998507pt;}
.v6{vertical-align:28.772907pt;}
.v7{vertical-align:42.147893pt;}
.ls1{letter-spacing:0.000000pt;}
.ls10{letter-spacing:0.004566pt;}
.ls16{letter-spacing:0.009903pt;}
.ls17{letter-spacing:0.010806pt;}
.ls8{letter-spacing:0.012037pt;}
.ls1c{letter-spacing:0.015102pt;}
.ls18{letter-spacing:0.015906pt;}
.lsd{letter-spacing:0.025850pt;}
.ls2{letter-spacing:0.030052pt;}
.ls1f{letter-spacing:0.741508pt;}
.lsb{letter-spacing:1.537027pt;}
.ls13{letter-spacing:1.537703pt;}
.lsf{letter-spacing:1.543267pt;}
.ls5{letter-spacing:1.927229pt;}
.ls3{letter-spacing:1.931389pt;}
.ls20{letter-spacing:2.655551pt;}
.ls0{letter-spacing:2.656122pt;}
.ls1e{letter-spacing:2.656380pt;}
.ls11{letter-spacing:2.677749pt;}
.ls9{letter-spacing:7.527090pt;}
.ls15{letter-spacing:12.575754pt;}
.ls7{letter-spacing:12.581994pt;}
.ls1a{letter-spacing:14.877360pt;}
.lsa{letter-spacing:14.891183pt;}
.ls12{letter-spacing:14.956560pt;}
.ls19{letter-spacing:15.642336pt;}
.ls14{letter-spacing:17.754816pt;}
.ls4{letter-spacing:21.811279pt;}
.lse{letter-spacing:21.977749pt;}
.lsc{letter-spacing:23.509003pt;}
.ls6{letter-spacing:28.695497pt;}
.ls1b{letter-spacing:32.048576pt;}
.ls1d{letter-spacing:36.356896pt;}
.wsd0{word-spacing:-31.880320pt;}
.wsce{word-spacing:-18.874773pt;}
.wse{word-spacing:-11.955200pt;}
.ws5e{word-spacing:-11.889096pt;}
.ws93{word-spacing:-8.700714pt;}
.ws94{word-spacing:-7.569597pt;}
.ws2{word-spacing:-0.058447pt;}
.ws101{word-spacing:-0.053134pt;}
.ws1e{word-spacing:-0.042507pt;}
.ws5d{word-spacing:0.000000pt;}
.wsc4{word-spacing:0.746027pt;}
.ws10c{word-spacing:7.313163pt;}
.ws123{word-spacing:10.710752pt;}
.ws124{word-spacing:10.711942pt;}
.ws1a{word-spacing:11.237123pt;}
.wsf6{word-spacing:12.166699pt;}
.ws125{word-spacing:12.309340pt;}
.ws127{word-spacing:12.326748pt;}
.ws126{word-spacing:12.327683pt;}
.ws21{word-spacing:12.327960pt;}
.wsbd{word-spacing:12.379660pt;}
.ws31{word-spacing:12.379819pt;}
.ws22{word-spacing:12.485821pt;}
.ws76{word-spacing:12.593736pt;}
.ws29{word-spacing:12.699100pt;}
.ws2a{word-spacing:12.751809pt;}
.ws51{word-spacing:12.804305pt;}
.ws56{word-spacing:12.910679pt;}
.wscd{word-spacing:12.911848pt;}
.wsd2{word-spacing:13.017585pt;}
.ws11{word-spacing:13.054313pt;}
.wse4{word-spacing:13.070294pt;}
.ws35{word-spacing:13.335910pt;}
.ws117{word-spacing:13.432105pt;}
.ws119{word-spacing:13.473890pt;}
.ws118{word-spacing:13.475590pt;}
.ws38{word-spacing:13.495046pt;}
.ws28{word-spacing:13.655085pt;}
.ws26{word-spacing:13.673829pt;}
.ws27{word-spacing:13.679133pt;}
.ws7e{word-spacing:13.708113pt;}
.ws7d{word-spacing:13.708538pt;}
.wsc1{word-spacing:13.867036pt;}
.wse3{word-spacing:13.867302pt;}
.ws87{word-spacing:13.973144pt;}
.wsd8{word-spacing:14.027606pt;}
.ws54{word-spacing:14.133343pt;}
.wsbb{word-spacing:14.185945pt;}
.ws65{word-spacing:14.239664pt;}
.ws81{word-spacing:14.345931pt;}
.ws85{word-spacing:14.717709pt;}
.ws3d{word-spacing:14.824721pt;}
.wsa5{word-spacing:14.826794pt;}
.ws92{word-spacing:14.827563pt;}
.wsa8{word-spacing:14.828248pt;}
.ws97{word-spacing:14.831580pt;}
.ws9e{word-spacing:14.833429pt;}
.wsa4{word-spacing:14.833430pt;}
.wsa9{word-spacing:14.833466pt;}
.ws9d{word-spacing:14.833487pt;}
.ws96{word-spacing:14.833544pt;}
.ws98{word-spacing:14.833672pt;}
.wsa7{word-spacing:14.834205pt;}
.ws61{word-spacing:14.834333pt;}
.wsad{word-spacing:14.834460pt;}
.ws9f{word-spacing:14.834843pt;}
.wsa3{word-spacing:14.835078pt;}
.ws8e{word-spacing:14.835098pt;}
.ws12c{word-spacing:14.835480pt;}
.ws95{word-spacing:14.835608pt;}
.ws9b{word-spacing:14.835735pt;}
.wsa6{word-spacing:14.835863pt;}
.wsac{word-spacing:14.836052pt;}
.ws91{word-spacing:14.840944pt;}
.ws99{word-spacing:14.904404pt;}
.ws9a{word-spacing:14.920027pt;}
.ws128{word-spacing:14.920792pt;}
.ws23{word-spacing:15.090231pt;}
.ws11a{word-spacing:15.132223pt;}
.ws11b{word-spacing:15.132478pt;}
.ws6b{word-spacing:15.143630pt;}
.ws105{word-spacing:15.196339pt;}
.wsbc{word-spacing:15.196817pt;}
.ws89{word-spacing:15.248357pt;}
.ws13{word-spacing:15.445927pt;}
.wsc6{word-spacing:15.461583pt;}
.wsc9{word-spacing:15.621622pt;}
.ws6c{word-spacing:15.673534pt;}
.wse7{word-spacing:15.727837pt;}
.ws2b{word-spacing:15.780227pt;}
.wsb4{word-spacing:15.850689pt;}
.ws73{word-spacing:15.888036pt;}
.ws47{word-spacing:15.897957pt;}
.ws11c{word-spacing:16.068189pt;}
.wsca{word-spacing:16.205085pt;}
.ws106{word-spacing:16.205192pt;}
.ws45{word-spacing:16.258591pt;}
.wse6{word-spacing:16.311194pt;}
.ws64{word-spacing:16.364965pt;}
.ws10a{word-spacing:16.417674pt;}
.wseb{word-spacing:16.419374pt;}
.ws50{word-spacing:16.471499pt;}
.ws59{word-spacing:16.789558pt;}
.ws12{word-spacing:16.832013pt;}
.ws115{word-spacing:16.832214pt;}
.wsf9{word-spacing:16.842692pt;}
.wsf8{word-spacing:16.867717pt;}
.wsf7{word-spacing:16.869822pt;}
.ws43{word-spacing:16.950500pt;}
.wsee{word-spacing:17.055280pt;}
.ws5a{word-spacing:17.056768pt;}
.ws113{word-spacing:17.130402pt;}
.ws114{word-spacing:17.172356pt;}
.wsaa{word-spacing:17.173376pt;}
.ws6e{word-spacing:17.214841pt;}
.ws57{word-spacing:17.321109pt;}
.ws55{word-spacing:17.321641pt;}
.wsf{word-spacing:17.406293pt;}
.wsb2{word-spacing:17.534123pt;}
.ws18{word-spacing:17.598054pt;}
.ws11f{word-spacing:17.639510pt;}
.ws11e{word-spacing:17.640063pt;}
.ws11d{word-spacing:17.640573pt;}
.ws108{word-spacing:17.746340pt;}
.ws4c{word-spacing:17.746605pt;}
.ws86{word-spacing:17.852182pt;}
.wsaf{word-spacing:17.852607pt;}
.wsb9{word-spacing:17.853351pt;}
.ws102{word-spacing:17.853832pt;}
.wsba{word-spacing:17.906113pt;}
.ws30{word-spacing:18.064771pt;}
.wse2{word-spacing:18.065249pt;}
.ws12a{word-spacing:18.192146pt;}
.ws12b{word-spacing:18.193167pt;}
.ws129{word-spacing:18.209337pt;}
.ws20{word-spacing:18.224013pt;}
.ws7f{word-spacing:18.224863pt;}
.ws88{word-spacing:18.277466pt;}
.ws58{word-spacing:18.383840pt;}
.ws1b{word-spacing:18.458303pt;}
.ws16{word-spacing:18.459355pt;}
.ws121{word-spacing:18.490164pt;}
.ws122{word-spacing:18.490547pt;}
.ws120{word-spacing:18.491100pt;}
.ws8b{word-spacing:18.538549pt;}
.wsd9{word-spacing:18.542763pt;}
.wsc{word-spacing:18.542816pt;}
.wsf3{word-spacing:18.542869pt;}
.wsa{word-spacing:18.542976pt;}
.wse1{word-spacing:18.543082pt;}
.ws39{word-spacing:18.543135pt;}
.ws10f{word-spacing:18.543241pt;}
.wsd{word-spacing:18.543348pt;}
.ws2d{word-spacing:18.543719pt;}
.ws9{word-spacing:18.543879pt;}
.wsb{word-spacing:18.544251pt;}
.ws6f{word-spacing:18.544304pt;}
.wsc8{word-spacing:18.544410pt;}
.ws37{word-spacing:18.702377pt;}
.ws7a{word-spacing:18.755458pt;}
.ws10d{word-spacing:18.756361pt;}
.ws10e{word-spacing:18.756521pt;}
.ws3f{word-spacing:18.808592pt;}
.ws3c{word-spacing:18.861726pt;}
.wsd7{word-spacing:18.969375pt;}
.ws4e{word-spacing:19.180476pt;}
.wsae{word-spacing:19.235416pt;}
.ws4d{word-spacing:19.340249pt;}
.wsfc{word-spacing:19.393224pt;}
.wsf5{word-spacing:19.499917pt;}
.wsf4{word-spacing:19.523084pt;}
.wse8{word-spacing:19.552785pt;}
.ws52{word-spacing:19.713515pt;}
.wse5{word-spacing:19.766702pt;}
.wsb5{word-spacing:20.190232pt;}
.wsdb{word-spacing:20.243631pt;}
.ws80{word-spacing:20.244269pt;}
.ws40{word-spacing:20.349740pt;}
.ws7{word-spacing:20.397172pt;}
.ws6{word-spacing:20.397289pt;}
.ws8{word-spacing:20.398166pt;}
.ws4{word-spacing:20.398458pt;}
.ws3{word-spacing:20.398692pt;}
.ws5{word-spacing:20.398867pt;}
.ws111{word-spacing:20.658924pt;}
.ws110{word-spacing:20.659179pt;}
.ws112{word-spacing:20.659562pt;}
.wsc2{word-spacing:20.669287pt;}
.ws10{word-spacing:20.706980pt;}
.wsb8{word-spacing:20.776033pt;}
.ws1c{word-spacing:21.088399pt;}
.ws19{word-spacing:21.088495pt;}
.wsea{word-spacing:21.093826pt;}
.ws100{word-spacing:21.094783pt;}
.ws1f{word-spacing:21.199881pt;}
.wsff{word-spacing:21.201050pt;}
.wsab{word-spacing:21.206091pt;}
.ws8c{word-spacing:21.206762pt;}
.ws8f{word-spacing:21.211691pt;}
.ws53{word-spacing:21.307531pt;}
.wscb{word-spacing:21.412895pt;}
.wsbf{word-spacing:21.465073pt;}
.ws74{word-spacing:21.571447pt;}
.ws77{word-spacing:21.625484pt;}
.wsc7{word-spacing:21.625643pt;}
.ws17{word-spacing:21.662488pt;}
.wscc{word-spacing:21.677608pt;}
.ws83{word-spacing:21.727696pt;}
.ws82{word-spacing:21.730901pt;}
.ws84{word-spacing:21.731645pt;}
.ws75{word-spacing:21.890197pt;}
.wsc0{word-spacing:21.890728pt;}
.wsa1{word-spacing:21.891591pt;}
.wsf1{word-spacing:22.104698pt;}
.wsb0{word-spacing:22.155972pt;}
.ws5c{word-spacing:22.210913pt;}
.ws10b{word-spacing:22.315214pt;}
.wsfe{word-spacing:22.369783pt;}
.wsb7{word-spacing:22.475519pt;}
.ws2f{word-spacing:22.475732pt;}
.ws66{word-spacing:22.475891pt;}
.wsfa{word-spacing:22.688002pt;}
.ws49{word-spacing:22.689064pt;}
.ws116{word-spacing:22.698122pt;}
.ws78{word-spacing:22.742251pt;}
.ws67{word-spacing:22.794004pt;}
.ws7b{word-spacing:22.846819pt;}
.ws7c{word-spacing:22.846978pt;}
.ws3b{word-spacing:22.847138pt;}
.wsd6{word-spacing:23.112488pt;}
.wse0{word-spacing:23.112754pt;}
.wsd3{word-spacing:23.166366pt;}
.wse9{word-spacing:23.378370pt;}
.wsdf{word-spacing:23.431876pt;}
.ws24{word-spacing:23.538462pt;}
.wsd5{word-spacing:23.750520pt;}
.wsbe{word-spacing:23.750626pt;}
.wsb3{word-spacing:23.856883pt;}
.ws48{word-spacing:24.069535pt;}
.ws4a{word-spacing:24.069801pt;}
.ws46{word-spacing:24.070067pt;}
.ws8d{word-spacing:24.100987pt;}
.ws68{word-spacing:24.759585pt;}
.wsef{word-spacing:24.973449pt;}
.ws107{word-spacing:25.026795pt;}
.ws6d{word-spacing:25.078494pt;}
.wsde{word-spacing:25.079185pt;}
.ws34{word-spacing:25.079398pt;}
.ws32{word-spacing:25.079557pt;}
.wsf2{word-spacing:25.185187pt;}
.ws6a{word-spacing:25.185293pt;}
.ws62{word-spacing:25.185825pt;}
.wsfb{word-spacing:25.185931pt;}
.wsb1{word-spacing:25.292199pt;}
.wsb6{word-spacing:25.715888pt;}
.ws36{word-spacing:25.716738pt;}
.wsf0{word-spacing:25.875662pt;}
.ws15{word-spacing:26.013511pt;}
.ws3e{word-spacing:26.142447pt;}
.ws72{word-spacing:26.406947pt;}
.wscf{word-spacing:26.460453pt;}
.wsd1{word-spacing:26.461038pt;}
.ws12d{word-spacing:26.525343pt;}
.ws79{word-spacing:26.566615pt;}
.ws33{word-spacing:26.673414pt;}
.ws4f{word-spacing:27.099228pt;}
.ws8a{word-spacing:27.203530pt;}
.wsfd{word-spacing:27.204965pt;}
.wsd4{word-spacing:27.417288pt;}
.ws69{word-spacing:27.469678pt;}
.ws42{word-spacing:27.628920pt;}
.ws63{word-spacing:27.681894pt;}
.ws14{word-spacing:27.878857pt;}
.ws71{word-spacing:28.266526pt;}
.ws70{word-spacing:28.286099pt;}
.wsed{word-spacing:28.427575pt;}
.ws44{word-spacing:28.744519pt;}
.ws25{word-spacing:28.850786pt;}
.wsdd{word-spacing:29.010294pt;}
.ws103{word-spacing:29.169536pt;}
.ws1d{word-spacing:29.169643pt;}
.ws104{word-spacing:29.488286pt;}
.ws4b{word-spacing:30.073450pt;}
.wsec{word-spacing:30.179930pt;}
.ws109{word-spacing:31.402593pt;}
.ws2c{word-spacing:31.667041pt;}
.wsda{word-spacing:31.720281pt;}
.wsdc{word-spacing:31.721450pt;}
.ws41{word-spacing:31.827611pt;}
.ws3a{word-spacing:31.881223pt;}
.ws2e{word-spacing:32.091899pt;}
.ws5b{word-spacing:32.304966pt;}
.wsc5{word-spacing:32.570423pt;}
.wsc3{word-spacing:32.571167pt;}
.ws5f{word-spacing:37.625830pt;}
.ws1{word-spacing:44.504528pt;}
.ws0{word-spacing:44.505038pt;}
.wsa0{word-spacing:74.341558pt;}
.ws90{word-spacing:74.342891pt;}
.ws9c{word-spacing:127.478358pt;}
.wsa2{word-spacing:127.479158pt;}
.ws60{word-spacing:351.558123pt;}
._1e{margin-left:-20.298476pt;}
._6{margin-left:-6.488195pt;}
._2{margin-left:-4.462083pt;}
._1{margin-left:-3.188346pt;}
._0{margin-left:-1.914418pt;}
._a{margin-left:-0.957369pt;}
._17{width:0.917541pt;}
._c{width:2.072855pt;}
._3{width:3.244413pt;}
._e{width:13.972554pt;}
._b{width:16.736969pt;}
._15{width:18.172829pt;}
._f{width:19.344043pt;}
._1a{width:21.150617pt;}
._1b{width:22.052692pt;}
._1d{width:27.205071pt;}
._14{width:29.755168pt;}
._16{width:31.241863pt;}
._d{width:32.626356pt;}
._1c{width:35.748173pt;}
._1f{width:42.506951pt;}
._9{width:49.819511pt;}
._7{width:65.022651pt;}
._8{width:78.897676pt;}
._20{width:103.293514pt;}
._5{width:108.248766pt;}
._11{width:118.138962pt;}
._12{width:126.039971pt;}
._18{width:127.521175pt;}
._10{width:137.534569pt;}
._4{width:153.559972pt;}
._19{width:180.656450pt;}
._13{width:333.374646pt;}
.fsb{font-size:26.566933pt;}
.fs7{font-size:29.553867pt;}
.fs9{font-size:31.664853pt;}
.fsa{font-size:31.880533pt;}
.fs5{font-size:33.775840pt;}
.fs6{font-size:37.997813pt;}
.fs8{font-size:42.219840pt;}
.fs4{font-size:42.507200pt;}
.fs3{font-size:47.820800pt;}
.fs2{font-size:53.133867pt;}
.fs1{font-size:58.447467pt;}
.fs0{font-size:127.521600pt;}
.y0{bottom:0.000000pt;}
.y70{bottom:12.870667pt;}
.y71{bottom:13.398667pt;}
.y6b{bottom:39.258667pt;}
.y61{bottom:44.535973pt;}
.y60{bottom:55.090667pt;}
.y66{bottom:65.646667pt;}
.y5d{bottom:66.701333pt;}
.y69{bottom:75.672947pt;}
.y5e{bottom:77.256000pt;}
.y67{bottom:85.700000pt;}
.y5c{bottom:86.756000pt;}
.y68{bottom:96.782813pt;}
.y5f{bottom:97.310667pt;}
.yfc{bottom:100.736400pt;}
.y59{bottom:100.736760pt;}
.y34{bottom:100.737960pt;}
.yc4{bottom:100.738400pt;}
.y97{bottom:100.739200pt;}
.y6e{bottom:102.061040pt;}
.y12b{bottom:102.122240pt;}
.y6d{bottom:105.227187pt;}
.y6a{bottom:113.142667pt;}
.y12a{bottom:114.078493pt;}
.y6c{bottom:114.726667pt;}
.yfb{bottom:116.676533pt;}
.y58{bottom:116.676893pt;}
.y33{bottom:116.678093pt;}
.yc3{bottom:116.678533pt;}
.y96{bottom:116.679333pt;}
.y129{bottom:126.033187pt;}
.yfa{bottom:132.616133pt;}
.y57{bottom:132.617027pt;}
.y32{bottom:132.619293pt;}
.yc2{bottom:132.619733pt;}
.y95{bottom:132.621067pt;}
.y128{bottom:137.988920pt;}
.yf9{bottom:148.557867pt;}
.y31{bottom:148.559427pt;}
.yc1{bottom:148.559867pt;}
.y94{bottom:148.561200pt;}
.y56{bottom:149.224893pt;}
.y127{bottom:149.943613pt;}
.y126{bottom:161.898307pt;}
.yf8{bottom:164.498000pt;}
.y30{bottom:164.499560pt;}
.yc0{bottom:164.500000pt;}
.y93{bottom:164.501333pt;}
.y55{bottom:165.165027pt;}
.y125{bottom:173.854560pt;}
.yf7{bottom:180.438133pt;}
.y2f{bottom:180.439693pt;}
.ybf{bottom:180.440133pt;}
.y92{bottom:180.441467pt;}
.y54{bottom:181.106227pt;}
.y124{bottom:185.809253pt;}
.y5b{bottom:194.944000pt;}
.yf6{bottom:196.378267pt;}
.y2e{bottom:196.379827pt;}
.ybe{bottom:196.380267pt;}
.y91{bottom:196.381600pt;}
.y53{bottom:197.046360pt;}
.y123{bottom:197.763947pt;}
.y122{bottom:209.719680pt;}
.yf5{bottom:212.318400pt;}
.y2d{bottom:212.319960pt;}
.y90{bottom:212.321733pt;}
.y52{bottom:212.986493pt;}
.ybd{bottom:220.551067pt;}
.y121{bottom:221.674373pt;}
.y6f{bottom:226.081333pt;}
.y65{bottom:227.137333pt;}
.yf4{bottom:228.258533pt;}
.y2c{bottom:228.261160pt;}
.y8f{bottom:228.262933pt;}
.y51{bottom:228.926627pt;}
.y62{bottom:230.830667pt;}
.y64{bottom:232.414667pt;}
.y120{bottom:233.630627pt;}
.y63{bottom:237.692000pt;}
.ybc{bottom:243.629733pt;}
.yf3{bottom:244.199733pt;}
.y2b{bottom:244.201293pt;}
.y8e{bottom:244.203067pt;}
.y50{bottom:244.866760pt;}
.y11f{bottom:245.585320pt;}
.y11e{bottom:257.540013pt;}
.ybb{bottom:259.569867pt;}
.yf2{bottom:260.139333pt;}
.y2a{bottom:260.141427pt;}
.y8d{bottom:260.143200pt;}
.y4f{bottom:260.807960pt;}
.y11d{bottom:269.495747pt;}
.yba{bottom:275.510000pt;}
.yf1{bottom:276.079467pt;}
.y29{bottom:276.081560pt;}
.y8c{bottom:276.082800pt;}
.y4e{bottom:276.748093pt;}
.y11c{bottom:281.450440pt;}
.yb9{bottom:291.450133pt;}
.y28{bottom:291.514893pt;}
.yf0{bottom:292.019600pt;}
.y8b{bottom:292.022933pt;}
.y4d{bottom:292.688227pt;}
.y11b{bottom:293.405133pt;}
.y11a{bottom:305.361387pt;}
.yb8{bottom:307.390267pt;}
.y27{bottom:307.455027pt;}
.yef{bottom:307.959200pt;}
.y4c{bottom:308.628360pt;}
.y8a{bottom:308.921867pt;}
.y119{bottom:317.316080pt;}
.yb7{bottom:323.332000pt;}
.y26{bottom:323.395160pt;}
.yee{bottom:323.900933pt;}
.y4b{bottom:324.568493pt;}
.y89{bottom:324.863067pt;}
.y118{bottom:329.270773pt;}
.y25{bottom:339.335293pt;}
.yed{bottom:339.841067pt;}
.y4a{bottom:340.508627pt;}
.y88{bottom:340.803200pt;}
.y117{bottom:341.226507pt;}
.y24{bottom:355.276493pt;}
.yec{bottom:355.781200pt;}
.y49{bottom:356.449827pt;}
.y87{bottom:356.743333pt;}
.y116{bottom:359.806773pt;}
.y23{bottom:371.216627pt;}
.yeb{bottom:371.721333pt;}
.y48{bottom:372.389427pt;}
.y86{bottom:372.683467pt;}
.yb6{bottom:373.390813pt;}
.y115{bottom:381.277040pt;}
.yb5{bottom:385.347067pt;}
.y22{bottom:387.156760pt;}
.yea{bottom:387.661467pt;}
.y47{bottom:388.329027pt;}
.y85{bottom:388.623600pt;}
.y114{bottom:397.217173pt;}
.yb4{bottom:397.301760pt;}
.y21{bottom:403.096893pt;}
.ye9{bottom:403.601600pt;}
.y46{bottom:404.268627pt;}
.y84{bottom:404.563733pt;}
.yb3{bottom:409.256453pt;}
.y113{bottom:413.158373pt;}
.y20{bottom:419.037027pt;}
.ye8{bottom:419.542800pt;}
.y45{bottom:420.208227pt;}
.y83{bottom:420.504933pt;}
.yb2{bottom:421.212187pt;}
.y112{bottom:432.709440pt;}
.yb1{bottom:433.166880pt;}
.y1f{bottom:434.978227pt;}
.ye7{bottom:435.482933pt;}
.y44{bottom:436.148360pt;}
.y82{bottom:436.445067pt;}
.yb0{bottom:441.678867pt;}
.yaf{bottom:445.123147pt;}
.y111{bottom:446.621440pt;}
.y1e{bottom:450.918360pt;}
.ye6{bottom:451.423067pt;}
.y81{bottom:452.385200pt;}
.y43{bottom:456.500493pt;}
.yae{bottom:458.208560pt;}
.y110{bottom:462.561573pt;}
.yad{bottom:466.720547pt;}
.y1d{bottom:466.857960pt;}
.ye5{bottom:467.363200pt;}
.y80{bottom:469.283600pt;}
.yac{bottom:470.163253pt;}
.y10f{bottom:478.501707pt;}
.y42{bottom:483.302093pt;}
.ye4{bottom:483.303333pt;}
.yab{bottom:483.604453pt;}
.y7f{bottom:485.223733pt;}
.y1c{bottom:486.475693pt;}
.y10e{bottom:494.443440pt;}
.yaa{bottom:495.560187pt;}
.y41{bottom:499.241693pt;}
.ye3{bottom:499.243467pt;}
.y7e{bottom:501.163867pt;}
.y1b{bottom:504.559560pt;}
.ya9{bottom:507.514880pt;}
.y10d{bottom:510.383573pt;}
.y40{bottom:515.183427pt;}
.ye2{bottom:515.184667pt;}
.y7d{bottom:517.105067pt;}
.y1a{bottom:517.842373pt;}
.ya8{bottom:519.469573pt;}
.y10c{bottom:526.323707pt;}
.y3f{bottom:531.123560pt;}
.ye1{bottom:531.124800pt;}
.y19{bottom:531.126227pt;}
.ya7{bottom:531.425827pt;}
.y7c{bottom:533.045200pt;}
.y10b{bottom:542.263840pt;}
.ya6{bottom:543.380520pt;}
.y18{bottom:544.410080pt;}
.y3e{bottom:547.063693pt;}
.ye0{bottom:547.064933pt;}
.y7b{bottom:548.985333pt;}
.ya5{bottom:555.335213pt;}
.y17{bottom:557.692893pt;}
.y10a{bottom:558.203973pt;}
.y3d{bottom:563.003827pt;}
.ydf{bottom:563.005067pt;}
.y7a{bottom:564.925467pt;}
.ya4{bottom:567.290947pt;}
.y16{bottom:570.976747pt;}
.y109{bottom:574.143573pt;}
.y3c{bottom:578.943960pt;}
.yde{bottom:578.944667pt;}
.ya3{bottom:579.245640pt;}
.y79{bottom:580.865600pt;}
.y15{bottom:584.259560pt;}
.ya2{bottom:587.757627pt;}
.ya1{bottom:591.201373pt;}
.y108{bottom:593.695707pt;}
.y3b{bottom:594.884093pt;}
.ydd{bottom:594.884800pt;}
.y78{bottom:596.805733pt;}
.y14{bottom:597.543933pt;}
.ya0{bottom:600.485227pt;}
.y9f{bottom:603.928973pt;}
.y107{bottom:609.485307pt;}
.y3a{bottom:610.825293pt;}
.ydc{bottom:610.826000pt;}
.y13{bottom:610.828307pt;}
.y9e{bottom:612.440960pt;}
.y77{bottom:612.746933pt;}
.y9d{bottom:615.883667pt;}
.y106{bottom:621.440000pt;}
.y12{bottom:624.111120pt;}
.y39{bottom:626.765427pt;}
.ydb{bottom:626.766133pt;}
.y9c{bottom:627.838360pt;}
.y76{bottom:628.686533pt;}
.y11{bottom:637.394973pt;}
.y9b{bottom:639.794613pt;}
.y38{bottom:642.705560pt;}
.yda{bottom:642.706267pt;}
.y75{bottom:644.626133pt;}
.y10{bottom:650.678827pt;}
.y9a{bottom:651.749307pt;}
.y37{bottom:658.645693pt;}
.yd9{bottom:658.646400pt;}
.y74{bottom:660.565733pt;}
.y99{bottom:663.704000pt;}
.yf{bottom:663.961640pt;}
.y36{bottom:674.585827pt;}
.yd8{bottom:674.586533pt;}
.y73{bottom:676.505333pt;}
.ye{bottom:677.245493pt;}
.y98{bottom:679.574667pt;}
.y35{bottom:690.525960pt;}
.yd7{bottom:690.527733pt;}
.yd{bottom:690.529867pt;}
.yd6{bottom:706.467867pt;}
.y72{bottom:708.114667pt;}
.yd5{bottom:722.408000pt;}
.y5a{bottom:727.329333pt;}
.yc{bottom:736.284000pt;}
.yd4{bottom:738.348133pt;}
.yb{bottom:753.170667pt;}
.yd3{bottom:754.288267pt;}
.yd2{bottom:770.228400pt;}
.ya{bottom:771.102667pt;}
.yd1{bottom:786.169600pt;}
.y9{bottom:789.036000pt;}
.yd0{bottom:802.109733pt;}
.y8{bottom:806.968000pt;}
.ycf{bottom:818.049867pt;}
.y7{bottom:824.650267pt;}
.yce{bottom:833.990000pt;}
.y6{bottom:842.534800pt;}
.y105{bottom:849.925733pt;}
.ycd{bottom:849.930133pt;}
.y5{bottom:862.261333pt;}
.y4{bottom:862.261733pt;}
.y104{bottom:865.865867pt;}
.ycc{bottom:865.870267pt;}
.y103{bottom:881.806000pt;}
.ycb{bottom:881.811467pt;}
.y3{bottom:881.986533pt;}
.y102{bottom:897.746133pt;}
.yca{bottom:897.751600pt;}
.y101{bottom:913.687867pt;}
.yc9{bottom:913.691733pt;}
.y2{bottom:923.830800pt;}
.y100{bottom:929.628000pt;}
.yc8{bottom:929.631867pt;}
.yff{bottom:945.568133pt;}
.yc7{bottom:945.571467pt;}
.y1{bottom:961.024000pt;}
.yfe{bottom:961.508267pt;}
.yc6{bottom:961.511600pt;}
.yfd{bottom:977.448400pt;}
.yc5{bottom:977.453333pt;}
.hf{height:20.015241pt;}
.h1d{height:22.107556pt;}
.h10{height:22.454012pt;}
.h14{height:24.057867pt;}
.hd{height:25.661722pt;}
.h13{height:26.169867pt;}
.he{height:28.869432pt;}
.h25{height:29.159939pt;}
.h15{height:29.244954pt;}
.h17{height:29.499997pt;}
.h18{height:31.880400pt;}
.h11{height:32.077183pt;}
.ha{height:33.187635pt;}
.h9{height:33.426739pt;}
.hb{height:36.449833pt;}
.h8{height:36.556100pt;}
.h24{height:36.818601pt;}
.h7{height:36.822767pt;}
.h16{height:36.874903pt;}
.h1b{height:37.105476pt;}
.h19{height:37.111716pt;}
.h5{height:40.211857pt;}
.h3{height:40.212390pt;}
.h6{height:40.213457pt;}
.h4{height:40.504007pt;}
.h2{height:40.505607pt;}
.h1f{height:43.015780pt;}
.h20{height:43.227982pt;}
.h22{height:43.230062pt;}
.h1a{height:43.270823pt;}
.h23{height:43.277063pt;}
.h1c{height:50.880463pt;}
.h1e{height:50.882543pt;}
.h12{height:51.075690pt;}
.h21{height:56.998809pt;}
.h1{height:87.734861pt;}
.hc{height:254.896000pt;}
.h0{height:1056.000000pt;}
.w1{width:533.018667pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x29{left:7.441333pt;}
.x28{left:23.109333pt;}
.x23{left:38.578667pt;}
.x19{left:64.224000pt;}
.x12{left:65.285467pt;}
.x1a{left:67.324000pt;}
.x1b{left:70.680080pt;}
.x2{left:78.501600pt;}
.x3{left:106.248000pt;}
.x4{left:118.434983pt;}
.x1{left:127.995867pt;}
.x27{left:129.029067pt;}
.x17{left:139.162667pt;}
.x8{left:177.924000pt;}
.x13{left:180.825600pt;}
.x5{left:191.969333pt;}
.x24{left:197.306667pt;}
.x9{left:207.950555pt;}
.x1c{left:220.742667pt;}
.x18{left:225.409333pt;}
.x7{left:264.516000pt;}
.x10{left:269.418667pt;}
.xa{left:286.378667pt;}
.xe{left:302.708000pt;}
.xc{left:303.721333pt;}
.x2c{left:311.498667pt;}
.x1d{left:321.616000pt;}
.x1e{left:326.894667pt;}
.x1f{left:331.626667pt;}
.x11{left:346.309333pt;}
.x2b{left:354.172000pt;}
.x26{left:369.682400pt;}
.x2a{left:401.025333pt;}
.xb{left:414.165167pt;}
.x15{left:415.971320pt;}
.x2d{left:420.454933pt;}
.x22{left:424.148000pt;}
.x20{left:427.108000pt;}
.x21{left:428.180000pt;}
.x14{left:429.253613pt;}
.xf{left:434.505371pt;}
.xd{left:460.266500pt;}
.x6{left:478.393063pt;}
.x25{left:487.114667pt;}
.x36{left:500.885200pt;}
.x16{left:502.607320pt;}
.x38{left:518.560107pt;}
.x3a{left:521.860192pt;}
.x37{left:529.857067pt;}
.x3b{left:546.149792pt;}
.x2e{left:588.945749pt;}
.x33{left:606.734195pt;}
.x35{left:613.783475pt;}
.x34{left:627.020648pt;}
.x2f{left:635.271416pt;}
.x31{left:651.160432pt;}
.x32{left:668.226061pt;}
.x30{left:691.616765pt;}
.x39{left:733.008492pt;}
}




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