
    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_10e411737d4f405a514bdb0a.woff')format("woff");}.ff1{font-family:ff1;line-height:0.939453;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_516ae8830d59975c0a558a47.woff')format("woff");}.ff2{font-family:ff2;line-height:0.969238;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_434f656dfa45816a788b33eb.woff')format("woff");}.ff3{font-family:ff3;line-height:0.972168;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_ebca582406979ba25dbde631.woff')format("woff");}.ff4{font-family:ff4;line-height:0.938477;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_95b99f1c079f704469c21360.woff')format("woff");}.ff5{font-family:ff5;line-height:0.960000;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_c593d55a37b1d9d4acecef99.woff')format("woff");}.ff6{font-family:ff6;line-height:0.938477;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_41ccf98f5742c5fde8440ebe.woff')format("woff");}.ff7{font-family:ff7;line-height:0.942383;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_0953749192daacf26fb29913.woff')format("woff");}.ff8{font-family:ff8;line-height:0.666504;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_b9743eeb220ccb7540f71f91.woff')format("woff");}.ff9{font-family:ff9;line-height:0.666504;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_bf8f868253550bc4403d02a6.woff')format("woff");}.ffa{font-family:ffa;line-height:0.926270;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_a0501e9ce61c59b38c3f5205.woff')format("woff");}.ffb{font-family:ffb;line-height:0.666504;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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:8.390605px;}
.v2{vertical-align:35.999994px;}
.ls2{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.017988px;}
.ls5{letter-spacing:0.018012px;}
.ls1d{letter-spacing:0.018018px;}
.ls19{letter-spacing:0.144004px;}
.ls1c{letter-spacing:0.192006px;}
.ls0{letter-spacing:0.288009px;}
.ls1b{letter-spacing:0.336010px;}
.ls22{letter-spacing:0.872130px;}
.ls21{letter-spacing:0.923432px;}
.ls1f{letter-spacing:1.188000px;}
.ls17{letter-spacing:1.296040px;}
.ls16{letter-spacing:1.344041px;}
.ls1{letter-spacing:1.458000px;}
.ls3{letter-spacing:1.476000px;}
.ls14{letter-spacing:1.728000px;}
.lsa{letter-spacing:1.847936px;}
.ls1a{letter-spacing:2.160066px;}
.ls18{letter-spacing:2.208067px;}
.ls1e{letter-spacing:2.754000px;}
.ls13{letter-spacing:42.366406px;}
.ls20{letter-spacing:58.811202px;}
.lsd{letter-spacing:122.241406px;}
.lsc{letter-spacing:126.741406px;}
.lsb{letter-spacing:135.741406px;}
.ls12{letter-spacing:163.929080px;}
.lsf{letter-spacing:168.330132px;}
.ls11{letter-spacing:217.804408px;}
.ls10{letter-spacing:217.846406px;}
.ls8{letter-spacing:239.223661px;}
.ls9{letter-spacing:248.211348px;}
.lse{letter-spacing:253.839152px;}
.ls7{letter-spacing:914.372932px;}
.ls15{letter-spacing:933.568990px;}
.ls4{letter-spacing:933.569000px;}
.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;}
}
.ws12{word-spacing:-62.639646px;}
.ws2{word-spacing:-21.129671px;}
.ws3{word-spacing:-18.854533px;}
.ws5{word-spacing:-16.416000px;}
.ws14{word-spacing:-16.254000px;}
.ws4{word-spacing:-14.958000px;}
.ws1b{word-spacing:-14.210587px;}
.ws13{word-spacing:-13.711500px;}
.ws18{word-spacing:-13.344407px;}
.ws9{word-spacing:-13.296406px;}
.ws0{word-spacing:-11.633594px;}
.ws7{word-spacing:-10.508889px;}
.ws1{word-spacing:-0.091802px;}
.ws11{word-spacing:-0.062640px;}
.ws19{word-spacing:-0.055679px;}
.ws8{word-spacing:0.000000px;}
.ws15{word-spacing:100.930366px;}
.ws16{word-spacing:100.930374px;}
.ws6{word-spacing:199.512000px;}
.wsd{word-spacing:215.985880px;}
.wsc{word-spacing:220.479723px;}
.wsf{word-spacing:238.497061px;}
.wsa{word-spacing:238.497095px;}
.ws10{word-spacing:249.374716px;}
.wsb{word-spacing:269.912000px;}
.wse{word-spacing:328.415961px;}
.ws17{word-spacing:893.247770px;}
.ws1a{word-spacing:1360.356882px;}
._3b{margin-left:-10.636523px;}
._5{margin-left:-8.629365px;}
._a{margin-left:-7.397842px;}
._3{margin-left:-5.994000px;}
._7{margin-left:-4.357217px;}
._21{margin-left:-3.149890px;}
._4{margin-left:-2.135826px;}
._0{margin-left:-1.007965px;}
._1{width:1.133960px;}
._2{width:2.603909px;}
._6{width:3.855674px;}
._c{width:5.454000px;}
._10{width:6.858079px;}
._b{width:7.901917px;}
._d{width:9.321947px;}
._11{width:10.464209px;}
._12{width:12.332132px;}
._13{width:13.846222px;}
._43{width:16.080786px;}
._9{width:18.323498px;}
._3d{width:19.546164px;}
._14{width:20.732738px;}
._40{width:22.089301px;}
._3f{width:23.316288px;}
._41{width:24.819364px;}
._36{width:41.627251px;}
._8{width:45.503656px;}
._33{width:50.560626px;}
._2f{width:51.720768px;}
._44{width:58.801793px;}
._15{width:89.990827px;}
._35{width:107.452779px;}
._3c{width:115.434000px;}
._32{width:130.761966px;}
._2c{width:133.110535px;}
._17{width:134.130427px;}
._31{width:146.888662px;}
._37{width:147.973432px;}
._46{width:154.761937px;}
._2e{width:156.455623px;}
._2a{width:164.951559px;}
._39{width:188.852075px;}
._38{width:212.197162px;}
._18{width:237.379782px;}
._42{width:243.573605px;}
._16{width:269.559540px;}
._3e{width:270.573605px;}
._f{width:294.984000px;}
._25{width:299.443462px;}
._30{width:302.551842px;}
._48{width:307.167828px;}
._26{width:322.418870px;}
._e{width:352.631826px;}
._34{width:399.005873px;}
._3a{width:400.028864px;}
._1a{width:471.497672px;}
._45{width:485.857781px;}
._19{width:494.140982px;}
._47{width:523.605463px;}
._1f{width:544.875214px;}
._1c{width:548.211397px;}
._24{width:570.434722px;}
._20{width:572.720243px;}
._1b{width:575.042362px;}
._28{width:644.484241px;}
._27{width:650.429734px;}
._22{width:662.645208px;}
._1e{width:671.548898px;}
._1d{width:680.908472px;}
._23{width:707.379749px;}
._2d{width:716.295638px;}
._29{width:725.145130px;}
._49{width:731.183232px;}
._2b{width:743.216699px;}
.fc3{color:rgb(10,84,44);}
.fc1{color:rgb(27,138,174);}
.fc6{color:rgb(128,128,128);}
.fc5{color:rgb(60,60,60);}
.fc4{color:rgb(83,83,83);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:36.000000px;}
.fs4{font-size:37.801758px;}
.fs0{font-size:41.998536px;}
.fs3{font-size:48.001464px;}
.fs8{font-size:49.500000px;}
.fsa{font-size:51.301758px;}
.fs1{font-size:54.000000px;}
.fs9{font-size:55.678710px;}
.fs6{font-size:62.639646px;}
.fs5{font-size:70.198242px;}
.fs2{font-size:91.801758px;}
.y0{bottom:0.000000px;}
.y1f0{bottom:4.529387px;}
.y1ef{bottom:22.482514px;}
.y1ee{bottom:40.435641px;}
.y21{bottom:46.734370px;}
.y1ed{bottom:58.394612px;}
.y20{bottom:59.015622px;}
.y1f{bottom:71.302734px;}
.y1ec{bottom:76.347739px;}
.y133{bottom:80.366244px;}
.y111{bottom:82.312500px;}
.y13d{bottom:82.588500px;}
.ye8{bottom:82.770000px;}
.ya6{bottom:85.102500px;}
.y121{bottom:86.040000px;}
.y5a{bottom:86.994124px;}
.y11b{bottom:87.082020px;}
.y14f{bottom:87.351492px;}
.yfc{bottom:87.423000px;}
.yf7{bottom:87.533177px;}
.ycf{bottom:89.337891px;}
.y154{bottom:89.836500px;}
.y138{bottom:90.808572px;}
.yd1{bottom:92.010000px;}
.y10b{bottom:92.191390px;}
.y22{bottom:92.830500px;}
.y1c6{bottom:93.667966px;}
.y1eb{bottom:94.300866px;}
.y15f{bottom:94.605400px;}
.y165{bottom:95.262000px;}
.ye4{bottom:96.779292px;}
.y132{bottom:99.268588px;}
.ya2{bottom:99.919897px;}
.y191{bottom:100.031234px;}
.y81{bottom:100.253902px;}
.y59{bottom:105.896474px;}
.y11a{bottom:105.978510px;}
.yce{bottom:106.136718px;}
.y14e{bottom:106.253841px;}
.yf6{bottom:106.435525px;}
.y192{bottom:108.820500px;}
.y137{bottom:109.710921px;}
.y10a{bottom:111.093740px;}
.y1c5{bottom:111.621093px;}
.y1ea{bottom:112.259855px;}
.y15e{bottom:113.501890px;}
.y1a1{bottom:113.589811px;}
.ye3{bottom:115.675770px;}
.y47{bottom:116.501931px;}
.y104{bottom:118.170733px;}
.ya1{bottom:118.816388px;}
.y190{bottom:118.927724px;}
.y80{bottom:122.830073px;}
.ycd{bottom:122.935547px;}
.y58{bottom:124.792963px;}
.y119{bottom:124.880838px;}
.y14d{bottom:125.156190px;}
.yf5{bottom:125.337874px;}
.y136{bottom:128.607411px;}
.y1d{bottom:128.970693px;}
.y1c4{bottom:129.580078px;}
.y109{bottom:129.990229px;}
.y1e9{bottom:130.212982px;}
.y131{bottom:131.670932px;}
.y15d{bottom:132.404239px;}
.ye2{bottom:134.578119px;}
.y46{bottom:135.398421px;}
.y103{bottom:137.067223px;}
.y18f{bottom:137.830072px;}
.ycc{bottom:139.734374px;}
.y1a0{bottom:143.132779px;}
.y57{bottom:143.695286px;}
.y14c{bottom:144.052680px;}
.yf4{bottom:144.234365px;}
.y7f{bottom:145.406245px;}
.y135{bottom:147.509760px;}
.y1c3{bottom:147.533201px;}
.y1c{bottom:147.873042px;}
.y1e8{bottom:148.166109px;}
.y108{bottom:148.892562px;}
.ya0{bottom:151.218736px;}
.y15c{bottom:151.300729px;}
.ye1{bottom:153.480463px;}
.y45{bottom:154.300770px;}
.y102{bottom:155.969572px;}
.ycb{bottom:156.539063px;}
.y18e{bottom:156.732384px;}
.y118{bottom:157.277328px;}
.y56{bottom:162.597634px;}
.y14b{bottom:162.955029px;}
.yf3{bottom:163.136713px;}
.y130{bottom:164.067368px;}
.y1c2{bottom:165.486328px;}
.y1e7{bottom:166.125093px;}
.y134{bottom:166.406250px;}
.y1b{bottom:166.769532px;}
.y107{bottom:167.789052px;}
.y7e{bottom:167.982416px;}
.y9f{bottom:170.121085px;}
.y15b{bottom:170.203078px;}
.ye0{bottom:172.376937px;}
.y44{bottom:173.203119px;}
.yca{bottom:173.337891px;}
.y101{bottom:174.866042px;}
.yed{bottom:174.866707px;}
.y18d{bottom:175.628874px;}
.y117{bottom:176.179677px;}
.y55{bottom:181.494124px;}
.y14a{bottom:181.851519px;}
.yf2{bottom:182.033181px;}
.y19f{bottom:183.111302px;}
.y1c1{bottom:183.445312px;}
.y1e6{bottom:184.078217px;}
.y106{bottom:186.691401px;}
.y9e{bottom:189.017576px;}
.y15a{bottom:189.105428px;}
.yc9{bottom:190.136718px;}
.y7d{bottom:190.552730px;}
.ydf{bottom:191.279286px;}
.yec{bottom:193.763197px;}
.y100{bottom:193.768391px;}
.y18c{bottom:194.531223px;}
.y116{bottom:195.082026px;}
.y12f{bottom:196.469717px;}
.y1c7{bottom:198.808500px;}
.y54{bottom:200.396474px;}
.y149{bottom:200.753868px;}
.yf1{bottom:200.935530px;}
.y1c0{bottom:201.398429px;}
.y1e5{bottom:202.031345px;}
.y1a{bottom:204.650391px;}
.y105{bottom:205.593750px;}
.y43{bottom:205.599605px;}
.yc8{bottom:206.935547px;}
.y9d{bottom:207.919924px;}
.y159{bottom:208.001917px;}
.yde{bottom:210.175776px;}
.y19e{bottom:212.654269px;}
.yeb{bottom:212.665545px;}
.yff{bottom:212.670740px;}
.y7c{bottom:213.128902px;}
.y18b{bottom:213.427713px;}
.y115{bottom:213.978494px;}
.y12e{bottom:215.366207px;}
.y53{bottom:219.292963px;}
.y1bf{bottom:219.351556px;}
.y198{bottom:219.415806px;}
.y148{bottom:219.656217px;}
.yf0{bottom:219.837879px;}
.y1e4{bottom:219.990320px;}
.yc7{bottom:223.734375px;}
.y42{bottom:224.501954px;}
.y9c{bottom:226.816415px;}
.y158{bottom:226.904266px;}
.ydd{bottom:229.078119px;}
.yfe{bottom:231.567230px;}
.yd7{bottom:231.568131px;}
.y18a{bottom:232.330062px;}
.y12d{bottom:234.268556px;}
.y7b{bottom:235.705073px;}
.y1be{bottom:237.310544px;}
.y1e3{bottom:237.943447px;}
.y52{bottom:238.195308px;}
.y147{bottom:238.552707px;}
.yef{bottom:238.734369px;}
.yc6{bottom:240.539063px;}
.y41{bottom:243.398411px;}
.y157{bottom:245.800757px;}
.ydc{bottom:247.980464px;}
.y197{bottom:248.958774px;}
.yfd{bottom:250.469579px;}
.y189{bottom:251.232411px;}
.y19d{bottom:252.638650px;}
.y12c{bottom:253.170905px;}
.y1bd{bottom:255.263672px;}
.y1e2{bottom:255.896574px;}
.y11f{bottom:255.972654px;}
.y19{bottom:256.142552px;}
.y9b{bottom:256.359383px;}
.y51{bottom:257.097630px;}
.yc5{bottom:257.337891px;}
.y146{bottom:257.455056px;}
.yee{bottom:257.636718px;}
.y7a{bottom:258.281245px;}
.y40{bottom:262.300760px;}
.ydb{bottom:266.876937px;}
.y188{bottom:270.128901px;}
.y19c{bottom:271.540999px;}
.y12b{bottom:272.067395px;}
.y11e{bottom:272.777342px;}
.y1e1{bottom:273.855563px;}
.yc4{bottom:274.664062px;}
.y18{bottom:275.039042px;}
.y50{bottom:275.994120px;}
.y145{bottom:276.351546px;}
.y79{bottom:280.857416px;}
.y3f{bottom:281.203109px;}
.yda{bottom:285.779286px;}
.y163{bottom:287.800776px;}
.y196{bottom:288.943155px;}
.y187{bottom:289.031239px;}
.y11d{bottom:289.576174px;}
.y19b{bottom:290.437489px;}
.y12a{bottom:290.969744px;}
.y1e0{bottom:291.808681px;}
.y1bc{bottom:292.775391px;}
.y17{bottom:293.941391px;}
.y9a{bottom:294.433595px;}
.y4f{bottom:294.896469px;}
.y144{bottom:295.253895px;}
.y3e{bottom:300.099599px;}
.y78{bottom:303.427730px;}
.y162{bottom:304.599608px;}
.yd9{bottom:304.675776px;}
.yc3{bottom:305.039062px;}
.y195{bottom:307.845504px;}
.y186{bottom:307.927729px;}
.y19a{bottom:309.339838px;}
.y120{bottom:309.750000px;}
.y1df{bottom:309.761808px;}
.y129{bottom:309.866234px;}
.y11c{bottom:310.875000px;}
.y16{bottom:312.837881px;}
.y4e{bottom:313.792959px;}
.y3d{bottom:319.001948px;}
.y161{bottom:321.398440px;}
.yc2{bottom:321.837886px;}
.y99{bottom:322.066407px;}
.yd8{bottom:323.578125px;}
.y77{bottom:326.003902px;}
.y194{bottom:326.741994px;}
.y185{bottom:326.830068px;}
.y143{bottom:327.656244px;}
.y1de{bottom:327.720797px;}
.y199{bottom:328.236328px;}
.y128{bottom:328.768583px;}
.y15{bottom:331.740230px;}
.y4d{bottom:332.695308px;}
.yfa{bottom:337.429689px;}
.y3c{bottom:337.898433px;}
.yc1{bottom:338.636718px;}
.y164{bottom:341.572266px;}
.y160{bottom:342.697266px;}
.y193{bottom:345.644343px;}
.y1dd{bottom:345.673916px;}
.y184{bottom:345.732417px;}
.y127{bottom:347.670932px;}
.y1bb{bottom:348.380838px;}
.y76{bottom:348.580073px;}
.y14{bottom:350.642579px;}
.yf9{bottom:354.228522px;}
.yc0{bottom:355.435546px;}
.y3b{bottom:356.800728px;}
.y142{bottom:360.052729px;}
.y98{bottom:361.652343px;}
.y1dc{bottom:363.627044px;}
.y183{bottom:364.628885px;}
.y4c{bottom:365.097657px;}
.ye6{bottom:365.572267px;}
.y126{bottom:366.567405px;}
.y1ba{bottom:367.283187px;}
.y75{bottom:371.156245px;}
.ybf{bottom:372.234375px;}
.yfb{bottom:374.408204px;}
.yf8{bottom:375.533203px;}
.y3a{bottom:375.703077px;}
.y10f{bottom:379.886716px;}
.y1db{bottom:381.586032px;}
.y182{bottom:383.531234px;}
.ye7{bottom:385.746093px;}
.y1b9{bottom:386.179677px;}
.ye5{bottom:386.871093px;}
.y13{bottom:388.523438px;}
.ybe{bottom:389.039062px;}
.y97{bottom:392.332032px;}
.y141{bottom:392.455064px;}
.y74{bottom:393.732416px;}
.y39{bottom:394.599567px;}
.y4b{bottom:395.748046px;}
.y10e{bottom:396.685548px;}
.y1da{bottom:399.539150px;}
.y181{bottom:402.427724px;}
.y1b8{bottom:405.082026px;}
.ybd{bottom:405.837891px;}
.y10d{bottom:413.484381px;}
.y38{bottom:413.501916px;}
.y73{bottom:416.302730px;}
.y1d9{bottom:417.492278px;}
.y180{bottom:421.330073px;}
.ybc{bottom:423.164066px;}
.y1b7{bottom:423.984375px;}
.y96{bottom:425.431641px;}
.y12{bottom:428.273438px;}
.y37{bottom:432.398406px;}
.y110{bottom:433.664062px;}
.y152{bottom:434.449217px;}
.y10c{bottom:434.789062px;}
.y1d8{bottom:435.451266px;}
.y72{bottom:438.878902px;}
.y17f{bottom:440.232368px;}
.y151{bottom:451.248049px;}
.ybb{bottom:453.158204px;}
.y1d7{bottom:453.404387px;}
.y1b6{bottom:454.640625px;}
.y17e{bottom:459.128858px;}
.y71{bottom:461.455073px;}
.y5e{bottom:463.207026px;}
.y36{bottom:464.800755px;}
.y1d6{bottom:471.357514px;}
.y153{bottom:471.421875px;}
.y150{bottom:472.546875px;}
.y5d{bottom:480.005858px;}
.y35{bottom:483.703104px;}
.y70{bottom:484.031245px;}
.yba{bottom:484.195313px;}
.y95{bottom:484.482416px;}
.y1d5{bottom:489.310641px;}
.y17d{bottom:491.531207px;}
.y13b{bottom:494.601564px;}
.y1a5{bottom:496.458982px;}
.y5c{bottom:496.804690px;}
.y11{bottom:497.373047px;}
.y34{bottom:502.599594px;}
.y6f{bottom:506.607416px;}
.y94{bottom:507.052730px;}
.y1d4{bottom:507.269625px;}
.y13a{bottom:511.406253px;}
.y1a4{bottom:513.257814px;}
.yb9{bottom:514.869141px;}
.y5f{bottom:516.978516px;}
.y5b{bottom:518.103516px;}
.y1b5{bottom:518.191426px;}
.y10{bottom:518.677734px;}
.y33{bottom:521.501943px;}
.y17c{bottom:523.927697px;}
.y1d3{bottom:525.222743px;}
.y1b4{bottom:527.191424px;}
.y6e{bottom:529.177734px;}
.y93{bottom:529.628902px;}
.y1a3{bottom:530.056647px;}
.y13c{bottom:531.580078px;}
.y139{bottom:532.705078px;}
.yf{bottom:535.476550px;}
.y32{bottom:540.398433px;}
.y17b{bottom:542.830046px;}
.y1d2{bottom:543.175871px;}
.y1a6{bottom:550.236328px;}
.y1a2{bottom:551.361329px;}
.y92{bottom:552.205073px;}
.ye{bottom:552.275376px;}
.y31{bottom:559.300749px;}
.yb8{bottom:559.705018px;}
.y174{bottom:560.970346px;}
.y1d1{bottom:561.134859px;}
.y17a{bottom:561.732395px;}
.y84{bottom:565.787108px;}
.y1b2{bottom:568.816422px;}
.yd{bottom:573.574209px;}
.y91{bottom:574.781245px;}
.y1b1{bottom:577.816420px;}
.y30{bottom:578.203098px;}
.yb7{bottom:578.607368px;}
.y1d0{bottom:579.087984px;}
.y173{bottom:579.866836px;}
.y179{bottom:580.628884px;}
.y83{bottom:582.585940px;}
.y1b3{bottom:586.816419px;}
.yc{bottom:594.873042px;}
.y1cf{bottom:597.041102px;}
.y2f{bottom:597.099588px;}
.y90{bottom:597.357423px;}
.y172{bottom:598.769185px;}
.y178{bottom:599.531234px;}
.y82{bottom:603.884766px;}
.yb6{bottom:608.144476px;}
.y1ce{bottom:615.000091px;}
.y2e{bottom:616.001937px;}
.yb{bottom:616.177734px;}
.y171{bottom:617.665676px;}
.y177{bottom:618.427723px;}
.y1b0{bottom:619.441418px;}
.y8f{bottom:622.031256px;}
.y1cd{bottom:632.953218px;}
.y2d{bottom:634.898427px;}
.y170{bottom:636.568024px;}
.y176{bottom:637.330073px;}
.y6d{bottom:642.732417px;}
.y8e{bottom:646.705081px;}
.yb5{bottom:648.128858px;}
.y1cc{bottom:650.906338px;}
.y1af{bottom:652.066417px;}
.y2c{bottom:653.800776px;}
.y16f{bottom:655.470373px;}
.y175{bottom:656.232421px;}
.y1ae{bottom:661.066415px;}
.y6c{bottom:661.628895px;}
.ya{bottom:666.427743px;}
.yb4{bottom:667.031207px;}
.y1cb{bottom:668.865326px;}
.y2b{bottom:672.703114px;}
.y16e{bottom:674.366864px;}
.y9{bottom:679.658207px;}
.y6b{bottom:680.531244px;}
.ya5{bottom:683.308595px;}
.y1ca{bottom:686.818454px;}
.y2a{bottom:691.599604px;}
.y8{bottom:692.888671px;}
.y16d{bottom:693.269212px;}
.yb3{bottom:699.427697px;}
.y6a{bottom:699.427707px;}
.ya4{bottom:700.107427px;}
.y1ad{bottom:702.691413px;}
.y1c9{bottom:704.771579px;}
.y29{bottom:710.501953px;}
.y1ac{bottom:711.691411px;}
.y16c{bottom:712.165702px;}
.y7{bottom:713.847657px;}
.yb2{bottom:718.330045px;}
.y69{bottom:718.330056px;}
.y1e{bottom:718.347657px;}
.ya3{bottom:721.412109px;}
.y1c8{bottom:722.730563px;}
.yd6{bottom:727.792735px;}
.y16b{bottom:731.068052px;}
.yb1{bottom:737.232395px;}
.y68{bottom:737.232405px;}
.y28{bottom:741.158204px;}
.y16a{bottom:749.970400px;}
.y1ab{bottom:753.316409px;}
.yb0{bottom:756.128884px;}
.y67{bottom:756.128895px;}
.y6{bottom:756.158206px;}
.yd5{bottom:757.335704px;}
.yab{bottom:760.129901px;}
.y8d{bottom:761.443355px;}
.y169{bottom:768.866890px;}
.yaf{bottom:775.031233px;}
.y66{bottom:775.031244px;}
.y125{bottom:778.088891px;}
.yaa{bottom:779.026391px;}
.y8c{bottom:784.019527px;}
.y1aa{bottom:785.941408px;}
.y168{bottom:787.769239px;}
.y5{bottom:793.710931px;}
.y65{bottom:793.927730px;}
.y27{bottom:796.763671px;}
.yd4{bottom:796.792734px;}
.y124{bottom:796.991240px;}
.ya9{bottom:797.928740px;}
.y8b{bottom:806.595698px;}
.y167{bottom:806.665729px;}
.yae{bottom:807.427723px;}
.y64{bottom:812.830068px;}
.yd3{bottom:813.591559px;}
.y123{bottom:815.887730px;}
.ya8{bottom:816.825230px;}
.y1a9{bottom:818.566407px;}
.yea{bottom:819.157730px;}
.y166{bottom:825.568078px;}
.yad{bottom:826.330072px;}
.y26{bottom:827.419921px;}
.y23{bottom:827.999578px;}
.y8a{bottom:829.171870px;}
.yd2{bottom:830.390391px;}
.y155{bottom:830.993579px;}
.y4{bottom:831.269532px;}
.y63{bottom:831.732417px;}
.y122{bottom:834.790079px;}
.ya7{bottom:835.727579px;}
.ye9{bottom:838.060079px;}
.y13e{bottom:838.241579px;}
.y112{bottom:838.517579px;}
.y156{bottom:845.232401px;}
.y114{bottom:845.232405px;}
.yac{bottom:845.232421px;}
.y62{bottom:850.628891px;}
.y89{bottom:851.748041px;}
.y1a8{bottom:861.708984px;}
.y140{bottom:864.128891px;}
.y113{bottom:864.128895px;}
.y61{bottom:869.531239px;}
.y88{bottom:874.318355px;}
.y13f{bottom:883.031239px;}
.y25{bottom:883.031244px;}
.y60{bottom:888.427729px;}
.y87{bottom:896.894527px;}
.y3{bottom:899.378907px;}
.y4a{bottom:901.927730px;}
.y24{bottom:901.927734px;}
.y1a7{bottom:911.121093px;}
.y86{bottom:919.470704px;}
.y49{bottom:920.830079px;}
.y2{bottom:939.462894px;}
.y1{bottom:955.212891px;}
.yd0{bottom:974.730451px;}
.y85{bottom:974.730456px;}
.y48{bottom:974.730470px;}
.h9{height:26.244141px;}
.h6{height:27.557629px;}
.ha{height:28.048904px;}
.h1{height:30.617097px;}
.h11{height:31.993163px;}
.h5{height:34.993255px;}
.h10{height:35.391704px;}
.hf{height:35.617086px;}
.h13{height:35.617138px;}
.h1a{height:35.617162px;}
.h16{height:36.085693px;}
.h2c{height:37.399182px;}
.h2e{height:37.399234px;}
.h14{height:39.007702px;}
.h19{height:39.313477px;}
.h2{height:39.366211px;}
.h23{height:39.366271px;}
.h12{height:39.366277px;}
.h1f{height:39.366295px;}
.h1d{height:39.366301px;}
.he{height:39.366319px;}
.h29{height:39.366337px;}
.hc{height:39.366343px;}
.h27{height:39.366361px;}
.hd{height:39.366427px;}
.h24{height:39.366493px;}
.h17{height:40.341797px;}
.h2a{height:40.535623px;}
.h8{height:46.796220px;}
.h15{height:48.050236px;}
.h7{height:52.443023px;}
.h4{height:68.582368px;}
.h3{height:70.420196px;}
.h2b{height:70.993249px;}
.h2d{height:736.155000px;}
.h28{height:826.143000px;}
.h26{height:839.701500px;}
.hb{height:842.133000px;}
.h1b{height:842.953500px;}
.h25{height:845.127000px;}
.h1e{height:847.540500px;}
.h21{height:848.923500px;}
.h18{height:849.861000px;}
.h1c{height:852.193500px;}
.h22{height:852.375000px;}
.h20{height:852.651000px;}
.h0{height:1020.000000px;}
.w1{width:544.254000px;}
.w0{width:700.500000px;}
.x0{left:0.000000px;}
.x1e{left:11.584593px;}
.xe{left:22.500609px;}
.x1d{left:45.000609px;}
.x12{left:67.500609px;}
.x3{left:78.662109px;}
.xa{left:83.162109px;}
.x7{left:86.537109px;}
.xc{left:90.474609px;}
.x5{left:94.412109px;}
.x4{left:95.537109px;}
.xd{left:101.162109px;}
.x10{left:107.537109px;}
.x14{left:109.037109px;}
.x1c{left:123.662109px;}
.x6{left:129.287109px;}
.x8{left:138.287109px;}
.x1{left:140.308593px;}
.x11{left:146.162109px;}
.x9{left:152.789062px;}
.x15{left:160.787109px;}
.xb{left:188.912106px;}
.x2{left:277.664062px;}
.x1b{left:480.486324px;}
.x16{left:552.041016px;}
.x13{left:553.164550px;}
.x17{left:568.913818px;}
.x1a{left:580.164916px;}
.xf{left:610.545410px;}
.x18{left:611.670410px;}
.x19{left:622.916016px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:7.458316pt;}
.v2{vertical-align:31.999995pt;}
.ls2{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.015989pt;}
.ls5{letter-spacing:0.016011pt;}
.ls1d{letter-spacing:0.016016pt;}
.ls19{letter-spacing:0.128004pt;}
.ls1c{letter-spacing:0.170672pt;}
.ls0{letter-spacing:0.256008pt;}
.ls1b{letter-spacing:0.298676pt;}
.ls22{letter-spacing:0.775227pt;}
.ls21{letter-spacing:0.820828pt;}
.ls1f{letter-spacing:1.056000pt;}
.ls17{letter-spacing:1.152035pt;}
.ls16{letter-spacing:1.194703pt;}
.ls1{letter-spacing:1.296000pt;}
.ls3{letter-spacing:1.312000pt;}
.ls14{letter-spacing:1.536000pt;}
.lsa{letter-spacing:1.642609pt;}
.ls1a{letter-spacing:1.920059pt;}
.ls18{letter-spacing:1.962727pt;}
.ls1e{letter-spacing:2.448000pt;}
.ls13{letter-spacing:37.659027pt;}
.ls20{letter-spacing:52.276624pt;}
.lsd{letter-spacing:108.659027pt;}
.lsc{letter-spacing:112.659027pt;}
.lsb{letter-spacing:120.659027pt;}
.ls12{letter-spacing:145.714738pt;}
.lsf{letter-spacing:149.626784pt;}
.ls11{letter-spacing:193.603918pt;}
.ls10{letter-spacing:193.641250pt;}
.ls8{letter-spacing:212.643254pt;}
.ls9{letter-spacing:220.632309pt;}
.lse{letter-spacing:225.634801pt;}
.ls7{letter-spacing:812.775940pt;}
.ls15{letter-spacing:829.839102pt;}
.ls4{letter-spacing:829.839111pt;}
.ws12{word-spacing:-55.679685pt;}
.ws2{word-spacing:-18.781930pt;}
.ws3{word-spacing:-16.759585pt;}
.ws5{word-spacing:-14.592000pt;}
.ws14{word-spacing:-14.448000pt;}
.ws4{word-spacing:-13.296000pt;}
.ws1b{word-spacing:-12.631633pt;}
.ws13{word-spacing:-12.188000pt;}
.ws18{word-spacing:-11.861695pt;}
.ws9{word-spacing:-11.819027pt;}
.ws0{word-spacing:-10.340973pt;}
.ws7{word-spacing:-9.341234pt;}
.ws1{word-spacing:-0.081602pt;}
.ws11{word-spacing:-0.055680pt;}
.ws19{word-spacing:-0.049492pt;}
.ws8{word-spacing:0.000000pt;}
.ws15{word-spacing:89.715881pt;}
.ws16{word-spacing:89.715888pt;}
.ws6{word-spacing:177.344000pt;}
.wsd{word-spacing:191.987449pt;}
.wsc{word-spacing:195.981976pt;}
.wsf{word-spacing:211.997387pt;}
.wsa{word-spacing:211.997418pt;}
.ws10{word-spacing:221.666414pt;}
.wsb{word-spacing:239.921778pt;}
.wse{word-spacing:291.925298pt;}
.ws17{word-spacing:793.998018pt;}
.ws1a{word-spacing:1209.206117pt;}
._3b{margin-left:-9.454687pt;}
._5{margin-left:-7.670547pt;}
._a{margin-left:-6.575859pt;}
._3{margin-left:-5.328000pt;}
._7{margin-left:-3.873082pt;}
._21{margin-left:-2.799902pt;}
._4{margin-left:-1.898512pt;}
._0{margin-left:-0.895969pt;}
._1{width:1.007965pt;}
._2{width:2.314586pt;}
._6{width:3.427266pt;}
._c{width:4.848000pt;}
._10{width:6.096070pt;}
._b{width:7.023926pt;}
._d{width:8.286175pt;}
._11{width:9.301519pt;}
._12{width:10.961895pt;}
._13{width:12.307753pt;}
._43{width:14.294032pt;}
._9{width:16.287554pt;}
._3d{width:17.374368pt;}
._14{width:18.429101pt;}
._40{width:19.634934pt;}
._3f{width:20.725590pt;}
._41{width:22.061657pt;}
._36{width:37.002001pt;}
._8{width:40.447695pt;}
._33{width:44.942779pt;}
._2f{width:45.974016pt;}
._44{width:52.268261pt;}
._15{width:79.991846pt;}
._35{width:95.513581pt;}
._3c{width:102.608000pt;}
._32{width:116.232859pt;}
._2c{width:118.320475pt;}
._17{width:119.227046pt;}
._31{width:130.567699pt;}
._37{width:131.531940pt;}
._46{width:137.566166pt;}
._2e{width:139.071665pt;}
._2a{width:146.623608pt;}
._39{width:167.868511pt;}
._38{width:188.619699pt;}
._18{width:211.004251pt;}
._42{width:216.509871pt;}
._16{width:239.608480pt;}
._3e{width:240.509871pt;}
._f{width:262.208000pt;}
._25{width:266.171966pt;}
._30{width:268.934971pt;}
._48{width:273.038069pt;}
._26{width:286.594551pt;}
._e{width:313.450512pt;}
._34{width:354.671887pt;}
._3a{width:355.581212pt;}
._1a{width:419.109042pt;}
._45{width:431.873583pt;}
._19{width:439.236429pt;}
._47{width:465.427079pt;}
._1f{width:484.333524pt;}
._1c{width:487.299020pt;}
._24{width:507.053086pt;}
._20{width:509.084661pt;}
._1b{width:511.148766pt;}
._28{width:572.874881pt;}
._27{width:578.159764pt;}
._22{width:589.017963pt;}
._1e{width:596.932354pt;}
._1d{width:605.251975pt;}
._23{width:628.781999pt;}
._2d{width:636.707233pt;}
._29{width:644.573449pt;}
._49{width:649.940650pt;}
._2b{width:660.637066pt;}
.fs7{font-size:32.000000pt;}
.fs4{font-size:33.601563pt;}
.fs0{font-size:37.332032pt;}
.fs3{font-size:42.667968pt;}
.fs8{font-size:44.000000pt;}
.fsa{font-size:45.601563pt;}
.fs1{font-size:48.000000pt;}
.fs9{font-size:49.492187pt;}
.fs6{font-size:55.679685pt;}
.fs5{font-size:62.398437pt;}
.fs2{font-size:81.601563pt;}
.y0{bottom:0.000000pt;}
.y1f0{bottom:4.026121pt;}
.y1ef{bottom:19.984457pt;}
.y1ee{bottom:35.942792pt;}
.y21{bottom:41.541662pt;}
.y1ed{bottom:51.906322pt;}
.y20{bottom:52.458331pt;}
.y1f{bottom:63.380208pt;}
.y1ec{bottom:67.864657pt;}
.y133{bottom:71.436661pt;}
.y111{bottom:73.166667pt;}
.y13d{bottom:73.412000pt;}
.ye8{bottom:73.573333pt;}
.ya6{bottom:75.646667pt;}
.y121{bottom:76.480000pt;}
.y5a{bottom:77.328111pt;}
.y11b{bottom:77.406240pt;}
.y14f{bottom:77.645771pt;}
.yfc{bottom:77.709333pt;}
.yf7{bottom:77.807268pt;}
.ycf{bottom:79.411459pt;}
.y154{bottom:79.854667pt;}
.y138{bottom:80.718731pt;}
.yd1{bottom:81.786667pt;}
.y10b{bottom:81.947903pt;}
.y22{bottom:82.516000pt;}
.y1c6{bottom:83.260414pt;}
.y1eb{bottom:83.822992pt;}
.y15f{bottom:84.093689pt;}
.y165{bottom:84.677333pt;}
.ye4{bottom:86.026037pt;}
.y132{bottom:88.238745pt;}
.ya2{bottom:88.817687pt;}
.y191{bottom:88.916652pt;}
.y81{bottom:89.114580pt;}
.y59{bottom:94.130199pt;}
.y11a{bottom:94.203120pt;}
.yce{bottom:94.343749pt;}
.y14e{bottom:94.447859pt;}
.yf6{bottom:94.609356pt;}
.y192{bottom:96.729333pt;}
.y137{bottom:97.520819pt;}
.y10a{bottom:98.749991pt;}
.y1c5{bottom:99.218749pt;}
.y1ea{bottom:99.786537pt;}
.y15e{bottom:100.890569pt;}
.y1a1{bottom:100.968721pt;}
.ye3{bottom:102.822907pt;}
.y47{bottom:103.557272pt;}
.y104{bottom:105.040652pt;}
.ya1{bottom:105.614567pt;}
.y190{bottom:105.713532pt;}
.y80{bottom:109.182288pt;}
.ycd{bottom:109.276041pt;}
.y58{bottom:110.927079pt;}
.y119{bottom:111.005189pt;}
.y14d{bottom:111.249947pt;}
.yf5{bottom:111.411444pt;}
.y136{bottom:114.317699pt;}
.y1d{bottom:114.640616pt;}
.y1c4{bottom:115.182292pt;}
.y109{bottom:115.546871pt;}
.y1e9{bottom:115.744873pt;}
.y131{bottom:117.040828pt;}
.y15d{bottom:117.692657pt;}
.ye2{bottom:119.624995pt;}
.y46{bottom:120.354152pt;}
.y103{bottom:121.837532pt;}
.y18f{bottom:122.515620pt;}
.ycc{bottom:124.208332pt;}
.y1a0{bottom:127.229137pt;}
.y57{bottom:127.729143pt;}
.y14c{bottom:128.046827pt;}
.yf4{bottom:128.208324pt;}
.y7f{bottom:129.249996pt;}
.y135{bottom:131.119787pt;}
.y1c3{bottom:131.140623pt;}
.y1c{bottom:131.442704pt;}
.y1e8{bottom:131.703208pt;}
.y108{bottom:132.348944pt;}
.ya0{bottom:134.416655pt;}
.y15c{bottom:134.489537pt;}
.ye1{bottom:136.427079pt;}
.y45{bottom:137.156240pt;}
.y102{bottom:138.639620pt;}
.ycb{bottom:139.145833pt;}
.y18e{bottom:139.317675pt;}
.y118{bottom:139.802069pt;}
.y56{bottom:144.531231pt;}
.y14b{bottom:144.848915pt;}
.yf3{bottom:145.010412pt;}
.y130{bottom:145.837660pt;}
.y1c2{bottom:147.098959pt;}
.y1e7{bottom:147.666749pt;}
.y134{bottom:147.916667pt;}
.y1b{bottom:148.239584pt;}
.y107{bottom:149.145824pt;}
.y7e{bottom:149.317703pt;}
.y9f{bottom:151.218743pt;}
.y15b{bottom:151.291625pt;}
.ye0{bottom:153.223944pt;}
.y44{bottom:153.958328pt;}
.yca{bottom:154.078125pt;}
.y101{bottom:155.436481pt;}
.yed{bottom:155.437073pt;}
.y18d{bottom:156.114555pt;}
.y117{bottom:156.604157pt;}
.y55{bottom:161.328111pt;}
.y14a{bottom:161.645795pt;}
.yf2{bottom:161.807272pt;}
.y19f{bottom:162.765601pt;}
.y1c1{bottom:163.062500pt;}
.y1e6{bottom:163.625082pt;}
.y106{bottom:165.947912pt;}
.y9e{bottom:168.015623pt;}
.y15a{bottom:168.093713pt;}
.yc9{bottom:169.010416pt;}
.y7d{bottom:169.380205pt;}
.ydf{bottom:170.026032pt;}
.yec{bottom:172.233953pt;}
.y100{bottom:172.238569pt;}
.y18c{bottom:172.916643pt;}
.y116{bottom:173.406245pt;}
.y12f{bottom:174.639748pt;}
.y1c7{bottom:176.718667pt;}
.y54{bottom:178.130199pt;}
.y149{bottom:178.447883pt;}
.yf1{bottom:178.609360pt;}
.y1c0{bottom:179.020826pt;}
.y1e5{bottom:179.583417pt;}
.y1a{bottom:181.911459pt;}
.y105{bottom:182.750000pt;}
.y43{bottom:182.755204pt;}
.yc8{bottom:183.942708pt;}
.y9d{bottom:184.817711pt;}
.y159{bottom:184.890593pt;}
.yde{bottom:186.822912pt;}
.y19e{bottom:189.026017pt;}
.yeb{bottom:189.036040pt;}
.yff{bottom:189.040657pt;}
.y7c{bottom:189.447913pt;}
.y18b{bottom:189.713523pt;}
.y115{bottom:190.203105pt;}
.y12e{bottom:191.436628pt;}
.y53{bottom:194.927079pt;}
.y1bf{bottom:194.979161pt;}
.y198{bottom:195.036272pt;}
.y148{bottom:195.249971pt;}
.yf0{bottom:195.411448pt;}
.y1e4{bottom:195.546951pt;}
.yc7{bottom:198.875000pt;}
.y42{bottom:199.557292pt;}
.y9c{bottom:201.614591pt;}
.y158{bottom:201.692681pt;}
.ydd{bottom:203.624995pt;}
.yfe{bottom:205.837537pt;}
.yd7{bottom:205.838339pt;}
.y18a{bottom:206.515611pt;}
.y12d{bottom:208.238716pt;}
.y7b{bottom:209.515621pt;}
.y1be{bottom:210.942706pt;}
.y1e3{bottom:211.505286pt;}
.y52{bottom:211.729163pt;}
.y147{bottom:212.046851pt;}
.yef{bottom:212.208328pt;}
.yc6{bottom:213.812500pt;}
.y41{bottom:216.354143pt;}
.y157{bottom:218.489561pt;}
.ydc{bottom:220.427079pt;}
.y197{bottom:221.296688pt;}
.yfd{bottom:222.639625pt;}
.y189{bottom:223.317699pt;}
.y19d{bottom:224.567689pt;}
.y12c{bottom:225.040804pt;}
.y1bd{bottom:226.901041pt;}
.y1e2{bottom:227.463621pt;}
.y11f{bottom:227.531248pt;}
.y19{bottom:227.682268pt;}
.y9b{bottom:227.875007pt;}
.y51{bottom:228.531227pt;}
.yc5{bottom:228.744792pt;}
.y146{bottom:228.848939pt;}
.yee{bottom:229.010416pt;}
.y7a{bottom:229.583329pt;}
.y40{bottom:233.156231pt;}
.ydb{bottom:237.223944pt;}
.y188{bottom:240.114579pt;}
.y19c{bottom:241.369777pt;}
.y12b{bottom:241.837684pt;}
.y11e{bottom:242.468748pt;}
.y1e1{bottom:243.427167pt;}
.yc4{bottom:244.145833pt;}
.y18{bottom:244.479148pt;}
.y50{bottom:245.328107pt;}
.y145{bottom:245.645819pt;}
.y79{bottom:249.651037pt;}
.y3f{bottom:249.958319pt;}
.yda{bottom:254.026032pt;}
.y163{bottom:255.822912pt;}
.y196{bottom:256.838360pt;}
.y187{bottom:256.916657pt;}
.y11d{bottom:257.401044pt;}
.y19b{bottom:258.166657pt;}
.y12a{bottom:258.639772pt;}
.y1e0{bottom:259.385494pt;}
.y1bc{bottom:260.244792pt;}
.y17{bottom:261.281236pt;}
.y9a{bottom:261.718751pt;}
.y4f{bottom:262.130195pt;}
.y144{bottom:262.447907pt;}
.y3e{bottom:266.755199pt;}
.y78{bottom:269.713538pt;}
.y162{bottom:270.755207pt;}
.yd9{bottom:270.822912pt;}
.yc3{bottom:271.145833pt;}
.y195{bottom:273.640448pt;}
.y186{bottom:273.713537pt;}
.y19a{bottom:274.968745pt;}
.y120{bottom:275.333333pt;}
.y1df{bottom:275.343829pt;}
.y129{bottom:275.436652pt;}
.y11c{bottom:276.333333pt;}
.y16{bottom:278.078116pt;}
.y4e{bottom:278.927075pt;}
.y3d{bottom:283.557287pt;}
.y161{bottom:285.687503pt;}
.yc2{bottom:286.078121pt;}
.y99{bottom:286.281251pt;}
.yd8{bottom:287.625000pt;}
.y77{bottom:289.781246pt;}
.y194{bottom:290.437328pt;}
.y185{bottom:290.515616pt;}
.y143{bottom:291.249995pt;}
.y1de{bottom:291.307375pt;}
.y199{bottom:291.765625pt;}
.y128{bottom:292.238740pt;}
.y15{bottom:294.880204pt;}
.y4d{bottom:295.729163pt;}
.yfa{bottom:299.937502pt;}
.y3c{bottom:300.354163pt;}
.yc1{bottom:301.010416pt;}
.y164{bottom:303.619792pt;}
.y160{bottom:304.619792pt;}
.y193{bottom:307.239416pt;}
.y1dd{bottom:307.265704pt;}
.y184{bottom:307.317704pt;}
.y127{bottom:309.040828pt;}
.y1bb{bottom:309.671856pt;}
.y76{bottom:309.848954pt;}
.y14{bottom:311.682292pt;}
.yf9{bottom:314.869797pt;}
.yc0{bottom:315.942708pt;}
.y3b{bottom:317.156203pt;}
.y142{bottom:320.046871pt;}
.y98{bottom:321.468749pt;}
.y1dc{bottom:323.224039pt;}
.y183{bottom:324.114564pt;}
.y4c{bottom:324.531251pt;}
.ye6{bottom:324.953127pt;}
.y126{bottom:325.837693pt;}
.y1ba{bottom:326.473944pt;}
.y75{bottom:329.916662pt;}
.ybf{bottom:330.875000pt;}
.yfb{bottom:332.807292pt;}
.yf8{bottom:333.807292pt;}
.y3a{bottom:333.958291pt;}
.y10f{bottom:337.677081pt;}
.y1db{bottom:339.187584pt;}
.y182{bottom:340.916652pt;}
.ye7{bottom:342.885416pt;}
.y1b9{bottom:343.270824pt;}
.ye5{bottom:343.885416pt;}
.y13{bottom:345.354167pt;}
.ybe{bottom:345.812500pt;}
.y97{bottom:348.739584pt;}
.y141{bottom:348.848945pt;}
.y74{bottom:349.984370pt;}
.y39{bottom:350.755171pt;}
.y4b{bottom:351.776041pt;}
.y10e{bottom:352.609376pt;}
.y1da{bottom:355.145912pt;}
.y181{bottom:357.713532pt;}
.y1b8{bottom:360.072912pt;}
.ybd{bottom:360.744792pt;}
.y10d{bottom:367.541672pt;}
.y38{bottom:367.557259pt;}
.y73{bottom:370.046872pt;}
.y1d9{bottom:371.104247pt;}
.y180{bottom:374.515620pt;}
.ybc{bottom:376.145836pt;}
.y1b7{bottom:376.875000pt;}
.y96{bottom:378.161459pt;}
.y12{bottom:380.687500pt;}
.y37{bottom:384.354139pt;}
.y110{bottom:385.479167pt;}
.y152{bottom:386.177082pt;}
.y10c{bottom:386.479167pt;}
.y1d8{bottom:387.067792pt;}
.y72{bottom:390.114580pt;}
.y17f{bottom:391.317660pt;}
.y151{bottom:401.109377pt;}
.ybb{bottom:402.807292pt;}
.y1d7{bottom:403.026121pt;}
.y1b6{bottom:404.125000pt;}
.y17e{bottom:408.114540pt;}
.y71{bottom:410.182288pt;}
.y5e{bottom:411.739578pt;}
.y36{bottom:413.156227pt;}
.y1d6{bottom:418.984457pt;}
.y153{bottom:419.041667pt;}
.y150{bottom:420.041667pt;}
.y5d{bottom:426.671874pt;}
.y35{bottom:429.958315pt;}
.y70{bottom:430.249996pt;}
.yba{bottom:430.395833pt;}
.y95{bottom:430.651037pt;}
.y1d5{bottom:434.942792pt;}
.y17d{bottom:436.916628pt;}
.y13b{bottom:439.645835pt;}
.y1a5{bottom:441.296873pt;}
.y5c{bottom:441.604169pt;}
.y11{bottom:442.109375pt;}
.y34{bottom:446.755195pt;}
.y6f{bottom:450.317703pt;}
.y94{bottom:450.713538pt;}
.y1d4{bottom:450.906333pt;}
.y13a{bottom:454.583336pt;}
.y1a4{bottom:456.229168pt;}
.yb9{bottom:457.661459pt;}
.y5f{bottom:459.536459pt;}
.y5b{bottom:460.536459pt;}
.y1b5{bottom:460.614601pt;}
.y10{bottom:461.046875pt;}
.y33{bottom:463.557283pt;}
.y17c{bottom:465.713508pt;}
.y1d3{bottom:466.864661pt;}
.y1b4{bottom:468.614599pt;}
.y6e{bottom:470.380208pt;}
.y93{bottom:470.781246pt;}
.y1a3{bottom:471.161464pt;}
.y13c{bottom:472.515625pt;}
.y139{bottom:473.515625pt;}
.yf{bottom:475.979155pt;}
.y32{bottom:480.354163pt;}
.y17b{bottom:482.515596pt;}
.y1d2{bottom:482.822996pt;}
.y1a6{bottom:489.098959pt;}
.y1a2{bottom:490.098959pt;}
.y92{bottom:490.848954pt;}
.ye{bottom:490.911445pt;}
.y31{bottom:497.156221pt;}
.yb8{bottom:497.515572pt;}
.y174{bottom:498.640308pt;}
.y1d1{bottom:498.786541pt;}
.y17a{bottom:499.317684pt;}
.y84{bottom:502.921874pt;}
.y1b2{bottom:505.614597pt;}
.yd{bottom:509.843741pt;}
.y91{bottom:510.916662pt;}
.y1b1{bottom:513.614596pt;}
.y30{bottom:513.958309pt;}
.yb7{bottom:514.317660pt;}
.y1d0{bottom:514.744875pt;}
.y173{bottom:515.437188pt;}
.y179{bottom:516.114564pt;}
.y83{bottom:517.854169pt;}
.y1b3{bottom:521.614595pt;}
.yc{bottom:528.776037pt;}
.y1cf{bottom:530.703202pt;}
.y2f{bottom:530.755189pt;}
.y90{bottom:530.984376pt;}
.y172{bottom:532.239276pt;}
.y178{bottom:532.916652pt;}
.y82{bottom:536.786459pt;}
.yb6{bottom:540.572868pt;}
.y1ce{bottom:546.666747pt;}
.y2e{bottom:547.557277pt;}
.yb{bottom:547.713541pt;}
.y171{bottom:549.036156pt;}
.y177{bottom:549.713532pt;}
.y1b0{bottom:550.614594pt;}
.y8f{bottom:552.916672pt;}
.y1cd{bottom:562.625083pt;}
.y2d{bottom:564.354157pt;}
.y170{bottom:565.838244pt;}
.y176{bottom:566.515620pt;}
.y6d{bottom:571.317704pt;}
.y8e{bottom:574.848961pt;}
.yb5{bottom:576.114540pt;}
.y1cc{bottom:578.583412pt;}
.y1af{bottom:579.614593pt;}
.y2c{bottom:581.156245pt;}
.y16f{bottom:582.640332pt;}
.y175{bottom:583.317708pt;}
.y1ae{bottom:587.614591pt;}
.y6c{bottom:588.114573pt;}
.ya{bottom:592.380216pt;}
.yb4{bottom:592.916628pt;}
.y1cb{bottom:594.546957pt;}
.y2b{bottom:597.958324pt;}
.y16e{bottom:599.437212pt;}
.y9{bottom:604.140629pt;}
.y6b{bottom:604.916661pt;}
.ya5{bottom:607.385418pt;}
.y1ca{bottom:610.505292pt;}
.y2a{bottom:614.755204pt;}
.y8{bottom:615.901041pt;}
.y16d{bottom:616.239300pt;}
.yb3{bottom:621.713508pt;}
.y6a{bottom:621.713517pt;}
.ya4{bottom:622.317713pt;}
.y1ad{bottom:624.614589pt;}
.y1c9{bottom:626.463625pt;}
.y29{bottom:631.557292pt;}
.y1ac{bottom:632.614588pt;}
.y16c{bottom:633.036180pt;}
.y7{bottom:634.531251pt;}
.yb2{bottom:638.515596pt;}
.y69{bottom:638.515605pt;}
.y1e{bottom:638.531251pt;}
.ya3{bottom:641.255208pt;}
.y1c8{bottom:642.427167pt;}
.yd6{bottom:646.926876pt;}
.y16b{bottom:649.838268pt;}
.yb1{bottom:655.317684pt;}
.y68{bottom:655.317693pt;}
.y28{bottom:658.807292pt;}
.y16a{bottom:666.640356pt;}
.y1ab{bottom:669.614586pt;}
.yb0{bottom:672.114564pt;}
.y67{bottom:672.114573pt;}
.y6{bottom:672.140627pt;}
.yd5{bottom:673.187292pt;}
.yab{bottom:675.671023pt;}
.y8d{bottom:676.838538pt;}
.y169{bottom:683.437236pt;}
.yaf{bottom:688.916652pt;}
.y66{bottom:688.916661pt;}
.y125{bottom:691.634569pt;}
.yaa{bottom:692.467903pt;}
.y8c{bottom:696.906246pt;}
.y1aa{bottom:698.614585pt;}
.y168{bottom:700.239324pt;}
.y5{bottom:705.520828pt;}
.y65{bottom:705.713537pt;}
.y27{bottom:708.234375pt;}
.yd4{bottom:708.260208pt;}
.y124{bottom:708.436657pt;}
.ya9{bottom:709.269991pt;}
.y8b{bottom:716.973954pt;}
.y167{bottom:717.036204pt;}
.yae{bottom:717.713532pt;}
.y64{bottom:722.515616pt;}
.yd3{bottom:723.192497pt;}
.y123{bottom:725.233537pt;}
.ya8{bottom:726.066871pt;}
.y1a9{bottom:727.614584pt;}
.yea{bottom:728.140204pt;}
.y166{bottom:733.838292pt;}
.yad{bottom:734.515620pt;}
.y26{bottom:735.484375pt;}
.y23{bottom:735.999625pt;}
.y8a{bottom:737.041662pt;}
.yd2{bottom:738.124792pt;}
.y155{bottom:738.660959pt;}
.y4{bottom:738.906251pt;}
.y63{bottom:739.317704pt;}
.y122{bottom:742.035625pt;}
.ya7{bottom:742.868959pt;}
.ye9{bottom:744.942292pt;}
.y13e{bottom:745.103625pt;}
.y112{bottom:745.348959pt;}
.y156{bottom:751.317689pt;}
.y114{bottom:751.317693pt;}
.yac{bottom:751.317708pt;}
.y62{bottom:756.114569pt;}
.y89{bottom:757.109370pt;}
.y1a8{bottom:765.963541pt;}
.y140{bottom:768.114569pt;}
.y113{bottom:768.114573pt;}
.y61{bottom:772.916657pt;}
.y88{bottom:777.171872pt;}
.y13f{bottom:784.916657pt;}
.y25{bottom:784.916661pt;}
.y60{bottom:789.713537pt;}
.y87{bottom:797.239580pt;}
.y3{bottom:799.447917pt;}
.y4a{bottom:801.713537pt;}
.y24{bottom:801.713541pt;}
.y1a7{bottom:809.885416pt;}
.y86{bottom:817.307292pt;}
.y49{bottom:818.515625pt;}
.y2{bottom:835.078128pt;}
.y1{bottom:849.078125pt;}
.yd0{bottom:866.427067pt;}
.y85{bottom:866.427072pt;}
.y48{bottom:866.427084pt;}
.h9{height:23.328125pt;}
.h6{height:24.495670pt;}
.ha{height:24.932359pt;}
.h1{height:27.215197pt;}
.h11{height:28.438367pt;}
.h5{height:31.105115pt;}
.h10{height:31.459293pt;}
.hf{height:31.659632pt;}
.h13{height:31.659679pt;}
.h1a{height:31.659699pt;}
.h16{height:32.076172pt;}
.h2c{height:33.243717pt;}
.h2e{height:33.243764pt;}
.h14{height:34.673513pt;}
.h19{height:34.945312pt;}
.h2{height:34.992188pt;}
.h23{height:34.992241pt;}
.h12{height:34.992246pt;}
.h1f{height:34.992262pt;}
.h1d{height:34.992267pt;}
.he{height:34.992283pt;}
.h29{height:34.992299pt;}
.hc{height:34.992305pt;}
.h27{height:34.992321pt;}
.hd{height:34.992379pt;}
.h24{height:34.992438pt;}
.h17{height:35.859375pt;}
.h2a{height:36.031665pt;}
.h8{height:41.596640pt;}
.h15{height:42.711321pt;}
.h7{height:46.616020pt;}
.h4{height:60.962105pt;}
.h3{height:62.595730pt;}
.h2b{height:63.105110pt;}
.h2d{height:654.360000pt;}
.h28{height:734.349333pt;}
.h26{height:746.401333pt;}
.hb{height:748.562667pt;}
.h1b{height:749.292000pt;}
.h25{height:751.224000pt;}
.h1e{height:753.369333pt;}
.h21{height:754.598667pt;}
.h18{height:755.432000pt;}
.h1c{height:757.505333pt;}
.h22{height:757.666667pt;}
.h20{height:757.912000pt;}
.h0{height:906.666667pt;}
.w1{width:483.781333pt;}
.w0{width:622.666667pt;}
.x0{left:0.000000pt;}
.x1e{left:10.297416pt;}
.xe{left:20.000541pt;}
.x1d{left:40.000541pt;}
.x12{left:60.000541pt;}
.x3{left:69.921875pt;}
.xa{left:73.921875pt;}
.x7{left:76.921875pt;}
.xc{left:80.421875pt;}
.x5{left:83.921875pt;}
.x4{left:84.921875pt;}
.xd{left:89.921875pt;}
.x10{left:95.588541pt;}
.x14{left:96.921875pt;}
.x1c{left:109.921874pt;}
.x6{left:114.921875pt;}
.x8{left:122.921875pt;}
.x1{left:124.718749pt;}
.x11{left:129.921875pt;}
.x9{left:135.812500pt;}
.x15{left:142.921875pt;}
.xb{left:167.921872pt;}
.x2{left:246.812500pt;}
.x1b{left:427.098955pt;}
.x16{left:490.703125pt;}
.x13{left:491.701823pt;}
.x17{left:505.701172pt;}
.x1a{left:515.702148pt;}
.xf{left:542.707031pt;}
.x18{left:543.707031pt;}
.x19{left:553.703125pt;}
}




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