
    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_b17ea765e2e34d5041b031b9.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.088379;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_df4cfce0d5ad63778ac5b048.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.100098;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_dad1601668aba3e8b006a620.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.959473;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_133aeb0405d4f8e39f1e9973.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.102051;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_eb65201c15622c55dd62c0f5.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.102051;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_d0d581c06950263857043d2a.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.575000;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_2df75ea116a32ec958c829fb.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.068000;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_8637c1f291448b20ea6588e1.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_9ec85f1944fe0ac260908809.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.915039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls44{letter-spacing:-12.301870px;}
.ls20{letter-spacing:-9.548947px;}
.ls2c{letter-spacing:-9.301414px;}
.ls2b{letter-spacing:-9.151391px;}
.ls4b{letter-spacing:-7.426129px;}
.ls45{letter-spacing:-5.175787px;}
.ls28{letter-spacing:-4.875741px;}
.ls35{letter-spacing:-4.800730px;}
.ls34{letter-spacing:-4.500684px;}
.ls36{letter-spacing:-4.425673px;}
.ls2e{letter-spacing:-4.331877px;}
.ls38{letter-spacing:-4.200638px;}
.ls23{letter-spacing:-3.675559px;}
.ls2d{letter-spacing:-3.450524px;}
.ls52{letter-spacing:-3.375513px;}
.ls22{letter-spacing:-3.349258px;}
.ls41{letter-spacing:-3.300502px;}
.ls3d{letter-spacing:-3.150479px;}
.ls4a{letter-spacing:-3.064214px;}
.ls49{letter-spacing:-2.925445px;}
.ls3f{letter-spacing:-2.921693px;}
.ls1f{letter-spacing:-2.775422px;}
.ls1d{letter-spacing:-2.636650px;}
.lsc{letter-spacing:-2.625399px;}
.ls4f{letter-spacing:-2.325353px;}
.ls39{letter-spacing:-2.280346px;}
.ls1{letter-spacing:-2.280342px;}
.ls46{letter-spacing:-2.250342px;}
.lsd{letter-spacing:-2.175331px;}
.ls1b{letter-spacing:-2.100319px;}
.ls4c{letter-spacing:-1.950296px;}
.ls3{letter-spacing:-1.920288px;}
.ls50{letter-spacing:-1.852781px;}
.ls24{letter-spacing:-1.800274px;}
.ls29{letter-spacing:-1.725262px;}
.ls26{letter-spacing:-1.650251px;}
.ls3a{letter-spacing:-1.638998px;}
.lsa{letter-spacing:-1.575239px;}
.ls27{letter-spacing:-1.500228px;}
.lse{letter-spacing:-1.425217px;}
.ls54{letter-spacing:-1.338944px;}
.ls2a{letter-spacing:-1.282694px;}
.ls37{letter-spacing:-1.211434px;}
.ls1c{letter-spacing:-1.200182px;}
.lsf{letter-spacing:-1.125171px;}
.ls10{letter-spacing:-1.050160px;}
.ls40{letter-spacing:-0.750114px;}
.ls0{letter-spacing:0.000000px;}
.ls48{letter-spacing:1.072656px;}
.ls17{letter-spacing:1.320192px;}
.ls3c{letter-spacing:1.402704px;}
.lsb{letter-spacing:1.425217px;}
.ls30{letter-spacing:1.485216px;}
.ls15{letter-spacing:1.650240px;}
.ls13{letter-spacing:1.732752px;}
.ls4e{letter-spacing:1.815264px;}
.ls11{letter-spacing:1.852781px;}
.ls3e{letter-spacing:1.875285px;}
.ls18{letter-spacing:1.897776px;}
.ls4{letter-spacing:2.145312px;}
.ls25{letter-spacing:2.227824px;}
.ls16{letter-spacing:2.310336px;}
.ls12{letter-spacing:2.392848px;}
.ls19{letter-spacing:2.475360px;}
.ls31{letter-spacing:2.557872px;}
.ls9{letter-spacing:2.640384px;}
.ls42{letter-spacing:2.700410px;}
.ls6{letter-spacing:2.805408px;}
.ls14{letter-spacing:2.887920px;}
.ls51{letter-spacing:3.075467px;}
.ls7{letter-spacing:3.217968px;}
.ls1a{letter-spacing:3.300480px;}
.ls32{letter-spacing:3.548016px;}
.ls5{letter-spacing:3.713040px;}
.ls8{letter-spacing:4.043088px;}
.ls43{letter-spacing:4.200638px;}
.ls21{letter-spacing:4.538153px;}
.ls47{letter-spacing:4.868208px;}
.ls2{letter-spacing:5.460806px;}
.ls33{letter-spacing:5.610816px;}
.ls53{letter-spacing:6.353424px;}
.ls1e{letter-spacing:15.452225px;}
.ls4d{letter-spacing:23.253450px;}
.ls2f{letter-spacing:23.440800px;}
.ls3b{letter-spacing:23.441400px;}
.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;}
}
.ws89{word-spacing:-26.238816px;}
.ws88{word-spacing:-24.176016px;}
.wsff{word-spacing:-23.185872px;}
.wsc0{word-spacing:-23.103360px;}
.ws5a{word-spacing:-22.938336px;}
.wsc1{word-spacing:-22.855824px;}
.ws93{word-spacing:-22.773312px;}
.wsbf{word-spacing:-22.360752px;}
.ws87{word-spacing:-22.113216px;}
.ws59{word-spacing:-21.948192px;}
.wsa6{word-spacing:-20.628135px;}
.wsa4{word-spacing:-20.628000px;}
.ws0{word-spacing:-18.752850px;}
.ws100{word-spacing:-18.351406px;}
.wsf4{word-spacing:-18.152759px;}
.ws8b{word-spacing:-17.815200px;}
.ws5f{word-spacing:-17.627679px;}
.ws5c{word-spacing:-17.252622px;}
.ws5d{word-spacing:-17.177611px;}
.ws5b{word-spacing:-17.102599px;}
.ws60{word-spacing:-17.027588px;}
.wsd8{word-spacing:-16.802554px;}
.ws5e{word-spacing:-16.652531px;}
.ws32{word-spacing:-15.977428px;}
.wsa5{word-spacing:-15.602371px;}
.ws4f{word-spacing:-15.452225px;}
.ws61{word-spacing:-15.358473px;}
.wsa7{word-spacing:-14.893507px;}
.ws8a{word-spacing:-14.327177px;}
.wsfe{word-spacing:-11.776790px;}
.wse6{word-spacing:-11.176699px;}
.ws85{word-spacing:-9.976516px;}
.wsb6{word-spacing:-9.751482px;}
.wsb9{word-spacing:-9.451436px;}
.ws1b{word-spacing:-8.476288px;}
.ws33{word-spacing:-8.266253px;}
.wsf3{word-spacing:-7.876197px;}
.wse5{word-spacing:-7.576151px;}
.wsb5{word-spacing:-6.676015px;}
.ws42{word-spacing:-6.435936px;}
.ws24{word-spacing:-6.375969px;}
.ws103{word-spacing:-6.353424px;}
.wsf2{word-spacing:-6.199690px;}
.ws7d{word-spacing:-6.000912px;}
.wsea{word-spacing:-5.985878px;}
.ws16{word-spacing:-5.550844px;}
.ws77{word-spacing:-4.650707px;}
.ws50{word-spacing:-4.538153px;}
.ws97{word-spacing:-4.500684px;}
.ws4e{word-spacing:-4.275648px;}
.ws9a{word-spacing:-4.125627px;}
.wsde{word-spacing:-4.125600px;}
.ws1d{word-spacing:-3.900593px;}
.ws9{word-spacing:-3.713040px;}
.wsa3{word-spacing:-3.675559px;}
.ws48{word-spacing:-3.300480px;}
.ws36{word-spacing:-3.217968px;}
.wsfa{word-spacing:-3.075467px;}
.ws40{word-spacing:-2.887920px;}
.ws73{word-spacing:-2.805408px;}
.ws102{word-spacing:-2.640396px;}
.ws2a{word-spacing:-2.625399px;}
.ws90{word-spacing:-2.557872px;}
.wsdd{word-spacing:-2.475360px;}
.ws7f{word-spacing:-2.400365px;}
.ws2d{word-spacing:-2.250342px;}
.ws6b{word-spacing:-2.145312px;}
.wsb0{word-spacing:-1.875285px;}
.ws2c{word-spacing:-1.852781px;}
.wse1{word-spacing:-1.815264px;}
.ws8e{word-spacing:-1.732752px;}
.ws71{word-spacing:-1.320192px;}
.ws7a{word-spacing:-1.275194px;}
.ws23{word-spacing:-1.125171px;}
.ws13{word-spacing:-1.050160px;}
.wse8{word-spacing:-0.975148px;}
.ws82{word-spacing:-0.900137px;}
.ws64{word-spacing:-0.780117px;}
.ws14{word-spacing:-0.750114px;}
.wsd7{word-spacing:-0.375057px;}
.ws91{word-spacing:-0.330048px;}
.ws41{word-spacing:-0.165024px;}
.ws2{word-spacing:0.000000px;}
.ws6a{word-spacing:0.165024px;}
.ws43{word-spacing:0.247536px;}
.ws4{word-spacing:0.877630px;}
.ws78{word-spacing:0.900137px;}
.ws55{word-spacing:0.975148px;}
.wscf{word-spacing:1.050160px;}
.ws20{word-spacing:1.125171px;}
.ws4d{word-spacing:1.200182px;}
.ws9f{word-spacing:1.211434px;}
.wsac{word-spacing:1.237680px;}
.ws7c{word-spacing:1.282694px;}
.wsfb{word-spacing:1.500228px;}
.wsa2{word-spacing:1.638998px;}
.wsb7{word-spacing:1.650251px;}
.ws69{word-spacing:1.732752px;}
.wsd4{word-spacing:1.800274px;}
.wsf1{word-spacing:1.852781px;}
.ws51{word-spacing:2.066563px;}
.wsdb{word-spacing:2.145312px;}
.ws1a{word-spacing:2.175331px;}
.ws3{word-spacing:2.280342px;}
.wsaf{word-spacing:2.280346px;}
.ws66{word-spacing:2.310336px;}
.wsf0{word-spacing:2.325353px;}
.ws38{word-spacing:2.392848px;}
.wsda{word-spacing:2.400360px;}
.ws7b{word-spacing:2.475376px;}
.wsce{word-spacing:2.550388px;}
.ws17{word-spacing:2.625399px;}
.ws76{word-spacing:2.636650px;}
.ws3d{word-spacing:2.640384px;}
.wsef{word-spacing:2.722896px;}
.ws9c{word-spacing:2.775422px;}
.wsc7{word-spacing:2.805408px;}
.wsbd{word-spacing:2.850433px;}
.ws2e{word-spacing:2.925445px;}
.ws26{word-spacing:3.000456px;}
.ws6c{word-spacing:3.052944px;}
.wse9{word-spacing:3.064214px;}
.wsbc{word-spacing:3.075467px;}
.wsa9{word-spacing:3.135456px;}
.ws8f{word-spacing:3.217968px;}
.wse7{word-spacing:3.225490px;}
.ws84{word-spacing:3.349258px;}
.ws95{word-spacing:3.375513px;}
.wsaa{word-spacing:3.465504px;}
.wsa{word-spacing:3.548016px;}
.wsd2{word-spacing:3.675559px;}
.wsdc{word-spacing:3.713040px;}
.wsd1{word-spacing:3.825581px;}
.wsc4{word-spacing:3.878064px;}
.wsd9{word-spacing:3.960594px;}
.wse0{word-spacing:4.125600px;}
.ws7{word-spacing:4.125627px;}
.wsa8{word-spacing:4.140621px;}
.wsa0{word-spacing:4.200638px;}
.ws8{word-spacing:4.208112px;}
.ws62{word-spacing:4.260639px;}
.ws8c{word-spacing:4.500660px;}
.ws101{word-spacing:4.500675px;}
.ws25{word-spacing:4.500684px;}
.wsdf{word-spacing:4.538160px;}
.ws80{word-spacing:4.575695px;}
.wsc9{word-spacing:4.620672px;}
.wsfd{word-spacing:4.703213px;}
.ws9b{word-spacing:4.800730px;}
.wsc3{word-spacing:4.860713px;}
.ws63{word-spacing:4.860729px;}
.ws30{word-spacing:4.875741px;}
.ws74{word-spacing:4.950720px;}
.ws86{word-spacing:4.950752px;}
.wsd{word-spacing:5.033232px;}
.ws52{word-spacing:5.059517px;}
.ws21{word-spacing:5.250798px;}
.wsab{word-spacing:5.363280px;}
.wseb{word-spacing:5.693328px;}
.ws109{word-spacing:5.775840px;}
.ws6{word-spacing:5.850889px;}
.ws44{word-spacing:5.858352px;}
.ws31{word-spacing:5.925901px;}
.ws1{word-spacing:6.000900px;}
.ws1e{word-spacing:6.000912px;}
.ws2f{word-spacing:6.075923px;}
.ws4b{word-spacing:6.105888px;}
.ws58{word-spacing:6.300958px;}
.ws15{word-spacing:6.375969px;}
.ws45{word-spacing:6.518448px;}
.wsfc{word-spacing:6.525992px;}
.wsc2{word-spacing:6.750990px;}
.ws27{word-spacing:6.751026px;}
.ws67{word-spacing:6.848496px;}
.ws107{word-spacing:6.931008px;}
.ws108{word-spacing:7.261056px;}
.ws46{word-spacing:7.426080px;}
.ws29{word-spacing:7.426129px;}
.ws18{word-spacing:7.501140px;}
.ws106{word-spacing:7.508592px;}
.ws8d{word-spacing:7.591104px;}
.wsee{word-spacing:7.673616px;}
.wsc8{word-spacing:7.756128px;}
.ws1c{word-spacing:7.801186px;}
.ws3f{word-spacing:7.838640px;}
.ws3e{word-spacing:8.086176px;}
.wsd6{word-spacing:8.101231px;}
.ws56{word-spacing:8.176243px;}
.wsc6{word-spacing:8.251200px;}
.ws54{word-spacing:8.251254px;}
.ws4c{word-spacing:8.476288px;}
.ws9d{word-spacing:8.551300px;}
.ws34{word-spacing:8.641267px;}
.ws49{word-spacing:8.828784px;}
.ws65{word-spacing:9.076320px;}
.ws7e{word-spacing:9.151391px;}
.ws47{word-spacing:9.158832px;}
.ws3a{word-spacing:9.241344px;}
.ws2b{word-spacing:9.301414px;}
.wsb{word-spacing:9.488880px;}
.wsd3{word-spacing:9.676471px;}
.wsed{word-spacing:9.818928px;}
.ws5{word-spacing:9.841476px;}
.ws22{word-spacing:10.051528px;}
.ws19{word-spacing:10.126539px;}
.ws39{word-spacing:10.148976px;}
.wsec{word-spacing:10.231488px;}
.ws3c{word-spacing:10.644048px;}
.wse4{word-spacing:10.689120px;}
.wscd{word-spacing:10.801642px;}
.ws98{word-spacing:10.876653px;}
.ws3b{word-spacing:11.386656px;}
.wsf7{word-spacing:11.401733px;}
.ws1f{word-spacing:11.551756px;}
.wsb3{word-spacing:11.626767px;}
.wsc{word-spacing:11.634192px;}
.ws81{word-spacing:11.701778px;}
.wscb{word-spacing:11.776790px;}
.ws68{word-spacing:12.211776px;}
.wsd0{word-spacing:12.301870px;}
.wsbb{word-spacing:12.376881px;}
.wsae{word-spacing:12.789360px;}
.ws70{word-spacing:12.871872px;}
.ws35{word-spacing:12.954384px;}
.ws92{word-spacing:13.201920px;}
.wscc{word-spacing:13.352029px;}
.ws75{word-spacing:13.427041px;}
.ws28{word-spacing:13.502052px;}
.ws10{word-spacing:13.531968px;}
.ws37{word-spacing:13.614480px;}
.ws83{word-spacing:13.802098px;}
.wsd5{word-spacing:13.877109px;}
.ws72{word-spacing:14.357088px;}
.wsf{word-spacing:14.604624px;}
.wse{word-spacing:14.687136px;}
.ws105{word-spacing:14.934672px;}
.ws94{word-spacing:15.182208px;}
.ws99{word-spacing:15.377337px;}
.ws6e{word-spacing:15.429744px;}
.wsb8{word-spacing:15.452348px;}
.ws6d{word-spacing:15.512256px;}
.wse2{word-spacing:15.752394px;}
.wsca{word-spacing:16.254864px;}
.ws4a{word-spacing:18.235152px;}
.wsf5{word-spacing:18.452804px;}
.ws6f{word-spacing:18.482688px;}
.wsf6{word-spacing:18.602827px;}
.wsf8{word-spacing:18.677839px;}
.wsb1{word-spacing:19.277930px;}
.wse3{word-spacing:20.178067px;}
.wsbe{word-spacing:20.628135px;}
.ws79{word-spacing:21.003192px;}
.wsb2{word-spacing:22.053352px;}
.wsba{word-spacing:22.503420px;}
.wsad{word-spacing:22.608288px;}
.wsb4{word-spacing:22.803466px;}
.ws96{word-spacing:22.878477px;}
.ws10a{word-spacing:23.020848px;}
.wsa1{word-spacing:23.872368px;}
.ws12{word-spacing:26.103967px;}
.ws104{word-spacing:27.806544px;}
.wsf9{word-spacing:28.129275px;}
.ws9e{word-spacing:32.104879px;}
.ws11{word-spacing:33.380073px;}
.wsc5{word-spacing:38.120544px;}
.ws53{word-spacing:58.508892px;}
.ws57{word-spacing:59.934109px;}
._18{margin-left:-54.044282px;}
._19{margin-left:-51.697803px;}
._2a{margin-left:-42.606770px;}
._27{margin-left:-41.542607px;}
._16{margin-left:-40.430880px;}
._2e{margin-left:-37.178981px;}
._15{margin-left:-35.140364px;}
._2b{margin-left:-26.299001px;}
._1f{margin-left:-22.285697px;}
._21{margin-left:-21.108134px;}
._1e{margin-left:-19.824019px;}
._2d{margin-left:-18.371809px;}
._10{margin-left:-15.302326px;}
._29{margin-left:-13.523663px;}
._f{margin-left:-11.907142px;}
._12{margin-left:-10.225518px;}
._17{margin-left:-8.911296px;}
._1d{margin-left:-7.720743px;}
._13{margin-left:-5.898838px;}
._d{margin-left:-4.677770px;}
._e{margin-left:-3.618565px;}
._2{margin-left:-2.508376px;}
._0{margin-left:-1.080162px;}
._3{width:1.800270px;}
._1{width:3.108466px;}
._7{width:4.680702px;}
._6{width:6.427271px;}
._5{width:8.308211px;}
._4{width:9.323262px;}
._c{width:10.400966px;}
._28{width:11.426248px;}
._8{width:12.459312px;}
._a{width:13.542367px;}
._9{width:14.851834px;}
._b{width:16.133786px;}
._24{width:17.612705px;}
._23{width:18.676402px;}
._22{width:20.102740px;}
._2c{width:21.285451px;}
._1c{width:26.872075px;}
._20{width:27.968390px;}
._25{width:29.737336px;}
._11{width:30.754674px;}
._26{width:33.575989px;}
._14{width:50.509735px;}
._1a{width:51.730803px;}
._1b{width:53.606088px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(35,31,32);}
.fs8{font-size:37.505400px;}
.fs7{font-size:45.006600px;}
.fs6{font-size:54.000000px;}
.fs9{font-size:60.009000px;}
.fs4{font-size:71.260800px;}
.fs2{font-size:75.011400px;}
.fs5{font-size:78.761400px;}
.fs3{font-size:82.512000px;}
.fs1{font-size:97.514400px;}
.fs0{font-size:120.018000px;}
.y0{bottom:0.000000px;}
.y21{bottom:4.185000px;}
.y23{bottom:4.185015px;}
.y15d{bottom:9.399000px;}
.yeb{bottom:10.336500px;}
.y76{bottom:12.588000px;}
.y24{bottom:26.615383px;}
.y9d{bottom:75.104100px;}
.y110{bottom:75.105150px;}
.y1e4{bottom:79.142176px;}
.y184{bottom:79.204302px;}
.yc2{bottom:85.441650px;}
.y75{bottom:87.691950px;}
.y4e{bottom:87.692100px;}
.y134{bottom:88.603302px;}
.y1ab{bottom:89.478676px;}
.yea{bottom:89.942250px;}
.y1f{bottom:90.880050px;}
.y15c{bottom:92.661450px;}
.y1bd{bottom:94.911750px;}
.y9c{bottom:131.387635px;}
.y183{bottom:134.093894px;}
.y1e{bottom:135.908641px;}
.y10f{bottom:139.929795px;}
.y133{bottom:143.492894px;}
.ye9{bottom:143.969665px;}
.y4d{bottom:143.975635px;}
.y1e3{bottom:144.045790px;}
.yc1{bottom:150.266295px;}
.y74{bottom:153.450326px;}
.y1aa{bottom:154.382290px;}
.y9b{bottom:155.672575px;}
.y15b{bottom:157.938959px;}
.y182{bottom:158.472599px;}
.y1d{bottom:160.193582px;}
.y10e{bottom:164.303728px;}
.y132{bottom:167.871599px;}
.ye8{bottom:167.879548px;}
.y4c{bottom:168.260575px;}
.y1e2{bottom:168.330731px;}
.yc0{bottom:174.640228px;}
.y73{bottom:177.266445px;}
.y1a9{bottom:178.667231px;}
.y9a{bottom:180.051280px;}
.y15a{bottom:182.223900px;}
.y181{bottom:182.288719px;}
.y1c{bottom:184.009701px;}
.y10d{bottom:188.114144px;}
.y131{bottom:191.687719px;}
.y1e1{bottom:192.140844px;}
.ye7{bottom:192.164489px;}
.y4b{bottom:192.639280px;}
.ybf{bottom:198.450644px;}
.y72{bottom:201.637031px;}
.y1a8{bottom:202.477344px;}
.y99{bottom:204.336221px;}
.y159{bottom:206.133784px;}
.y180{bottom:206.573660px;}
.y1b{bottom:208.388406px;}
.y10c{bottom:211.930263px;}
.y130{bottom:215.972660px;}
.ye6{bottom:216.074373px;}
.y1e0{bottom:216.425785px;}
.y4a{bottom:216.924221px;}
.ybe{bottom:222.266763px;}
.y71{bottom:225.921971px;}
.y1a7{bottom:226.762285px;}
.y98{bottom:228.152341px;}
.y17f{bottom:230.014722px;}
.y158{bottom:230.418724px;}
.y1a{bottom:232.204526px;}
.y10b{bottom:235.840147px;}
.y12f{bottom:239.413722px;}
.y1df{bottom:240.335668px;}
.ye5{bottom:240.359314px;}
.y49{bottom:240.740341px;}
.ybd{bottom:246.176647px;}
.y70{bottom:249.738091px;}
.y1a6{bottom:250.672168px;}
.y97{bottom:252.437282px;}
.y157{bottom:254.703665px;}
.y17e{bottom:254.768484px;}
.y19{bottom:256.020645px;}
.y10a{bottom:260.125088px;}
.y12e{bottom:264.167484px;}
.y1de{bottom:264.620609px;}
.ye4{bottom:264.644254px;}
.y48{bottom:265.025282px;}
.ybc{bottom:270.461588px;}
.y6f{bottom:274.491853px;}
.y1a5{bottom:274.957109px;}
.y96{bottom:276.347165px;}
.y156{bottom:278.988606px;}
.y17d{bottom:279.053425px;}
.y18{bottom:280.389041px;}
.y109{bottom:284.410028px;}
.y12d{bottom:288.452425px;}
.y1dd{bottom:288.896987px;}
.ye3{bottom:288.929195px;}
.y47{bottom:288.935165px;}
.ybb{bottom:294.746528px;}
.y6e{bottom:298.401737px;}
.y1a4{bottom:299.233487px;}
.y95{bottom:300.163285px;}
.y17c{bottom:302.869544px;}
.y155{bottom:302.898490px;}
.y17{bottom:304.673981px;}
.y108{bottom:308.319912px;}
.y12c{bottom:312.268544px;}
.y46{bottom:312.751285px;}
.y1dc{bottom:313.181928px;}
.ye2{bottom:313.214136px;}
.yba{bottom:318.656412px;}
.y6d{bottom:322.686677px;}
.y1a3{bottom:323.518428px;}
.y94{bottom:324.073168px;}
.y154{bottom:327.183430px;}
.y17b{bottom:327.248249px;}
.y16{bottom:328.958922px;}
.y107{bottom:332.604853px;}
.y12b{bottom:336.647249px;}
.y45{bottom:336.661168px;}
.ye1{bottom:337.030256px;}
.y1db{bottom:337.091812px;}
.yb9{bottom:342.941353px;}
.y6c{bottom:346.502797px;}
.y1a2{bottom:347.428312px;}
.y93{bottom:348.358109px;}
.y153{bottom:350.997415px;}
.y17a{bottom:351.533190px;}
.y15{bottom:352.775041px;}
.y106{bottom:356.889793px;}
.ye0{bottom:360.471318px;}
.y1da{bottom:360.907931px;}
.y12a{bottom:360.932190px;}
.y44{bottom:360.946109px;}
.yb8{bottom:367.226293px;}
.y6b{bottom:370.412681px;}
.y1a1{bottom:371.244431px;}
.y92{bottom:372.643050px;}
.y152{bottom:374.907299px;}
.y179{bottom:375.349310px;}
.y14{bottom:376.684925px;}
.y105{bottom:380.705913px;}
.ydf{bottom:384.287438px;}
.y129{bottom:384.748310px;}
.y1d9{bottom:385.192872px;}
.y43{bottom:385.231050px;}
.yb7{bottom:391.042413px;}
.y6a{bottom:394.222241px;}
.y1a0{bottom:395.529372px;}
.y91{bottom:396.926100px;}
.y151{bottom:398.254597px;}
.y178{bottom:399.259193px;}
.y13{bottom:400.032223px;}
.y104{bottom:405.084618px;}
.yde{bottom:407.728500px;}
.y128{bottom:408.658193px;}
.y1d8{bottom:409.102756px;}
.y42{bottom:409.514100px;}
.yb6{bottom:415.421118px;}
.y69{bottom:417.663303px;}
.y19f{bottom:419.439256px;}
.y90{bottom:420.835800px;}
.y150{bottom:422.164481px;}
.y177{bottom:423.169077px;}
.y12{bottom:423.942107px;}
.y103{bottom:428.431916px;}
.ydd{bottom:431.532121px;}
.y1d7{bottom:432.450054px;}
.y127{bottom:432.568077px;}
.y41{bottom:433.423800px;}
.yb5{bottom:438.768416px;}
.y68{bottom:441.010601px;}
.y19e{bottom:442.786554px;}
.y8f{bottom:444.181200px;}
.y14f{bottom:445.973629px;}
.y176{bottom:446.516375px;}
.y11{bottom:447.289405px;}
.y102{bottom:452.341800px;}
.ydc{bottom:455.442005px;}
.y126{bottom:455.915375px;}
.y1d6{bottom:456.359938px;}
.y40{bottom:456.769200px;}
.yb4{bottom:462.678300px;}
.y67{bottom:464.920485px;}
.y19d{bottom:466.696438px;}
.y14e{bottom:469.320928px;}
.y175{bottom:469.863674px;}
.y10{bottom:471.199289px;}
.ydb{bottom:478.789303px;}
.y125{bottom:479.262674px;}
.y1d5{bottom:480.176057px;}
.y66{bottom:488.267783px;}
.y19c{bottom:490.512557px;}
.y14d{bottom:492.761990px;}
.y174{bottom:493.773557px;}
.y8e{bottom:494.175708px;}
.yf{bottom:494.546587px;}
.yda{bottom:502.230365px;}
.y124{bottom:503.172557px;}
.y1d4{bottom:503.617120px;}
.y3f{bottom:506.763708px;}
.y65{bottom:511.240025px;}
.y19b{bottom:513.953620px;}
.y14c{bottom:516.203053px;}
.y173{bottom:517.589677px;}
.ye{bottom:517.987650px;}
.y8d{bottom:521.177760px;}
.yd9{bottom:526.046485px;}
.y1d3{bottom:526.964418px;}
.y123{bottom:526.988677px;}
.y3e{bottom:533.765760px;}
.y64{bottom:535.524965px;}
.y19a{bottom:537.300918px;}
.y14b{bottom:540.487993px;}
.y172{bottom:541.030739px;}
.y8c{bottom:548.654256px;}
.yd8{bottom:550.425190px;}
.y122{bottom:550.429739px;}
.y1d2{bottom:550.874302px;}
.y101{bottom:552.197778px;}
.y63{bottom:559.809906px;}
.y199{bottom:561.210802px;}
.y3d{bottom:561.242256px;}
.yb3{bottom:562.534278px;}
.y14a{bottom:564.304113px;}
.y171{bottom:564.846859px;}
.yd{bottom:568.815582px;}
.y1d1{bottom:574.223302px;}
.yd7{bottom:574.241309px;}
.y121{bottom:574.245859px;}
.y8b{bottom:574.728048px;}
.y100{bottom:578.725386px;}
.y62{bottom:583.719790px;}
.y198{bottom:584.559802px;}
.y3c{bottom:587.316048px;}
.y149{bottom:587.745175px;}
.y170{bottom:587.819100px;}
.yb2{bottom:589.061886px;}
.y120{bottom:597.218100px;}
.yc{bottom:597.220338px;}
.y1d0{bottom:598.129198px;}
.yd6{bottom:598.526250px;}
.y8a{bottom:602.658360px;}
.yff{bottom:606.655698px;}
.y61{bottom:607.535909px;}
.y197{bottom:608.465698px;}
.y148{bottom:611.561295px;}
.y3b{bottom:615.246360px;}
.yb1{bottom:616.992198px;}
.y1cf{bottom:621.945318px;}
.yd5{bottom:622.436134px;}
.yb{bottom:624.222390px;}
.y89{bottom:630.506160px;}
.y60{bottom:631.820850px;}
.y196{bottom:632.281818px;}
.yfe{bottom:634.482870px;}
.y147{bottom:635.940000px;}
.y3a{bottom:643.094160px;}
.yb0{bottom:644.819370px;}
.y1ce{bottom:645.855202px;}
.yd4{bottom:646.721074px;}
.ya{bottom:652.544634px;}
.y195{bottom:656.191702px;}
.y88{bottom:658.436472px;}
.y146{bottom:659.756119px;}
.yfd{bottom:661.959366px;}
.y16f{bottom:666.129768px;}
.y1cd{bottom:669.202500px;}
.yd3{bottom:670.537194px;}
.y39{bottom:671.024472px;}
.yaf{bottom:672.295866px;}
.y11f{bottom:675.528768px;}
.y194{bottom:679.539000px;}
.y9{bottom:680.021130px;}
.y145{bottom:684.041060px;}
.y87{bottom:685.912968px;}
.yfc{bottom:689.435862px;}
.y16e{bottom:693.131820px;}
.yd2{bottom:694.822135px;}
.y38{bottom:698.500968px;}
.yae{bottom:699.772362px;}
.y11e{bottom:702.530820px;}
.y5f{bottom:703.865946px;}
.y8{bottom:707.972070px;}
.y144{bottom:708.326001px;}
.y1bc{bottom:710.185656px;}
.y86{bottom:713.760768px;}
.yfb{bottom:717.840618px;}
.yd1{bottom:719.200840px;}
.y16d{bottom:721.062132px;}
.y37{bottom:726.348768px;}
.yad{bottom:728.177118px;}
.y11d{bottom:730.461132px;}
.y5e{bottom:731.342442px;}
.y143{bottom:732.704706px;}
.y7{bottom:735.345426px;}
.y1bb{bottom:738.136596px;}
.y85{bottom:741.691080px;}
.yd0{bottom:743.485781px;}
.yfa{bottom:745.688418px;}
.y1cc{bottom:748.422552px;}
.y16c{bottom:748.909932px;}
.y36{bottom:754.279080px;}
.yac{bottom:756.024918px;}
.y142{bottom:756.520825px;}
.y11c{bottom:758.308932px;}
.y193{bottom:758.759052px;}
.y5d{bottom:759.664686px;}
.y6{bottom:763.275738px;}
.y1ba{bottom:765.984396px;}
.ycf{bottom:767.301900px;}
.y84{bottom:769.167576px;}
.yf9{bottom:773.639358px;}
.y1cb{bottom:775.899048px;}
.y16b{bottom:777.314688px;}
.y141{bottom:780.805766px;}
.y35{bottom:781.755576px;}
.yab{bottom:783.975858px;}
.y192{bottom:786.235548px;}
.y11b{bottom:786.713688px;}
.y5c{bottom:787.594998px;}
.y5{bottom:791.206050px;}
.y1b9{bottom:793.832196px;}
.y83{bottom:797.015376px;}
.yf8{bottom:801.115854px;}
.y1ca{bottom:803.746848px;}
.y16a{bottom:804.688044px;}
.y140{bottom:804.715650px;}
.y34{bottom:809.603376px;}
.yaa{bottom:811.452354px;}
.y191{bottom:814.083348px;}
.y11a{bottom:814.087044px;}
.y5b{bottom:815.525310px;}
.y1b8{bottom:821.308692px;}
.y82{bottom:824.574384px;}
.yf7{bottom:828.963654px;}
.y1c9{bottom:832.254744px;}
.y169{bottom:832.618356px;}
.y33{bottom:837.162384px;}
.ya9{bottom:839.300154px;}
.yce{bottom:841.542912px;}
.y119{bottom:842.017356px;}
.y190{bottom:842.591244px;}
.y5a{bottom:843.373110px;}
.y1b7{bottom:849.239004px;}
.y81{bottom:852.422184px;}
.yf6{bottom:857.368410px;}
.y1c8{bottom:859.628100px;}
.y168{bottom:860.548668px;}
.y32{bottom:865.010184px;}
.ya8{bottom:867.704910px;}
.ycd{bottom:869.473224px;}
.y118{bottom:869.947668px;}
.y18f{bottom:869.964600px;}
.y59{bottom:871.303422px;}
.y13f{bottom:875.331726px;}
.y1b6{bottom:877.086804px;}
.y80{bottom:880.269984px;}
.yf5{bottom:884.741766px;}
.y1c7{bottom:887.001456px;}
.y167{bottom:887.922024px;}
.y31{bottom:892.857984px;}
.ya7{bottom:895.078266px;}
.ycc{bottom:896.949720px;}
.y117{bottom:897.321024px;}
.y18e{bottom:897.337956px;}
.y58{bottom:899.233734px;}
.y13e{bottom:903.262038px;}
.y1b5{bottom:904.563300px;}
.y4{bottom:904.564601px;}
.y7f{bottom:908.200296px;}
.yf4{bottom:912.672078px;}
.y1c6{bottom:915.406212px;}
.y166{bottom:915.769824px;}
.y30{bottom:920.788296px;}
.ya6{bottom:923.008578px;}
.ycb{bottom:924.797520px;}
.y116{bottom:925.168824px;}
.y18d{bottom:925.742712px;}
.y3{bottom:926.599200px;}
.y57{bottom:926.607090px;}
.y13d{bottom:931.109838px;}
.y1b4{bottom:932.493612px;}
.y7e{bottom:936.130608px;}
.yf3{bottom:940.519878px;}
.y1c5{bottom:943.254012px;}
.y165{bottom:943.720764px;}
.y2f{bottom:948.718608px;}
.ya5{bottom:950.856378px;}
.y115{bottom:953.119764px;}
.yca{bottom:953.202276px;}
.y18c{bottom:953.590512px;}
.y56{bottom:954.537402px;}
.y13c{bottom:959.040150px;}
.y1b3{bottom:960.341412px;}
.y7d{bottom:964.452852px;}
.yf2{bottom:968.470818px;}
.y1c4{bottom:971.287464px;}
.y164{bottom:971.671704px;}
.y2e{bottom:977.040852px;}
.ya4{bottom:978.807318px;}
.y114{bottom:981.070704px;}
.yc9{bottom:981.524520px;}
.y18b{bottom:981.623964px;}
.y55{bottom:982.013898px;}
.y13b{bottom:986.970462px;}
.y1b2{bottom:987.817908px;}
.y7c{bottom:991.929348px;}
.yf1{bottom:996.421758px;}
.y1c3{bottom:999.135264px;}
.y2{bottom:999.556834px;}
.y163{bottom:999.622644px;}
.y2d{bottom:1004.517348px;}
.ya3{bottom:1006.758258px;}
.y113{bottom:1009.021644px;}
.y18a{bottom:1009.471764px;}
.yc8{bottom:1009.475460px;}
.y54{bottom:1009.861698px;}
.y13a{bottom:1014.818262px;}
.y1b1{bottom:1016.222664px;}
.y7b{bottom:1019.777148px;}
.yf0{bottom:1024.269558px;}
.y1c2{bottom:1026.983064px;}
.y162{bottom:1028.398704px;}
.y2c{bottom:1032.365148px;}
.ya2{bottom:1034.606058px;}
.y189{bottom:1037.319564px;}
.y1{bottom:1037.332500px;}
.y53{bottom:1037.792010px;}
.yc7{bottom:1037.797704px;}
.y139{bottom:1042.294758px;}
.y1b0{bottom:1044.070464px;}
.y7a{bottom:1048.181904px;}
.yef{bottom:1051.746054px;}
.y1c1{bottom:1054.459560px;}
.y161{bottom:1055.875200px;}
.y2b{bottom:1060.769904px;}
.ya1{bottom:1062.082554px;}
.y188{bottom:1064.796060px;}
.y52{bottom:1065.268506px;}
.yc6{bottom:1065.274200px;}
.y138{bottom:1069.771254px;}
.y1af{bottom:1071.546960px;}
.y79{bottom:1075.658400px;}
.yee{bottom:1079.222550px;}
.y1c0{bottom:1082.410500px;}
.y160{bottom:1083.723000px;}
.y2a{bottom:1088.246400px;}
.ya0{bottom:1089.559050px;}
.y187{bottom:1092.747000px;}
.yc5{bottom:1093.122000px;}
.y51{bottom:1093.590750px;}
.y137{bottom:1097.247750px;}
.y1ae{bottom:1099.497900px;}
.y27{bottom:1109.080500px;}
.y26{bottom:1125.280500px;}
.y78{bottom:1139.976647px;}
.yed{bottom:1139.985279px;}
.y25{bottom:1141.480500px;}
.y1bf{bottom:1142.704479px;}
.y15f{bottom:1144.954629px;}
.y9f{bottom:1150.321779px;}
.y29{bottom:1152.564647px;}
.y186{bottom:1153.040979px;}
.y112{bottom:1154.353629px;}
.y50{bottom:1154.814970px;}
.y77{bottom:1157.045400px;}
.yc4{bottom:1157.065270px;}
.yec{bottom:1157.515350px;}
.y136{bottom:1158.006694px;}
.y1be{bottom:1160.234550px;}
.y1ad{bottom:1160.253070px;}
.y15e{bottom:1162.484700px;}
.y9e{bottom:1167.851850px;}
.y28{bottom:1169.633400px;}
.y185{bottom:1170.571050px;}
.y111{bottom:1171.883700px;}
.y4f{bottom:1172.352600px;}
.yc3{bottom:1174.602900px;}
.y135{bottom:1176.384450px;}
.y1ac{bottom:1177.790700px;}
.y22{bottom:1220.315137px;}
.y20{bottom:1220.315225px;}
.hd{height:14.894649px;}
.he{height:15.904453px;}
.hb{height:16.008392px;}
.h10{height:37.666656px;}
.hf{height:43.794000px;}
.h12{height:50.222376px;}
.h13{height:50.749799px;}
.h9{height:52.229617px;}
.h4{height:57.452203px;}
.hc{height:57.618000px;}
.h11{height:59.708756px;}
.h3{height:62.778096px;}
.h1b{height:63.062318px;}
.h21{height:63.430569px;}
.h7{height:63.437375px;}
.h1f{height:63.445916px;}
.h19{height:63.456465px;}
.h23{height:63.461399px;}
.h14{height:63.463613px;}
.h1e{height:63.465257px;}
.h15{height:63.469853px;}
.h18{height:63.471401px;}
.h22{height:63.471626px;}
.h8{height:63.478613px;}
.h1d{height:63.812432px;}
.h1c{height:65.818108px;}
.ha{height:65.916523px;}
.h5{height:69.055453px;}
.h6{height:69.780656px;}
.h17{height:70.193216px;}
.h2{height:100.561957px;}
.h16{height:1250.247000px;}
.h1a{height:1252.498500px;}
.h20{height:1253.436000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w5{width:0.000000px;}
.w3{width:79.932000px;}
.w4{width:200.593500px;}
.w2{width:352.467000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x23{left:-789.397950px;}
.x15{left:-788.085300px;}
.x1e{left:-786.676950px;}
.x21{left:-765.600726px;}
.x16{left:-762.386508px;}
.x17{left:-761.064914px;}
.x1f{left:-758.360146px;}
.x0{left:0.000000px;}
.x9{left:42.519836px;}
.x1c{left:85.028814px;}
.x5{left:86.467350px;}
.x12{left:87.749964px;}
.x13{left:89.070000px;}
.x22{left:103.515300px;}
.xd{left:104.828100px;}
.x18{left:106.236450px;}
.x7{left:112.081815px;}
.x6{left:113.469402px;}
.x14{left:115.244381px;}
.x20{left:127.312674px;}
.xe{left:130.526742px;}
.xf{left:131.848486px;}
.x19{left:134.553254px;}
.x1{left:157.992150px;}
.x2{left:159.792420px;}
.xc{left:162.004500px;}
.x1b{left:290.761189px;}
.x11{left:293.011545px;}
.x4{left:335.297669px;}
.xb{left:346.160248px;}
.x3{left:348.330900px;}
.x1a{left:644.889300px;}
.x10{left:646.764600px;}
.x1d{left:751.611300px;}
.x8{left:752.923950px;}
.xa{left:770.462219px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls44{letter-spacing:-10.934995pt;}
.ls20{letter-spacing:-8.487953pt;}
.ls2c{letter-spacing:-8.267923pt;}
.ls2b{letter-spacing:-8.134570pt;}
.ls4b{letter-spacing:-6.601003pt;}
.ls45{letter-spacing:-4.600699pt;}
.ls28{letter-spacing:-4.333992pt;}
.ls35{letter-spacing:-4.267315pt;}
.ls34{letter-spacing:-4.000608pt;}
.ls36{letter-spacing:-3.933931pt;}
.ls2e{letter-spacing:-3.850557pt;}
.ls38{letter-spacing:-3.733901pt;}
.ls23{letter-spacing:-3.267163pt;}
.ls2d{letter-spacing:-3.067133pt;}
.ls52{letter-spacing:-3.000456pt;}
.ls22{letter-spacing:-2.977118pt;}
.ls41{letter-spacing:-2.933779pt;}
.ls3d{letter-spacing:-2.800426pt;}
.ls4a{letter-spacing:-2.723746pt;}
.ls49{letter-spacing:-2.600395pt;}
.ls3f{letter-spacing:-2.597060pt;}
.ls1f{letter-spacing:-2.467042pt;}
.ls1d{letter-spacing:-2.343689pt;}
.lsc{letter-spacing:-2.333688pt;}
.ls4f{letter-spacing:-2.066981pt;}
.ls39{letter-spacing:-2.026974pt;}
.ls1{letter-spacing:-2.026971pt;}
.ls46{letter-spacing:-2.000304pt;}
.lsd{letter-spacing:-1.933627pt;}
.ls1b{letter-spacing:-1.866950pt;}
.ls4c{letter-spacing:-1.733597pt;}
.ls3{letter-spacing:-1.706923pt;}
.ls50{letter-spacing:-1.646916pt;}
.ls24{letter-spacing:-1.600243pt;}
.ls29{letter-spacing:-1.533566pt;}
.ls26{letter-spacing:-1.466890pt;}
.ls3a{letter-spacing:-1.456887pt;}
.lsa{letter-spacing:-1.400213pt;}
.ls27{letter-spacing:-1.333536pt;}
.lse{letter-spacing:-1.266859pt;}
.ls54{letter-spacing:-1.190172pt;}
.ls2a{letter-spacing:-1.140173pt;}
.ls37{letter-spacing:-1.076830pt;}
.ls1c{letter-spacing:-1.066829pt;}
.lsf{letter-spacing:-1.000152pt;}
.ls10{letter-spacing:-0.933475pt;}
.ls40{letter-spacing:-0.666768pt;}
.ls0{letter-spacing:0.000000pt;}
.ls48{letter-spacing:0.953472pt;}
.ls17{letter-spacing:1.173504pt;}
.ls3c{letter-spacing:1.246848pt;}
.lsb{letter-spacing:1.266859pt;}
.ls30{letter-spacing:1.320192pt;}
.ls15{letter-spacing:1.466880pt;}
.ls13{letter-spacing:1.540224pt;}
.ls4e{letter-spacing:1.613568pt;}
.ls11{letter-spacing:1.646916pt;}
.ls3e{letter-spacing:1.666920pt;}
.ls18{letter-spacing:1.686912pt;}
.ls4{letter-spacing:1.906944pt;}
.ls25{letter-spacing:1.980288pt;}
.ls16{letter-spacing:2.053632pt;}
.ls12{letter-spacing:2.126976pt;}
.ls19{letter-spacing:2.200320pt;}
.ls31{letter-spacing:2.273664pt;}
.ls9{letter-spacing:2.347008pt;}
.ls42{letter-spacing:2.400365pt;}
.ls6{letter-spacing:2.493696pt;}
.ls14{letter-spacing:2.567040pt;}
.ls51{letter-spacing:2.733749pt;}
.ls7{letter-spacing:2.860416pt;}
.ls1a{letter-spacing:2.933760pt;}
.ls32{letter-spacing:3.153792pt;}
.ls5{letter-spacing:3.300480pt;}
.ls8{letter-spacing:3.593856pt;}
.ls43{letter-spacing:3.733901pt;}
.ls21{letter-spacing:4.033914pt;}
.ls47{letter-spacing:4.327296pt;}
.ls2{letter-spacing:4.854050pt;}
.ls33{letter-spacing:4.987392pt;}
.ls53{letter-spacing:5.647488pt;}
.ls1e{letter-spacing:13.735311pt;}
.ls4d{letter-spacing:20.669733pt;}
.ls2f{letter-spacing:20.836267pt;}
.ls3b{letter-spacing:20.836800pt;}
.ws89{word-spacing:-23.323392pt;}
.ws88{word-spacing:-21.489792pt;}
.wsff{word-spacing:-20.609664pt;}
.wsc0{word-spacing:-20.536320pt;}
.ws5a{word-spacing:-20.389632pt;}
.wsc1{word-spacing:-20.316288pt;}
.ws93{word-spacing:-20.242944pt;}
.wsbf{word-spacing:-19.876224pt;}
.ws87{word-spacing:-19.656192pt;}
.ws59{word-spacing:-19.509504pt;}
.wsa6{word-spacing:-18.336120pt;}
.wsa4{word-spacing:-18.336000pt;}
.ws0{word-spacing:-16.669200pt;}
.ws100{word-spacing:-16.312361pt;}
.wsf4{word-spacing:-16.135786pt;}
.ws8b{word-spacing:-15.835733pt;}
.ws5f{word-spacing:-15.669048pt;}
.ws5c{word-spacing:-15.335664pt;}
.ws5d{word-spacing:-15.268987pt;}
.ws5b{word-spacing:-15.202310pt;}
.ws60{word-spacing:-15.135634pt;}
.wsd8{word-spacing:-14.935603pt;}
.ws5e{word-spacing:-14.802250pt;}
.ws32{word-spacing:-14.202158pt;}
.wsa5{word-spacing:-13.868774pt;}
.ws4f{word-spacing:-13.735311pt;}
.ws61{word-spacing:-13.651976pt;}
.wsa7{word-spacing:-13.238673pt;}
.ws8a{word-spacing:-12.735269pt;}
.wsfe{word-spacing:-10.468258pt;}
.wse6{word-spacing:-9.934843pt;}
.ws85{word-spacing:-8.868014pt;}
.wsb6{word-spacing:-8.667984pt;}
.wsb9{word-spacing:-8.401277pt;}
.ws1b{word-spacing:-7.534478pt;}
.ws33{word-spacing:-7.347780pt;}
.wsf3{word-spacing:-7.001064pt;}
.wse5{word-spacing:-6.734357pt;}
.wsb5{word-spacing:-5.934235pt;}
.ws42{word-spacing:-5.720832pt;}
.ws24{word-spacing:-5.667528pt;}
.ws103{word-spacing:-5.647488pt;}
.wsf2{word-spacing:-5.510835pt;}
.ws7d{word-spacing:-5.334144pt;}
.wsea{word-spacing:-5.320780pt;}
.ws16{word-spacing:-4.934083pt;}
.ws77{word-spacing:-4.133962pt;}
.ws50{word-spacing:-4.033914pt;}
.ws97{word-spacing:-4.000608pt;}
.ws4e{word-spacing:-3.800576pt;}
.ws9a{word-spacing:-3.667224pt;}
.wsde{word-spacing:-3.667200pt;}
.ws1d{word-spacing:-3.467194pt;}
.ws9{word-spacing:-3.300480pt;}
.wsa3{word-spacing:-3.267163pt;}
.ws48{word-spacing:-2.933760pt;}
.ws36{word-spacing:-2.860416pt;}
.wsfa{word-spacing:-2.733749pt;}
.ws40{word-spacing:-2.567040pt;}
.ws73{word-spacing:-2.493696pt;}
.ws102{word-spacing:-2.347019pt;}
.ws2a{word-spacing:-2.333688pt;}
.ws90{word-spacing:-2.273664pt;}
.wsdd{word-spacing:-2.200320pt;}
.ws7f{word-spacing:-2.133658pt;}
.ws2d{word-spacing:-2.000304pt;}
.ws6b{word-spacing:-1.906944pt;}
.wsb0{word-spacing:-1.666920pt;}
.ws2c{word-spacing:-1.646916pt;}
.wse1{word-spacing:-1.613568pt;}
.ws8e{word-spacing:-1.540224pt;}
.ws71{word-spacing:-1.173504pt;}
.ws7a{word-spacing:-1.133506pt;}
.ws23{word-spacing:-1.000152pt;}
.ws13{word-spacing:-0.933475pt;}
.wse8{word-spacing:-0.866798pt;}
.ws82{word-spacing:-0.800122pt;}
.ws64{word-spacing:-0.693437pt;}
.ws14{word-spacing:-0.666768pt;}
.wsd7{word-spacing:-0.333384pt;}
.ws91{word-spacing:-0.293376pt;}
.ws41{word-spacing:-0.146688pt;}
.ws2{word-spacing:0.000000pt;}
.ws6a{word-spacing:0.146688pt;}
.ws43{word-spacing:0.220032pt;}
.ws4{word-spacing:0.780115pt;}
.ws78{word-spacing:0.800122pt;}
.ws55{word-spacing:0.866798pt;}
.wscf{word-spacing:0.933475pt;}
.ws20{word-spacing:1.000152pt;}
.ws4d{word-spacing:1.066829pt;}
.ws9f{word-spacing:1.076830pt;}
.wsac{word-spacing:1.100160pt;}
.ws7c{word-spacing:1.140173pt;}
.wsfb{word-spacing:1.333536pt;}
.wsa2{word-spacing:1.456887pt;}
.wsb7{word-spacing:1.466890pt;}
.ws69{word-spacing:1.540224pt;}
.wsd4{word-spacing:1.600243pt;}
.wsf1{word-spacing:1.646916pt;}
.ws51{word-spacing:1.836945pt;}
.wsdb{word-spacing:1.906944pt;}
.ws1a{word-spacing:1.933627pt;}
.ws3{word-spacing:2.026971pt;}
.wsaf{word-spacing:2.026974pt;}
.ws66{word-spacing:2.053632pt;}
.wsf0{word-spacing:2.066981pt;}
.ws38{word-spacing:2.126976pt;}
.wsda{word-spacing:2.133653pt;}
.ws7b{word-spacing:2.200334pt;}
.wsce{word-spacing:2.267011pt;}
.ws17{word-spacing:2.333688pt;}
.ws76{word-spacing:2.343689pt;}
.ws3d{word-spacing:2.347008pt;}
.wsef{word-spacing:2.420352pt;}
.ws9c{word-spacing:2.467042pt;}
.wsc7{word-spacing:2.493696pt;}
.wsbd{word-spacing:2.533718pt;}
.ws2e{word-spacing:2.600395pt;}
.ws26{word-spacing:2.667072pt;}
.ws6c{word-spacing:2.713728pt;}
.wse9{word-spacing:2.723746pt;}
.wsbc{word-spacing:2.733749pt;}
.wsa9{word-spacing:2.787072pt;}
.ws8f{word-spacing:2.860416pt;}
.wse7{word-spacing:2.867102pt;}
.ws84{word-spacing:2.977118pt;}
.ws95{word-spacing:3.000456pt;}
.wsaa{word-spacing:3.080448pt;}
.wsa{word-spacing:3.153792pt;}
.wsd2{word-spacing:3.267163pt;}
.wsdc{word-spacing:3.300480pt;}
.wsd1{word-spacing:3.400517pt;}
.wsc4{word-spacing:3.447168pt;}
.wsd9{word-spacing:3.520528pt;}
.wse0{word-spacing:3.667200pt;}
.ws7{word-spacing:3.667224pt;}
.wsa8{word-spacing:3.680552pt;}
.wsa0{word-spacing:3.733901pt;}
.ws8{word-spacing:3.740544pt;}
.ws62{word-spacing:3.787235pt;}
.ws8c{word-spacing:4.000587pt;}
.ws101{word-spacing:4.000600pt;}
.ws25{word-spacing:4.000608pt;}
.wsdf{word-spacing:4.033920pt;}
.ws80{word-spacing:4.067285pt;}
.wsc9{word-spacing:4.107264pt;}
.wsfd{word-spacing:4.180634pt;}
.ws9b{word-spacing:4.267315pt;}
.wsc3{word-spacing:4.320634pt;}
.ws63{word-spacing:4.320648pt;}
.ws30{word-spacing:4.333992pt;}
.ws74{word-spacing:4.400640pt;}
.ws86{word-spacing:4.400669pt;}
.wsd{word-spacing:4.473984pt;}
.ws52{word-spacing:4.497348pt;}
.ws21{word-spacing:4.667376pt;}
.wsab{word-spacing:4.767360pt;}
.wseb{word-spacing:5.060736pt;}
.ws109{word-spacing:5.134080pt;}
.ws6{word-spacing:5.200790pt;}
.ws44{word-spacing:5.207424pt;}
.ws31{word-spacing:5.267467pt;}
.ws1{word-spacing:5.334133pt;}
.ws1e{word-spacing:5.334144pt;}
.ws2f{word-spacing:5.400821pt;}
.ws4b{word-spacing:5.427456pt;}
.ws58{word-spacing:5.600851pt;}
.ws15{word-spacing:5.667528pt;}
.ws45{word-spacing:5.794176pt;}
.wsfc{word-spacing:5.800882pt;}
.wsc2{word-spacing:6.000880pt;}
.ws27{word-spacing:6.000912pt;}
.ws67{word-spacing:6.087552pt;}
.ws107{word-spacing:6.160896pt;}
.ws108{word-spacing:6.454272pt;}
.ws46{word-spacing:6.600960pt;}
.ws29{word-spacing:6.601003pt;}
.ws18{word-spacing:6.667680pt;}
.ws106{word-spacing:6.674304pt;}
.ws8d{word-spacing:6.747648pt;}
.wsee{word-spacing:6.820992pt;}
.wsc8{word-spacing:6.894336pt;}
.ws1c{word-spacing:6.934387pt;}
.ws3f{word-spacing:6.967680pt;}
.ws3e{word-spacing:7.187712pt;}
.wsd6{word-spacing:7.201094pt;}
.ws56{word-spacing:7.267771pt;}
.wsc6{word-spacing:7.334400pt;}
.ws54{word-spacing:7.334448pt;}
.ws4c{word-spacing:7.534478pt;}
.ws9d{word-spacing:7.601155pt;}
.ws34{word-spacing:7.681126pt;}
.ws49{word-spacing:7.847808pt;}
.ws65{word-spacing:8.067840pt;}
.ws7e{word-spacing:8.134570pt;}
.ws47{word-spacing:8.141184pt;}
.ws3a{word-spacing:8.214528pt;}
.ws2b{word-spacing:8.267923pt;}
.wsb{word-spacing:8.434560pt;}
.wsd3{word-spacing:8.601307pt;}
.wsed{word-spacing:8.727936pt;}
.ws5{word-spacing:8.747979pt;}
.ws22{word-spacing:8.934691pt;}
.ws19{word-spacing:9.001368pt;}
.ws39{word-spacing:9.021312pt;}
.wsec{word-spacing:9.094656pt;}
.ws3c{word-spacing:9.461376pt;}
.wse4{word-spacing:9.501440pt;}
.wscd{word-spacing:9.601459pt;}
.ws98{word-spacing:9.668136pt;}
.ws3b{word-spacing:10.121472pt;}
.wsf7{word-spacing:10.134874pt;}
.ws1f{word-spacing:10.268227pt;}
.wsb3{word-spacing:10.334904pt;}
.wsc{word-spacing:10.341504pt;}
.ws81{word-spacing:10.401581pt;}
.wscb{word-spacing:10.468258pt;}
.ws68{word-spacing:10.854912pt;}
.wsd0{word-spacing:10.934995pt;}
.wsbb{word-spacing:11.001672pt;}
.wsae{word-spacing:11.368320pt;}
.ws70{word-spacing:11.441664pt;}
.ws35{word-spacing:11.515008pt;}
.ws92{word-spacing:11.735040pt;}
.wscc{word-spacing:11.868470pt;}
.ws75{word-spacing:11.935147pt;}
.ws28{word-spacing:12.001824pt;}
.ws10{word-spacing:12.028416pt;}
.ws37{word-spacing:12.101760pt;}
.ws83{word-spacing:12.268531pt;}
.wsd5{word-spacing:12.335208pt;}
.ws72{word-spacing:12.761856pt;}
.wsf{word-spacing:12.981888pt;}
.wse{word-spacing:13.055232pt;}
.ws105{word-spacing:13.275264pt;}
.ws94{word-spacing:13.495296pt;}
.ws99{word-spacing:13.668744pt;}
.ws6e{word-spacing:13.715328pt;}
.wsb8{word-spacing:13.735421pt;}
.ws6d{word-spacing:13.788672pt;}
.wse2{word-spacing:14.002128pt;}
.wsca{word-spacing:14.448768pt;}
.ws4a{word-spacing:16.209024pt;}
.wsf5{word-spacing:16.402493pt;}
.ws6f{word-spacing:16.429056pt;}
.wsf6{word-spacing:16.535846pt;}
.wsf8{word-spacing:16.602523pt;}
.wsb1{word-spacing:17.135938pt;}
.wse3{word-spacing:17.936059pt;}
.wsbe{word-spacing:18.336120pt;}
.ws79{word-spacing:18.669504pt;}
.wsb2{word-spacing:19.602979pt;}
.wsba{word-spacing:20.003040pt;}
.wsad{word-spacing:20.096256pt;}
.wsb4{word-spacing:20.269747pt;}
.ws96{word-spacing:20.336424pt;}
.ws10a{word-spacing:20.462976pt;}
.wsa1{word-spacing:21.219883pt;}
.ws12{word-spacing:23.203526pt;}
.ws104{word-spacing:24.716928pt;}
.wsf9{word-spacing:25.003800pt;}
.ws9e{word-spacing:28.537670pt;}
.ws11{word-spacing:29.671176pt;}
.wsc5{word-spacing:33.884928pt;}
.ws53{word-spacing:52.007904pt;}
.ws57{word-spacing:53.274763pt;}
._18{margin-left:-48.039362pt;}
._19{margin-left:-45.953603pt;}
._2a{margin-left:-37.872685pt;}
._27{margin-left:-36.926762pt;}
._16{margin-left:-35.938560pt;}
._2e{margin-left:-33.047983pt;}
._15{margin-left:-31.235879pt;}
._2b{margin-left:-23.376890pt;}
._1f{margin-left:-19.809508pt;}
._21{margin-left:-18.762786pt;}
._1e{margin-left:-17.621350pt;}
._2d{margin-left:-16.330497pt;}
._10{margin-left:-13.602067pt;}
._29{margin-left:-12.021034pt;}
._f{margin-left:-10.584126pt;}
._12{margin-left:-9.089349pt;}
._17{margin-left:-7.921152pt;}
._1d{margin-left:-6.862883pt;}
._13{margin-left:-5.243411pt;}
._d{margin-left:-4.158018pt;}
._e{margin-left:-3.216502pt;}
._2{margin-left:-2.229668pt;}
._0{margin-left:-0.960144pt;}
._3{width:1.600240pt;}
._1{width:2.763081pt;}
._7{width:4.160624pt;}
._6{width:5.713130pt;}
._5{width:7.385077pt;}
._4{width:8.287344pt;}
._c{width:9.245303pt;}
._28{width:10.156665pt;}
._8{width:11.074944pt;}
._a{width:12.037660pt;}
._9{width:13.201630pt;}
._b{width:14.341143pt;}
._24{width:15.655738pt;}
._23{width:16.601246pt;}
._22{width:17.869102pt;}
._2c{width:18.920401pt;}
._1c{width:23.886289pt;}
._20{width:24.860791pt;}
._25{width:26.433188pt;}
._11{width:27.337488pt;}
._26{width:29.845324pt;}
._14{width:44.897542pt;}
._1a{width:45.982936pt;}
._1b{width:47.649856pt;}
.fs8{font-size:33.338133pt;}
.fs7{font-size:40.005867pt;}
.fs6{font-size:48.000000pt;}
.fs9{font-size:53.341333pt;}
.fs4{font-size:63.342933pt;}
.fs2{font-size:66.676800pt;}
.fs5{font-size:70.010133pt;}
.fs3{font-size:73.344000pt;}
.fs1{font-size:86.679467pt;}
.fs0{font-size:106.682667pt;}
.y0{bottom:0.000000pt;}
.y21{bottom:3.720000pt;}
.y23{bottom:3.720013pt;}
.y15d{bottom:8.354667pt;}
.yeb{bottom:9.188000pt;}
.y76{bottom:11.189333pt;}
.y24{bottom:23.658119pt;}
.y9d{bottom:66.759200pt;}
.y110{bottom:66.760133pt;}
.y1e4{bottom:70.348601pt;}
.y184{bottom:70.403824pt;}
.yc2{bottom:75.948133pt;}
.y75{bottom:77.948400pt;}
.y4e{bottom:77.948533pt;}
.y134{bottom:78.758491pt;}
.y1ab{bottom:79.536601pt;}
.yea{bottom:79.948667pt;}
.y1f{bottom:80.782267pt;}
.y15c{bottom:82.365733pt;}
.y1bd{bottom:84.366000pt;}
.y9c{bottom:116.789009pt;}
.y183{bottom:119.194573pt;}
.y1e{bottom:120.807681pt;}
.y10f{bottom:124.382040pt;}
.y133{bottom:127.549239pt;}
.ye9{bottom:127.973035pt;}
.y4d{bottom:127.978342pt;}
.y1e3{bottom:128.040702pt;}
.yc1{bottom:133.570040pt;}
.y74{bottom:136.400289pt;}
.y1aa{bottom:137.228702pt;}
.y9b{bottom:138.375623pt;}
.y15b{bottom:140.390186pt;}
.y182{bottom:140.864533pt;}
.y1d{bottom:142.394295pt;}
.y10e{bottom:146.047758pt;}
.y132{bottom:149.219199pt;}
.ye8{bottom:149.226265pt;}
.y4c{bottom:149.564956pt;}
.y1e2{bottom:149.627316pt;}
.yc0{bottom:155.235758pt;}
.y73{bottom:157.570173pt;}
.y1a9{bottom:158.815316pt;}
.y9a{bottom:160.045583pt;}
.y15a{bottom:161.976800pt;}
.y181{bottom:162.034417pt;}
.y1c{bottom:163.564179pt;}
.y10d{bottom:167.212572pt;}
.y131{bottom:170.389083pt;}
.y1e1{bottom:170.791861pt;}
.ye7{bottom:170.812879pt;}
.y4b{bottom:171.234916pt;}
.ybf{bottom:176.400572pt;}
.y72{bottom:179.232916pt;}
.y1a8{bottom:179.979861pt;}
.y99{bottom:181.632197pt;}
.y159{bottom:183.230030pt;}
.y180{bottom:183.621031pt;}
.y1b{bottom:185.234139pt;}
.y10c{bottom:188.382456pt;}
.y130{bottom:191.975697pt;}
.ye6{bottom:192.066109pt;}
.y1e0{bottom:192.378475pt;}
.y4a{bottom:192.821530pt;}
.ybe{bottom:197.570456pt;}
.y71{bottom:200.819530pt;}
.y1a7{bottom:201.566475pt;}
.y98{bottom:202.802081pt;}
.y17f{bottom:204.457531pt;}
.y158{bottom:204.816644pt;}
.y1a{bottom:206.404023pt;}
.y10b{bottom:209.635686pt;}
.y12f{bottom:212.812197pt;}
.y1df{bottom:213.631705pt;}
.ye5{bottom:213.652723pt;}
.y49{bottom:213.991414pt;}
.ybd{bottom:218.823686pt;}
.y70{bottom:221.989414pt;}
.y1a6{bottom:222.819705pt;}
.y97{bottom:224.388695pt;}
.y157{bottom:226.403258pt;}
.y17e{bottom:226.460875pt;}
.y19{bottom:227.573907pt;}
.y10a{bottom:231.222300pt;}
.y12e{bottom:234.815541pt;}
.y1de{bottom:235.218319pt;}
.ye4{bottom:235.239337pt;}
.y48{bottom:235.578028pt;}
.ybc{bottom:240.410300pt;}
.y6f{bottom:243.992758pt;}
.y1a5{bottom:244.406319pt;}
.y96{bottom:245.641925pt;}
.y156{bottom:247.989872pt;}
.y17d{bottom:248.047489pt;}
.y18{bottom:249.234703pt;}
.y109{bottom:252.808914pt;}
.y12d{bottom:256.402155pt;}
.y1dd{bottom:256.797322pt;}
.ye3{bottom:256.825951pt;}
.y47{bottom:256.831258pt;}
.ybb{bottom:261.996914pt;}
.y6e{bottom:265.245988pt;}
.y1a4{bottom:265.985322pt;}
.y95{bottom:266.811809pt;}
.y17c{bottom:269.217373pt;}
.y155{bottom:269.243102pt;}
.y17{bottom:270.821317pt;}
.y108{bottom:274.062144pt;}
.y12c{bottom:277.572039pt;}
.y46{bottom:278.001142pt;}
.y1dc{bottom:278.383936pt;}
.ye2{bottom:278.412565pt;}
.yba{bottom:283.250144pt;}
.y6d{bottom:286.832602pt;}
.y1a3{bottom:287.571936pt;}
.y94{bottom:288.065039pt;}
.y154{bottom:290.829716pt;}
.y17b{bottom:290.887333pt;}
.y16{bottom:292.407931pt;}
.y107{bottom:295.648758pt;}
.y12b{bottom:299.241999pt;}
.y45{bottom:299.254372pt;}
.ye1{bottom:299.582449pt;}
.y1db{bottom:299.637166pt;}
.yb9{bottom:304.836758pt;}
.y6c{bottom:308.002486pt;}
.y1a2{bottom:308.825166pt;}
.y93{bottom:309.651653pt;}
.y153{bottom:311.997702pt;}
.y17a{bottom:312.473947pt;}
.y15{bottom:313.577815pt;}
.y106{bottom:317.235372pt;}
.ye0{bottom:320.418949pt;}
.y1da{bottom:320.807050pt;}
.y12a{bottom:320.828613pt;}
.y44{bottom:320.840986pt;}
.yb8{bottom:326.423372pt;}
.y6b{bottom:329.255716pt;}
.y1a1{bottom:329.995050pt;}
.y92{bottom:331.238267pt;}
.y152{bottom:333.250932pt;}
.y179{bottom:333.643831pt;}
.y14{bottom:334.831045pt;}
.y105{bottom:338.405256pt;}
.ydf{bottom:341.588833pt;}
.y129{bottom:341.998497pt;}
.y1d9{bottom:342.393664pt;}
.y43{bottom:342.427600pt;}
.yb7{bottom:347.593256pt;}
.y6a{bottom:350.419769pt;}
.y1a0{bottom:351.581664pt;}
.y91{bottom:352.823200pt;}
.y151{bottom:354.004086pt;}
.y178{bottom:354.897061pt;}
.y13{bottom:355.584199pt;}
.y104{bottom:360.075216pt;}
.yde{bottom:362.425333pt;}
.y128{bottom:363.251727pt;}
.y1d8{bottom:363.646894pt;}
.y42{bottom:364.012533pt;}
.yb6{bottom:369.263216pt;}
.y69{bottom:371.256269pt;}
.y19f{bottom:372.834894pt;}
.y90{bottom:374.076267pt;}
.y150{bottom:375.257316pt;}
.y177{bottom:376.150291pt;}
.y12{bottom:376.837429pt;}
.y103{bottom:380.828370pt;}
.ydd{bottom:383.584107pt;}
.y1d7{bottom:384.400048pt;}
.y127{bottom:384.504957pt;}
.y41{bottom:385.265600pt;}
.yb5{bottom:390.016370pt;}
.y68{bottom:392.009423pt;}
.y19e{bottom:393.588048pt;}
.y8f{bottom:394.827733pt;}
.y14f{bottom:396.421004pt;}
.y176{bottom:396.903445pt;}
.y11{bottom:397.590583pt;}
.y102{bottom:402.081600pt;}
.ydc{bottom:404.837337pt;}
.y126{bottom:405.258111pt;}
.y1d6{bottom:405.653278pt;}
.y40{bottom:406.017067pt;}
.yb4{bottom:411.269600pt;}
.y67{bottom:413.262653pt;}
.y19d{bottom:414.841278pt;}
.y14e{bottom:417.174158pt;}
.y175{bottom:417.656599pt;}
.y10{bottom:418.843813pt;}
.ydb{bottom:425.590491pt;}
.y125{bottom:426.011265pt;}
.y1d5{bottom:426.823162pt;}
.y66{bottom:434.015807pt;}
.y19c{bottom:436.011162pt;}
.y14d{bottom:438.010658pt;}
.y174{bottom:438.909829pt;}
.y8e{bottom:439.267296pt;}
.yf{bottom:439.596967pt;}
.yda{bottom:446.426991pt;}
.y124{bottom:447.264495pt;}
.y1d4{bottom:447.659662pt;}
.y3f{bottom:450.456629pt;}
.y65{bottom:454.435577pt;}
.y19b{bottom:456.847662pt;}
.y14c{bottom:458.847158pt;}
.y173{bottom:460.079713pt;}
.ye{bottom:460.433467pt;}
.y8d{bottom:463.269120pt;}
.yd9{bottom:467.596875pt;}
.y1d3{bottom:468.412816pt;}
.y123{bottom:468.434379pt;}
.y3e{bottom:474.458453pt;}
.y64{bottom:476.022191pt;}
.y19a{bottom:477.600816pt;}
.y14b{bottom:480.433772pt;}
.y172{bottom:480.916213pt;}
.y8c{bottom:487.692672pt;}
.yd8{bottom:489.266835pt;}
.y122{bottom:489.270879pt;}
.y1d2{bottom:489.666046pt;}
.y101{bottom:490.842469pt;}
.y63{bottom:497.608805pt;}
.y199{bottom:498.854046pt;}
.y3d{bottom:498.882005pt;}
.yb3{bottom:500.030469pt;}
.y14a{bottom:501.603656pt;}
.y171{bottom:502.086097pt;}
.yd{bottom:505.613851pt;}
.y1d1{bottom:510.420713pt;}
.yd7{bottom:510.436719pt;}
.y121{bottom:510.440763pt;}
.y8b{bottom:510.869376pt;}
.y100{bottom:514.422565pt;}
.y62{bottom:518.862035pt;}
.y198{bottom:519.608713pt;}
.y3c{bottom:522.058709pt;}
.y149{bottom:522.440156pt;}
.y170{bottom:522.505867pt;}
.yb2{bottom:523.610565pt;}
.y120{bottom:530.860533pt;}
.yc{bottom:530.862523pt;}
.y1d0{bottom:531.670399pt;}
.yd6{bottom:532.023333pt;}
.y8a{bottom:535.696320pt;}
.yff{bottom:539.249509pt;}
.y61{bottom:540.031919pt;}
.y197{bottom:540.858399pt;}
.y148{bottom:543.610040pt;}
.y3b{bottom:546.885653pt;}
.yb1{bottom:548.437509pt;}
.y1cf{bottom:552.840283pt;}
.yd5{bottom:553.276563pt;}
.yb{bottom:554.864347pt;}
.y89{bottom:560.449920pt;}
.y60{bottom:561.618533pt;}
.y196{bottom:562.028283pt;}
.yfe{bottom:563.984773pt;}
.y147{bottom:565.280000pt;}
.y3a{bottom:571.639253pt;}
.yb0{bottom:573.172773pt;}
.y1ce{bottom:574.093513pt;}
.yd4{bottom:574.863177pt;}
.ya{bottom:580.039675pt;}
.y195{bottom:583.281513pt;}
.y88{bottom:585.276864pt;}
.y146{bottom:586.449884pt;}
.yfd{bottom:588.408325pt;}
.y16f{bottom:592.115349pt;}
.y1cd{bottom:594.846667pt;}
.yd3{bottom:596.033061pt;}
.y39{bottom:596.466197pt;}
.yaf{bottom:597.596325pt;}
.y11f{bottom:600.470016pt;}
.y194{bottom:604.034667pt;}
.y9{bottom:604.463227pt;}
.y145{bottom:608.036498pt;}
.y87{bottom:609.700416pt;}
.yfc{bottom:612.831877pt;}
.y16e{bottom:616.117173pt;}
.yd2{bottom:617.619675pt;}
.y38{bottom:620.889749pt;}
.yae{bottom:622.019877pt;}
.y11e{bottom:624.471840pt;}
.y5f{bottom:625.658619pt;}
.y8{bottom:629.308507pt;}
.y144{bottom:629.623112pt;}
.y1bc{bottom:631.276139pt;}
.y86{bottom:634.454016pt;}
.yfb{bottom:638.080549pt;}
.yd1{bottom:639.289635pt;}
.y16d{bottom:640.944117pt;}
.y37{bottom:645.643349pt;}
.yad{bottom:647.268549pt;}
.y11d{bottom:649.298784pt;}
.y5e{bottom:650.082171pt;}
.y143{bottom:651.293072pt;}
.y7{bottom:653.640379pt;}
.y1bb{bottom:656.121419pt;}
.y85{bottom:659.280960pt;}
.yd0{bottom:660.876249pt;}
.yfa{bottom:662.834149pt;}
.y1cc{bottom:665.264491pt;}
.y16c{bottom:665.697717pt;}
.y36{bottom:670.470293pt;}
.yac{bottom:672.022149pt;}
.y142{bottom:672.462956pt;}
.y11c{bottom:674.052384pt;}
.y193{bottom:674.452491pt;}
.y5d{bottom:675.257499pt;}
.y6{bottom:678.467323pt;}
.y1ba{bottom:680.875019pt;}
.ycf{bottom:682.046133pt;}
.y84{bottom:683.704512pt;}
.yf9{bottom:687.679429pt;}
.y1cb{bottom:689.688043pt;}
.y16b{bottom:690.946389pt;}
.y141{bottom:694.049570pt;}
.y35{bottom:694.893845pt;}
.yab{bottom:696.867429pt;}
.y192{bottom:698.876043pt;}
.y11b{bottom:699.301056pt;}
.y5c{bottom:700.084443pt;}
.y5{bottom:703.294267pt;}
.y1b9{bottom:705.628619pt;}
.y83{bottom:708.458112pt;}
.yf8{bottom:712.102981pt;}
.y1ca{bottom:714.441643pt;}
.y16a{bottom:715.278261pt;}
.y140{bottom:715.302800pt;}
.y34{bottom:719.647445pt;}
.yaa{bottom:721.290981pt;}
.y191{bottom:723.629643pt;}
.y11a{bottom:723.632928pt;}
.y5b{bottom:724.911387pt;}
.y1b8{bottom:730.052171pt;}
.y82{bottom:732.955008pt;}
.yf7{bottom:736.856581pt;}
.y1c9{bottom:739.781995pt;}
.y169{bottom:740.105205pt;}
.y33{bottom:744.144341pt;}
.ya9{bottom:746.044581pt;}
.yce{bottom:748.038144pt;}
.y119{bottom:748.459872pt;}
.y190{bottom:748.969995pt;}
.y5a{bottom:749.664987pt;}
.y1b7{bottom:754.879115pt;}
.y81{bottom:757.708608pt;}
.yf6{bottom:762.105253pt;}
.y1c8{bottom:764.113867pt;}
.y168{bottom:764.932149pt;}
.y32{bottom:768.897941pt;}
.ya8{bottom:771.293253pt;}
.ycd{bottom:772.865088pt;}
.y118{bottom:773.286816pt;}
.y18f{bottom:773.301867pt;}
.y59{bottom:774.491931pt;}
.y13f{bottom:778.072645pt;}
.y1b6{bottom:779.632715pt;}
.y80{bottom:782.462208pt;}
.yf5{bottom:786.437125pt;}
.y1c7{bottom:788.445739pt;}
.y167{bottom:789.264021pt;}
.y31{bottom:793.651541pt;}
.ya7{bottom:795.625125pt;}
.ycc{bottom:797.288640pt;}
.y117{bottom:797.618688pt;}
.y18e{bottom:797.633739pt;}
.y58{bottom:799.318875pt;}
.y13e{bottom:802.899589pt;}
.y1b5{bottom:804.056267pt;}
.y4{bottom:804.057423pt;}
.y7f{bottom:807.289152pt;}
.yf4{bottom:811.264069pt;}
.y1c6{bottom:813.694411pt;}
.y166{bottom:814.017621pt;}
.y30{bottom:818.478485pt;}
.ya6{bottom:820.452069pt;}
.ycb{bottom:822.042240pt;}
.y116{bottom:822.372288pt;}
.y18d{bottom:822.882411pt;}
.y3{bottom:823.643733pt;}
.y57{bottom:823.650747pt;}
.y13d{bottom:827.653189pt;}
.y1b4{bottom:828.883211pt;}
.y7e{bottom:832.116096pt;}
.yf3{bottom:836.017669pt;}
.y1c5{bottom:838.448011pt;}
.y165{bottom:838.862901pt;}
.y2f{bottom:843.305429pt;}
.ya5{bottom:845.205669pt;}
.y115{bottom:847.217568pt;}
.yca{bottom:847.290912pt;}
.y18c{bottom:847.636011pt;}
.y56{bottom:848.477691pt;}
.y13c{bottom:852.480133pt;}
.y1b3{bottom:853.636811pt;}
.y7d{bottom:857.291424pt;}
.yf2{bottom:860.862949pt;}
.y1c4{bottom:863.366635pt;}
.y164{bottom:863.708181pt;}
.y2e{bottom:868.480757pt;}
.ya4{bottom:870.050949pt;}
.y114{bottom:872.062848pt;}
.yc9{bottom:872.466240pt;}
.y18b{bottom:872.554635pt;}
.y55{bottom:872.901243pt;}
.y13b{bottom:877.307077pt;}
.y1b2{bottom:878.060363pt;}
.y7c{bottom:881.714976pt;}
.yf1{bottom:885.708229pt;}
.y1c3{bottom:888.120235pt;}
.y2{bottom:888.494964pt;}
.y163{bottom:888.553461pt;}
.y2d{bottom:892.904309pt;}
.ya3{bottom:894.896229pt;}
.y113{bottom:896.908128pt;}
.y18a{bottom:897.308235pt;}
.yc8{bottom:897.311520pt;}
.y54{bottom:897.654843pt;}
.y13a{bottom:902.060677pt;}
.y1b1{bottom:903.309035pt;}
.y7b{bottom:906.468576pt;}
.yf0{bottom:910.461829pt;}
.y1c2{bottom:912.873835pt;}
.y162{bottom:914.132181pt;}
.y2c{bottom:917.657909pt;}
.ya2{bottom:919.649829pt;}
.y189{bottom:922.061835pt;}
.y1{bottom:922.073333pt;}
.y53{bottom:922.481787pt;}
.yc7{bottom:922.486848pt;}
.y139{bottom:926.484229pt;}
.y1b0{bottom:928.062635pt;}
.y7a{bottom:931.717248pt;}
.yef{bottom:934.885381pt;}
.y1c1{bottom:937.297387pt;}
.y161{bottom:938.555733pt;}
.y2b{bottom:942.906581pt;}
.ya1{bottom:944.073381pt;}
.y188{bottom:946.485387pt;}
.y52{bottom:946.905339pt;}
.yc6{bottom:946.910400pt;}
.y138{bottom:950.907781pt;}
.y1af{bottom:952.486187pt;}
.y79{bottom:956.140800pt;}
.yee{bottom:959.308933pt;}
.y1c0{bottom:962.142667pt;}
.y160{bottom:963.309333pt;}
.y2a{bottom:967.330133pt;}
.ya0{bottom:968.496933pt;}
.y187{bottom:971.330667pt;}
.yc5{bottom:971.664000pt;}
.y51{bottom:972.080667pt;}
.y137{bottom:975.331333pt;}
.y1ae{bottom:977.331467pt;}
.y27{bottom:985.849333pt;}
.y26{bottom:1000.249333pt;}
.y78{bottom:1013.312575pt;}
.yed{bottom:1013.320248pt;}
.y25{bottom:1014.649333pt;}
.y1bf{bottom:1015.737315pt;}
.y15f{bottom:1017.737448pt;}
.y9f{bottom:1022.508248pt;}
.y29{bottom:1024.501908pt;}
.y186{bottom:1024.925315pt;}
.y112{bottom:1026.092115pt;}
.y50{bottom:1026.502195pt;}
.y77{bottom:1028.484800pt;}
.yc4{bottom:1028.502462pt;}
.yec{bottom:1028.902533pt;}
.y136{bottom:1029.339283pt;}
.y1be{bottom:1031.319600pt;}
.y1ad{bottom:1031.336062pt;}
.y15e{bottom:1033.319733pt;}
.y9e{bottom:1038.090533pt;}
.y28{bottom:1039.674133pt;}
.y185{bottom:1040.507600pt;}
.y111{bottom:1041.674400pt;}
.y4f{bottom:1042.091200pt;}
.yc3{bottom:1044.091467pt;}
.y135{bottom:1045.675067pt;}
.y1ac{bottom:1046.925067pt;}
.y22{bottom:1084.724566pt;}
.y20{bottom:1084.724645pt;}
.hd{height:13.239688pt;}
.he{height:14.137292pt;}
.hb{height:14.229681pt;}
.h10{height:33.481472pt;}
.hf{height:38.928000pt;}
.h12{height:44.642112pt;}
.h13{height:45.110932pt;}
.h9{height:46.426327pt;}
.h4{height:51.068625pt;}
.hc{height:51.216000pt;}
.h11{height:53.074450pt;}
.h3{height:55.802752pt;}
.h1b{height:56.055394pt;}
.h21{height:56.382728pt;}
.h7{height:56.388778pt;}
.h1f{height:56.396370pt;}
.h19{height:56.405747pt;}
.h23{height:56.410133pt;}
.h14{height:56.412101pt;}
.h1e{height:56.413562pt;}
.h15{height:56.417647pt;}
.h18{height:56.419023pt;}
.h22{height:56.419223pt;}
.h8{height:56.425434pt;}
.h1d{height:56.722162pt;}
.h1c{height:58.504985pt;}
.ha{height:58.592465pt;}
.h5{height:61.382625pt;}
.h6{height:62.027250pt;}
.h17{height:62.393970pt;}
.h2{height:89.388406pt;}
.h16{height:1111.330667pt;}
.h1a{height:1113.332000pt;}
.h20{height:1114.165333pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w5{width:0.000000pt;}
.w3{width:71.050667pt;}
.w4{width:178.305333pt;}
.w2{width:313.304000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x23{left:-701.687067pt;}
.x15{left:-700.520267pt;}
.x1e{left:-699.268400pt;}
.x21{left:-680.533979pt;}
.x16{left:-677.676896pt;}
.x17{left:-676.502146pt;}
.x1f{left:-674.097908pt;}
.x0{left:0.000000pt;}
.x9{left:37.795410pt;}
.x1c{left:75.581168pt;}
.x5{left:76.859867pt;}
.x12{left:77.999968pt;}
.x13{left:79.173333pt;}
.x22{left:92.013600pt;}
.xd{left:93.180533pt;}
.x18{left:94.432400pt;}
.x7{left:99.628280pt;}
.x6{left:100.861691pt;}
.x14{left:102.439450pt;}
.x20{left:113.166821pt;}
.xe{left:116.023771pt;}
.xf{left:117.198654pt;}
.x19{left:119.602892pt;}
.x1{left:140.437467pt;}
.x2{left:142.037707pt;}
.xc{left:144.004000pt;}
.x1b{left:258.454390pt;}
.x11{left:260.454707pt;}
.x4{left:298.042373pt;}
.xb{left:307.697998pt;}
.x3{left:309.627467pt;}
.x1a{left:573.234933pt;}
.x10{left:574.901867pt;}
.x1d{left:668.098933pt;}
.x8{left:669.265733pt;}
.xa{left:684.855306pt;}
}




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