
    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_49673276b135e1c4935faaba.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.873535;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_cfdd4721aefc30790d36d191.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.338867;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_74d37e879899b8877555b894.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.052734;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_c606fca4f54a30c098e549ca.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.982910;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_e7b99b66d1533e5cdf1b2516.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.747070;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_63cae1f1e1dbd9776cc9ae8d.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.739746;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_880b57bdd88982e0bd91e441.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.767090;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);}
.v2{vertical-align:-23.759995px;}
.v3{vertical-align:-5.759856px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:4.320099px;}
.v5{vertical-align:5.760130px;}
.v8{vertical-align:20.880068px;}
.v1{vertical-align:23.760063px;}
.v4{vertical-align:29.520054px;}
.v7{vertical-align:40.319825px;}
.ls0{letter-spacing:0.000000px;}
.lsf{letter-spacing:0.055268px;}
.lse{letter-spacing:0.097466px;}
.lsd{letter-spacing:0.097470px;}
.lsc{letter-spacing:0.122980px;}
.ls1{letter-spacing:0.127335px;}
.lsb{letter-spacing:0.164391px;}
.ls7{letter-spacing:0.164593px;}
.ls5{letter-spacing:0.164665px;}
.ls4{letter-spacing:0.194764px;}
.ls6{letter-spacing:0.194867px;}
.ls2{letter-spacing:0.194903px;}
.ls8{letter-spacing:0.216006px;}
.lsa{letter-spacing:0.237769px;}
.ls3{letter-spacing:0.410664px;}
.ls10{letter-spacing:0.506579px;}
.ls11{letter-spacing:0.506718px;}
.ls9{letter-spacing:65.206288px;}
.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;}
}
.ws0{word-spacing:-18.984000px;}
.ws3{word-spacing:-14.941866px;}
.ws5{word-spacing:-13.480132px;}
.ws2{word-spacing:-9.419881px;}
.ws4{word-spacing:-8.770242px;}
.ws1{word-spacing:0.000000px;}
._8f{margin-left:-3045.561509px;}
._10f{margin-left:-3031.530329px;}
._8d{margin-left:-3030.427242px;}
._8c{margin-left:-3029.321241px;}
._88{margin-left:-3028.243655px;}
._11d{margin-left:-3027.146631px;}
._b3{margin-left:-3026.003867px;}
._f2{margin-left:-3023.642565px;}
._67{margin-left:-3022.095011px;}
._ae{margin-left:-3020.646334px;}
._79{margin-left:-3018.816211px;}
._9e{margin-left:-3016.878747px;}
._81{margin-left:-3015.556458px;}
._a7{margin-left:-3013.123590px;}
._100{margin-left:-3011.999644px;}
._99{margin-left:-3009.533266px;}
._c9{margin-left:-3008.304013px;}
._b6{margin-left:-3006.293657px;}
._77{margin-left:-3004.376338px;}
._f0{margin-left:-3002.618170px;}
._ab{margin-left:-3000.568622px;}
._1f{margin-left:-2998.721728px;}
._19{margin-left:-2996.832265px;}
._1a{margin-left:-2994.842709px;}
._6f{margin-left:-2993.011431px;}
._6c{margin-left:-2991.206196px;}
._95{margin-left:-2990.036281px;}
._55{margin-left:-2988.724590px;}
._85{margin-left:-2987.054353px;}
._7d{margin-left:-2985.891214px;}
._b4{margin-left:-2984.119491px;}
._4c{margin-left:-2981.426175px;}
._64{margin-left:-2979.527904px;}
._92{margin-left:-2977.825252px;}
._96{margin-left:-2975.702811px;}
._d4{margin-left:-2974.512751px;}
._48{margin-left:-2973.406182px;}
._46{margin-left:-2972.255314px;}
._73{margin-left:-2970.354319px;}
._cc{margin-left:-2969.157481px;}
._a2{margin-left:-2967.511397px;}
._118{margin-left:-2965.085307px;}
._45{margin-left:-2963.489014px;}
._c6{margin-left:-2961.071374px;}
._4e{margin-left:-2959.759683px;}
._59{margin-left:-2958.291799px;}
._14a{margin-left:-2957.197543px;}
._62{margin-left:-2955.621436px;}
._9b{margin-left:-2954.183201px;}
._7c{margin-left:-2952.324122px;}
._e8{margin-left:-2951.115014px;}
._f5{margin-left:-2949.944002px;}
._108{margin-left:-2948.490580px;}
._c1{margin-left:-2946.526195px;}
._51{margin-left:-2944.064753px;}
._74{margin-left:-2942.037190px;}
._af{margin-left:-2939.680631px;}
._97{margin-left:-2937.892124px;}
._125{margin-left:-2936.080112px;}
._53{margin-left:-2933.386795px;}
._49{margin-left:-2931.727156px;}
._d0{margin-left:-2930.202703px;}
._98{margin-left:-2928.873637px;}
._8{margin-left:-2926.636219px;}
._9f{margin-left:-2924.397998px;}
._71{margin-left:-2922.686883px;}
._cd{margin-left:-2920.048000px;}
._6d{margin-left:-2918.718933px;}
._c{margin-left:-2916.866585px;}
._76{margin-left:-2915.016524px;}
._d5{margin-left:-2912.239717px;}
._ea{margin-left:-2911.029513px;}
._de{margin-left:-2908.245928px;}
._89{margin-left:-2906.949781px;}
._43{margin-left:-2904.838719px;}
._ce{margin-left:-2903.453273px;}
._b7{margin-left:-2901.961289px;}
._6e{margin-left:-2900.140773px;}
._52{margin-left:-2898.961311px;}
._e1{margin-left:-2897.892882px;}
._7b{margin-left:-2896.333057px;}
._e7{margin-left:-2894.712610px;}
._70{margin-left:-2892.246231px;}
._a8{margin-left:-2890.791713px;}
._da{margin-left:-2888.835202px;}
._cf{margin-left:-2885.568672px;}
._e{margin-left:-2883.879023px;}
._68{margin-left:-2881.284788px;}
._5c{margin-left:-2879.232283px;}
._f8{margin-left:-2877.833281px;}
._50{margin-left:-2875.841419px;}
._ff{margin-left:-2872.478011px;}
._a0{margin-left:-2869.338217px;}
._63{margin-left:-2866.638123px;}
._f7{margin-left:-2865.059826px;}
._56{margin-left:-2863.437707px;}
._11a{margin-left:-2861.648607px;}
._120{margin-left:-2860.141531px;}
._6{margin-left:-2857.750773px;}
._60{margin-left:-2854.988424px;}
._dd{margin-left:-2852.036375px;}
._b5{margin-left:-2850.548158px;}
._ac{margin-left:-2849.278616px;}
._dc{margin-left:-2847.064257px;}
._bd{margin-left:-2844.048797px;}
._d9{margin-left:-2842.712973px;}
._58{margin-left:-2840.846710px;}
._82{margin-left:-2838.871726px;}
._47{margin-left:-2837.249607px;}
._83{margin-left:-2835.387804px;}
._e4{margin-left:-2832.730956px;}
._57{margin-left:-2831.458458px;}
._e6{margin-left:-2830.350836px;}
._44{margin-left:-2822.268549px;}
._ed{margin-left:-2819.586451px;}
._80{margin-left:-2818.038896px;}
._75{margin-left:-2815.778735px;}
._5e{margin-left:-2813.653526px;}
._4f{margin-left:-2810.671598px;}
._a5{margin-left:-2808.948802px;}
._5d{margin-left:-2806.909852px;}
._84{margin-left:-2805.332652px;}
._65{margin-left:-2804.053376px;}
._138{margin-left:-2798.449971px;}
._ee{margin-left:-2795.388562px;}
._e9{margin-left:-2793.008442px;}
._87{margin-left:-2791.487809px;}
._bc{margin-left:-2786.549370px;}
._bb{margin-left:-2784.572714px;}
._a3{margin-left:-2781.333106px;}
._4d{margin-left:-2776.517350px;}
._e3{margin-left:-2775.316691px;}
._5f{margin-left:-2774.203344px;}
._14d{margin-left:-2765.326631px;}
._c5{margin-left:-2762.556602px;}
._5b{margin-left:-2761.092539px;}
._11e{margin-left:-2757.850206px;}
._4b{margin-left:-2752.385575px;}
._f1{margin-left:-2748.222037px;}
._ba{margin-left:-2746.721549px;}
._114{margin-left:-2743.641092px;}
._104{margin-left:-2739.324605px;}
._e2{margin-left:-2736.678930px;}
._94{margin-left:-2735.422756px;}
._54{margin-left:-2730.342542px;}
._13a{margin-left:-2726.497305px;}
._f6{margin-left:-2723.357511px;}
._e0{margin-left:-2712.309620px;}
._eb{margin-left:-2706.333515px;}
._c2{margin-left:-2684.323064px;}
._db{margin-left:-2683.126226px;}
._123{margin-left:-2667.417909px;}
._d1{margin-left:-2633.381237px;}
._27{margin-left:-2612.791049px;}
._5{margin-left:-2605.489848px;}
._78{margin-left:-2600.047284px;}
._103{margin-left:-2563.168788px;}
._5a{margin-left:-2548.091925px;}
._ca{margin-left:-2537.806665px;}
._121{margin-left:-2507.096956px;}
._116{margin-left:-2499.863559px;}
._b0{margin-left:-2495.121300px;}
._93{margin-left:-2463.309235px;}
._106{margin-left:-2378.887671px;}
._107{margin-left:-2347.086621px;}
._12b{margin-left:-2317.335118px;}
._a6{margin-left:-2304.158198px;}
._26{margin-left:-2294.668460px;}
._10{margin-left:-2249.698464px;}
._12d{margin-left:-2230.784525px;}
._7a{margin-left:-2200.424626px;}
._a{margin-left:-2176.904167px;}
._72{margin-left:-2134.428850px;}
._15{margin-left:-2109.875887px;}
._13{margin-left:-2086.801944px;}
._14{margin-left:-2060.269905px;}
._b2{margin-left:-2038.566192px;}
._f3{margin-left:-2029.359622px;}
._14c{margin-left:-1997.101929px;}
._61{margin-left:-1974.449257px;}
._fc{margin-left:-1959.669310px;}
._86{margin-left:-1929.500977px;}
._11{margin-left:-1917.312031px;}
._b{margin-left:-1903.802219px;}
._a4{margin-left:-1883.690441px;}
._91{margin-left:-1860.411377px;}
._149{margin-left:-1835.101929px;}
._101{margin-left:-1824.994176px;}
._2f{margin-left:-1808.676829px;}
._135{margin-left:-1793.341938px;}
._d8{margin-left:-1783.725392px;}
._10c{margin-left:-1758.622046px;}
._102{margin-left:-1756.069408px;}
._ef{margin-left:-1706.086884px;}
._112{margin-left:-1691.799385px;}
._34{margin-left:-1679.921457px;}
._d2{margin-left:-1630.531434px;}
._137{margin-left:-1628.461870px;}
._126{margin-left:-1623.913211px;}
._2e{margin-left:-1613.117196px;}
._7e{margin-left:-1557.937768px;}
._fb{margin-left:-1542.387317px;}
._fd{margin-left:-1532.344698px;}
._129{margin-left:-1529.101929px;}
._a1{margin-left:-1517.653923px;}
._30{margin-left:-1503.578787px;}
._12a{margin-left:-1495.452835px;}
._105{margin-left:-1463.017562px;}
._128{margin-left:-1451.824076px;}
._11c{margin-left:-1414.389741px;}
._11b{margin-left:-1404.604803px;}
._8b{margin-left:-1402.541888px;}
._14e{margin-left:-1399.322424px;}
._b8{margin-left:-1377.087825px;}
._c4{margin-left:-1373.934476px;}
._66{margin-left:-1350.937245px;}
._9a{margin-left:-1331.673976px;}
._3c{margin-left:-1310.148699px;}
._fe{margin-left:-1277.400601px;}
._10d{margin-left:-1238.486112px;}
._69{margin-left:-1235.867360px;}
._3a{margin-left:-1227.542114px;}
._36{margin-left:-1224.663553px;}
._115{margin-left:-1211.418380px;}
._113{margin-left:-1205.468079px;}
._32{margin-left:-1195.752881px;}
._c0{margin-left:-1185.111606px;}
._2c{margin-left:-1162.150211px;}
._2a{margin-left:-1135.287084px;}
._3e{margin-left:-1130.842241px;}
._110{margin-left:-1118.858150px;}
._38{margin-left:-1116.164575px;}
._14b{margin-left:-1107.493242px;}
._9d{margin-left:-1103.923062px;}
._4a{margin-left:-1098.908962px;}
._ec{margin-left:-1082.481836px;}
._136{margin-left:-1032.651685px;}
._d{margin-left:-1023.416841px;}
._c7{margin-left:-1021.987114px;}
._a9{margin-left:-987.759973px;}
._111{margin-left:-958.755874px;}
._6a{margin-left:-911.199440px;}
._8a{margin-left:-894.472484px;}
._117{margin-left:-885.209684px;}
._40{margin-left:-882.567761px;}
._10e{margin-left:-880.588450px;}
._cb{margin-left:-876.138637px;}
._6b{margin-left:-858.618308px;}
._f9{margin-left:-822.797643px;}
._ad{margin-left:-815.577801px;}
._d7{margin-left:-809.111952px;}
._df{margin-left:-797.079122px;}
._f{margin-left:-787.225301px;}
._7f{margin-left:-778.170389px;}
._aa{margin-left:-751.658495px;}
._28{margin-left:-732.562017px;}
._127{margin-left:-729.377925px;}
._109{margin-left:-714.303830px;}
._c8{margin-left:-706.303982px;}
._10a{margin-left:-681.114376px;}
._d3{margin-left:-659.296608px;}
._119{margin-left:-623.330347px;}
._f4{margin-left:-608.454596px;}
._42{margin-left:-591.010979px;}
._b9{margin-left:-577.777491px;}
._d6{margin-left:-570.174329px;}
._122{margin-left:-556.449446px;}
._fa{margin-left:-523.365299px;}
._9{margin-left:-517.170302px;}
._9c{margin-left:-499.167410px;}
._139{margin-left:-495.729459px;}
._bf{margin-left:-481.845424px;}
._10b{margin-left:-458.110336px;}
._12{margin-left:-455.747592px;}
._e5{margin-left:-422.276305px;}
._16{margin-left:-416.138259px;}
._124{margin-left:-389.086851px;}
._be{margin-left:-384.194381px;}
._7{margin-left:-371.918273px;}
._11f{margin-left:-358.277517px;}
._12c{margin-left:-224.461870px;}
._41{margin-left:-190.621870px;}
._2{margin-left:-7.353600px;}
._3{margin-left:-4.284000px;}
._1{margin-left:-1.996800px;}
._4{width:1.011861px;}
._17{width:2.796951px;}
._18{width:4.565903px;}
._0{width:5.587200px;}
._1c{width:6.866996px;}
._1b{width:7.943031px;}
._21{width:9.153752px;}
._24{width:10.859557px;}
._20{width:12.855645px;}
._25{width:13.925550px;}
._8e{width:16.165953px;}
._90{width:17.403338px;}
._22{width:18.616383px;}
._23{width:19.974053px;}
._c3{width:21.058744px;}
._1d{width:23.805592px;}
._1e{width:25.132531px;}
._13f{width:58.132869px;}
._145{width:61.079085px;}
._144{width:78.615433px;}
._143{width:85.919296px;}
._148{width:88.499978px;}
._146{width:96.558719px;}
._142{width:98.655476px;}
._13e{width:109.479703px;}
._147{width:117.269211px;}
._141{width:118.419039px;}
._140{width:129.844858px;}
._13d{width:164.266736px;}
._31{width:196.881859px;}
._29{width:222.893763px;}
._133{width:225.190121px;}
._131{width:226.429499px;}
._132{width:237.444173px;}
._33{width:248.258468px;}
._134{width:250.240942px;}
._39{width:263.130088px;}
._3d{width:265.072974px;}
._3b{width:266.584309px;}
._37{width:268.180095px;}
._35{width:271.074152px;}
._2b{width:274.087008px;}
._2d{width:300.526332px;}
._3f{width:313.037200px;}
._130{width:595.065282px;}
._13b{width:694.525010px;}
._12e{width:721.796273px;}
._b1{width:926.643282px;}
._13c{width:993.056942px;}
._12f{width:1022.678681px;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(35,31,32);}
.fs6{font-size:38.806380px;}
.fs4{font-size:41.680890px;}
.fs5{font-size:59.646600px;}
.fs2{font-size:66.000000px;}
.fs3{font-size:66.114450px;}
.fs1{font-size:84.000000px;}
.fs0{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y144{bottom:2.700028px;}
.y103{bottom:2.879997px;}
.y107{bottom:2.879998px;}
.yfe{bottom:4.500000px;}
.y105{bottom:4.500017px;}
.yc{bottom:8.040000px;}
.y1c{bottom:69.510000px;}
.y16{bottom:77.715000px;}
.y1b{bottom:91.590000px;}
.y15{bottom:99.795000px;}
.y11{bottom:111.855000px;}
.ye5{bottom:113.039977px;}
.y1a{bottom:113.670000px;}
.y84{bottom:117.360008px;}
.yab{bottom:118.620002px;}
.y131{bottom:120.059967px;}
.yc6{bottom:124.200027px;}
.yf3{bottom:128.159981px;}
.y62{bottom:132.299973px;}
.y41{bottom:133.559967px;}
.y10{bottom:133.935000px;}
.y19{bottom:135.750000px;}
.ye4{bottom:136.259994px;}
.y83{bottom:140.399986px;}
.yaa{bottom:141.840019px;}
.y130{bottom:143.279983px;}
.yc5{bottom:147.240006px;}
.yb4{bottom:148.679970px;}
.yfc{bottom:148.860008px;}
.yc1{bottom:149.940033px;}
.yf2{bottom:151.379998px;}
.y17{bottom:154.950000px;}
.y61{bottom:155.519989px;}
.yf{bottom:156.015000px;}
.y40{bottom:156.779983px;}
.y18{bottom:157.830000px;}
.y82{bottom:163.620002px;}
.y12f{bottom:166.320030px;}
.yc4{bottom:170.460022px;}
.yb3{bottom:171.720017px;}
.yfb{bottom:172.080025px;}
.ye3{bottom:174.419975px;}
.y60{bottom:178.559967px;}
.y3f{bottom:180.000000px;}
.y81{bottom:186.840019px;}
.yc0{bottom:188.100013px;}
.yf1{bottom:189.539977px;}
.y92{bottom:193.679970px;}
.yb2{bottom:194.940033px;}
.yfa{bottom:195.120002px;}
.ye2{bottom:197.639992px;}
.y5f{bottom:201.779983px;}
.y3e{bottom:203.039977px;}
.y12c{bottom:203.580025px;}
.y80{bottom:209.879998px;}
.yf0{bottom:212.580025px;}
.y12e{bottom:212.759994px;}
.y91{bottom:216.720017px;}
.ya9{bottom:218.159981px;}
.yf9{bottom:218.340019px;}
.y154{bottom:219.779983px;}
.y5e{bottom:225.000000px;}
.y12b{bottom:225.179970px;}
.y3d{bottom:226.259994px;}
.y7f{bottom:233.100013px;}
.y129{bottom:235.259994px;}
.ye1{bottom:235.799973px;}
.y90{bottom:239.940033px;}
.y12a{bottom:240.840019px;}
.ya8{bottom:241.379998px;}
.y153{bottom:243.000000px;}
.y12d{bottom:246.419975px;}
.y5d{bottom:248.039977px;}
.y3c{bottom:249.480011px;}
.yf8{bottom:252.000000px;}
.ycc{bottom:254.879998px;}
.ye0{bottom:259.019989px;}
.y8f{bottom:263.159981px;}
.ya7{bottom:264.419975px;}
.y128{bottom:265.500000px;}
.y152{bottom:266.220017px;}
.y5c{bottom:271.259994px;}
.y3b{bottom:272.700027px;}
.yef{bottom:273.960022px;}
.y126{bottom:275.580025px;}
.ycb{bottom:278.100013px;}
.yaf{bottom:279.539977px;}
.y127{bottom:281.159981px;}
.ydf{bottom:282.059967px;}
.y8e{bottom:286.379998px;}
.y151{bottom:289.259994px;}
.y5b{bottom:294.480011px;}
.y3a{bottom:295.740006px;}
.yee{bottom:297.179970px;}
.yca{bottom:301.320030px;}
.ya6{bottom:302.580025px;}
.y125{bottom:305.820030px;}
.y7e{bottom:309.419975px;}
.y150{bottom:312.480011px;}
.y123{bottom:315.899986px;}
.y5a{bottom:317.700027px;}
.y39{bottom:318.960022px;}
.yde{bottom:320.220017px;}
.y124{bottom:321.480011px;}
.yc9{bottom:324.539977px;}
.ya5{bottom:325.799973px;}
.y8d{bottom:332.639992px;}
.ybf{bottom:333.899986px;}
.yed{bottom:335.340019px;}
.y38{bottom:342.179970px;}
.ydd{bottom:343.440033px;}
.y148{bottom:344.340019px;}
.ya{bottom:344.680500px;}
.y14f{bottom:346.139992px;}
.y7d{bottom:347.580025px;}
.ya4{bottom:349.019989px;}
.y59{bottom:355.860008px;}
.yec{bottom:358.379998px;}
.y122{bottom:363.240006px;}
.y37{bottom:365.220017px;}
.y7c{bottom:370.799973px;}
.ya3{bottom:372.059967px;}
.y58{bottom:378.899986px;}
.y147{bottom:379.440033px;}
.ydc{bottom:381.600013px;}
.yd{bottom:386.490000px;}
.yae{bottom:387.179970px;}
.y121{bottom:387.899986px;}
.y36{bottom:388.440033px;}
.y7b{bottom:394.019989px;}
.ybe{bottom:395.279983px;}
.y9{bottom:395.689500px;}
.yeb{bottom:396.539977px;}
.y146{bottom:399.779983px;}
.y57{bottom:402.120002px;}
.ydb{bottom:404.820030px;}
.ya2{bottom:410.220017px;}
.y35{bottom:411.659981px;}
.y7a{bottom:417.059967px;}
.y145{bottom:418.139992px;}
.ybd{bottom:418.500000px;}
.yea{bottom:419.759994px;}
.y56{bottom:425.340019px;}
.y120{bottom:429.840019px;}
.ya1{bottom:433.440033px;}
.y34{bottom:434.700027px;}
.yb{bottom:434.850000px;}
.y142{bottom:436.500000px;}
.y143{bottom:439.019989px;}
.y79{bottom:440.279983px;}
.yda{bottom:442.980011px;}
.y8{bottom:446.698500px;}
.y55{bottom:448.379998px;}
.y11f{bottom:453.059967px;}
.y141{bottom:455.580025px;}
.ya0{bottom:456.659981px;}
.y33{bottom:457.919975px;}
.y78{bottom:463.500000px;}
.yd9{bottom:466.019989px;}
.y54{bottom:471.600013px;}
.y140{bottom:473.759994px;}
.yf7{bottom:474.659981px;}
.y11e{bottom:476.100013px;}
.y9f{bottom:479.700027px;}
.y32{bottom:481.139992px;}
.yc7{bottom:486.539977px;}
.y12{bottom:488.055000px;}
.yd8{bottom:489.240006px;}
.y13f{bottom:492.120002px;}
.y53{bottom:494.820030px;}
.y7{bottom:497.707500px;}
.yf6{bottom:497.879998px;}
.y11d{bottom:499.320030px;}
.y77{bottom:501.659981px;}
.y9e{bottom:502.919975px;}
.y31{bottom:504.179970px;}
.y8c{bottom:509.759994px;}
.y13e{bottom:510.480011px;}
.y52{bottom:517.860008px;}
.ye9{bottom:519.299973px;}
.y11c{bottom:522.539977px;}
.y76{bottom:524.700027px;}
.y9d{bottom:526.139992px;}
.y30{bottom:527.399986px;}
.y13d{bottom:528.659981px;}
.yf5{bottom:531.539977px;}
.yc3{bottom:532.980011px;}
.y13{bottom:538.230000px;}
.y51{bottom:541.080025px;}
.ye8{bottom:542.340019px;}
.y75{bottom:547.919975px;}
.y6{bottom:548.716500px;}
.y9c{bottom:549.179970px;}
.yd7{bottom:550.620002px;}
.yc2{bottom:556.019989px;}
.y11b{bottom:557.639992px;}
.y2f{bottom:565.559967px;}
.y13c{bottom:566.279983px;}
.y74{bottom:571.139992px;}
.y9b{bottom:572.399986px;}
.y11a{bottom:573.299973px;}
.y50{bottom:579.240006px;}
.yad{bottom:587.340019px;}
.yd6{bottom:588.779983px;}
.y13b{bottom:589.500000px;}
.y1d{bottom:589.605000px;}
.y73{bottom:594.179970px;}
.y9a{bottom:595.620002px;}
.y5{bottom:599.725500px;}
.y119{bottom:601.740006px;}
.y4f{bottom:602.460022px;}
.y2e{bottom:603.720017px;}
.yd5{bottom:611.820030px;}
.y13a{bottom:612.720017px;}
.y117{bottom:614.339985px;}
.y72{bottom:617.399986px;}
.ybc{bottom:618.660015px;}
.y118{bottom:621.899986px;}
.y4e{bottom:625.500000px;}
.ye7{bottom:626.939999px;}
.ye{bottom:631.920000px;}
.y99{bottom:633.779983px;}
.y115{bottom:634.500000px;}
.y139{bottom:635.759994px;}
.y14e{bottom:638.639992px;}
.y71{bottom:640.620002px;}
.y2d{bottom:641.879998px;}
.y116{bottom:642.060001px;}
.y4d{bottom:648.720017px;}
.yd4{bottom:649.980011px;}
.y114{bottom:654.660015px;}
.yc8{bottom:655.560001px;}
.ybb{bottom:656.819995px;}
.y14d{bottom:661.860008px;}
.y8b{bottom:663.660015px;}
.yf4{bottom:665.100013px;}
.y4c{bottom:671.939999px;}
.yd3{bottom:673.199993px;}
.y138{bottom:673.920010px;}
.y113{bottom:674.819995px;}
.y70{bottom:678.779983px;}
.y2c{bottom:680.040012px;}
.y14c{bottom:685.079990px;}
.y8a{bottom:686.879998px;}
.ye6{bottom:688.139992px;}
.y4b{bottom:694.980011px;}
.y137{bottom:697.139992px;}
.y6f{bottom:701.819995px;}
.yba{bottom:703.259994px;}
.y14b{bottom:708.120002px;}
.y89{bottom:710.100013px;}
.yd2{bottom:711.360008px;}
.y112{bottom:715.139992px;}
.y2b{bottom:718.199993px;}
.y136{bottom:720.360008px;}
.y6e{bottom:725.040012px;}
.yb9{bottom:726.300007px;}
.y14a{bottom:731.339985px;}
.y98{bottom:733.139992px;}
.yd1{bottom:734.579990px;}
.y111{bottom:735.120002px;}
.y4a{bottom:741.420010px;}
.y135{bottom:743.579990px;}
.y6d{bottom:748.259994px;}
.yb8{bottom:749.519989px;}
.y110{bottom:755.279983px;}
.y97{bottom:756.360008px;}
.yd0{bottom:757.800007px;}
.y2a{bottom:762.300007px;}
.y49{bottom:764.459988px;}
.y149{bottom:765.000000px;}
.y134{bottom:766.620002px;}
.y6c{bottom:771.300007px;}
.yb7{bottom:772.740006px;}
.y10e{bottom:775.439999px;}
.y4{bottom:778.225500px;}
.y96{bottom:779.579990px;}
.y10f{bottom:783.000000px;}
.y29{bottom:785.519989px;}
.y48{bottom:787.680004px;}
.y133{bottom:789.839985px;}
.y6b{bottom:794.519989px;}
.y10c{bottom:795.600013px;}
.ycf{bottom:795.959988px;}
.y28{bottom:802.800007px;}
.y10d{bottom:803.160015px;}
.y47{bottom:810.899986px;}
.y14{bottom:815.670000px;}
.y10b{bottom:815.759994px;}
.y6a{bottom:817.740006px;}
.yce{bottom:819.000000px;}
.y132{bottom:823.500000px;}
.y95{bottom:825.839985px;}
.y27{bottom:831.779983px;}
.yb1{bottom:832.680004px;}
.y46{bottom:834.120002px;}
.y10a{bottom:835.920010px;}
.y69{bottom:840.959988px;}
.y26{bottom:849.060001px;}
.yb0{bottom:855.899986px;}
.y109{bottom:856.079990px;}
.y45{bottom:857.160015px;}
.y88{bottom:864.000000px;}
.y94{bottom:872.279983px;}
.y108{bottom:876.240006px;}
.y25{bottom:878.220017px;}
.y68{bottom:879.120002px;}
.y44{bottom:880.379998px;}
.y87{bottom:887.220017px;}
.y93{bottom:895.319996px;}
.y104{bottom:896.399987px;}
.y24{bottom:901.259994px;}
.y67{bottom:902.159998px;}
.y43{bottom:903.599997px;}
.y106{bottom:903.960004px;}
.y3{bottom:905.716500px;}
.y86{bottom:910.439999px;}
.y101{bottom:916.379998px;}
.yb6{bottom:918.539996px;}
.y102{bottom:923.939999px;}
.y23{bottom:924.479994px;}
.y66{bottom:925.379998px;}
.y85{bottom:933.479994px;}
.y100{bottom:936.539995px;}
.y42{bottom:941.759994px;}
.y65{bottom:948.599997px;}
.y22{bottom:956.699993px;}
.y2{bottom:964.228500px;}
.ycd{bottom:964.800007px;}
.y64{bottom:971.639992px;}
.yff{bottom:976.860008px;}
.y21{bottom:979.919992px;}
.y1{bottom:989.716500px;}
.y63{bottom:994.860008px;}
.yfd{bottom:997.740006px;}
.yac{bottom:1002.960004px;}
.y20{bottom:1018.080008px;}
.yb5{bottom:1026.180004px;}
.y1f{bottom:1041.120002px;}
.y1e{bottom:1064.340002px;}
.h25{height:11.700028px;}
.h18{height:12.419993px;}
.h1c{height:12.599980px;}
.h16{height:12.599997px;}
.h1d{height:12.600013px;}
.h1e{height:19.980010px;}
.h17{height:19.980011px;}
.h1b{height:20.159980px;}
.h19{height:20.159981px;}
.h12{height:20.159998px;}
.h15{height:20.160015px;}
.h1a{height:20.160016px;}
.h1f{height:20.160049px;}
.h4{height:33.000000px;}
.h26{height:33.936634px;}
.hd{height:36.450427px;}
.h13{height:49.973227px;}
.h23{height:52.161651px;}
.h14{height:53.201471px;}
.h24{height:54.816427px;}
.h27{height:54.816697px;}
.h22{height:54.816702px;}
.ha{height:57.817861px;}
.h3{height:58.406250px;}
.he{height:60.210283px;}
.hf{height:60.210418px;}
.hc{height:60.210422px;}
.hb{height:60.210490px;}
.h11{height:60.210557px;}
.h10{height:60.210562px;}
.h20{height:62.137960px;}
.h2{height:66.750000px;}
.h5{height:67.740234px;}
.h21{height:98.137686px;}
.h7{height:115.215000px;}
.h6{height:171.435000px;}
.h8{height:173.250000px;}
.h9{height:1188.000000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w42{width:3.239971px;}
.w40{width:3.239972px;}
.w1a{width:3.240006px;}
.w1c{width:3.779984px;}
.w16{width:3.780018px;}
.w48{width:4.860008px;}
.w47{width:4.860009px;}
.w2d{width:5.039978px;}
.w32{width:5.219982px;}
.w1b{width:5.220016px;}
.w21{width:5.220017px;}
.we{width:8.279983px;}
.w10{width:8.279984px;}
.wc{width:8.280000px;}
.w12{width:8.280001px;}
.w24{width:8.280017px;}
.w13{width:8.280018px;}
.w23{width:8.459988px;}
.w41{width:8.640026px;}
.w25{width:8.640027px;}
.w3b{width:13.320030px;}
.w34{width:15.300007px;}
.w1f{width:16.740006px;}
.w2b{width:16.919975px;}
.w3f{width:20.880031px;}
.w19{width:22.860009px;}
.w15{width:25.019989px;}
.w27{width:25.560002px;}
.w31{width:27.720017px;}
.w30{width:29.159981px;}
.w3a{width:29.339984px;}
.w2f{width:29.339985px;}
.wf{width:29.340019px;}
.w1d{width:30.060001px;}
.w29{width:30.240006px;}
.w2c{width:32.400021px;}
.w20{width:33.300007px;}
.wb{width:33.840002px;}
.wd{width:39.060002px;}
.w44{width:45.000000px;}
.w43{width:48.600005px;}
.w2a{width:48.780000px;}
.w46{width:53.099980px;}
.w45{width:53.100014px;}
.wa{width:66.599997px;}
.w3c{width:83.699993px;}
.w17{width:85.859991px;}
.w2e{width:92.699993px;}
.w11{width:94.859991px;}
.w14{width:102.240006px;}
.w35{width:108.539996px;}
.w33{width:111.240006px;}
.w1e{width:120.780000px;}
.w3d{width:124.020006px;}
.w28{width:124.199993px;}
.w39{width:127.799990px;}
.w38{width:145.259994px;}
.w22{width:164.520006px;}
.w36{width:166.859991px;}
.w18{width:185.939981px;}
.w26{width:198.719999px;}
.w3e{width:219.780000px;}
.w37{width:236.880015px;}
.w8{width:301.170000px;}
.w6{width:366.465000px;}
.w2{width:494.625000px;}
.w5{width:552.660000px;}
.w3{width:553.275000px;}
.w4{width:597.405000px;}
.w7{width:651.810000px;}
.w0{width:892.920000px;}
.w1{width:893.250000px;}
.w9{width:918.000000px;}
.x0{left:0.000000px;}
.x3{left:3.000000px;}
.xa{left:108.000000px;}
.x45{left:115.019998px;}
.x9{left:126.345000px;}
.x1{left:127.559100px;}
.xb{left:135.000000px;}
.xe{left:137.340002px;}
.x5d{left:152.460005px;}
.x2c{left:167.580008px;}
.x5{left:174.105000px;}
.x46{left:186.479994px;}
.x2{left:191.040000px;}
.x47{left:192.419992px;}
.x7{left:200.715000px;}
.xf{left:203.939999px;}
.x8{left:217.320000px;}
.x4{left:220.050000px;}
.x6{left:222.480000px;}
.x30{left:230.039996px;}
.x15{left:232.199993px;}
.x10{left:237.780001px;}
.x17{left:239.580008px;}
.x36{left:245.879998px;}
.x34{left:248.580008px;}
.x48{left:254.879998px;}
.x21{left:258.120002px;}
.x2b{left:261.539996px;}
.x3a{left:265.139992px;}
.x39{left:282.599997px;}
.x26{left:301.860008px;}
.x37{left:304.199993px;}
.x5e{left:318.060001px;}
.x49{left:322.199993px;}
.x1b{left:323.279983px;}
.x56{left:326.339985px;}
.x4a{left:332.279983px;}
.x2a{left:336.060001px;}
.x3f{left:345.060001px;}
.x40{left:357.120002px;}
.x38{left:374.220017px;}
.x4b{left:396.360008px;}
.x57{left:400.500000px;}
.x5f{left:403.199993px;}
.x4c{left:406.439999px;}
.x31{left:409.500000px;}
.x2d{left:421.920010px;}
.x11{left:423.360008px;}
.x3b{left:428.220017px;}
.x18{left:430.379998px;}
.xd{left:434.160015px;}
.x27{left:438.839985px;}
.x16{left:442.800007px;}
.x28{left:447.120002px;}
.x22{left:451.259994px;}
.x19{left:455.399987px;}
.x3c{left:457.560001px;}
.x5c{left:459.000000px;}
.x12{left:462.420010px;}
.x2e{left:463.680005px;}
.x4d{left:471.959988px;}
.x32{left:476.279983px;}
.x4e{left:477.899987px;}
.x60{left:488.339985px;}
.x13{left:498.779983px;}
.x5b{left:500.220017px;}
.x1a{left:502.560001px;}
.x29{left:507.420010px;}
.x67{left:510.660015px;}
.x3d{left:512.100014px;}
.x35{left:514.079990px;}
.x3e{left:517.319996px;}
.x41{left:519.660015px;}
.x1c{left:521.639992px;}
.x42{left:522.899987px;}
.x1d{left:524.879998px;}
.x33{left:526.500000px;}
.x14{left:528.120002px;}
.x1e{left:530.100014px;}
.x23{left:532.079990px;}
.x1f{left:533.879998px;}
.x24{left:535.319996px;}
.x2f{left:539.459988px;}
.x25{left:540.540012px;}
.x43{left:543.779983px;}
.x64{left:545.220017px;}
.x4f{left:546.300007px;}
.x44{left:549.000000px;}
.x68{left:551.160015px;}
.x20{left:563.939999px;}
.x61{left:573.300007px;}
.x50{left:607.500000px;}
.x58{left:611.639992px;}
.x51{left:617.580025px;}
.x62{left:658.259994px;}
.x52{left:681.840019px;}
.x59{left:685.980011px;}
.x53{left:691.919975px;}
.x63{left:743.399987px;}
.x54{left:756.000000px;}
.x5a{left:760.139992px;}
.x55{left:766.080025px;}
.x65{left:795.419975px;}
.x66{left:800.279983px;}
.xc{left:810.000000px;}
@media print{
.v2{vertical-align:-21.119996pt;}
.v3{vertical-align:-5.119872pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:3.840088pt;}
.v5{vertical-align:5.120116pt;}
.v8{vertical-align:18.560060pt;}
.v1{vertical-align:21.120056pt;}
.v4{vertical-align:26.240048pt;}
.v7{vertical-align:35.839844pt;}
.ls0{letter-spacing:0.000000pt;}
.lsf{letter-spacing:0.049127pt;}
.lse{letter-spacing:0.086636pt;}
.lsd{letter-spacing:0.086640pt;}
.lsc{letter-spacing:0.109315pt;}
.ls1{letter-spacing:0.113187pt;}
.lsb{letter-spacing:0.146125pt;}
.ls7{letter-spacing:0.146305pt;}
.ls5{letter-spacing:0.146369pt;}
.ls4{letter-spacing:0.173123pt;}
.ls6{letter-spacing:0.173215pt;}
.ls2{letter-spacing:0.173247pt;}
.ls8{letter-spacing:0.192005pt;}
.lsa{letter-spacing:0.211350pt;}
.ls3{letter-spacing:0.365035pt;}
.ls10{letter-spacing:0.450292pt;}
.ls11{letter-spacing:0.450416pt;}
.ls9{letter-spacing:57.961145pt;}
.ws0{word-spacing:-16.874667pt;}
.ws3{word-spacing:-13.281658pt;}
.ws5{word-spacing:-11.982339pt;}
.ws2{word-spacing:-8.373228pt;}
.ws4{word-spacing:-7.795771pt;}
.ws1{word-spacing:0.000000pt;}
._8f{margin-left:-2707.165786pt;}
._10f{margin-left:-2694.693626pt;}
._8d{margin-left:-2693.713104pt;}
._8c{margin-left:-2692.729992pt;}
._88{margin-left:-2691.772138pt;}
._11d{margin-left:-2690.797006pt;}
._b3{margin-left:-2689.781215pt;}
._f2{margin-left:-2687.682280pt;}
._67{margin-left:-2686.306676pt;}
._ae{margin-left:-2685.018964pt;}
._79{margin-left:-2683.392187pt;}
._9e{margin-left:-2681.669998pt;}
._81{margin-left:-2680.494630pt;}
._a7{margin-left:-2678.332080pt;}
._100{margin-left:-2677.333017pt;}
._99{margin-left:-2675.140680pt;}
._c9{margin-left:-2674.048012pt;}
._b6{margin-left:-2672.261029pt;}
._77{margin-left:-2670.556745pt;}
._f0{margin-left:-2668.993929pt;}
._ab{margin-left:-2667.172109pt;}
._1f{margin-left:-2665.530424pt;}
._19{margin-left:-2663.850903pt;}
._1a{margin-left:-2662.082408pt;}
._6f{margin-left:-2660.454605pt;}
._6c{margin-left:-2658.849952pt;}
._95{margin-left:-2657.810027pt;}
._55{margin-left:-2656.644080pt;}
._85{margin-left:-2655.159424pt;}
._7d{margin-left:-2654.125524pt;}
._b4{margin-left:-2652.550659pt;}
._4c{margin-left:-2650.156600pt;}
._64{margin-left:-2648.469248pt;}
._92{margin-left:-2646.955779pt;}
._96{margin-left:-2645.069166pt;}
._d4{margin-left:-2644.011334pt;}
._48{margin-left:-2643.027717pt;}
._46{margin-left:-2642.004724pt;}
._73{margin-left:-2640.314950pt;}
._cc{margin-left:-2639.251094pt;}
._a2{margin-left:-2637.787909pt;}
._118{margin-left:-2635.631384pt;}
._45{margin-left:-2634.212457pt;}
._c6{margin-left:-2632.063443pt;}
._4e{margin-left:-2630.897496pt;}
._59{margin-left:-2629.592710pt;}
._14a{margin-left:-2628.620038pt;}
._62{margin-left:-2627.219055pt;}
._9b{margin-left:-2625.940623pt;}
._7c{margin-left:-2624.288108pt;}
._e8{margin-left:-2623.213346pt;}
._f5{margin-left:-2622.172446pt;}
._108{margin-left:-2620.880516pt;}
._c1{margin-left:-2619.134395pt;}
._51{margin-left:-2616.946447pt;}
._74{margin-left:-2615.144169pt;}
._af{margin-left:-2613.049450pt;}
._97{margin-left:-2611.459666pt;}
._125{margin-left:-2609.848988pt;}
._53{margin-left:-2607.454929pt;}
._49{margin-left:-2605.979694pt;}
._d0{margin-left:-2604.624625pt;}
._98{margin-left:-2603.443232pt;}
._8{margin-left:-2601.454417pt;}
._9f{margin-left:-2599.464887pt;}
._71{margin-left:-2597.943896pt;}
._cd{margin-left:-2595.598222pt;}
._6d{margin-left:-2594.416830pt;}
._c{margin-left:-2592.770297pt;}
._76{margin-left:-2591.125799pt;}
._d5{margin-left:-2588.657526pt;}
._ea{margin-left:-2587.581789pt;}
._de{margin-left:-2585.107492pt;}
._89{margin-left:-2583.955361pt;}
._43{margin-left:-2582.078862pt;}
._ce{margin-left:-2580.847354pt;}
._b7{margin-left:-2579.521146pt;}
._6e{margin-left:-2577.902909pt;}
._52{margin-left:-2576.854499pt;}
._e1{margin-left:-2575.904784pt;}
._7b{margin-left:-2574.518273pt;}
._e7{margin-left:-2573.077876pt;}
._70{margin-left:-2570.885539pt;}
._a8{margin-left:-2569.592634pt;}
._da{margin-left:-2567.853513pt;}
._cf{margin-left:-2564.949930pt;}
._e{margin-left:-2563.448020pt;}
._68{margin-left:-2561.142034pt;}
._5c{margin-left:-2559.317585pt;}
._f8{margin-left:-2558.074028pt;}
._50{margin-left:-2556.303483pt;}
._ff{margin-left:-2553.313787pt;}
._a0{margin-left:-2550.522859pt;}
._63{margin-left:-2548.122776pt;}
._f7{margin-left:-2546.719845pt;}
._56{margin-left:-2545.277962pt;}
._11a{margin-left:-2543.687651pt;}
._120{margin-left:-2542.348027pt;}
._6{margin-left:-2540.222910pt;}
._60{margin-left:-2537.767488pt;}
._dd{margin-left:-2535.143445pt;}
._b5{margin-left:-2533.820584pt;}
._ac{margin-left:-2532.692104pt;}
._dc{margin-left:-2530.723784pt;}
._bd{margin-left:-2528.043375pt;}
._d9{margin-left:-2526.855976pt;}
._58{margin-left:-2525.197075pt;}
._82{margin-left:-2523.441534pt;}
._47{margin-left:-2521.999651pt;}
._83{margin-left:-2520.344715pt;}
._e4{margin-left:-2517.983072pt;}
._57{margin-left:-2516.851962pt;}
._e6{margin-left:-2515.867409pt;}
._44{margin-left:-2508.683155pt;}
._ed{margin-left:-2506.299067pt;}
._80{margin-left:-2504.923463pt;}
._75{margin-left:-2502.914431pt;}
._5e{margin-left:-2501.025357pt;}
._4f{margin-left:-2498.374754pt;}
._a5{margin-left:-2496.843380pt;}
._5d{margin-left:-2495.030980pt;}
._84{margin-left:-2493.629024pt;}
._65{margin-left:-2492.491889pt;}
._138{margin-left:-2487.511085pt;}
._ee{margin-left:-2484.789833pt;}
._e9{margin-left:-2482.674170pt;}
._87{margin-left:-2481.322497pt;}
._bc{margin-left:-2476.932773pt;}
._bb{margin-left:-2475.175746pt;}
._a3{margin-left:-2472.296094pt;}
._4d{margin-left:-2468.015422pt;}
._e3{margin-left:-2466.948170pt;}
._5f{margin-left:-2465.958528pt;}
._14d{margin-left:-2458.068117pt;}
._c5{margin-left:-2455.605869pt;}
._5b{margin-left:-2454.304479pt;}
._11e{margin-left:-2451.422405pt;}
._4b{margin-left:-2446.564956pt;}
._f1{margin-left:-2442.864033pt;}
._ba{margin-left:-2441.530266pt;}
._114{margin-left:-2438.792082pt;}
._104{margin-left:-2434.955204pt;}
._e2{margin-left:-2432.603494pt;}
._94{margin-left:-2431.486894pt;}
._54{margin-left:-2426.971148pt;}
._13a{margin-left:-2423.553160pt;}
._f6{margin-left:-2420.762232pt;}
._e0{margin-left:-2410.941885pt;}
._eb{margin-left:-2405.629791pt;}
._c2{margin-left:-2386.064946pt;}
._db{margin-left:-2385.001090pt;}
._123{margin-left:-2371.038141pt;}
._d1{margin-left:-2340.783322pt;}
._27{margin-left:-2322.480933pt;}
._5{margin-left:-2315.990976pt;}
._78{margin-left:-2311.153142pt;}
._103{margin-left:-2278.372256pt;}
._5a{margin-left:-2264.970600pt;}
._ca{margin-left:-2255.828146pt;}
._121{margin-left:-2228.530628pt;}
._116{margin-left:-2222.100941pt;}
._b0{margin-left:-2217.885600pt;}
._93{margin-left:-2189.608209pt;}
._106{margin-left:-2114.566819pt;}
._107{margin-left:-2086.299218pt;}
._12b{margin-left:-2059.853438pt;}
._a6{margin-left:-2048.140621pt;}
._26{margin-left:-2039.705298pt;}
._10{margin-left:-1999.731968pt;}
._12d{margin-left:-1982.919578pt;}
._7a{margin-left:-1955.933001pt;}
._a{margin-left:-1935.025926pt;}
._72{margin-left:-1897.270089pt;}
._15{margin-left:-1875.445233pt;}
._13{margin-left:-1854.935061pt;}
._14{margin-left:-1831.351027pt;}
._b2{margin-left:-1812.058837pt;}
._f3{margin-left:-1803.875220pt;}
._14c{margin-left:-1775.201714pt;}
._61{margin-left:-1755.066006pt;}
._fc{margin-left:-1741.928276pt;}
._86{margin-left:-1715.111979pt;}
._11{margin-left:-1704.277361pt;}
._b{margin-left:-1692.268639pt;}
._a4{margin-left:-1674.391503pt;}
._91{margin-left:-1653.699001pt;}
._149{margin-left:-1631.201714pt;}
._101{margin-left:-1622.217045pt;}
._2f{margin-left:-1607.712737pt;}
._135{margin-left:-1594.081722pt;}
._d8{margin-left:-1585.533682pt;}
._10c{margin-left:-1563.219596pt;}
._102{margin-left:-1560.950585pt;}
._ef{margin-left:-1516.521674pt;}
._112{margin-left:-1503.821675pt;}
._34{margin-left:-1493.263518pt;}
._d2{margin-left:-1449.361275pt;}
._137{margin-left:-1447.521662pt;}
._126{margin-left:-1443.478410pt;}
._2e{margin-left:-1433.881952pt;}
._7e{margin-left:-1384.833571pt;}
._fb{margin-left:-1371.010948pt;}
._fd{margin-left:-1362.084176pt;}
._129{margin-left:-1359.201714pt;}
._a1{margin-left:-1349.025710pt;}
._30{margin-left:-1336.514477pt;}
._12a{margin-left:-1329.291409pt;}
._105{margin-left:-1300.460055pt;}
._128{margin-left:-1290.510289pt;}
._11c{margin-left:-1257.235326pt;}
._11b{margin-left:-1248.537602pt;}
._8b{margin-left:-1246.703901pt;}
._14e{margin-left:-1243.842155pt;}
._b8{margin-left:-1224.078067pt;}
._c4{margin-left:-1221.275089pt;}
._66{margin-left:-1200.833107pt;}
._9a{margin-left:-1183.710201pt;}
._3c{margin-left:-1164.576621pt;}
._fe{margin-left:-1135.467201pt;}
._10d{margin-left:-1100.876544pt;}
._69{margin-left:-1098.548764pt;}
._3a{margin-left:-1091.148546pt;}
._36{margin-left:-1088.589825pt;}
._115{margin-left:-1076.816338pt;}
._113{margin-left:-1071.527182pt;}
._32{margin-left:-1062.891449pt;}
._c0{margin-left:-1053.432539pt;}
._2c{margin-left:-1033.022410pt;}
._2a{margin-left:-1009.144075pt;}
._3e{margin-left:-1005.193103pt;}
._110{margin-left:-994.540578pt;}
._38{margin-left:-992.146289pt;}
._14b{margin-left:-984.438437pt;}
._9d{margin-left:-981.264944pt;}
._4a{margin-left:-976.807966pt;}
._ec{margin-left:-962.206076pt;}
._136{margin-left:-917.912609pt;}
._d{margin-left:-909.703858pt;}
._c7{margin-left:-908.432990pt;}
._a9{margin-left:-878.008865pt;}
._111{margin-left:-852.227444pt;}
._6a{margin-left:-809.955058pt;}
._8a{margin-left:-795.086653pt;}
._117{margin-left:-786.853052pt;}
._40{margin-left:-784.504676pt;}
._10e{margin-left:-782.745289pt;}
._cb{margin-left:-778.789900pt;}
._6b{margin-left:-763.216274pt;}
._f9{margin-left:-731.375682pt;}
._ad{margin-left:-724.958045pt;}
._d7{margin-left:-719.210624pt;}
._df{margin-left:-708.514775pt;}
._f{margin-left:-699.755823pt;}
._7f{margin-left:-691.707012pt;}
._aa{margin-left:-668.140884pt;}
._28{margin-left:-651.166237pt;}
._127{margin-left:-648.335933pt;}
._109{margin-left:-634.936738pt;}
._c8{margin-left:-627.825762pt;}
._10a{margin-left:-605.435001pt;}
._d3{margin-left:-586.041429pt;}
._119{margin-left:-554.071420pt;}
._f4{margin-left:-540.848530pt;}
._42{margin-left:-525.343093pt;}
._b9{margin-left:-513.579992pt;}
._d6{margin-left:-506.821626pt;}
._122{margin-left:-494.621730pt;}
._fa{margin-left:-465.213599pt;}
._9{margin-left:-459.706935pt;}
._9c{margin-left:-443.704364pt;}
._139{margin-left:-440.648408pt;}
._bf{margin-left:-428.307044pt;}
._10b{margin-left:-407.209188pt;}
._12{margin-left:-405.108971pt;}
._e5{margin-left:-375.356715pt;}
._16{margin-left:-369.900675pt;}
._124{margin-left:-345.854978pt;}
._be{margin-left:-341.506117pt;}
._7{margin-left:-330.594020pt;}
._11f{margin-left:-318.468904pt;}
._12c{margin-left:-199.521662pt;}
._41{margin-left:-169.441662pt;}
._2{margin-left:-6.536533pt;}
._3{margin-left:-3.808000pt;}
._1{margin-left:-1.774933pt;}
._4{width:0.899432pt;}
._17{width:2.486179pt;}
._18{width:4.058581pt;}
._0{width:4.966400pt;}
._1c{width:6.103996pt;}
._1b{width:7.060472pt;}
._21{width:8.136669pt;}
._24{width:9.652939pt;}
._20{width:11.427240pt;}
._25{width:12.378267pt;}
._8e{width:14.369736pt;}
._90{width:15.469633pt;}
._22{width:16.547896pt;}
._23{width:17.754714pt;}
._c3{width:18.718884pt;}
._1d{width:21.160527pt;}
._1e{width:22.340027pt;}
._13f{width:51.673661pt;}
._145{width:54.292520pt;}
._144{width:69.880385pt;}
._143{width:76.372708pt;}
._148{width:78.666647pt;}
._146{width:85.829973pt;}
._142{width:87.693757pt;}
._13e{width:97.315292pt;}
._147{width:104.239298pt;}
._141{width:105.261368pt;}
._140{width:115.417651pt;}
._13d{width:146.014877pt;}
._31{width:175.006097pt;}
._29{width:198.127789pt;}
._133{width:200.168996pt;}
._131{width:201.270666pt;}
._132{width:211.061487pt;}
._33{width:220.674194pt;}
._134{width:222.436393pt;}
._39{width:233.893411pt;}
._3d{width:235.620422pt;}
._3b{width:236.963831pt;}
._37{width:238.382307pt;}
._35{width:240.954802pt;}
._2b{width:243.632896pt;}
._2d{width:267.134517pt;}
._3f{width:278.255289pt;}
._130{width:528.946917pt;}
._13b{width:617.355565pt;}
._12e{width:641.596687pt;}
._b1{width:823.682917pt;}
._13c{width:882.717282pt;}
._12f{width:909.047716pt;}
.fs6{font-size:34.494560pt;}
.fs4{font-size:37.049680pt;}
.fs5{font-size:53.019200pt;}
.fs2{font-size:58.666667pt;}
.fs3{font-size:58.768400pt;}
.fs1{font-size:74.666667pt;}
.fs0{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y144{bottom:2.400025pt;}
.y103{bottom:2.559997pt;}
.y107{bottom:2.559998pt;}
.yfe{bottom:4.000000pt;}
.y105{bottom:4.000015pt;}
.yc{bottom:7.146667pt;}
.y1c{bottom:61.786667pt;}
.y16{bottom:69.080000pt;}
.y1b{bottom:81.413333pt;}
.y15{bottom:88.706667pt;}
.y11{bottom:99.426667pt;}
.ye5{bottom:100.479980pt;}
.y1a{bottom:101.040000pt;}
.y84{bottom:104.320007pt;}
.yab{bottom:105.440002pt;}
.y131{bottom:106.719971pt;}
.yc6{bottom:110.400024pt;}
.yf3{bottom:113.919983pt;}
.y62{bottom:117.599976pt;}
.y41{bottom:118.719971pt;}
.y10{bottom:119.053333pt;}
.y19{bottom:120.666667pt;}
.ye4{bottom:121.119995pt;}
.y83{bottom:124.799988pt;}
.yaa{bottom:126.080017pt;}
.y130{bottom:127.359985pt;}
.yc5{bottom:130.880005pt;}
.yb4{bottom:132.159973pt;}
.yfc{bottom:132.320007pt;}
.yc1{bottom:133.280029pt;}
.yf2{bottom:134.559998pt;}
.y17{bottom:137.733333pt;}
.y61{bottom:138.239990pt;}
.yf{bottom:138.680000pt;}
.y40{bottom:139.359985pt;}
.y18{bottom:140.293333pt;}
.y82{bottom:145.440002pt;}
.y12f{bottom:147.840027pt;}
.yc4{bottom:151.520020pt;}
.yb3{bottom:152.640015pt;}
.yfb{bottom:152.960022pt;}
.ye3{bottom:155.039978pt;}
.y60{bottom:158.719971pt;}
.y3f{bottom:160.000000pt;}
.y81{bottom:166.080017pt;}
.yc0{bottom:167.200012pt;}
.yf1{bottom:168.479980pt;}
.y92{bottom:172.159973pt;}
.yb2{bottom:173.280029pt;}
.yfa{bottom:173.440002pt;}
.ye2{bottom:175.679993pt;}
.y5f{bottom:179.359985pt;}
.y3e{bottom:180.479980pt;}
.y12c{bottom:180.960022pt;}
.y80{bottom:186.559998pt;}
.yf0{bottom:188.960022pt;}
.y12e{bottom:189.119995pt;}
.y91{bottom:192.640015pt;}
.ya9{bottom:193.919983pt;}
.yf9{bottom:194.080017pt;}
.y154{bottom:195.359985pt;}
.y5e{bottom:200.000000pt;}
.y12b{bottom:200.159973pt;}
.y3d{bottom:201.119995pt;}
.y7f{bottom:207.200012pt;}
.y129{bottom:209.119995pt;}
.ye1{bottom:209.599976pt;}
.y90{bottom:213.280029pt;}
.y12a{bottom:214.080017pt;}
.ya8{bottom:214.559998pt;}
.y153{bottom:216.000000pt;}
.y12d{bottom:219.039978pt;}
.y5d{bottom:220.479980pt;}
.y3c{bottom:221.760010pt;}
.yf8{bottom:224.000000pt;}
.ycc{bottom:226.559998pt;}
.ye0{bottom:230.239990pt;}
.y8f{bottom:233.919983pt;}
.ya7{bottom:235.039978pt;}
.y128{bottom:236.000000pt;}
.y152{bottom:236.640015pt;}
.y5c{bottom:241.119995pt;}
.y3b{bottom:242.400024pt;}
.yef{bottom:243.520020pt;}
.y126{bottom:244.960022pt;}
.ycb{bottom:247.200012pt;}
.yaf{bottom:248.479980pt;}
.y127{bottom:249.919983pt;}
.ydf{bottom:250.719971pt;}
.y8e{bottom:254.559998pt;}
.y151{bottom:257.119995pt;}
.y5b{bottom:261.760010pt;}
.y3a{bottom:262.880005pt;}
.yee{bottom:264.159973pt;}
.yca{bottom:267.840027pt;}
.ya6{bottom:268.960022pt;}
.y125{bottom:271.840027pt;}
.y7e{bottom:275.039978pt;}
.y150{bottom:277.760010pt;}
.y123{bottom:280.799988pt;}
.y5a{bottom:282.400024pt;}
.y39{bottom:283.520020pt;}
.yde{bottom:284.640015pt;}
.y124{bottom:285.760010pt;}
.yc9{bottom:288.479980pt;}
.ya5{bottom:289.599976pt;}
.y8d{bottom:295.679993pt;}
.ybf{bottom:296.799988pt;}
.yed{bottom:298.080017pt;}
.y38{bottom:304.159973pt;}
.ydd{bottom:305.280029pt;}
.y148{bottom:306.080017pt;}
.ya{bottom:306.382667pt;}
.y14f{bottom:307.679993pt;}
.y7d{bottom:308.960022pt;}
.ya4{bottom:310.239990pt;}
.y59{bottom:316.320007pt;}
.yec{bottom:318.559998pt;}
.y122{bottom:322.880005pt;}
.y37{bottom:324.640015pt;}
.y7c{bottom:329.599976pt;}
.ya3{bottom:330.719971pt;}
.y58{bottom:336.799988pt;}
.y147{bottom:337.280029pt;}
.ydc{bottom:339.200012pt;}
.yd{bottom:343.546667pt;}
.yae{bottom:344.159973pt;}
.y121{bottom:344.799988pt;}
.y36{bottom:345.280029pt;}
.y7b{bottom:350.239990pt;}
.ybe{bottom:351.359985pt;}
.y9{bottom:351.724000pt;}
.yeb{bottom:352.479980pt;}
.y146{bottom:355.359985pt;}
.y57{bottom:357.440002pt;}
.ydb{bottom:359.840027pt;}
.ya2{bottom:364.640015pt;}
.y35{bottom:365.919983pt;}
.y7a{bottom:370.719971pt;}
.y145{bottom:371.679993pt;}
.ybd{bottom:372.000000pt;}
.yea{bottom:373.119995pt;}
.y56{bottom:378.080017pt;}
.y120{bottom:382.080017pt;}
.ya1{bottom:385.280029pt;}
.y34{bottom:386.400024pt;}
.yb{bottom:386.533333pt;}
.y142{bottom:388.000000pt;}
.y143{bottom:390.239990pt;}
.y79{bottom:391.359985pt;}
.yda{bottom:393.760010pt;}
.y8{bottom:397.065333pt;}
.y55{bottom:398.559998pt;}
.y11f{bottom:402.719971pt;}
.y141{bottom:404.960022pt;}
.ya0{bottom:405.919983pt;}
.y33{bottom:407.039978pt;}
.y78{bottom:412.000000pt;}
.yd9{bottom:414.239990pt;}
.y54{bottom:419.200012pt;}
.y140{bottom:421.119995pt;}
.yf7{bottom:421.919983pt;}
.y11e{bottom:423.200012pt;}
.y9f{bottom:426.400024pt;}
.y32{bottom:427.679993pt;}
.yc7{bottom:432.479980pt;}
.y12{bottom:433.826667pt;}
.yd8{bottom:434.880005pt;}
.y13f{bottom:437.440002pt;}
.y53{bottom:439.840027pt;}
.y7{bottom:442.406667pt;}
.yf6{bottom:442.559998pt;}
.y11d{bottom:443.840027pt;}
.y77{bottom:445.919983pt;}
.y9e{bottom:447.039978pt;}
.y31{bottom:448.159973pt;}
.y8c{bottom:453.119995pt;}
.y13e{bottom:453.760010pt;}
.y52{bottom:460.320007pt;}
.ye9{bottom:461.599976pt;}
.y11c{bottom:464.479980pt;}
.y76{bottom:466.400024pt;}
.y9d{bottom:467.679993pt;}
.y30{bottom:468.799988pt;}
.y13d{bottom:469.919983pt;}
.yf5{bottom:472.479980pt;}
.yc3{bottom:473.760010pt;}
.y13{bottom:478.426667pt;}
.y51{bottom:480.960022pt;}
.ye8{bottom:482.080017pt;}
.y75{bottom:487.039978pt;}
.y6{bottom:487.748000pt;}
.y9c{bottom:488.159973pt;}
.yd7{bottom:489.440002pt;}
.yc2{bottom:494.239990pt;}
.y11b{bottom:495.679993pt;}
.y2f{bottom:502.719971pt;}
.y13c{bottom:503.359985pt;}
.y74{bottom:507.679993pt;}
.y9b{bottom:508.799988pt;}
.y11a{bottom:509.599976pt;}
.y50{bottom:514.880005pt;}
.yad{bottom:522.080017pt;}
.yd6{bottom:523.359985pt;}
.y13b{bottom:524.000000pt;}
.y1d{bottom:524.093333pt;}
.y73{bottom:528.159973pt;}
.y9a{bottom:529.440002pt;}
.y5{bottom:533.089333pt;}
.y119{bottom:534.880005pt;}
.y4f{bottom:535.520020pt;}
.y2e{bottom:536.640015pt;}
.yd5{bottom:543.840027pt;}
.y13a{bottom:544.640015pt;}
.y117{bottom:546.079987pt;}
.y72{bottom:548.799988pt;}
.ybc{bottom:549.920013pt;}
.y118{bottom:552.799988pt;}
.y4e{bottom:556.000000pt;}
.ye7{bottom:557.279999pt;}
.ye{bottom:561.706667pt;}
.y99{bottom:563.359985pt;}
.y115{bottom:564.000000pt;}
.y139{bottom:565.119995pt;}
.y14e{bottom:567.679993pt;}
.y71{bottom:569.440002pt;}
.y2d{bottom:570.559998pt;}
.y116{bottom:570.720001pt;}
.y4d{bottom:576.640015pt;}
.yd4{bottom:577.760010pt;}
.y114{bottom:581.920013pt;}
.yc8{bottom:582.720001pt;}
.ybb{bottom:583.839996pt;}
.y14d{bottom:588.320007pt;}
.y8b{bottom:589.920013pt;}
.yf4{bottom:591.200012pt;}
.y4c{bottom:597.279999pt;}
.yd3{bottom:598.399994pt;}
.y138{bottom:599.040009pt;}
.y113{bottom:599.839996pt;}
.y70{bottom:603.359985pt;}
.y2c{bottom:604.480011pt;}
.y14c{bottom:608.959991pt;}
.y8a{bottom:610.559998pt;}
.ye6{bottom:611.679993pt;}
.y4b{bottom:617.760010pt;}
.y137{bottom:619.679993pt;}
.y6f{bottom:623.839996pt;}
.yba{bottom:625.119995pt;}
.y14b{bottom:629.440002pt;}
.y89{bottom:631.200012pt;}
.yd2{bottom:632.320007pt;}
.y112{bottom:635.679993pt;}
.y2b{bottom:638.399994pt;}
.y136{bottom:640.320007pt;}
.y6e{bottom:644.480011pt;}
.yb9{bottom:645.600006pt;}
.y14a{bottom:650.079987pt;}
.y98{bottom:651.679993pt;}
.yd1{bottom:652.959991pt;}
.y111{bottom:653.440002pt;}
.y4a{bottom:659.040009pt;}
.y135{bottom:660.959991pt;}
.y6d{bottom:665.119995pt;}
.yb8{bottom:666.239990pt;}
.y110{bottom:671.359985pt;}
.y97{bottom:672.320007pt;}
.yd0{bottom:673.600006pt;}
.y2a{bottom:677.600006pt;}
.y49{bottom:679.519989pt;}
.y149{bottom:680.000000pt;}
.y134{bottom:681.440002pt;}
.y6c{bottom:685.600006pt;}
.yb7{bottom:686.880005pt;}
.y10e{bottom:689.279999pt;}
.y4{bottom:691.756000pt;}
.y96{bottom:692.959991pt;}
.y10f{bottom:696.000000pt;}
.y29{bottom:698.239990pt;}
.y48{bottom:700.160004pt;}
.y133{bottom:702.079987pt;}
.y6b{bottom:706.239990pt;}
.y10c{bottom:707.200012pt;}
.ycf{bottom:707.519989pt;}
.y28{bottom:713.600006pt;}
.y10d{bottom:713.920013pt;}
.y47{bottom:720.799988pt;}
.y14{bottom:725.040000pt;}
.y10b{bottom:725.119995pt;}
.y6a{bottom:726.880005pt;}
.yce{bottom:728.000000pt;}
.y132{bottom:732.000000pt;}
.y95{bottom:734.079987pt;}
.y27{bottom:739.359985pt;}
.yb1{bottom:740.160004pt;}
.y46{bottom:741.440002pt;}
.y10a{bottom:743.040009pt;}
.y69{bottom:747.519989pt;}
.y26{bottom:754.720001pt;}
.yb0{bottom:760.799988pt;}
.y109{bottom:760.959991pt;}
.y45{bottom:761.920013pt;}
.y88{bottom:768.000000pt;}
.y94{bottom:775.359985pt;}
.y108{bottom:778.880005pt;}
.y25{bottom:780.640015pt;}
.y68{bottom:781.440002pt;}
.y44{bottom:782.559998pt;}
.y87{bottom:788.640015pt;}
.y93{bottom:795.839996pt;}
.y104{bottom:796.799988pt;}
.y24{bottom:801.119995pt;}
.y67{bottom:801.919998pt;}
.y43{bottom:803.199997pt;}
.y106{bottom:803.520004pt;}
.y3{bottom:805.081333pt;}
.y86{bottom:809.279999pt;}
.y101{bottom:814.559998pt;}
.yb6{bottom:816.479996pt;}
.y102{bottom:821.279999pt;}
.y23{bottom:821.759995pt;}
.y66{bottom:822.559998pt;}
.y85{bottom:829.759995pt;}
.y100{bottom:832.479996pt;}
.y42{bottom:837.119995pt;}
.y65{bottom:843.199997pt;}
.y22{bottom:850.399994pt;}
.y2{bottom:857.092000pt;}
.ycd{bottom:857.600006pt;}
.y64{bottom:863.679993pt;}
.yff{bottom:868.320007pt;}
.y21{bottom:871.039993pt;}
.y1{bottom:879.748000pt;}
.y63{bottom:884.320007pt;}
.yfd{bottom:886.880005pt;}
.yac{bottom:891.520004pt;}
.y20{bottom:904.960007pt;}
.yb5{bottom:912.160004pt;}
.y1f{bottom:925.440002pt;}
.y1e{bottom:946.080002pt;}
.h25{height:10.400025pt;}
.h18{height:11.039994pt;}
.h1c{height:11.199982pt;}
.h16{height:11.199997pt;}
.h1d{height:11.200012pt;}
.h1e{height:17.760009pt;}
.h17{height:17.760010pt;}
.h1b{height:17.919982pt;}
.h19{height:17.919983pt;}
.h12{height:17.919998pt;}
.h15{height:17.920013pt;}
.h1a{height:17.920014pt;}
.h1f{height:17.920044pt;}
.h4{height:29.333333pt;}
.h26{height:30.165897pt;}
.hd{height:32.400379pt;}
.h13{height:44.420646pt;}
.h23{height:46.365912pt;}
.h14{height:47.290197pt;}
.h24{height:48.725713pt;}
.h27{height:48.725953pt;}
.h22{height:48.725957pt;}
.ha{height:51.393654pt;}
.h3{height:51.916667pt;}
.he{height:53.520251pt;}
.hf{height:53.520371pt;}
.hc{height:53.520375pt;}
.hb{height:53.520435pt;}
.h11{height:53.520495pt;}
.h10{height:53.520499pt;}
.h20{height:55.233742pt;}
.h2{height:59.333333pt;}
.h5{height:60.213542pt;}
.h21{height:87.233498pt;}
.h7{height:102.413333pt;}
.h6{height:152.386667pt;}
.h8{height:154.000000pt;}
.h9{height:1056.000000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w42{width:2.879974pt;}
.w40{width:2.879975pt;}
.w1a{width:2.880005pt;}
.w1c{width:3.359986pt;}
.w16{width:3.360016pt;}
.w48{width:4.320007pt;}
.w47{width:4.320008pt;}
.w2d{width:4.479980pt;}
.w32{width:4.639984pt;}
.w1b{width:4.640014pt;}
.w21{width:4.640015pt;}
.we{width:7.359985pt;}
.w10{width:7.359986pt;}
.wc{width:7.360000pt;}
.w12{width:7.360001pt;}
.w24{width:7.360015pt;}
.w13{width:7.360016pt;}
.w23{width:7.519989pt;}
.w41{width:7.680023pt;}
.w25{width:7.680024pt;}
.w3b{width:11.840027pt;}
.w34{width:13.600006pt;}
.w1f{width:14.880005pt;}
.w2b{width:15.039978pt;}
.w3f{width:18.560028pt;}
.w19{width:20.320008pt;}
.w15{width:22.239990pt;}
.w27{width:22.720002pt;}
.w31{width:24.640015pt;}
.w30{width:25.919983pt;}
.w3a{width:26.079986pt;}
.w2f{width:26.079987pt;}
.wf{width:26.080017pt;}
.w1d{width:26.720001pt;}
.w29{width:26.880005pt;}
.w2c{width:28.800019pt;}
.w20{width:29.600006pt;}
.wb{width:30.080002pt;}
.wd{width:34.720002pt;}
.w44{width:40.000000pt;}
.w43{width:43.200004pt;}
.w2a{width:43.360000pt;}
.w46{width:47.199982pt;}
.w45{width:47.200012pt;}
.wa{width:59.199997pt;}
.w3c{width:74.399994pt;}
.w17{width:76.319992pt;}
.w2e{width:82.399994pt;}
.w11{width:84.319992pt;}
.w14{width:90.880005pt;}
.w35{width:96.479996pt;}
.w33{width:98.880005pt;}
.w1e{width:107.360000pt;}
.w3d{width:110.240005pt;}
.w28{width:110.399994pt;}
.w39{width:113.599991pt;}
.w38{width:129.119995pt;}
.w22{width:146.240005pt;}
.w36{width:148.319992pt;}
.w18{width:165.279983pt;}
.w26{width:176.639999pt;}
.w3e{width:195.360000pt;}
.w37{width:210.560013pt;}
.w8{width:267.706667pt;}
.w6{width:325.746667pt;}
.w2{width:439.666667pt;}
.w5{width:491.253333pt;}
.w3{width:491.800000pt;}
.w4{width:531.026667pt;}
.w7{width:579.386667pt;}
.w0{width:793.706667pt;}
.w1{width:794.000000pt;}
.w9{width:816.000000pt;}
.x0{left:0.000000pt;}
.x3{left:2.666667pt;}
.xa{left:96.000000pt;}
.x45{left:102.239998pt;}
.x9{left:112.306667pt;}
.x1{left:113.385867pt;}
.xb{left:120.000000pt;}
.xe{left:122.080002pt;}
.x5d{left:135.520004pt;}
.x2c{left:148.960007pt;}
.x5{left:154.760000pt;}
.x46{left:165.759995pt;}
.x2{left:169.813333pt;}
.x47{left:171.039993pt;}
.x7{left:178.413333pt;}
.xf{left:181.279999pt;}
.x8{left:193.173333pt;}
.x4{left:195.600000pt;}
.x6{left:197.760000pt;}
.x30{left:204.479996pt;}
.x15{left:206.399994pt;}
.x10{left:211.360001pt;}
.x17{left:212.960007pt;}
.x36{left:218.559998pt;}
.x34{left:220.960007pt;}
.x48{left:226.559998pt;}
.x21{left:229.440002pt;}
.x2b{left:232.479996pt;}
.x3a{left:235.679993pt;}
.x39{left:251.199997pt;}
.x26{left:268.320007pt;}
.x37{left:270.399994pt;}
.x5e{left:282.720001pt;}
.x49{left:286.399994pt;}
.x1b{left:287.359985pt;}
.x56{left:290.079987pt;}
.x4a{left:295.359985pt;}
.x2a{left:298.720001pt;}
.x3f{left:306.720001pt;}
.x40{left:317.440002pt;}
.x38{left:332.640015pt;}
.x4b{left:352.320007pt;}
.x57{left:356.000000pt;}
.x5f{left:358.399994pt;}
.x4c{left:361.279999pt;}
.x31{left:364.000000pt;}
.x2d{left:375.040009pt;}
.x11{left:376.320007pt;}
.x3b{left:380.640015pt;}
.x18{left:382.559998pt;}
.xd{left:385.920013pt;}
.x27{left:390.079987pt;}
.x16{left:393.600006pt;}
.x28{left:397.440002pt;}
.x22{left:401.119995pt;}
.x19{left:404.799988pt;}
.x3c{left:406.720001pt;}
.x5c{left:408.000000pt;}
.x12{left:411.040009pt;}
.x2e{left:412.160004pt;}
.x4d{left:419.519989pt;}
.x32{left:423.359985pt;}
.x4e{left:424.799988pt;}
.x60{left:434.079987pt;}
.x13{left:443.359985pt;}
.x5b{left:444.640015pt;}
.x1a{left:446.720001pt;}
.x29{left:451.040009pt;}
.x67{left:453.920013pt;}
.x3d{left:455.200012pt;}
.x35{left:456.959991pt;}
.x3e{left:459.839996pt;}
.x41{left:461.920013pt;}
.x1c{left:463.679993pt;}
.x42{left:464.799988pt;}
.x1d{left:466.559998pt;}
.x33{left:468.000000pt;}
.x14{left:469.440002pt;}
.x1e{left:471.200012pt;}
.x23{left:472.959991pt;}
.x1f{left:474.559998pt;}
.x24{left:475.839996pt;}
.x2f{left:479.519989pt;}
.x25{left:480.480011pt;}
.x43{left:483.359985pt;}
.x64{left:484.640015pt;}
.x4f{left:485.600006pt;}
.x44{left:488.000000pt;}
.x68{left:489.920013pt;}
.x20{left:501.279999pt;}
.x61{left:509.600006pt;}
.x50{left:540.000000pt;}
.x58{left:543.679993pt;}
.x51{left:548.960022pt;}
.x62{left:585.119995pt;}
.x52{left:606.080017pt;}
.x59{left:609.760010pt;}
.x53{left:615.039978pt;}
.x63{left:660.799988pt;}
.x54{left:672.000000pt;}
.x5a{left:675.679993pt;}
.x55{left:680.960022pt;}
.x65{left:707.039978pt;}
.x66{left:711.359985pt;}
.xc{left:720.000000pt;}
}




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