
/* 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI0IiBoZWlnaHQ9IjQiPgo8cmVjdCB3aWR0aD0iNCIgaGVpZ2h0PSI0IiBmaWxsPSIjNDAzYzNmIj48L3JlY3Q+CjxwYXRoIGQ9Ik0wIDBMNCA0Wk00IDBMMCA0WiIgc3Ryb2tlLXdpZHRoPSIxIiBzdHJva2U9IiMxZTI5MmQiPjwvcGF0aD4KPC9zdmc+");
  }
  #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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI1IiBoZWlnaHQ9IjUiPgo8cmVjdCB3aWR0aD0iNSIgaGVpZ2h0PSI1IiBmaWxsPSIjOWU5ZTllIj48L3JlY3Q+CjxwYXRoIGQ9Ik0wIDVMNSAwWk02IDRMNCA2Wk0tMSAxTDEgLTFaIiBzdHJva2U9IiM4ODgiIHN0cm9rZS13aWR0aD0iMSI+PC9wYXRoPgo8L3N2Zz4=");
    -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(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABYAAAAWCAYAAADEtGw7AAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH3goQDSYgDiGofgAAAslJREFUOMvtlM9LFGEYx7/vvOPM6ywuuyPFihWFBUsdNnA6KLIh+QPx4KWExULdHQ/9A9EfUodYmATDYg/iRewQzklFWxcEBcGgEplDkDtI6sw4PzrIbrOuedBb9MALD7zv+3m+z4/3Bf7bZS2bzQIAcrmcMDExcTeXy10DAFVVAQDksgFUVZ1ljD3yfd+0LOuFpmnvVVW9GHhkZAQcxwkNDQ2FSCQyRMgJxnVdy7KstKZpn7nwha6urqqfTqfPBAJAuVymlNLXoigOhfd5nmeiKL5TVTV+lmIKwAOA7u5u6Lped2BsbOwjY6yf4zgQQkAIAcedaPR9H67r3uYBQFEUFItFtLe332lpaVkUBOHK3t5eRtf1DwAwODiIubk5DA8PM8bYW1EU+wEgCIJqsCAIQAiB7/u253k2BQDDMJBKpa4mEon5eDx+UxAESJL0uK2t7XosFlvSdf0QAEmlUnlRFJ9Waho2Qghc1/U9z3uWz+eX+Wr+lL6SZfleEAQIggA8z6OpqSknimIvYyybSCReMsZ6TislhCAIAti2Dc/zejVNWwCAavN8339j27YbTg0AGGM3WltbP4WhlRWq6Q/btrs1TVsYHx+vNgqKoqBUKn2NRqPFxsbGJzzP05puUlpt0ukyOI6z7zjOwNTU1OLo6CgmJyf/gA3DgKIoWF1d/cIY24/FYgOU0pp0z/Ityzo8Pj5OTk9PbwHA+vp6zWghDC+VSiuRSOQgGo32UErJ38CO42wdHR09LBQK3zKZDDY2NupmFmF4R0cHVlZWlmRZ/iVJUn9FeWWcCCE4ODjYtG27Z2Zm5juAOmgdGAB2d3cBADs7O8uSJN2SZfl+WKlpmpumaT6Yn58vn/fs6XmbhmHMNjc3tzDGFI7jYJrm5vb29sDa2trPC/9aiqJUy5pOp4f6+vqeJ5PJBAB0dnZe/t8NBajx/z37Df5OGX8d13xzAAAAAElFTkSuQmCC);
  }
}
/* Fancy CSS END */



.ff0{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1;src:url("fonts/font_0000_8a402de2f197.woff")format("woff");}.ff1{font-family:ff1;line-height:1.070312;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("fonts/font_0001_9999b3ad7890.woff")format("woff");}.ff2{font-family:ff2;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:ff3;src:url("fonts/font_0002_9999b3ad7890.woff")format("woff");}.ff3{font-family:ff3;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:ff4;src:url("fonts/font_0003_9999b3ad7890.woff")format("woff");}.ff4{font-family:ff4;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:ff5;src:url("fonts/font_0004_f41e043d11cd.woff")format("woff");}.ff5{font-family:ff5;line-height:1.084961;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("fonts/font_0005_bf6a83d5fd86.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("fonts/font_0006_4ae89b1e9930.woff")format("woff");}.ff7{font-family:ff7;line-height:0.929199;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("fonts/font_0007_9999b3ad7890.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("fonts/font_0008_9999b3ad7890.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;}
.m2{transform:matrix(0.242537,0.000000,-0.060628,0.242537,0,0);-ms-transform:matrix(0.242537,0.000000,-0.060628,0.242537,0,0);-webkit-transform:matrix(0.242537,0.000000,-0.060628,0.242537,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.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);}
.v2{vertical-align:-27.024000px;}
.v3{vertical-align:-22.518000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:22.524000px;}
.v1{vertical-align:27.024000px;}
.ls3{letter-spacing:0.000000px;}
.ls16{letter-spacing:0.000293px;}
.lsd{letter-spacing:0.001320px;}
.ls11{letter-spacing:0.002534px;}
.ls15{letter-spacing:0.006639px;}
.ls0{letter-spacing:0.014640px;}
.ls2{letter-spacing:0.023160px;}
.ls1{letter-spacing:0.025260px;}
.ls8{letter-spacing:0.025320px;}
.ls13{letter-spacing:16.609320px;}
.ls14{letter-spacing:16.615320px;}
.ls5{letter-spacing:16.633320px;}
.ls12{letter-spacing:21.115320px;}
.ls6{letter-spacing:22.794384px;}
.ls9{letter-spacing:25.639320px;}
.lse{letter-spacing:30.145320px;}
.ls10{letter-spacing:34.645320px;}
.lsc{letter-spacing:39.151320px;}
.ls4{letter-spacing:43.657320px;}
.ls7{letter-spacing:58.824384px;}
.lsa{letter-spacing:64.049328px;}
.lsb{letter-spacing:108.875328px;}
.lsf{letter-spacing:184.103328px;}
.ls17{letter-spacing:353.699328px;}
.ls18{letter-spacing:550.181328px;}
.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;}
}
.ws2{word-spacing:-20.032680px;}
.ws3{word-spacing:-18.354672px;}
.wsf{word-spacing:-16.690008px;}
.ws34{word-spacing:-0.104495px;}
.ws2d{word-spacing:-0.077026px;}
.ws31{word-spacing:-0.075399px;}
.ws35{word-spacing:-0.074112px;}
.wsd{word-spacing:-0.072428px;}
.ws0{word-spacing:-0.072060px;}
.wsc{word-spacing:-0.066024px;}
.ws1b{word-spacing:-0.060036px;}
.wse{word-spacing:-0.057375px;}
.ws1{word-spacing:-0.043236px;}
.ws4{word-spacing:0.000000px;}
.ws10{word-spacing:4.307696px;}
.ws14{word-spacing:4.351968px;}
.ws2c{word-spacing:4.419370px;}
.ws30{word-spacing:4.425897px;}
.ws36{word-spacing:4.429352px;}
.ws11{word-spacing:4.429946px;}
.ws37{word-spacing:4.431912px;}
.wsb{word-spacing:4.444934px;}
.ws16{word-spacing:4.447311px;}
.ws3b{word-spacing:6.636300px;}
.ws19{word-spacing:8.843304px;}
.ws15{word-spacing:8.847504px;}
.wsa{word-spacing:8.913425px;}
.ws13{word-spacing:8.927435px;}
.ws7{word-spacing:8.929635px;}
.ws1a{word-spacing:8.934632px;}
.ws6{word-spacing:8.936616px;}
.ws29{word-spacing:8.938857px;}
.ws5{word-spacing:8.941234px;}
.ws38{word-spacing:11.142300px;}
.ws17{word-spacing:13.375944px;}
.ws1c{word-spacing:13.415885px;}
.ws8{word-spacing:13.418286px;}
.ws26{word-spacing:13.426686px;}
.ws9{word-spacing:13.434496px;}
.ws2a{word-spacing:13.434539px;}
.ws27{word-spacing:13.436940px;}
.ws18{word-spacing:13.453777px;}
.ws12{word-spacing:13.454371px;}
.ws28{word-spacing:15.642300px;}
.ws32{word-spacing:17.924890px;}
.ws3a{word-spacing:17.936896px;}
.ws23{word-spacing:17.937995px;}
.ws33{word-spacing:17.941098px;}
.ws24{word-spacing:17.977968px;}
.ws39{word-spacing:20.148300px;}
.ws2f{word-spacing:20.835960px;}
.ws2b{word-spacing:24.654300px;}
.ws1d{word-spacing:26.929992px;}
.ws25{word-spacing:26.935272px;}
.ws20{word-spacing:26.943338px;}
.ws1e{word-spacing:26.948568px;}
.ws1f{word-spacing:31.447077px;}
.ws22{word-spacing:35.971988px;}
.ws2e{word-spacing:38.160300px;}
.ws21{word-spacing:40.414262px;}
._253{margin-left:-3022.028411px;}
._24c{margin-left:-3020.719448px;}
._24e{margin-left:-3019.176480px;}
._24d{margin-left:-2935.861415px;}
._252{margin-left:-2895.468062px;}
._fb{margin-left:-2871.004484px;}
._1b7{margin-left:-2869.807783px;}
._204{margin-left:-2850.233475px;}
._21f{margin-left:-2848.980511px;}
._226{margin-left:-2845.404667px;}
._243{margin-left:-2840.010533px;}
._17a{margin-left:-2836.624231px;}
._250{margin-left:-2825.212750px;}
._b1{margin-left:-2821.409790px;}
._163{margin-left:-2818.304714px;}
._186{margin-left:-2816.090861px;}
._149{margin-left:-2814.833716px;}
._c0{margin-left:-2812.517651px;}
._167{margin-left:-2808.697781px;}
._d2{margin-left:-2807.317512px;}
._212{margin-left:-2804.509924px;}
._9e{margin-left:-2803.092549px;}
._238{margin-left:-2800.195608px;}
._1d4{margin-left:-2797.996273px;}
._140{margin-left:-2796.571927px;}
._1e{margin-left:-2794.275143px;}
._130{margin-left:-2792.284712px;}
._1e7{margin-left:-2790.684969px;}
._1c1{margin-left:-2785.852236px;}
._92{margin-left:-2784.507316px;}
._a7{margin-left:-2781.400942px;}
._5d{margin-left:-2779.358861px;}
._1ca{margin-left:-2778.349669px;}
._df{margin-left:-2777.185171px;}
._17e{margin-left:-2776.089196px;}
._196{margin-left:-2774.120038px;}
._19a{margin-left:-2771.560315px;}
._235{margin-left:-2769.439109px;}
._1{margin-left:-2768.298369px;}
._1bd{margin-left:-2763.982649px;}
._35{margin-left:-2761.139675px;}
._b5{margin-left:-2757.342873px;}
._22a{margin-left:-2752.850277px;}
._8d{margin-left:-2750.968569px;}
._137{margin-left:-2749.714247px;}
._1fa{margin-left:-2748.451104px;}
._241{margin-left:-2747.163117px;}
._1e0{margin-left:-2745.909425px;}
._215{margin-left:-2743.597669px;}
._1f4{margin-left:-2742.127899px;}
._192{margin-left:-2740.700793px;}
._12d{margin-left:-2738.766950px;}
._146{margin-left:-2737.559258px;}
._205{margin-left:-2732.525080px;}
._14c{margin-left:-2730.727565px;}
._1cc{margin-left:-2723.520498px;}
._23e{margin-left:-2720.544320px;}
._21b{margin-left:-2719.514015px;}
._1d2{margin-left:-2717.941286px;}
._1d0{margin-left:-2716.646261px;}
._1af{margin-left:-2713.632128px;}
._216{margin-left:-2712.121224px;}
._1f0{margin-left:-2711.102893px;}
._206{margin-left:-2709.856959px;}
._20b{margin-left:-2707.455118px;}
._213{margin-left:-2705.475627px;}
._1b9{margin-left:-2701.943747px;}
._13f{margin-left:-2699.092413px;}
._217{margin-left:-2697.733270px;}
._14f{margin-left:-2696.546598px;}
._1e8{margin-left:-2695.300956px;}
._198{margin-left:-2692.150080px;}
._246{margin-left:-2689.009147px;}
._194{margin-left:-2686.808773px;}
._53{margin-left:-2684.593291px;}
._8a{margin-left:-2681.797578px;}
._239{margin-left:-2676.894945px;}
._251{margin-left:-2675.824155px;}
._1b1{margin-left:-2673.789240px;}
._1bb{margin-left:-2670.465608px;}
._1f1{margin-left:-2669.319282px;}
._116{margin-left:-2666.922099px;}
._15e{margin-left:-2658.294120px;}
._83{margin-left:-2655.090734px;}
._165{margin-left:-2654.024308px;}
._ab{margin-left:-2651.071881px;}
._10a{margin-left:-2649.793389px;}
._124{margin-left:-2646.745749px;}
._21d{margin-left:-2639.340570px;}
._158{margin-left:-2637.277840px;}
._17b{margin-left:-2628.436721px;}
._ba{margin-left:-2624.861053px;}
._12{margin-left:-2622.522525px;}
._155{margin-left:-2620.416914px;}
._1e2{margin-left:-2619.270611px;}
._1e5{margin-left:-2616.331069px;}
._145{margin-left:-2613.922525px;}
._13a{margin-left:-2612.717074px;}
._121{margin-left:-2606.197232px;}
._1c5{margin-left:-2604.427973px;}
._1fb{margin-left:-2600.319846px;}
._201{margin-left:-2598.526127px;}
._28{margin-left:-2596.593414px;}
._3e{margin-left:-2594.901780px;}
._17f{margin-left:-2590.227976px;}
._47{margin-left:-2587.761275px;}
._220{margin-left:-2586.131452px;}
._19b{margin-left:-2585.035304px;}
._228{margin-left:-2582.809017px;}
._13b{margin-left:-2580.491350px;}
._240{margin-left:-2578.660419px;}
._cf{margin-left:-2568.068109px;}
._1ac{margin-left:-2563.624187px;}
._1ed{margin-left:-2558.497360px;}
._1d6{margin-left:-2557.299956px;}
._210{margin-left:-2553.252734px;}
._218{margin-left:-2550.432178px;}
._1ab{margin-left:-2549.342763px;}
._1ef{margin-left:-2548.252578px;}
._d7{margin-left:-2546.761152px;}
._af{margin-left:-2543.949951px;}
._23f{margin-left:-2541.433395px;}
._9a{margin-left:-2535.867785px;}
._7f{margin-left:-2533.524489px;}
._22e{margin-left:-2532.308077px;}
._1dc{margin-left:-2530.136339px;}
._232{margin-left:-2528.966458px;}
._ed{margin-left:-2523.316183px;}
._15c{margin-left:-2521.724055px;}
._101{margin-left:-2518.982764px;}
._174{margin-left:-2517.738293px;}
._1d1{margin-left:-2514.800558px;}
._1ba{margin-left:-2513.469670px;}
._18f{margin-left:-2512.230922px;}
._224{margin-left:-2510.521565px;}
._231{margin-left:-2509.212335px;}
._188{margin-left:-2506.906634px;}
._77{margin-left:-2505.582377px;}
._22d{margin-left:-2504.022272px;}
._134{margin-left:-2502.223267px;}
._1d8{margin-left:-2500.583881px;}
._1c8{margin-left:-2498.539626px;}
._18e{margin-left:-2496.842576px;}
._191{margin-left:-2494.476364px;}
._178{margin-left:-2492.997310px;}
._190{margin-left:-2490.913171px;}
._1a3{margin-left:-2487.780312px;}
._6a{margin-left:-2484.772409px;}
._f5{margin-left:-2482.652643px;}
._1da{margin-left:-2480.870747px;}
._23c{margin-left:-2474.383001px;}
._11b{margin-left:-2473.221508px;}
._70{margin-left:-2468.596751px;}
._169{margin-left:-2467.317297px;}
._f1{margin-left:-2463.342988px;}
._1df{margin-left:-2461.801650px;}
._1f8{margin-left:-2457.409575px;}
._161{margin-left:-2444.622735px;}
._1b4{margin-left:-2439.722671px;}
._1a6{margin-left:-2438.308177px;}
._1e9{margin-left:-2435.146126px;}
._127{margin-left:-2433.820462px;}
._1c9{margin-left:-2430.408988px;}
._18b{margin-left:-2428.536268px;}
._64{margin-left:-2426.965761px;}
._a4{margin-left:-2423.420097px;}
._db{margin-left:-2421.344096px;}
._1ec{margin-left:-2420.191000px;}
._129{margin-left:-2413.318712px;}
._bc{margin-left:-2401.675881px;}
._c7{margin-left:-2390.823301px;}
._1b2{margin-left:-2382.973785px;}
._183{margin-left:-2379.336972px;}
._23d{margin-left:-2378.277825px;}
._98{margin-left:-2369.675080px;}
._19f{margin-left:-2347.725779px;}
._1a4{margin-left:-2336.946882px;}
._20d{margin-left:-2331.170513px;}
._22f{margin-left:-2328.438960px;}
._ff{margin-left:-2311.362011px;}
._1f7{margin-left:-2298.085469px;}
._237{margin-left:-2294.905161px;}
._1a5{margin-left:-2292.381595px;}
._110{margin-left:-2290.109657px;}
._1a0{margin-left:-2273.116562px;}
._1ad{margin-left:-2270.268794px;}
._10e{margin-left:-2253.443681px;}
._21e{margin-left:-2251.462946px;}
._208{margin-left:-2248.042788px;}
._202{margin-left:-2225.143002px;}
._19d{margin-left:-2215.415605px;}
._1a9{margin-left:-2207.567169px;}
._1aa{margin-left:-2196.550399px;}
._22b{margin-left:-2194.413514px;}
._154{margin-left:-2169.596260px;}
._21a{margin-left:-2114.787015px;}
._103{width:15.687647px;}
._fe{width:21.083563px;}
._0{width:22.772357px;}
._148{width:23.781660px;}
._100{width:25.660460px;}
._1d{width:27.299537px;}
._1b6{width:29.540662px;}
._11{width:30.677547px;}
._46{width:31.809043px;}
._da{width:32.824091px;}
._1b5{width:34.010309px;}
._10{width:35.182321px;}
._3d{width:36.351607px;}
._fa{width:38.154793px;}
._34{width:40.120144px;}
._6{width:41.177254px;}
._203{width:42.404888px;}
._f9{width:43.630022px;}
._33{width:45.302764px;}
._254{width:46.855451px;}
._222{width:48.139086px;}
._1b{width:49.391102px;}
._27{width:50.667346px;}
._3{width:52.085673px;}
._106{width:53.260097px;}
._ca{width:54.689000px;}
._f3{width:56.259939px;}
._105{width:57.592596px;}
._e9{width:58.788166px;}
._16a{width:59.932075px;}
._200{width:61.758661px;}
._91{width:63.339068px;}
._115{width:64.823420px;}
._221{width:66.429965px;}
._b9{width:67.838406px;}
._86{width:69.320846px;}
._84{width:70.736331px;}
._14b{width:72.677305px;}
._d1{width:73.712913px;}
._5b{width:75.026240px;}
._107{width:76.622506px;}
._4c{width:78.616031px;}
._108{width:80.073135px;}
._8b{width:81.428720px;}
._2f{width:82.836946px;}
._d9{width:84.610839px;}
._29{width:86.495666px;}
._e{width:87.974009px;}
._90{width:89.591003px;}
._17d{width:90.636896px;}
._a{width:91.705355px;}
._23{width:93.322943px;}
._1e6{width:94.360644px;}
._44{width:95.361698px;}
._166{width:96.475861px;}
._4b{width:97.827035px;}
._a3{width:99.374373px;}
._25{width:100.639789px;}
._74{width:102.329343px;}
._223{width:103.442692px;}
._13{width:104.614525px;}
._76{width:105.638334px;}
._85{width:106.974462px;}
._f7{width:108.771266px;}
._3a{width:110.562998px;}
._f2{width:111.572263px;}
._1f3{width:112.654745px;}
._f{width:113.658996px;}
._55{width:115.418733px;}
._d{width:117.320092px;}
._7a{width:119.077453px;}
._6d{width:120.680885px;}
._60{width:122.384595px;}
._112{width:123.987790px;}
._3b{width:124.999879px;}
._2c{width:126.888753px;}
._41{width:128.367690px;}
._159{width:130.166140px;}
._14d{width:131.391655px;}
._5e{width:132.531844px;}
._20{width:133.714248px;}
._ce{width:135.332958px;}
._65{width:136.529379px;}
._32{width:137.937539px;}
._89{width:139.345699px;}
._39{width:140.400498px;}
._234{width:141.574216px;}
._ad{width:142.581469px;}
._2{width:143.780267px;}
._f8{width:144.917044px;}
._cd{width:146.382405px;}
._14{width:147.963789px;}
._c6{width:149.207770px;}
._96{width:150.745535px;}
._17{width:151.973427px;}
._48{width:153.630255px;}
._1ff{width:154.709789px;}
._4e{width:155.812414px;}
._1cb{width:157.094929px;}
._72{width:158.132564px;}
._50{width:160.104767px;}
._68{width:161.371899px;}
._10b{width:162.577578px;}
._79{width:163.975820px;}
._94{width:165.665440px;}
._49{width:167.561385px;}
._1a{width:169.426911px;}
._14e{width:170.839359px;}
._cc{width:172.066137px;}
._5{width:173.261897px;}
._16b{width:174.268484px;}
._d6{width:175.522753px;}
._63{width:176.568445px;}
._62{width:177.781994px;}
._b4{width:178.998548px;}
._43{width:180.437782px;}
._4a{width:182.270740px;}
._e1{width:183.465907px;}
._38{width:184.731917px;}
._114{width:185.860465px;}
._20f{width:187.352192px;}
._51{width:188.673220px;}
._128{width:190.024192px;}
._cb{width:191.134086px;}
._9f{width:192.335637px;}
._be{width:193.951310px;}
._bd{width:195.030004px;}
._1f{width:196.063286px;}
._111{width:197.683251px;}
._9c{width:198.740209px;}
._52{width:199.792850px;}
._95{width:201.694143px;}
._a0{width:203.380198px;}
._150{width:204.648585px;}
._19c{width:205.954071px;}
._9b{width:207.222240px;}
._18a{width:208.799183px;}
._7d{width:209.926675px;}
._2b{width:211.262209px;}
._aa{width:213.011309px;}
._5f{width:214.149372px;}
._21{width:215.277108px;}
._195{width:216.329749px;}
._8f{width:217.503464px;}
._30{width:218.581497px;}
._e3{width:220.058652px;}
._12e{width:221.537062px;}
._e4{width:222.888797px;}
._87{width:224.075152px;}
._56{width:225.476582px;}
._c{width:227.448124px;}
._113{width:229.085244px;}
._82{width:230.603326px;}
._1c2{width:231.761650px;}
._59{width:232.795870px;}
._141{width:234.460731px;}
._22{width:235.538065px;}
._c3{width:237.485908px;}
._12c{width:239.339905px;}
._16c{width:240.712016px;}
._10d{width:242.155102px;}
._57{width:243.774473px;}
._ac{width:244.895515px;}
._4{width:246.658599px;}
._f6{width:248.276782px;}
._7{width:250.179923px;}
._132{width:251.673017px;}
._11e{width:252.780873px;}
._4d{width:254.679855px;}
._1d7{width:255.722490px;}
._c1{width:257.084947px;}
._135{width:258.279734px;}
._6e{width:259.749244px;}
._182{width:260.822551px;}
._54{width:262.141954px;}
._de{width:263.193716px;}
._1c0{width:264.495128px;}
._36{width:265.516836px;}
._160{width:267.041993px;}
._8e{width:268.612768px;}
._bb{width:269.670010px;}
._5c{width:271.429154px;}
._31{width:273.471540px;}
._20a{width:274.661046px;}
._71{width:275.720912px;}
._157{width:276.775645px;}
._136{width:278.182683px;}
._7e{width:279.803836px;}
._b3{width:281.001379px;}
._b7{width:282.550566px;}
._97{width:283.602923px;}
._11f{width:285.210571px;}
._19{width:286.378248px;}
._c5{width:287.464966px;}
._3f{width:289.164851px;}
._61{width:291.133422px;}
._1db{width:292.534743px;}
._c9{width:293.667159px;}
._b2{width:295.426369px;}
._9{width:297.184324px;}
._16{width:298.730324px;}
._11c{width:300.947947px;}
._e0{width:302.163467px;}
._176{width:303.351734px;}
._8{width:305.204985px;}
._21c{width:306.444660px;}
._b0{width:308.420266px;}
._78{width:309.779854px;}
._88{width:311.609841px;}
._ae{width:312.773316px;}
._189{width:314.404412px;}
._4f{width:316.887998px;}
._133{width:318.384640px;}
._1c4{width:319.605490px;}
._138{width:320.687085px;}
._75{width:321.784133px;}
._24f{width:323.089793px;}
._f4{width:324.416055px;}
._42{width:326.387003px;}
._7c{width:328.329356px;}
._c2{width:329.893317px;}
._15a{width:331.928948px;}
._c4{width:333.230403px;}
._d3{width:334.559328px;}
._2e{width:335.963328px;}
._73{width:338.649712px;}
._142{width:340.874815px;}
._d4{width:341.945328px;}
._1c6{width:343.753664px;}
._6b{width:345.329541px;}
._109{width:347.270831px;}
._19e{width:348.371344px;}
._24{width:350.205617px;}
._1b3{width:351.350913px;}
._1fe{width:352.452157px;}
._b6{width:353.467060px;}
._171{width:354.991674px;}
._93{width:356.867328px;}
._179{width:358.144847px;}
._e6{width:359.299083px;}
._181{width:361.299660px;}
._b{width:363.227001px;}
._156{width:364.262692px;}
._dd{width:365.310482px;}
._dc{width:366.509328px;}
._ee{width:368.198061px;}
._81{width:370.458653px;}
._209{width:371.475151px;}
._16f{width:372.752640px;}
._45{width:374.272180px;}
._12a{width:376.058486px;}
._e8{width:377.966277px;}
._d0{width:379.134495px;}
._168{width:380.215501px;}
._a9{width:381.429960px;}
._ef{width:383.119872px;}
._67{width:384.732977px;}
._b8{width:386.158408px;}
._13c{width:388.463328px;}
._26{width:389.591087px;}
._197{width:391.347280px;}
._119{width:392.963328px;}
._23b{width:394.415375px;}
._d8{width:395.537923px;}
._11d{width:396.841537px;}
._1f9{width:398.203882px;}
._a8{width:399.719504px;}
._7b{width:401.634134px;}
._6f{width:403.327848px;}
._a5{width:404.440194px;}
._2d{width:405.853023px;}
._99{width:407.362742px;}
._143{width:408.451200px;}
._102{width:409.721035px;}
._18{width:412.233877px;}
._1fc{width:413.243709px;}
._147{width:414.253270px;}
._ea{width:416.186174px;}
._122{width:418.273057px;}
._139{width:420.393008px;}
._229{width:421.395772px;}
._3c{width:422.452486px;}
._18d{width:423.505638px;}
._a1{width:424.516569px;}
._9d{width:425.566052px;}
._162{width:426.878826px;}
._6c{width:428.153328px;}
._249{width:429.198118px;}
._16e{width:430.396684px;}
._1c{width:431.966640px;}
._1d9{width:433.320623px;}
._175{width:434.994250px;}
._fc{width:436.969892px;}
._193{width:438.717714px;}
._12b{width:440.575781px;}
._117{width:442.512570px;}
._17c{width:443.561328px;}
._58{width:445.692898px;}
._5a{width:448.352786px;}
._1b8{width:450.456275px;}
._80{width:452.147328px;}
._66{width:454.053319px;}
._13e{width:455.812874px;}
._225{width:456.958984px;}
._170{width:458.984804px;}
._1be{width:461.684576px;}
._1c3{width:463.282241px;}
._1cf{width:464.771051px;}
._118{width:467.291690px;}
._125{width:469.860717px;}
._37{width:470.945820px;}
._199{width:473.112334px;}
._153{width:475.229328px;}
._15d{width:476.836045px;}
._10f{width:479.181758px;}
._d5{width:481.917070px;}
._123{width:484.632736px;}
._a2{width:485.927328px;}
._1ce{width:487.181437px;}
._15b{width:489.221264px;}
._bf{width:491.224934px;}
._1eb{width:493.046795px;}
._1bc{width:496.766358px;}
._1a2{width:498.000347px;}
._c8{width:499.198075px;}
._185{width:503.381328px;}
._219{width:507.259011px;}
._40{width:510.001344px;}
._180{width:511.343226px;}
._e7{width:513.371328px;}
._177{width:518.469250px;}
._1ae{width:520.421502px;}
._126{width:524.050211px;}
._1bf{width:526.067012px;}
._69{width:528.150076px;}
._1ea{width:531.491880px;}
._2a{width:534.064990px;}
._ec{width:535.961328px;}
._173{width:537.814534px;}
._12f{width:540.677594px;}
._1dd{width:544.260878px;}
._131{width:546.305328px;}
._164{width:547.966039px;}
._152{width:549.339181px;}
._fd{width:551.402606px;}
._f0{width:555.383328px;}
._244{width:556.395378px;}
._18c{width:562.148530px;}
._1c7{width:563.198017px;}
._15f{width:565.253441px;}
._187{width:566.366552px;}
._a6{width:576.577573px;}
._242{width:579.823597px;}
._1a1{width:587.297024px;}
._14a{width:589.097525px;}
._1cd{width:590.923008px;}
._eb{width:601.642986px;}
._13d{width:603.159972px;}
._16d{width:609.664346px;}
._1a7{width:612.037001px;}
._1a8{width:615.625001px;}
._172{width:618.912648px;}
._227{width:621.460983px;}
._207{width:622.885290px;}
._1fd{width:625.991163px;}
._11a{width:628.500966px;}
._1d5{width:629.772057px;}
._144{width:631.746235px;}
._1f2{width:633.377749px;}
._104{width:634.761260px;}
._24b{width:635.854867px;}
._1f6{width:637.439328px;}
._151{width:639.651492px;}
._233{width:647.503469px;}
._8c{width:649.759739px;}
._1d3{width:650.787756px;}
._e5{width:652.382953px;}
._1ee{width:666.099642px;}
._247{width:675.591439px;}
._184{width:684.304960px;}
._23a{width:688.566631px;}
._20c{width:692.474655px;}
._20e{width:698.475675px;}
._120{width:705.147908px;}
._245{width:713.130111px;}
._e2{width:715.139155px;}
._1e4{width:717.885150px;}
._22c{width:725.114279px;}
._214{width:732.040953px;}
._1de{width:735.393301px;}
._24a{width:740.741328px;}
._15{width:741.983655px;}
._10c{width:761.074522px;}
._1b0{width:766.212151px;}
._211{width:771.633658px;}
._236{width:790.936503px;}
._248{width:818.283844px;}
._1e1{width:857.988170px;}
._1e3{width:927.301187px;}
._230{width:1212.152220px;}
._1f5{width:1240.371722px;}
.fc5{color:rgb(255,0,0);}
.fc4{color:rgb(74,134,232);}
.fc3{color:transparent;}
.fc2{color:rgb(17,85,204);}
.fc1{color:rgb(102,102,102);}
.fc0{color:rgb(0,0,0);}
.fsb{font-size:36.030000px;}
.fsa{font-size:39.636000px;}
.fs2{font-size:43.236000px;}
.fs8{font-size:60.036000px;}
.fs4{font-size:66.024000px;}
.fs7{font-size:68.054606px;}
.fs1{font-size:72.060000px;}
.fs5{font-size:78.048000px;}
.fs9{font-size:84.042000px;}
.fs3{font-size:90.078000px;}
.fsc{font-size:96.066000px;}
.fs6{font-size:120.072000px;}
.fs0{font-size:144.120000px;}
.y0{bottom:0.000000px;}
.y138{bottom:11.257500px;}
.y168{bottom:11.258250px;}
.y160{bottom:11.258400px;}
.y14b{bottom:11.258700px;}
.y154{bottom:11.259000px;}
.y144{bottom:11.259600px;}
.y233{bottom:11.260500px;}
.y13b{bottom:12.384000px;}
.y133{bottom:12.385500px;}
.y22f{bottom:12.387000px;}
.y237{bottom:16.888500px;}
.y234{bottom:16.890000px;}
.y137{bottom:27.021000px;}
.y167{bottom:27.021750px;}
.y15f{bottom:27.021900px;}
.y14a{bottom:27.022200px;}
.y153{bottom:27.022500px;}
.y143{bottom:29.274600px;}
.y49{bottom:29.275500px;}
.y231{bottom:32.653500px;}
.y136{bottom:42.784500px;}
.y166{bottom:42.785250px;}
.y15e{bottom:42.785400px;}
.y149{bottom:42.785700px;}
.y152{bottom:42.786000px;}
.y142{bottom:45.038100px;}
.y14c{bottom:47.187900px;}
.y131{bottom:47.188500px;}
.y24b{bottom:47.290500px;}
.y9d{bottom:48.480000px;}
.y28{bottom:48.481500px;}
.y74{bottom:48.483000px;}
.y223{bottom:48.484500px;}
.y46{bottom:48.487500px;}
.y278{bottom:48.493500px;}
.y1e7{bottom:48.496500px;}
.y192{bottom:48.498000px;}
.yc3{bottom:48.501000px;}
.y213{bottom:48.502500px;}
.y165{bottom:58.548750px;}
.y15d{bottom:58.548900px;}
.y148{bottom:58.549200px;}
.y151{bottom:58.549500px;}
.y135{bottom:59.674500px;}
.y141{bottom:60.801600px;}
.y1b3{bottom:67.623000px;}
.y73{bottom:67.624500px;}
.y1e6{bottom:67.638000px;}
.y212{bottom:67.644000px;}
.yc2{bottom:73.272000px;}
.y164{bottom:74.312250px;}
.y15c{bottom:74.312400px;}
.y147{bottom:74.312700px;}
.y150{bottom:74.313000px;}
.y140{bottom:76.565100px;}
.y45{bottom:81.139500px;}
.y9c{bottom:85.636500px;}
.y27{bottom:85.638000px;}
.y10c{bottom:85.639500px;}
.yc1{bottom:85.657500px;}
.y211{bottom:85.659000px;}
.y13c{bottom:88.847400px;}
.y14f{bottom:90.075000px;}
.y163{bottom:90.075750px;}
.y15b{bottom:90.075900px;}
.y146{bottom:90.076200px;}
.y157{bottom:90.076500px;}
.y1b2{bottom:91.267500px;}
.y72{bottom:91.269000px;}
.y13f{bottom:92.327100px;}
.y1e5{bottom:92.409000px;}
.y159{bottom:93.351600px;}
.y161{bottom:95.603250px;}
.y9b{bottom:103.651500px;}
.ye9{bottom:103.653000px;}
.y71{bottom:103.654500px;}
.y44{bottom:103.657500px;}
.y210{bottom:103.674000px;}
.y15a{bottom:105.837900px;}
.y156{bottom:105.838500px;}
.y162{bottom:105.839250px;}
.y1e4{bottom:107.046000px;}
.y13e{bottom:108.090600px;}
.y26{bottom:108.157500px;}
.yc0{bottom:109.302000px;}
.y145{bottom:120.373800px;}
.y12f{bottom:120.540000px;}
.y9a{bottom:121.668000px;}
.y70{bottom:121.669500px;}
.y20f{bottom:121.689000px;}
.y13d{bottom:123.854100px;}
.ye8{bottom:126.171000px;}
.y43{bottom:126.175500px;}
.y1e3{bottom:126.187500px;}
.y10b{bottom:127.299000px;}
.ybf{bottom:127.317000px;}
.y25{bottom:130.677000px;}
.y6f{bottom:139.684500px;}
.y99{bottom:145.312500px;}
.y22d{bottom:145.314000px;}
.ye7{bottom:148.690500px;}
.y42{bottom:148.695000px;}
.y1e2{bottom:149.832000px;}
.y24{bottom:153.195000px;}
.y22c{bottom:157.699500px;}
.y12e{bottom:158.830500px;}
.y1e1{bottom:162.217500px;}
.y6e{bottom:163.329000px;}
.y20e{bottom:165.601500px;}
.ye6{bottom:171.208500px;}
.y41{bottom:171.213000px;}
.y23{bottom:175.714500px;}
.y191{bottom:179.107500px;}
.y1e0{bottom:180.232500px;}
.y12d{bottom:181.350000px;}
.y20d{bottom:188.119500px;}
.y98{bottom:192.601500px;}
.y22{bottom:198.234000px;}
.y1df{bottom:198.247500px;}
.y22b{bottom:199.359000px;}
.y12c{bottom:203.868000px;}
.ybe{bottom:205.008000px;}
.y40{bottom:209.494500px;}
.ye5{bottom:209.496000px;}
.y6c{bottom:210.619500px;}
.y20c{bottom:210.639000px;}
.y22a{bottom:211.744500px;}
.y97{bottom:215.121000px;}
.y6d{bottom:217.375500px;}
.y190{bottom:217.389000px;}
.y21{bottom:220.753500px;}
.y10a{bottom:221.878500px;}
.y1de{bottom:221.892000px;}
.y12b{bottom:226.386000px;}
.ybd{bottom:227.526000px;}
.y229{bottom:229.759500px;}
.y1b1{bottom:230.884500px;}
.y3f{bottom:232.012500px;}
.y6b{bottom:233.137500px;}
.y20b{bottom:233.157000px;}
.y95{bottom:237.639000px;}
.y18f{bottom:239.908500px;}
.y20{bottom:243.271500px;}
.y96{bottom:244.395000px;}
.y109{bottom:244.396500px;}
.ye4{bottom:247.777500px;}
.y12a{bottom:248.905500px;}
.y277{bottom:250.038000px;}
.ybc{bottom:250.044000px;}
.y1b0{bottom:253.404000px;}
.y3e{bottom:254.530500px;}
.y69{bottom:255.655500px;}
.y20a{bottom:255.675000px;}
.y222{bottom:259.036500px;}
.y94{bottom:260.157000px;}
.y6a{bottom:262.411500px;}
.y18e{bottom:262.426500px;}
.y1f{bottom:265.789500px;}
.y108{bottom:266.916000px;}
.ye3{bottom:270.295500px;}
.y276{bottom:270.304500px;}
.y129{bottom:271.423500px;}
.y1dc{bottom:271.434000px;}
.y1af{bottom:275.922000px;}
.y3d{bottom:277.048500px;}
.y68{bottom:278.175000px;}
.y1dd{bottom:278.190000px;}
.y209{bottom:278.193000px;}
.y221{bottom:281.554500px;}
.y228{bottom:283.804500px;}
.y1e{bottom:288.309000px;}
.ybb{bottom:288.325500px;}
.y107{bottom:289.434000px;}
.y93{bottom:290.557500px;}
.ye2{bottom:292.813500px;}
.y1db{bottom:293.952000px;}
.y1ae{bottom:296.202000px;}
.y3c{bottom:299.568000px;}
.y67{bottom:300.693000px;}
.y18d{bottom:300.708000px;}
.y208{bottom:300.712500px;}
.y220{bottom:304.072500px;}
.y275{bottom:306.334500px;}
.y227{bottom:307.449000px;}
.y128{bottom:309.705000px;}
.y1d{bottom:310.828500px;}
.yba{bottom:310.843500px;}
.y106{bottom:311.952000px;}
.ye1{bottom:315.331500px;}
.y1da{bottom:316.471500px;}
.y3b{bottom:322.086000px;}
.y66{bottom:323.211000px;}
.y18c{bottom:323.226000px;}
.y207{bottom:323.230500px;}
.y21f{bottom:326.590500px;}
.y274{bottom:326.601000px;}
.y1c{bottom:333.346500px;}
.yb9{bottom:333.361500px;}
.ye0{bottom:337.851000px;}
.y1d9{bottom:338.989500px;}
.y92{bottom:342.358500px;}
.y3a{bottom:344.604000px;}
.y226{bottom:345.730500px;}
.y65{bottom:345.738000px;}
.y18b{bottom:345.744000px;}
.y206{bottom:345.748500px;}
.y273{bottom:346.867500px;}
.y127{bottom:347.986500px;}
.y21e{bottom:349.110000px;}
.y105{bottom:350.242500px;}
.y1b{bottom:355.864500px;}
.y48{bottom:356.925000px;}
.ydf{bottom:360.369000px;}
.y1d8{bottom:361.507500px;}
.y91{bottom:364.876500px;}
.y39{bottom:367.122000px;}
.y272{bottom:367.134000px;}
.y225{bottom:368.250000px;}
.y18a{bottom:368.262000px;}
.y205{bottom:368.266500px;}
.yb8{bottom:371.643000px;}
.y104{bottom:372.760500px;}
.y64{bottom:376.138500px;}
.y1a{bottom:378.384000px;}
.yde{bottom:382.887000px;}
.y1d7{bottom:384.025500px;}
.y21d{bottom:386.266500px;}
.y126{bottom:386.268000px;}
.y90{bottom:387.394500px;}
.y271{bottom:387.400500px;}
.y38{bottom:389.641500px;}
.y224{bottom:390.768000px;}
.y189{bottom:390.781500px;}
.y204{bottom:390.786000px;}
.y103{bottom:395.278500px;}
.y19{bottom:400.903500px;}
.ydd{bottom:405.405000px;}
.y24a{bottom:407.656500px;}
.y270{bottom:407.667000px;}
.yb6{bottom:409.924500px;}
.y37{bottom:412.159500px;}
.y188{bottom:413.299500px;}
.y203{bottom:413.304000px;}
.yb7{bottom:416.680500px;}
.y102{bottom:417.798000px;}
.y1d6{bottom:422.307000px;}
.y18{bottom:423.421500px;}
.y125{bottom:424.549500px;}
.y8f{bottom:425.676000px;}
.ydc{bottom:427.924500px;}
.y63{bottom:427.932000px;}
.y26f{bottom:427.933500px;}
.yb4{bottom:432.442500px;}
.y36{bottom:434.677500px;}
.y202{bottom:435.822000px;}
.y158{bottom:436.765500px;}
.yb5{bottom:439.198500px;}
.y101{bottom:440.316000px;}
.y249{bottom:443.686500px;}
.y1d5{bottom:444.825000px;}
.y17{bottom:445.939500px;}
.y13a{bottom:448.024500px;}
.y8e{bottom:448.194000px;}
.y26e{bottom:448.200000px;}
.ydb{bottom:450.442500px;}
.y62{bottom:450.450000px;}
.y47{bottom:451.567500px;}
.y187{bottom:451.581000px;}
.yb3{bottom:454.960500px;}
.y21c{bottom:457.201500px;}
.y201{bottom:458.340000px;}
.y124{bottom:462.831000px;}
.y100{bottom:462.834000px;}
.y1d4{bottom:467.344500px;}
.y16{bottom:468.459000px;}
.y26d{bottom:468.466500px;}
.y8d{bottom:470.712000px;}
.yda{bottom:472.962000px;}
.y155{bottom:473.920500px;}
.y186{bottom:474.099000px;}
.yb2{bottom:477.478500px;}
.y248{bottom:478.591500px;}
.y200{bottom:480.859500px;}
.y134{bottom:485.181000px;}
.y123{bottom:485.349000px;}
.yff{bottom:485.352000px;}
.y14e{bottom:486.306000px;}
.y61{bottom:488.731500px;}
.y26c{bottom:488.733000px;}
.y15{bottom:490.978500px;}
.y8c{bottom:493.231500px;}
.y185{bottom:496.617000px;}
.yb0{bottom:499.996500px;}
.yd9{bottom:503.364000px;}
.y1ff{bottom:503.377500px;}
.y1d3{bottom:505.626000px;}
.yb1{bottom:506.752500px;}
.y122{bottom:507.867000px;}
.yfe{bottom:507.871500px;}
.y26b{bottom:508.999500px;}
.y60{bottom:511.249500px;}
.y247{bottom:513.495000px;}
.y14{bottom:513.496500px;}
.y8b{bottom:515.749500px;}
.y184{bottom:519.135000px;}
.y1fe{bottom:525.895500px;}
.y21b{bottom:528.136500px;}
.y1d2{bottom:528.145500px;}
.y26a{bottom:529.266000px;}
.y121{bottom:530.386500px;}
.yfc{bottom:530.389500px;}
.y5f{bottom:533.769000px;}
.y13{bottom:536.014500px;}
.yfd{bottom:537.145500px;}
.y8a{bottom:538.267500px;}
.yaf{bottom:538.278000px;}
.y183{bottom:541.654500px;}
.y246{bottom:548.400000px;}
.y269{bottom:549.532500px;}
.y1d1{bottom:550.663500px;}
.yfb{bottom:552.907500px;}
.yd8{bottom:555.157500px;}
.y5e{bottom:556.287000px;}
.y12{bottom:558.532500px;}
.y89{bottom:560.785500px;}
.yae{bottom:560.796000px;}
.y1fd{bottom:560.799000px;}
.y182{bottom:564.172500px;}
.y120{bottom:568.668000px;}
.y268{bottom:569.799000px;}
.y1d0{bottom:573.181500px;}
.yd7{bottom:577.675500px;}
.y5d{bottom:578.805000px;}
.y245{bottom:583.303500px;}
.y88{bottom:583.305000px;}
.yad{bottom:583.314000px;}
.y181{bottom:586.690500px;}
.y267{bottom:590.065500px;}
.y11f{bottom:591.187500px;}
.yfa{bottom:591.189000px;}
.y11{bottom:595.689000px;}
.y1cf{bottom:595.699500px;}
.y21a{bottom:599.071500px;}
.yd6{bottom:600.193500px;}
.y5c{bottom:601.323000px;}
.y1ad{bottom:602.458500px;}
.y87{bottom:605.823000px;}
.yac{bottom:605.833500px;}
.y180{bottom:609.208500px;}
.y266{bottom:610.332000px;}
.y11e{bottom:613.705500px;}
.yf9{bottom:613.707000px;}
.y244{bottom:618.208500px;}
.y1ce{bottom:618.219000px;}
.y1fc{bottom:618.222000px;}
.yd5{bottom:622.713000px;}
.y5b{bottom:623.842500px;}
.y86{bottom:628.341000px;}
.y265{bottom:630.598500px;}
.y17f{bottom:631.728000px;}
.y11d{bottom:636.223500px;}
.yf8{bottom:636.225000px;}
.y1cd{bottom:640.737000px;}
.y1ac{bottom:640.740000px;}
.y1fb{bottom:640.741500px;}
.yab{bottom:644.115000px;}
.yd4{bottom:645.232500px;}
.y264{bottom:650.865000px;}
.y243{bottom:653.112000px;}
.y17e{bottom:654.246000px;}
.yf6{bottom:658.743000px;}
.y85{bottom:658.746000px;}
.y5a{bottom:662.124000px;}
.y10{bottom:663.246000px;}
.y1cc{bottom:663.255000px;}
.y1aa{bottom:663.258000px;}
.y1fa{bottom:663.259500px;}
.yf7{bottom:665.499000px;}
.yaa{bottom:666.634500px;}
.yd3{bottom:667.750500px;}
.y219{bottom:670.006500px;}
.y1ab{bottom:670.014000px;}
.y263{bottom:671.131500px;}
.y11c{bottom:674.506500px;}
.y17d{bottom:676.764000px;}
.yf5{bottom:681.261000px;}
.y59{bottom:684.643500px;}
.y1cb{bottom:685.773000px;}
.y1a9{bottom:685.777500px;}
.y242{bottom:688.017000px;}
.ya9{bottom:689.152500px;}
.yd2{bottom:690.268500px;}
.y262{bottom:691.398000px;}
.y11b{bottom:697.024500px;}
.y17c{bottom:699.282000px;}
.yf4{bottom:703.780500px;}
.yf{bottom:704.905500px;}
.y58{bottom:707.161500px;}
.y1ca{bottom:708.292500px;}
.y1a7{bottom:708.295500px;}
.y84{bottom:710.539500px;}
.y261{bottom:711.664500px;}
.ya8{bottom:711.670500px;}
.yd1{bottom:712.792500px;}
.y1a8{bottom:715.051500px;}
.y11a{bottom:719.542500px;}
.y17b{bottom:721.801500px;}
.y241{bottom:722.920500px;}
.yf3{bottom:726.298500px;}
.y57{bottom:729.679500px;}
.y1c9{bottom:730.810500px;}
.y1a6{bottom:730.813500px;}
.ye{bottom:731.928000px;}
.y260{bottom:731.931000px;}
.y83{bottom:733.057500px;}
.ya7{bottom:734.188500px;}
.y218{bottom:740.941500px;}
.y119{bottom:742.062000px;}
.yd0{bottom:743.194500px;}
.y17a{bottom:744.319500px;}
.yf2{bottom:748.818000px;}
.y25f{bottom:752.197500px;}
.y139{bottom:753.154500px;}
.y1c7{bottom:753.328500px;}
.y1a5{bottom:753.331500px;}
.y1f9{bottom:753.333000px;}
.ya6{bottom:756.708000px;}
.y240{bottom:757.825500px;}
.y1c8{bottom:760.084500px;}
.y118{bottom:764.586000px;}
.y179{bottom:766.837500px;}
.y56{bottom:767.961000px;}
.yf1{bottom:771.337500px;}
.y82{bottom:771.339000px;}
.yd{bottom:772.462500px;}
.y25e{bottom:772.464000px;}
.y1c6{bottom:775.846500px;}
.y1a4{bottom:775.851000px;}
.ya5{bottom:779.226000px;}
.y117{bottom:787.104000px;}
.y178{bottom:789.355500px;}
.y132{bottom:790.311000px;}
.y55{bottom:790.479000px;}
.y23f{bottom:792.729000px;}
.y25d{bottom:792.730500px;}
.yf0{bottom:793.855500px;}
.y81{bottom:793.857000px;}
.ycf{bottom:794.986500px;}
.y1c5{bottom:798.366000px;}
.y1a3{bottom:798.369000px;}
.ya4{bottom:801.744000px;}
.y116{bottom:809.622000px;}
.yc{bottom:810.744000px;}
.y217{bottom:811.876500px;}
.y14d{bottom:812.830500px;}
.y54{bottom:812.997000px;}
.y1f8{bottom:814.132500px;}
.y80{bottom:816.375000px;}
.yce{bottom:817.504500px;}
.y1c3{bottom:820.884000px;}
.y1a2{bottom:820.887000px;}
.ya3{bottom:824.262000px;}
.y23e{bottom:827.634000px;}
.y177{bottom:827.637000px;}
.y1c4{bottom:827.640000px;}
.y115{bottom:832.141500px;}
.yb{bottom:833.263500px;}
.y130{bottom:834.223500px;}
.y53{bottom:835.516500px;}
.y1f7{bottom:836.650500px;}
.y7f{bottom:838.894500px;}
.ycd{bottom:840.024000px;}
.y1c2{bottom:843.402000px;}
.y1a1{bottom:843.405000px;}
.y176{bottom:850.155000px;}
.y25c{bottom:853.530000px;}
.y25b{bottom:853.531500px;}
.y35{bottom:854.655000px;}
.y114{bottom:854.659500px;}
.y52{bottom:858.034500px;}
.y1f6{bottom:859.168500px;}
.y7e{bottom:861.412500px;}
.ya2{bottom:861.418500px;}
.y23d{bottom:862.537500px;}
.ycc{bottom:862.542000px;}
.y1c1{bottom:865.920000px;}
.y1a0{bottom:865.924500px;}
.ya{bottom:871.545000px;}
.y175{bottom:872.674500px;}
.y25a{bottom:873.798000px;}
.y113{bottom:877.177500px;}
.y1f5{bottom:881.686500px;}
.y216{bottom:882.811500px;}
.y7d{bottom:883.930500px;}
.ycb{bottom:885.060000px;}
.y51{bottom:888.438000px;}
.y1c0{bottom:888.439500px;}
.y19f{bottom:888.442500px;}
.y259{bottom:894.064500px;}
.y174{bottom:895.192500px;}
.y23c{bottom:897.442500px;}
.y112{bottom:899.695500px;}
.y1f4{bottom:904.206000px;}
.yef{bottom:906.450000px;}
.yca{bottom:907.578000px;}
.y9{bottom:909.828000px;}
.y258{bottom:914.331000px;}
.y257{bottom:914.334000px;}
.y7c{bottom:914.335500px;}
.y173{bottom:917.710500px;}
.y34{bottom:921.087000px;}
.y111{bottom:922.215000px;}
.y1bf{bottom:926.721000px;}
.y19e{bottom:926.724000px;}
.ya1{bottom:927.849000px;}
.yee{bottom:928.969500px;}
.yc9{bottom:930.097500px;}
.y23b{bottom:932.346000px;}
.y256{bottom:934.600500px;}
.y172{bottom:940.228500px;}
.y1f3{bottom:942.487500px;}
.y33{bottom:943.605000px;}
.y110{bottom:944.733000px;}
.y50{bottom:944.736000px;}
.y1be{bottom:949.240500px;}
.y19d{bottom:949.242000px;}
.ya0{bottom:950.367000px;}
.yed{bottom:951.489000px;}
.yc8{bottom:952.615500px;}
.y255{bottom:954.867000px;}
.y171{bottom:962.748000px;}
.y8{bottom:963.873000px;}
.y1f2{bottom:965.005500px;}
.y7b{bottom:966.129000px;}
.y23a{bottom:967.249500px;}
.y10f{bottom:967.251000px;}
.y19c{bottom:971.760000px;}
.y254{bottom:975.133500px;}
.y32{bottom:981.886500px;}
.y170{bottom:985.266000px;}
.y16f{bottom:985.269000px;}
.y1bd{bottom:987.522000px;}
.y7{bottom:988.644000px;}
.y7a{bottom:988.647000px;}
.y9f{bottom:988.648500px;}
.y10e{bottom:989.769000px;}
.yec{bottom:989.770500px;}
.yc7{bottom:989.772000px;}
.y19b{bottom:994.278000px;}
.y253{bottom:995.400000px;}
.y238{bottom:1002.154500px;}
.y1f1{bottom:1003.287000px;}
.y31{bottom:1004.406000px;}
.y6{bottom:1006.654500px;}
.y16e{bottom:1007.787000px;}
.y1bc{bottom:1010.041500px;}
.y79{bottom:1011.165000px;}
.y4f{bottom:1011.166500px;}
.y10d{bottom:1012.288500px;}
.yeb{bottom:1012.290000px;}
.y252{bottom:1015.666500px;}
.y19a{bottom:1016.797500px;}
.y239{bottom:1020.169500px;}
.y1f0{bottom:1025.805000px;}
.y30{bottom:1026.924000px;}
.y16d{bottom:1030.305000px;}
.y1bb{bottom:1032.559500px;}
.y4e{bottom:1033.684500px;}
.y251{bottom:1035.933000px;}
.y5{bottom:1038.184500px;}
.y199{bottom:1039.315500px;}
.yea{bottom:1042.690500px;}
.y1ef{bottom:1048.323000px;}
.y2f{bottom:1049.442000px;}
.y78{bottom:1049.446500px;}
.y16c{bottom:1052.824500px;}
.y236{bottom:1055.074500px;}
.y1ba{bottom:1055.077500px;}
.y250{bottom:1056.199500px;}
.y9e{bottom:1056.202500px;}
.y198{bottom:1061.833500px;}
.y1ee{bottom:1070.841000px;}
.y2e{bottom:1071.961500px;}
.y77{bottom:1071.964500px;}
.y4d{bottom:1071.966000px;}
.y16b{bottom:1075.342500px;}
.y24f{bottom:1076.466000px;}
.y1b9{bottom:1077.595500px;}
.y215{bottom:1077.597000px;}
.yc6{bottom:1078.720500px;}
.y4{bottom:1079.844000px;}
.y197{bottom:1084.351500px;}
.y235{bottom:1089.978000px;}
.y1ed{bottom:1093.360500px;}
.y2d{bottom:1094.481000px;}
.y4c{bottom:1094.484000px;}
.y24e{bottom:1095.607500px;}
.y1b8{bottom:1100.115000px;}
.yc5{bottom:1101.240000px;}
.y3{bottom:1104.615000px;}
.y196{bottom:1106.871000px;}
.y16a{bottom:1110.246000px;}
.y1ec{bottom:1115.878500px;}
.y2c{bottom:1117.000500px;}
.y76{bottom:1117.002000px;}
.y4b{bottom:1117.003500px;}
.y1b7{bottom:1122.633000px;}
.yc4{bottom:1123.758000px;}
.y232{bottom:1124.883000px;}
.y2{bottom:1129.386000px;}
.y195{bottom:1129.389000px;}
.y24d{bottom:1135.015500px;}
.y1eb{bottom:1138.396500px;}
.y2b{bottom:1139.520000px;}
.y4a{bottom:1139.521500px;}
.y1b6{bottom:1145.151000px;}
.y194{bottom:1151.907000px;}
.y230{bottom:1159.786500px;}
.y1ea{bottom:1160.914500px;}
.y75{bottom:1162.038000px;}
.y2a{bottom:1162.039500px;}
.y24c{bottom:1163.164500px;}
.y1{bottom:1166.542500px;}
.y1b5{bottom:1167.669000px;}
.y169{bottom:1172.172000px;}
.y22e{bottom:1180.053000px;}
.y214{bottom:1183.432500px;}
.y1e9{bottom:1183.434000px;}
.y29{bottom:1184.557500px;}
.y193{bottom:1186.810500px;}
.y1b4{bottom:1205.950500px;}
.y1e8{bottom:1205.952000px;}
.h11{height:30.980874px;}
.h26{height:31.508657px;}
.h25{height:33.778200px;}
.h28{height:33.779250px;}
.h10{height:34.081541px;}
.h23{height:34.253613px;}
.h17{height:36.029850px;}
.h1a{height:36.030450px;}
.h3{height:37.177049px;}
.ha{height:45.358661px;}
.he{height:47.454750px;}
.h9{height:48.067277px;}
.h5{height:50.430765px;}
.hd{height:51.622752px;}
.h27{height:51.793950px;}
.h19{height:52.502186px;}
.h22{height:53.498874px;}
.h13{height:53.504874px;}
.h24{height:56.296950px;}
.h6{height:56.771613px;}
.h14{height:56.772813px;}
.hc{height:57.738762px;}
.h12{height:61.105541px;}
.h4{height:61.961748px;}
.h2{height:64.201049px;}
.h7{height:68.253891px;}
.h29{height:69.808650px;}
.hf{height:72.264630px;}
.h21{height:82.603626px;}
.h8{height:103.245504px;}
.h1{height:123.923496px;}
.h18{height:304.005000px;}
.h1d{height:325.398000px;}
.h1c{height:326.524500px;}
.h1e{height:337.783500px;}
.h20{height:340.035000px;}
.h1f{height:342.286500px;}
.h1b{height:358.050000px;}
.hb{height:380.569500px;}
.h16{height:892.800000px;}
.h15{height:894.000000px;}
.h0{height:1264.500000px;}
.w7{width:108.090750px;}
.w8{width:117.097800px;}
.w1{width:359.176500px;}
.w6{width:532.572000px;}
.w5{width:544.957500px;}
.w0{width:894.000000px;}
.w4{width:1091.040000px;}
.w3{width:1264.350000px;}
.w2{width:1264.500000px;}
.x0{left:0.000000px;}
.x1e{left:6.280650px;}
.x12{left:59.200500px;}
.x13{left:63.784500px;}
.x9{left:85.096500px;}
.xe{left:86.697600px;}
.x3{left:106.488300px;}
.x2{left:109.867500px;}
.xa{left:112.119450px;}
.xf{left:117.749400px;}
.x1{left:121.126500px;}
.x30{left:126.370650px;}
.xb{left:139.141950px;}
.x8{left:142.519500px;}
.x33{left:167.280000px;}
.x5{left:179.676300px;}
.x2a{left:233.718450px;}
.x14{left:254.566500px;}
.x1a{left:266.628450px;}
.x1b{left:269.100450px;}
.x19{left:272.100450px;}
.x31{left:278.178900px;}
.x10{left:288.893400px;}
.x18{left:292.332450px;}
.x32{left:302.109000px;}
.x15{left:310.285500px;}
.xd{left:318.093000px;}
.x7{left:349.693500px;}
.x6{left:350.820300px;}
.x2e{left:368.975400px;}
.x4{left:378.967800px;}
.x29{left:388.204950px;}
.x11{left:447.000000px;}
.x24{left:448.585950px;}
.x2f{left:463.326150px;}
.x17{left:468.288000px;}
.x1f{left:541.104900px;}
.x22{left:566.440500px;}
.x27{left:600.594000px;}
.x2c{left:620.395500px;}
.x28{left:629.404950px;}
.x20{left:632.947500px;}
.x16{left:722.098950px;}
.x2d{left:729.612000px;}
.x25{left:762.480450px;}
.x23{left:789.936000px;}
.x1c{left:797.680950px;}
.xc{left:798.945450px;}
.x26{left:805.705950px;}
.x2b{left:832.723950px;}
.x21{left:1160.389500px;}
.x1d{left:1169.397300px;}
@media print{
.v2{vertical-align:-24.021333pt;}
.v3{vertical-align:-20.016000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:20.021333pt;}
.v1{vertical-align:24.021333pt;}
.ls3{letter-spacing:0.000000pt;}
.ls16{letter-spacing:0.000260pt;}
.lsd{letter-spacing:0.001173pt;}
.ls11{letter-spacing:0.002252pt;}
.ls15{letter-spacing:0.005901pt;}
.ls0{letter-spacing:0.013013pt;}
.ls2{letter-spacing:0.020587pt;}
.ls1{letter-spacing:0.022453pt;}
.ls8{letter-spacing:0.022507pt;}
.ls13{letter-spacing:14.763840pt;}
.ls14{letter-spacing:14.769173pt;}
.ls5{letter-spacing:14.785173pt;}
.ls12{letter-spacing:18.769173pt;}
.ls6{letter-spacing:20.261675pt;}
.ls9{letter-spacing:22.790507pt;}
.lse{letter-spacing:26.795840pt;}
.ls10{letter-spacing:30.795840pt;}
.lsc{letter-spacing:34.801173pt;}
.ls4{letter-spacing:38.806507pt;}
.ls7{letter-spacing:52.288341pt;}
.lsa{letter-spacing:56.932736pt;}
.lsb{letter-spacing:96.778069pt;}
.lsf{letter-spacing:163.647403pt;}
.ls17{letter-spacing:314.399403pt;}
.ls18{letter-spacing:489.050069pt;}
.ws2{word-spacing:-17.806827pt;}
.ws3{word-spacing:-16.315264pt;}
.wsf{word-spacing:-14.835563pt;}
.ws34{word-spacing:-0.092884pt;}
.ws2d{word-spacing:-0.068468pt;}
.ws31{word-spacing:-0.067022pt;}
.ws35{word-spacing:-0.065877pt;}
.wsd{word-spacing:-0.064381pt;}
.ws0{word-spacing:-0.064053pt;}
.wsc{word-spacing:-0.058688pt;}
.ws1b{word-spacing:-0.053365pt;}
.wse{word-spacing:-0.051000pt;}
.ws1{word-spacing:-0.038432pt;}
.ws4{word-spacing:0.000000pt;}
.ws10{word-spacing:3.829063pt;}
.ws14{word-spacing:3.868416pt;}
.ws2c{word-spacing:3.928329pt;}
.ws30{word-spacing:3.934131pt;}
.ws36{word-spacing:3.937202pt;}
.ws11{word-spacing:3.937730pt;}
.ws37{word-spacing:3.939477pt;}
.wsb{word-spacing:3.951052pt;}
.ws16{word-spacing:3.953165pt;}
.ws3b{word-spacing:5.898933pt;}
.ws19{word-spacing:7.860715pt;}
.ws15{word-spacing:7.864448pt;}
.wsa{word-spacing:7.923044pt;}
.ws13{word-spacing:7.935498pt;}
.ws7{word-spacing:7.937453pt;}
.ws1a{word-spacing:7.941895pt;}
.ws6{word-spacing:7.943659pt;}
.ws29{word-spacing:7.945651pt;}
.ws5{word-spacing:7.947764pt;}
.ws38{word-spacing:9.904267pt;}
.ws17{word-spacing:11.889728pt;}
.ws1c{word-spacing:11.925231pt;}
.ws8{word-spacing:11.927365pt;}
.ws26{word-spacing:11.934832pt;}
.ws9{word-spacing:11.941774pt;}
.ws2a{word-spacing:11.941813pt;}
.ws27{word-spacing:11.943947pt;}
.ws18{word-spacing:11.958912pt;}
.ws12{word-spacing:11.959441pt;}
.ws28{word-spacing:13.904267pt;}
.ws32{word-spacing:15.933236pt;}
.ws3a{word-spacing:15.943907pt;}
.ws23{word-spacing:15.944884pt;}
.ws33{word-spacing:15.947642pt;}
.ws24{word-spacing:15.980416pt;}
.ws39{word-spacing:17.909600pt;}
.ws2f{word-spacing:18.520853pt;}
.ws2b{word-spacing:21.914933pt;}
.ws1d{word-spacing:23.937771pt;}
.ws25{word-spacing:23.942464pt;}
.ws20{word-spacing:23.949634pt;}
.ws1e{word-spacing:23.954283pt;}
.ws1f{word-spacing:27.952957pt;}
.ws22{word-spacing:31.975100pt;}
.ws2e{word-spacing:33.920267pt;}
.ws21{word-spacing:35.923788pt;}
._253{margin-left:-2686.247476pt;}
._24c{margin-left:-2685.083953pt;}
._24e{margin-left:-2683.712427pt;}
._24d{margin-left:-2609.654591pt;}
._252{margin-left:-2573.749389pt;}
._fb{margin-left:-2552.003985pt;}
._1b7{margin-left:-2550.940251pt;}
._204{margin-left:-2533.540867pt;}
._21f{margin-left:-2532.427121pt;}
._226{margin-left:-2529.248593pt;}
._243{margin-left:-2524.453807pt;}
._17a{margin-left:-2521.443761pt;}
._250{margin-left:-2511.300222pt;}
._b1{margin-left:-2507.919813pt;}
._163{margin-left:-2505.159745pt;}
._186{margin-left:-2503.191877pt;}
._149{margin-left:-2502.074414pt;}
._c0{margin-left:-2500.015689pt;}
._167{margin-left:-2496.620250pt;}
._d2{margin-left:-2495.393344pt;}
._212{margin-left:-2492.897710pt;}
._9e{margin-left:-2491.637822pt;}
._238{margin-left:-2489.062762pt;}
._1d4{margin-left:-2487.107798pt;}
._140{margin-left:-2485.841713pt;}
._1e{margin-left:-2483.800127pt;}
._130{margin-left:-2482.030855pt;}
._1e7{margin-left:-2480.608861pt;}
._1c1{margin-left:-2476.313099pt;}
._92{margin-left:-2475.117614pt;}
._a7{margin-left:-2472.356393pt;}
._5d{margin-left:-2470.541210pt;}
._1ca{margin-left:-2469.644150pt;}
._df{margin-left:-2468.609041pt;}
._17e{margin-left:-2467.634841pt;}
._196{margin-left:-2465.884478pt;}
._19a{margin-left:-2463.609169pt;}
._235{margin-left:-2461.723652pt;}
._1{margin-left:-2460.709661pt;}
._1bd{margin-left:-2456.873465pt;}
._35{margin-left:-2454.346377pt;}
._b5{margin-left:-2450.971443pt;}
._22a{margin-left:-2446.978024pt;}
._8d{margin-left:-2445.305395pt;}
._137{margin-left:-2444.190442pt;}
._1fa{margin-left:-2443.067648pt;}
._241{margin-left:-2441.922771pt;}
._1e0{margin-left:-2440.808377pt;}
._215{margin-left:-2438.753484pt;}
._1f4{margin-left:-2437.447022pt;}
._192{margin-left:-2436.178483pt;}
._12d{margin-left:-2434.459512pt;}
._146{margin-left:-2433.386007pt;}
._205{margin-left:-2428.911183pt;}
._14c{margin-left:-2427.313391pt;}
._1cc{margin-left:-2420.907109pt;}
._23e{margin-left:-2418.261618pt;}
._21b{margin-left:-2417.345791pt;}
._1d2{margin-left:-2415.947809pt;}
._1d0{margin-left:-2414.796676pt;}
._1af{margin-left:-2412.117447pt;}
._216{margin-left:-2410.774421pt;}
._1f0{margin-left:-2409.869238pt;}
._206{margin-left:-2408.761741pt;}
._20b{margin-left:-2406.626772pt;}
._213{margin-left:-2404.867224pt;}
._1b9{margin-left:-2401.727775pt;}
._13f{margin-left:-2399.193256pt;}
._217{margin-left:-2397.985129pt;}
._14f{margin-left:-2396.930310pt;}
._1e8{margin-left:-2395.823072pt;}
._198{margin-left:-2393.022294pt;}
._246{margin-left:-2390.230353pt;}
._194{margin-left:-2388.274464pt;}
._53{margin-left:-2386.305147pt;}
._8a{margin-left:-2383.820070pt;}
._239{margin-left:-2379.462173pt;}
._251{margin-left:-2378.510360pt;}
._1b1{margin-left:-2376.701547pt;}
._1bb{margin-left:-2373.747207pt;}
._1f1{margin-left:-2372.728251pt;}
._116{margin-left:-2370.597421pt;}
._15e{margin-left:-2362.928107pt;}
._83{margin-left:-2360.080653pt;}
._165{margin-left:-2359.132718pt;}
._ab{margin-left:-2356.508339pt;}
._10a{margin-left:-2355.371901pt;}
._124{margin-left:-2352.662888pt;}
._21d{margin-left:-2346.080506pt;}
._158{margin-left:-2344.246969pt;}
._17b{margin-left:-2336.388196pt;}
._ba{margin-left:-2333.209825pt;}
._12{margin-left:-2331.131134pt;}
._155{margin-left:-2329.259479pt;}
._1e2{margin-left:-2328.240543pt;}
._1e5{margin-left:-2325.627617pt;}
._145{margin-left:-2323.486689pt;}
._13a{margin-left:-2322.415177pt;}
._121{margin-left:-2316.619762pt;}
._1c5{margin-left:-2315.047087pt;}
._1fb{margin-left:-2311.395418pt;}
._201{margin-left:-2309.801002pt;}
._28{margin-left:-2308.083035pt;}
._3e{margin-left:-2306.579360pt;}
._17f{margin-left:-2302.424868pt;}
._47{margin-left:-2300.232245pt;}
._220{margin-left:-2298.783513pt;}
._19b{margin-left:-2297.809160pt;}
._228{margin-left:-2295.830237pt;}
._13b{margin-left:-2293.770089pt;}
._240{margin-left:-2292.142594pt;}
._cf{margin-left:-2282.727208pt;}
._1ac{margin-left:-2278.777055pt;}
._1ed{margin-left:-2274.219876pt;}
._1d6{margin-left:-2273.155516pt;}
._210{margin-left:-2269.557986pt;}
._218{margin-left:-2267.050825pt;}
._1ab{margin-left:-2266.082456pt;}
._1ef{margin-left:-2265.113403pt;}
._d7{margin-left:-2263.787691pt;}
._af{margin-left:-2261.288845pt;}
._23f{margin-left:-2259.051907pt;}
._9a{margin-left:-2254.104698pt;}
._7f{margin-left:-2252.021768pt;}
._22e{margin-left:-2250.940513pt;}
._1dc{margin-left:-2249.010079pt;}
._232{margin-left:-2247.970185pt;}
._ed{margin-left:-2242.947718pt;}
._15c{margin-left:-2241.532493pt;}
._101{margin-left:-2239.095790pt;}
._174{margin-left:-2237.989594pt;}
._1d1{margin-left:-2235.378274pt;}
._1ba{margin-left:-2234.195262pt;}
._18f{margin-left:-2233.094153pt;}
._224{margin-left:-2231.574724pt;}
._231{margin-left:-2230.410965pt;}
._188{margin-left:-2228.361453pt;}
._77{margin-left:-2227.184335pt;}
._22d{margin-left:-2225.797575pt;}
._134{margin-left:-2224.198459pt;}
._1d8{margin-left:-2222.741228pt;}
._1c8{margin-left:-2220.924112pt;}
._18e{margin-left:-2219.415624pt;}
._191{margin-left:-2217.312324pt;}
._178{margin-left:-2215.997609pt;}
._190{margin-left:-2214.145041pt;}
._1a3{margin-left:-2211.360277pt;}
._6a{margin-left:-2208.686585pt;}
._f5{margin-left:-2206.802349pt;}
._1da{margin-left:-2205.218442pt;}
._23c{margin-left:-2199.451556pt;}
._11b{margin-left:-2198.419118pt;}
._70{margin-left:-2194.308223pt;}
._169{margin-left:-2193.170931pt;}
._f1{margin-left:-2189.638211pt;}
._1df{margin-left:-2188.268134pt;}
._1f8{margin-left:-2184.364067pt;}
._161{margin-left:-2172.997987pt;}
._1b4{margin-left:-2168.642374pt;}
._1a6{margin-left:-2167.385046pt;}
._1e9{margin-left:-2164.574334pt;}
._127{margin-left:-2163.395966pt;}
._1c9{margin-left:-2160.363545pt;}
._18b{margin-left:-2158.698905pt;}
._64{margin-left:-2157.302899pt;}
._a4{margin-left:-2154.151197pt;}
._db{margin-left:-2152.305863pt;}
._1ec{margin-left:-2151.280889pt;}
._129{margin-left:-2145.172189pt;}
._bc{margin-left:-2134.823006pt;}
._c7{margin-left:-2125.176267pt;}
._1b2{margin-left:-2118.198920pt;}
._183{margin-left:-2114.966197pt;}
._23d{margin-left:-2114.024733pt;}
._98{margin-left:-2106.377849pt;}
._19f{margin-left:-2086.867359pt;}
._1a4{margin-left:-2077.286118pt;}
._20d{margin-left:-2072.151567pt;}
._22f{margin-left:-2069.723520pt;}
._ff{margin-left:-2054.544010pt;}
._1f7{margin-left:-2042.742639pt;}
._237{margin-left:-2039.915699pt;}
._1a5{margin-left:-2037.672528pt;}
._110{margin-left:-2035.653028pt;}
._1a0{margin-left:-2020.548055pt;}
._1ad{margin-left:-2018.016706pt;}
._10e{margin-left:-2003.061049pt;}
._21e{margin-left:-2001.300397pt;}
._208{margin-left:-1998.260256pt;}
._202{margin-left:-1977.904891pt;}
._19d{margin-left:-1969.258315pt;}
._1a9{margin-left:-1962.281928pt;}
._1aa{margin-left:-1952.489243pt;}
._22b{margin-left:-1950.589790pt;}
._154{margin-left:-1928.530009pt;}
._21a{margin-left:-1879.810680pt;}
._103{width:13.944575pt;}
._fe{width:18.740944pt;}
._0{width:20.242095pt;}
._148{width:21.139253pt;}
._100{width:22.809298pt;}
._1d{width:24.266256pt;}
._1b6{width:26.258366pt;}
._11{width:27.268931pt;}
._46{width:28.274705pt;}
._da{width:29.176970pt;}
._1b5{width:30.231386pt;}
._10{width:31.273175pt;}
._3d{width:32.312540pt;}
._fa{width:33.915372pt;}
._34{width:35.662350pt;}
._6{width:36.602004pt;}
._203{width:37.693233pt;}
._f9{width:38.782242pt;}
._33{width:40.269123pt;}
._254{width:41.649290pt;}
._222{width:42.790299pt;}
._1b{width:43.903202pt;}
._27{width:45.037641pt;}
._3{width:46.298376pt;}
._106{width:47.342308pt;}
._ca{width:48.612444pt;}
._f3{width:50.008834pt;}
._105{width:51.193419pt;}
._e9{width:52.256147pt;}
._16a{width:53.272956pt;}
._200{width:54.896588pt;}
._91{width:56.301394pt;}
._115{width:57.620817pt;}
._221{width:59.048858pt;}
._b9{width:60.300805pt;}
._86{width:61.618530pt;}
._84{width:62.876739pt;}
._14b{width:64.602048pt;}
._d1{width:65.522589pt;}
._5b{width:66.689991pt;}
._107{width:68.108894pt;}
._4c{width:69.880917pt;}
._108{width:71.176120pt;}
._8b{width:72.381084pt;}
._2f{width:73.632841pt;}
._d9{width:75.209635pt;}
._29{width:76.885036pt;}
._e{width:78.199119pt;}
._90{width:79.636447pt;}
._17d{width:80.566130pt;}
._a{width:81.515871pt;}
._23{width:82.953727pt;}
._1e6{width:83.876128pt;}
._44{width:84.765954pt;}
._166{width:85.756321pt;}
._4b{width:86.957364pt;}
._a3{width:88.332776pt;}
._25{width:89.457590pt;}
._74{width:90.959416pt;}
._223{width:91.949059pt;}
._13{width:92.990689pt;}
._76{width:93.900741pt;}
._85{width:95.088410pt;}
._f7{width:96.685570pt;}
._3a{width:98.278221pt;}
._f2{width:99.175345pt;}
._1f3{width:100.137551pt;}
._f{width:101.030218pt;}
._55{width:102.594430pt;}
._d{width:104.284527pt;}
._7a{width:105.846625pt;}
._6d{width:107.271898pt;}
._60{width:108.786307pt;}
._112{width:110.211369pt;}
._3b{width:111.111004pt;}
._2c{width:112.790002pt;}
._41{width:114.104614pt;}
._159{width:115.703236pt;}
._14d{width:116.792583pt;}
._5e{width:117.806083pt;}
._20{width:118.857109pt;}
._ce{width:120.295963pt;}
._65{width:121.359448pt;}
._32{width:122.611146pt;}
._89{width:123.862843pt;}
._39{width:124.800443pt;}
._234{width:125.843748pt;}
._ad{width:126.739084pt;}
._2{width:127.804682pt;}
._f8{width:128.815150pt;}
._cd{width:130.117693pt;}
._14{width:131.523368pt;}
._c6{width:132.629129pt;}
._96{width:133.996031pt;}
._17{width:135.087490pt;}
._48{width:136.560227pt;}
._1ff{width:137.519813pt;}
._4e{width:138.499924pt;}
._1cb{width:139.639937pt;}
._72{width:140.562279pt;}
._50{width:142.315348pt;}
._68{width:143.441688pt;}
._10b{width:144.513403pt;}
._79{width:145.756284pt;}
._94{width:147.258169pt;}
._49{width:148.943454pt;}
._1a{width:150.601698pt;}
._14e{width:151.857208pt;}
._cc{width:152.947677pt;}
._5{width:154.010575pt;}
._16b{width:154.905319pt;}
._d6{width:156.020225pt;}
._63{width:156.949729pt;}
._62{width:158.028439pt;}
._b4{width:159.109820pt;}
._43{width:160.389139pt;}
._4a{width:162.018436pt;}
._e1{width:163.080806pt;}
._38{width:164.206148pt;}
._114{width:165.209302pt;}
._20f{width:166.535282pt;}
._51{width:167.709528pt;}
._128{width:168.910393pt;}
._cb{width:169.896966pt;}
._9f{width:170.965010pt;}
._be{width:172.401165pt;}
._bd{width:173.360004pt;}
._1f{width:174.278476pt;}
._111{width:175.718445pt;}
._9c{width:176.657963pt;}
._52{width:177.593644pt;}
._95{width:179.283682pt;}
._a0{width:180.782398pt;}
._150{width:181.909853pt;}
._19c{width:183.070285pt;}
._9b{width:184.197547pt;}
._18a{width:185.599274pt;}
._7d{width:186.601489pt;}
._2b{width:187.788630pt;}
._aa{width:189.343386pt;}
._5f{width:190.354998pt;}
._21{width:191.357429pt;}
._195{width:192.293110pt;}
._8f{width:193.336412pt;}
._30{width:194.294664pt;}
._e3{width:195.607691pt;}
._12e{width:196.921833pt;}
._e4{width:198.123375pt;}
._87{width:199.177913pt;}
._56{width:200.423628pt;}
._c{width:202.176111pt;}
._113{width:203.631328pt;}
._82{width:204.980734pt;}
._1c2{width:206.010356pt;}
._59{width:206.929662pt;}
._141{width:208.409539pt;}
._22{width:209.367169pt;}
._c3{width:211.098585pt;}
._12c{width:212.746582pt;}
._16c{width:213.966236pt;}
._10d{width:215.248980pt;}
._57{width:216.688420pt;}
._ac{width:217.684902pt;}
._4{width:219.252088pt;}
._f6{width:220.690473pt;}
._7{width:222.382154pt;}
._132{width:223.709349pt;}
._11e{width:224.694109pt;}
._4d{width:226.382094pt;}
._1d7{width:227.308880pt;}
._c1{width:228.519953pt;}
._135{width:229.581986pt;}
._6e{width:230.888217pt;}
._182{width:231.842268pt;}
._54{width:233.015070pt;}
._de{width:233.949970pt;}
._1c0{width:235.106781pt;}
._36{width:236.014966pt;}
._160{width:237.370660pt;}
._8e{width:238.766905pt;}
._bb{width:239.706676pt;}
._5c{width:241.270359pt;}
._31{width:243.085813pt;}
._20a{width:244.143152pt;}
._71{width:245.085255pt;}
._157{width:246.022796pt;}
._136{width:247.273496pt;}
._7e{width:248.714521pt;}
._b3{width:249.779004pt;}
._b7{width:251.156059pt;}
._97{width:252.091487pt;}
._11f{width:253.520508pt;}
._19{width:254.558443pt;}
._c5{width:255.524414pt;}
._3f{width:257.035423pt;}
._61{width:258.785264pt;}
._1db{width:260.030882pt;}
._c9{width:261.037475pt;}
._b2{width:262.601217pt;}
._9{width:264.163843pt;}
._16{width:265.538066pt;}
._11c{width:267.509286pt;}
._e0{width:268.589749pt;}
._176{width:269.645986pt;}
._8{width:271.293320pt;}
._21c{width:272.395253pt;}
._b0{width:274.151348pt;}
._78{width:275.359870pt;}
._88{width:276.986526pt;}
._ae{width:278.020726pt;}
._189{width:279.470589pt;}
._4f{width:281.678221pt;}
._133{width:283.008569pt;}
._1c4{width:284.093769pt;}
._138{width:285.055187pt;}
._75{width:286.030341pt;}
._24f{width:287.190927pt;}
._f4{width:288.369826pt;}
._42{width:290.121780pt;}
._7c{width:291.848317pt;}
._c2{width:293.238504pt;}
._15a{width:295.047954pt;}
._c4{width:296.204803pt;}
._d3{width:297.386069pt;}
._2e{width:298.634069pt;}
._73{width:301.021966pt;}
._142{width:302.999836pt;}
._d4{width:303.951403pt;}
._1c6{width:305.558812pt;}
._6b{width:306.959592pt;}
._109{width:308.685183pt;}
._19e{width:309.663417pt;}
._24{width:311.293882pt;}
._1b3{width:312.311922pt;}
._1fe{width:313.290806pt;}
._b6{width:314.192943pt;}
._171{width:315.548155pt;}
._93{width:317.215403pt;}
._179{width:318.350975pt;}
._e6{width:319.376963pt;}
._181{width:321.155254pt;}
._b{width:322.868446pt;}
._156{width:323.789059pt;}
._dd{width:324.720429pt;}
._dc{width:325.786069pt;}
._ee{width:327.287165pt;}
._81{width:329.296580pt;}
._209{width:330.200134pt;}
._16f{width:331.335680pt;}
._45{width:332.686382pt;}
._12a{width:334.274210pt;}
._e8{width:335.970024pt;}
._d0{width:337.008440pt;}
._168{width:337.969335pt;}
._a9{width:339.048853pt;}
._ef{width:340.550997pt;}
._67{width:341.984868pt;}
._b8{width:343.251918pt;}
._13c{width:345.300736pt;}
._26{width:346.303189pt;}
._197{width:347.864249pt;}
._119{width:349.300736pt;}
._23b{width:350.591444pt;}
._d8{width:351.589265pt;}
._11d{width:352.748033pt;}
._1f9{width:353.959006pt;}
._a8{width:355.306226pt;}
._7b{width:357.008119pt;}
._6f{width:358.513643pt;}
._a5{width:359.502395pt;}
._2d{width:360.758242pt;}
._99{width:362.100215pt;}
._143{width:363.067733pt;}
._102{width:364.196475pt;}
._18{width:366.430113pt;}
._1fc{width:367.327742pt;}
._147{width:368.225129pt;}
._ea{width:369.943265pt;}
._122{width:371.798273pt;}
._139{width:373.682673pt;}
._229{width:374.574020pt;}
._3c{width:375.513321pt;}
._18d{width:376.449456pt;}
._a1{width:377.348061pt;}
._9d{width:378.280935pt;}
._162{width:379.447846pt;}
._6c{width:380.580736pt;}
._249{width:381.509438pt;}
._16e{width:382.574830pt;}
._1c{width:383.970347pt;}
._1d9{width:385.173887pt;}
._175{width:386.661555pt;}
._fc{width:388.417681pt;}
._193{width:389.971301pt;}
._12b{width:391.622916pt;}
._117{width:393.344506pt;}
._17c{width:394.276736pt;}
._58{width:396.171465pt;}
._5a{width:398.535810pt;}
._1b8{width:400.405578pt;}
._80{width:401.908736pt;}
._66{width:403.602950pt;}
._13e{width:405.166999pt;}
._225{width:406.185764pt;}
._170{width:407.986492pt;}
._1be{width:410.386290pt;}
._1c3{width:411.806436pt;}
._1cf{width:413.129823pt;}
._118{width:415.370391pt;}
._125{width:417.653971pt;}
._37{width:418.618506pt;}
._199{width:420.544297pt;}
._153{width:422.426069pt;}
._15d{width:423.854262pt;}
._10f{width:425.939341pt;}
._d5{width:428.370729pt;}
._123{width:430.784654pt;}
._a2{width:431.935403pt;}
._1ce{width:433.050166pt;}
._15b{width:434.863346pt;}
._bf{width:436.644386pt;}
._1eb{width:438.263818pt;}
._1bc{width:441.570096pt;}
._1a2{width:442.666975pt;}
._c8{width:443.731622pt;}
._185{width:447.450069pt;}
._219{width:450.896899pt;}
._40{width:453.334528pt;}
._180{width:454.527312pt;}
._e7{width:456.330069pt;}
._177{width:460.861555pt;}
._1ae{width:462.596890pt;}
._126{width:465.822409pt;}
._1bf{width:467.615122pt;}
._69{width:469.466734pt;}
._1ea{width:472.437227pt;}
._2a{width:474.724436pt;}
._ec{width:476.410069pt;}
._173{width:478.057364pt;}
._12f{width:480.602306pt;}
._1dd{width:483.787447pt;}
._131{width:485.604736pt;}
._164{width:487.080923pt;}
._152{width:488.301494pt;}
._fd{width:490.135650pt;}
._f0{width:493.674069pt;}
._244{width:494.573669pt;}
._18c{width:499.687583pt;}
._1c7{width:500.620460pt;}
._15f{width:502.447503pt;}
._187{width:503.436935pt;}
._a6{width:512.513398pt;}
._242{width:515.398753pt;}
._1a1{width:522.041799pt;}
._14a{width:523.642244pt;}
._1cd{width:525.264896pt;}
._eb{width:534.793765pt;}
._13d{width:536.142197pt;}
._16d{width:541.923863pt;}
._1a7{width:544.032889pt;}
._1a8{width:547.222223pt;}
._172{width:550.144576pt;}
._227{width:552.409762pt;}
._207{width:553.675813pt;}
._1fd{width:556.436590pt;}
._11a{width:558.667525pt;}
._1d5{width:559.797384pt;}
._144{width:561.552209pt;}
._1f2{width:563.002444pt;}
._104{width:564.232231pt;}
._24b{width:565.204326pt;}
._1f6{width:566.612736pt;}
._151{width:568.579104pt;}
._233{width:575.558639pt;}
._8c{width:577.564212pt;}
._1d3{width:578.478005pt;}
._e5{width:579.895959pt;}
._1ee{width:592.088571pt;}
._247{width:600.525723pt;}
._184{width:608.271075pt;}
._23a{width:612.059227pt;}
._20c{width:615.533027pt;}
._20e{width:620.867267pt;}
._120{width:626.798140pt;}
._245{width:633.893432pt;}
._e2{width:635.679249pt;}
._1e4{width:638.120133pt;}
._22c{width:644.546026pt;}
._214{width:650.703070pt;}
._1de{width:653.682934pt;}
._24a{width:658.436736pt;}
._15{width:659.541026pt;}
._10c{width:676.510686pt;}
._1b0{width:681.077467pt;}
._211{width:685.896585pt;}
._236{width:703.054669pt;}
._248{width:727.363417pt;}
._1e1{width:762.656151pt;}
._1e3{width:824.267722pt;}
._230{width:1077.468640pt;}
._1f5{width:1102.552641pt;}
.fsb{font-size:32.026667pt;}
.fsa{font-size:35.232000pt;}
.fs2{font-size:38.432000pt;}
.fs8{font-size:53.365333pt;}
.fs4{font-size:58.688000pt;}
.fs7{font-size:60.492983pt;}
.fs1{font-size:64.053333pt;}
.fs5{font-size:69.376000pt;}
.fs9{font-size:74.704000pt;}
.fs3{font-size:80.069333pt;}
.fsc{font-size:85.392000pt;}
.fs6{font-size:106.730667pt;}
.fs0{font-size:128.106667pt;}
.y0{bottom:0.000000pt;}
.y138{bottom:10.006667pt;}
.y168{bottom:10.007333pt;}
.y160{bottom:10.007467pt;}
.y14b{bottom:10.007733pt;}
.y154{bottom:10.008000pt;}
.y144{bottom:10.008533pt;}
.y233{bottom:10.009333pt;}
.y13b{bottom:11.008000pt;}
.y133{bottom:11.009333pt;}
.y22f{bottom:11.010667pt;}
.y237{bottom:15.012000pt;}
.y234{bottom:15.013333pt;}
.y137{bottom:24.018667pt;}
.y167{bottom:24.019333pt;}
.y15f{bottom:24.019467pt;}
.y14a{bottom:24.019733pt;}
.y153{bottom:24.020000pt;}
.y143{bottom:26.021867pt;}
.y49{bottom:26.022667pt;}
.y231{bottom:29.025333pt;}
.y136{bottom:38.030667pt;}
.y166{bottom:38.031333pt;}
.y15e{bottom:38.031467pt;}
.y149{bottom:38.031733pt;}
.y152{bottom:38.032000pt;}
.y142{bottom:40.033867pt;}
.y14c{bottom:41.944800pt;}
.y131{bottom:41.945333pt;}
.y24b{bottom:42.036000pt;}
.y9d{bottom:43.093333pt;}
.y28{bottom:43.094667pt;}
.y74{bottom:43.096000pt;}
.y223{bottom:43.097333pt;}
.y46{bottom:43.100000pt;}
.y278{bottom:43.105333pt;}
.y1e7{bottom:43.108000pt;}
.y192{bottom:43.109333pt;}
.yc3{bottom:43.112000pt;}
.y213{bottom:43.113333pt;}
.y165{bottom:52.043333pt;}
.y15d{bottom:52.043467pt;}
.y148{bottom:52.043733pt;}
.y151{bottom:52.044000pt;}
.y135{bottom:53.044000pt;}
.y141{bottom:54.045867pt;}
.y1b3{bottom:60.109333pt;}
.y73{bottom:60.110667pt;}
.y1e6{bottom:60.122667pt;}
.y212{bottom:60.128000pt;}
.yc2{bottom:65.130667pt;}
.y164{bottom:66.055333pt;}
.y15c{bottom:66.055467pt;}
.y147{bottom:66.055733pt;}
.y150{bottom:66.056000pt;}
.y140{bottom:68.057867pt;}
.y45{bottom:72.124000pt;}
.y9c{bottom:76.121333pt;}
.y27{bottom:76.122667pt;}
.y10c{bottom:76.124000pt;}
.yc1{bottom:76.140000pt;}
.y211{bottom:76.141333pt;}
.y13c{bottom:78.975467pt;}
.y14f{bottom:80.066667pt;}
.y163{bottom:80.067333pt;}
.y15b{bottom:80.067467pt;}
.y146{bottom:80.067733pt;}
.y157{bottom:80.068000pt;}
.y1b2{bottom:81.126667pt;}
.y72{bottom:81.128000pt;}
.y13f{bottom:82.068533pt;}
.y1e5{bottom:82.141333pt;}
.y159{bottom:82.979200pt;}
.y161{bottom:84.980667pt;}
.y9b{bottom:92.134667pt;}
.ye9{bottom:92.136000pt;}
.y71{bottom:92.137333pt;}
.y44{bottom:92.140000pt;}
.y210{bottom:92.154667pt;}
.y15a{bottom:94.078133pt;}
.y156{bottom:94.078667pt;}
.y162{bottom:94.079333pt;}
.y1e4{bottom:95.152000pt;}
.y13e{bottom:96.080533pt;}
.y26{bottom:96.140000pt;}
.yc0{bottom:97.157333pt;}
.y145{bottom:106.998933pt;}
.y12f{bottom:107.146667pt;}
.y9a{bottom:108.149333pt;}
.y70{bottom:108.150667pt;}
.y20f{bottom:108.168000pt;}
.y13d{bottom:110.092533pt;}
.ye8{bottom:112.152000pt;}
.y43{bottom:112.156000pt;}
.y1e3{bottom:112.166667pt;}
.y10b{bottom:113.154667pt;}
.ybf{bottom:113.170667pt;}
.y25{bottom:116.157333pt;}
.y6f{bottom:124.164000pt;}
.y99{bottom:129.166667pt;}
.y22d{bottom:129.168000pt;}
.ye7{bottom:132.169333pt;}
.y42{bottom:132.173333pt;}
.y1e2{bottom:133.184000pt;}
.y24{bottom:136.173333pt;}
.y22c{bottom:140.177333pt;}
.y12e{bottom:141.182667pt;}
.y1e1{bottom:144.193333pt;}
.y6e{bottom:145.181333pt;}
.y20e{bottom:147.201333pt;}
.ye6{bottom:152.185333pt;}
.y41{bottom:152.189333pt;}
.y23{bottom:156.190667pt;}
.y191{bottom:159.206667pt;}
.y1e0{bottom:160.206667pt;}
.y12d{bottom:161.200000pt;}
.y20d{bottom:167.217333pt;}
.y98{bottom:171.201333pt;}
.y22{bottom:176.208000pt;}
.y1df{bottom:176.220000pt;}
.y22b{bottom:177.208000pt;}
.y12c{bottom:181.216000pt;}
.ybe{bottom:182.229333pt;}
.y40{bottom:186.217333pt;}
.ye5{bottom:186.218667pt;}
.y6c{bottom:187.217333pt;}
.y20c{bottom:187.234667pt;}
.y22a{bottom:188.217333pt;}
.y97{bottom:191.218667pt;}
.y6d{bottom:193.222667pt;}
.y190{bottom:193.234667pt;}
.y21{bottom:196.225333pt;}
.y10a{bottom:197.225333pt;}
.y1de{bottom:197.237333pt;}
.y12b{bottom:201.232000pt;}
.ybd{bottom:202.245333pt;}
.y229{bottom:204.230667pt;}
.y1b1{bottom:205.230667pt;}
.y3f{bottom:206.233333pt;}
.y6b{bottom:207.233333pt;}
.y20b{bottom:207.250667pt;}
.y95{bottom:211.234667pt;}
.y18f{bottom:213.252000pt;}
.y20{bottom:216.241333pt;}
.y96{bottom:217.240000pt;}
.y109{bottom:217.241333pt;}
.ye4{bottom:220.246667pt;}
.y12a{bottom:221.249333pt;}
.y277{bottom:222.256000pt;}
.ybc{bottom:222.261333pt;}
.y1b0{bottom:225.248000pt;}
.y3e{bottom:226.249333pt;}
.y69{bottom:227.249333pt;}
.y20a{bottom:227.266667pt;}
.y222{bottom:230.254667pt;}
.y94{bottom:231.250667pt;}
.y6a{bottom:233.254667pt;}
.y18e{bottom:233.268000pt;}
.y1f{bottom:236.257333pt;}
.y108{bottom:237.258667pt;}
.ye3{bottom:240.262667pt;}
.y276{bottom:240.270667pt;}
.y129{bottom:241.265333pt;}
.y1dc{bottom:241.274667pt;}
.y1af{bottom:245.264000pt;}
.y3d{bottom:246.265333pt;}
.y68{bottom:247.266667pt;}
.y1dd{bottom:247.280000pt;}
.y209{bottom:247.282667pt;}
.y221{bottom:250.270667pt;}
.y228{bottom:252.270667pt;}
.y1e{bottom:256.274667pt;}
.ybb{bottom:256.289333pt;}
.y107{bottom:257.274667pt;}
.y93{bottom:258.273333pt;}
.ye2{bottom:260.278667pt;}
.y1db{bottom:261.290667pt;}
.y1ae{bottom:263.290667pt;}
.y3c{bottom:266.282667pt;}
.y67{bottom:267.282667pt;}
.y18d{bottom:267.296000pt;}
.y208{bottom:267.300000pt;}
.y220{bottom:270.286667pt;}
.y275{bottom:272.297333pt;}
.y227{bottom:273.288000pt;}
.y128{bottom:275.293333pt;}
.y1d{bottom:276.292000pt;}
.yba{bottom:276.305333pt;}
.y106{bottom:277.290667pt;}
.ye1{bottom:280.294667pt;}
.y1da{bottom:281.308000pt;}
.y3b{bottom:286.298667pt;}
.y66{bottom:287.298667pt;}
.y18c{bottom:287.312000pt;}
.y207{bottom:287.316000pt;}
.y21f{bottom:290.302667pt;}
.y274{bottom:290.312000pt;}
.y1c{bottom:296.308000pt;}
.yb9{bottom:296.321333pt;}
.ye0{bottom:300.312000pt;}
.y1d9{bottom:301.324000pt;}
.y92{bottom:304.318667pt;}
.y3a{bottom:306.314667pt;}
.y226{bottom:307.316000pt;}
.y65{bottom:307.322667pt;}
.y18b{bottom:307.328000pt;}
.y206{bottom:307.332000pt;}
.y273{bottom:308.326667pt;}
.y127{bottom:309.321333pt;}
.y21e{bottom:310.320000pt;}
.y105{bottom:311.326667pt;}
.y1b{bottom:316.324000pt;}
.y48{bottom:317.266667pt;}
.ydf{bottom:320.328000pt;}
.y1d8{bottom:321.340000pt;}
.y91{bottom:324.334667pt;}
.y39{bottom:326.330667pt;}
.y272{bottom:326.341333pt;}
.y225{bottom:327.333333pt;}
.y18a{bottom:327.344000pt;}
.y205{bottom:327.348000pt;}
.yb8{bottom:330.349333pt;}
.y104{bottom:331.342667pt;}
.y64{bottom:334.345333pt;}
.y1a{bottom:336.341333pt;}
.yde{bottom:340.344000pt;}
.y1d7{bottom:341.356000pt;}
.y21d{bottom:343.348000pt;}
.y126{bottom:343.349333pt;}
.y90{bottom:344.350667pt;}
.y271{bottom:344.356000pt;}
.y38{bottom:346.348000pt;}
.y224{bottom:347.349333pt;}
.y189{bottom:347.361333pt;}
.y204{bottom:347.365333pt;}
.y103{bottom:351.358667pt;}
.y19{bottom:356.358667pt;}
.ydd{bottom:360.360000pt;}
.y24a{bottom:362.361333pt;}
.y270{bottom:362.370667pt;}
.yb6{bottom:364.377333pt;}
.y37{bottom:366.364000pt;}
.y188{bottom:367.377333pt;}
.y203{bottom:367.381333pt;}
.yb7{bottom:370.382667pt;}
.y102{bottom:371.376000pt;}
.y1d6{bottom:375.384000pt;}
.y18{bottom:376.374667pt;}
.y125{bottom:377.377333pt;}
.y8f{bottom:378.378667pt;}
.ydc{bottom:380.377333pt;}
.y63{bottom:380.384000pt;}
.y26f{bottom:380.385333pt;}
.yb4{bottom:384.393333pt;}
.y36{bottom:386.380000pt;}
.y202{bottom:387.397333pt;}
.y158{bottom:388.236000pt;}
.yb5{bottom:390.398667pt;}
.y101{bottom:391.392000pt;}
.y249{bottom:394.388000pt;}
.y1d5{bottom:395.400000pt;}
.y17{bottom:396.390667pt;}
.y13a{bottom:398.244000pt;}
.y8e{bottom:398.394667pt;}
.y26e{bottom:398.400000pt;}
.ydb{bottom:400.393333pt;}
.y62{bottom:400.400000pt;}
.y47{bottom:401.393333pt;}
.y187{bottom:401.405333pt;}
.yb3{bottom:404.409333pt;}
.y21c{bottom:406.401333pt;}
.y201{bottom:407.413333pt;}
.y124{bottom:411.405333pt;}
.y100{bottom:411.408000pt;}
.y1d4{bottom:415.417333pt;}
.y16{bottom:416.408000pt;}
.y26d{bottom:416.414667pt;}
.y8d{bottom:418.410667pt;}
.yda{bottom:420.410667pt;}
.y155{bottom:421.262667pt;}
.y186{bottom:421.421333pt;}
.yb2{bottom:424.425333pt;}
.y248{bottom:425.414667pt;}
.y200{bottom:427.430667pt;}
.y134{bottom:431.272000pt;}
.y123{bottom:431.421333pt;}
.yff{bottom:431.424000pt;}
.y14e{bottom:432.272000pt;}
.y61{bottom:434.428000pt;}
.y26c{bottom:434.429333pt;}
.y15{bottom:436.425333pt;}
.y8c{bottom:438.428000pt;}
.y185{bottom:441.437333pt;}
.yb0{bottom:444.441333pt;}
.yd9{bottom:447.434667pt;}
.y1ff{bottom:447.446667pt;}
.y1d3{bottom:449.445333pt;}
.yb1{bottom:450.446667pt;}
.y122{bottom:451.437333pt;}
.yfe{bottom:451.441333pt;}
.y26b{bottom:452.444000pt;}
.y60{bottom:454.444000pt;}
.y247{bottom:456.440000pt;}
.y14{bottom:456.441333pt;}
.y8b{bottom:458.444000pt;}
.y184{bottom:461.453333pt;}
.y1fe{bottom:467.462667pt;}
.y21b{bottom:469.454667pt;}
.y1d2{bottom:469.462667pt;}
.y26a{bottom:470.458667pt;}
.y121{bottom:471.454667pt;}
.yfc{bottom:471.457333pt;}
.y5f{bottom:474.461333pt;}
.y13{bottom:476.457333pt;}
.yfd{bottom:477.462667pt;}
.y8a{bottom:478.460000pt;}
.yaf{bottom:478.469333pt;}
.y183{bottom:481.470667pt;}
.y246{bottom:487.466667pt;}
.y269{bottom:488.473333pt;}
.y1d1{bottom:489.478667pt;}
.yfb{bottom:491.473333pt;}
.yd8{bottom:493.473333pt;}
.y5e{bottom:494.477333pt;}
.y12{bottom:496.473333pt;}
.y89{bottom:498.476000pt;}
.yae{bottom:498.485333pt;}
.y1fd{bottom:498.488000pt;}
.y182{bottom:501.486667pt;}
.y120{bottom:505.482667pt;}
.y268{bottom:506.488000pt;}
.y1d0{bottom:509.494667pt;}
.yd7{bottom:513.489333pt;}
.y5d{bottom:514.493333pt;}
.y245{bottom:518.492000pt;}
.y88{bottom:518.493333pt;}
.yad{bottom:518.501333pt;}
.y181{bottom:521.502667pt;}
.y267{bottom:524.502667pt;}
.y11f{bottom:525.500000pt;}
.yfa{bottom:525.501333pt;}
.y11{bottom:529.501333pt;}
.y1cf{bottom:529.510667pt;}
.y21a{bottom:532.508000pt;}
.yd6{bottom:533.505333pt;}
.y5c{bottom:534.509333pt;}
.y1ad{bottom:535.518667pt;}
.y87{bottom:538.509333pt;}
.yac{bottom:538.518667pt;}
.y180{bottom:541.518667pt;}
.y266{bottom:542.517333pt;}
.y11e{bottom:545.516000pt;}
.yf9{bottom:545.517333pt;}
.y244{bottom:549.518667pt;}
.y1ce{bottom:549.528000pt;}
.y1fc{bottom:549.530667pt;}
.yd5{bottom:553.522667pt;}
.y5b{bottom:554.526667pt;}
.y86{bottom:558.525333pt;}
.y265{bottom:560.532000pt;}
.y17f{bottom:561.536000pt;}
.y11d{bottom:565.532000pt;}
.yf8{bottom:565.533333pt;}
.y1cd{bottom:569.544000pt;}
.y1ac{bottom:569.546667pt;}
.y1fb{bottom:569.548000pt;}
.yab{bottom:572.546667pt;}
.yd4{bottom:573.540000pt;}
.y264{bottom:578.546667pt;}
.y243{bottom:580.544000pt;}
.y17e{bottom:581.552000pt;}
.yf6{bottom:585.549333pt;}
.y85{bottom:585.552000pt;}
.y5a{bottom:588.554667pt;}
.y10{bottom:589.552000pt;}
.y1cc{bottom:589.560000pt;}
.y1aa{bottom:589.562667pt;}
.y1fa{bottom:589.564000pt;}
.yf7{bottom:591.554667pt;}
.yaa{bottom:592.564000pt;}
.yd3{bottom:593.556000pt;}
.y219{bottom:595.561333pt;}
.y1ab{bottom:595.568000pt;}
.y263{bottom:596.561333pt;}
.y11c{bottom:599.561333pt;}
.y17d{bottom:601.568000pt;}
.yf5{bottom:605.565333pt;}
.y59{bottom:608.572000pt;}
.y1cb{bottom:609.576000pt;}
.y1a9{bottom:609.580000pt;}
.y242{bottom:611.570667pt;}
.ya9{bottom:612.580000pt;}
.yd2{bottom:613.572000pt;}
.y262{bottom:614.576000pt;}
.y11b{bottom:619.577333pt;}
.y17c{bottom:621.584000pt;}
.yf4{bottom:625.582667pt;}
.yf{bottom:626.582667pt;}
.y58{bottom:628.588000pt;}
.y1ca{bottom:629.593333pt;}
.y1a7{bottom:629.596000pt;}
.y84{bottom:631.590667pt;}
.y261{bottom:632.590667pt;}
.ya8{bottom:632.596000pt;}
.yd1{bottom:633.593333pt;}
.y1a8{bottom:635.601333pt;}
.y11a{bottom:639.593333pt;}
.y17b{bottom:641.601333pt;}
.y241{bottom:642.596000pt;}
.yf3{bottom:645.598667pt;}
.y57{bottom:648.604000pt;}
.y1c9{bottom:649.609333pt;}
.y1a6{bottom:649.612000pt;}
.ye{bottom:650.602667pt;}
.y260{bottom:650.605333pt;}
.y83{bottom:651.606667pt;}
.ya7{bottom:652.612000pt;}
.y218{bottom:658.614667pt;}
.y119{bottom:659.610667pt;}
.yd0{bottom:660.617333pt;}
.y17a{bottom:661.617333pt;}
.yf2{bottom:665.616000pt;}
.y25f{bottom:668.620000pt;}
.y139{bottom:669.470667pt;}
.y1c7{bottom:669.625333pt;}
.y1a5{bottom:669.628000pt;}
.y1f9{bottom:669.629333pt;}
.ya6{bottom:672.629333pt;}
.y240{bottom:673.622667pt;}
.y1c8{bottom:675.630667pt;}
.y118{bottom:679.632000pt;}
.y179{bottom:681.633333pt;}
.y56{bottom:682.632000pt;}
.yf1{bottom:685.633333pt;}
.y82{bottom:685.634667pt;}
.yd{bottom:686.633333pt;}
.y25e{bottom:686.634667pt;}
.y1c6{bottom:689.641333pt;}
.y1a4{bottom:689.645333pt;}
.ya5{bottom:692.645333pt;}
.y117{bottom:699.648000pt;}
.y178{bottom:701.649333pt;}
.y132{bottom:702.498667pt;}
.y55{bottom:702.648000pt;}
.y23f{bottom:704.648000pt;}
.y25d{bottom:704.649333pt;}
.yf0{bottom:705.649333pt;}
.y81{bottom:705.650667pt;}
.ycf{bottom:706.654667pt;}
.y1c5{bottom:709.658667pt;}
.y1a3{bottom:709.661333pt;}
.ya4{bottom:712.661333pt;}
.y116{bottom:719.664000pt;}
.yc{bottom:720.661333pt;}
.y217{bottom:721.668000pt;}
.y14d{bottom:722.516000pt;}
.y54{bottom:722.664000pt;}
.y1f8{bottom:723.673333pt;}
.y80{bottom:725.666667pt;}
.yce{bottom:726.670667pt;}
.y1c3{bottom:729.674667pt;}
.y1a2{bottom:729.677333pt;}
.ya3{bottom:732.677333pt;}
.y23e{bottom:735.674667pt;}
.y177{bottom:735.677333pt;}
.y1c4{bottom:735.680000pt;}
.y115{bottom:739.681333pt;}
.yb{bottom:740.678667pt;}
.y130{bottom:741.532000pt;}
.y53{bottom:742.681333pt;}
.y1f7{bottom:743.689333pt;}
.y7f{bottom:745.684000pt;}
.ycd{bottom:746.688000pt;}
.y1c2{bottom:749.690667pt;}
.y1a1{bottom:749.693333pt;}
.y176{bottom:755.693333pt;}
.y25c{bottom:758.693333pt;}
.y25b{bottom:758.694667pt;}
.y35{bottom:759.693333pt;}
.y114{bottom:759.697333pt;}
.y52{bottom:762.697333pt;}
.y1f6{bottom:763.705333pt;}
.y7e{bottom:765.700000pt;}
.ya2{bottom:765.705333pt;}
.y23d{bottom:766.700000pt;}
.ycc{bottom:766.704000pt;}
.y1c1{bottom:769.706667pt;}
.y1a0{bottom:769.710667pt;}
.ya{bottom:774.706667pt;}
.y175{bottom:775.710667pt;}
.y25a{bottom:776.709333pt;}
.y113{bottom:779.713333pt;}
.y1f5{bottom:783.721333pt;}
.y216{bottom:784.721333pt;}
.y7d{bottom:785.716000pt;}
.ycb{bottom:786.720000pt;}
.y51{bottom:789.722667pt;}
.y1c0{bottom:789.724000pt;}
.y19f{bottom:789.726667pt;}
.y259{bottom:794.724000pt;}
.y174{bottom:795.726667pt;}
.y23c{bottom:797.726667pt;}
.y112{bottom:799.729333pt;}
.y1f4{bottom:803.738667pt;}
.yef{bottom:805.733333pt;}
.yca{bottom:806.736000pt;}
.y9{bottom:808.736000pt;}
.y258{bottom:812.738667pt;}
.y257{bottom:812.741333pt;}
.y7c{bottom:812.742667pt;}
.y173{bottom:815.742667pt;}
.y34{bottom:818.744000pt;}
.y111{bottom:819.746667pt;}
.y1bf{bottom:823.752000pt;}
.y19e{bottom:823.754667pt;}
.ya1{bottom:824.754667pt;}
.yee{bottom:825.750667pt;}
.yc9{bottom:826.753333pt;}
.y23b{bottom:828.752000pt;}
.y256{bottom:830.756000pt;}
.y172{bottom:835.758667pt;}
.y1f3{bottom:837.766667pt;}
.y33{bottom:838.760000pt;}
.y110{bottom:839.762667pt;}
.y50{bottom:839.765333pt;}
.y1be{bottom:843.769333pt;}
.y19d{bottom:843.770667pt;}
.ya0{bottom:844.770667pt;}
.yed{bottom:845.768000pt;}
.yc8{bottom:846.769333pt;}
.y255{bottom:848.770667pt;}
.y171{bottom:855.776000pt;}
.y8{bottom:856.776000pt;}
.y1f2{bottom:857.782667pt;}
.y7b{bottom:858.781333pt;}
.y23a{bottom:859.777333pt;}
.y10f{bottom:859.778667pt;}
.y19c{bottom:863.786667pt;}
.y254{bottom:866.785333pt;}
.y32{bottom:872.788000pt;}
.y170{bottom:875.792000pt;}
.y16f{bottom:875.794667pt;}
.y1bd{bottom:877.797333pt;}
.y7{bottom:878.794667pt;}
.y7a{bottom:878.797333pt;}
.y9f{bottom:878.798667pt;}
.y10e{bottom:879.794667pt;}
.yec{bottom:879.796000pt;}
.yc7{bottom:879.797333pt;}
.y19b{bottom:883.802667pt;}
.y253{bottom:884.800000pt;}
.y238{bottom:890.804000pt;}
.y1f1{bottom:891.810667pt;}
.y31{bottom:892.805333pt;}
.y6{bottom:894.804000pt;}
.y16e{bottom:895.810667pt;}
.y1bc{bottom:897.814667pt;}
.y79{bottom:898.813333pt;}
.y4f{bottom:898.814667pt;}
.y10d{bottom:899.812000pt;}
.yeb{bottom:899.813333pt;}
.y252{bottom:902.814667pt;}
.y19a{bottom:903.820000pt;}
.y239{bottom:906.817333pt;}
.y1f0{bottom:911.826667pt;}
.y30{bottom:912.821333pt;}
.y16d{bottom:915.826667pt;}
.y1bb{bottom:917.830667pt;}
.y4e{bottom:918.830667pt;}
.y251{bottom:920.829333pt;}
.y5{bottom:922.830667pt;}
.y199{bottom:923.836000pt;}
.yea{bottom:926.836000pt;}
.y1ef{bottom:931.842667pt;}
.y2f{bottom:932.837333pt;}
.y78{bottom:932.841333pt;}
.y16c{bottom:935.844000pt;}
.y236{bottom:937.844000pt;}
.y1ba{bottom:937.846667pt;}
.y250{bottom:938.844000pt;}
.y9e{bottom:938.846667pt;}
.y198{bottom:943.852000pt;}
.y1ee{bottom:951.858667pt;}
.y2e{bottom:952.854667pt;}
.y77{bottom:952.857333pt;}
.y4d{bottom:952.858667pt;}
.y16b{bottom:955.860000pt;}
.y24f{bottom:956.858667pt;}
.y1b9{bottom:957.862667pt;}
.y215{bottom:957.864000pt;}
.yc6{bottom:958.862667pt;}
.y4{bottom:959.861333pt;}
.y197{bottom:963.868000pt;}
.y235{bottom:968.869333pt;}
.y1ed{bottom:971.876000pt;}
.y2d{bottom:972.872000pt;}
.y4c{bottom:972.874667pt;}
.y24e{bottom:973.873333pt;}
.y1b8{bottom:977.880000pt;}
.yc5{bottom:978.880000pt;}
.y3{bottom:981.880000pt;}
.y196{bottom:983.885333pt;}
.y16a{bottom:986.885333pt;}
.y1ec{bottom:991.892000pt;}
.y2c{bottom:992.889333pt;}
.y76{bottom:992.890667pt;}
.y4b{bottom:992.892000pt;}
.y1b7{bottom:997.896000pt;}
.yc4{bottom:998.896000pt;}
.y232{bottom:999.896000pt;}
.y2{bottom:1003.898667pt;}
.y195{bottom:1003.901333pt;}
.y24d{bottom:1008.902667pt;}
.y1eb{bottom:1011.908000pt;}
.y2b{bottom:1012.906667pt;}
.y4a{bottom:1012.908000pt;}
.y1b6{bottom:1017.912000pt;}
.y194{bottom:1023.917333pt;}
.y230{bottom:1030.921333pt;}
.y1ea{bottom:1031.924000pt;}
.y75{bottom:1032.922667pt;}
.y2a{bottom:1032.924000pt;}
.y24c{bottom:1033.924000pt;}
.y1{bottom:1036.926667pt;}
.y1b5{bottom:1037.928000pt;}
.y169{bottom:1041.930667pt;}
.y22e{bottom:1048.936000pt;}
.y214{bottom:1051.940000pt;}
.y1e9{bottom:1051.941333pt;}
.y29{bottom:1052.940000pt;}
.y193{bottom:1054.942667pt;}
.y1b4{bottom:1071.956000pt;}
.y1e8{bottom:1071.957333pt;}
.h11{height:27.538555pt;}
.h26{height:28.007695pt;}
.h25{height:30.025067pt;}
.h28{height:30.026000pt;}
.h10{height:30.294703pt;}
.h23{height:30.447656pt;}
.h17{height:32.026533pt;}
.h1a{height:32.027067pt;}
.h3{height:33.046266pt;}
.ha{height:40.318809pt;}
.he{height:42.182000pt;}
.h9{height:42.726469pt;}
.h5{height:44.827346pt;}
.hd{height:45.886891pt;}
.h27{height:46.039067pt;}
.h19{height:46.668609pt;}
.h22{height:47.554555pt;}
.h13{height:47.559888pt;}
.h24{height:50.041733pt;}
.h6{height:50.463656pt;}
.h14{height:50.464723pt;}
.hc{height:51.323344pt;}
.h12{height:54.316036pt;}
.h4{height:55.077109pt;}
.h2{height:57.067599pt;}
.h7{height:60.670125pt;}
.h29{height:62.052133pt;}
.hf{height:64.235227pt;}
.h21{height:73.425445pt;}
.h8{height:91.773781pt;}
.h1{height:110.154219pt;}
.h18{height:270.226667pt;}
.h1d{height:289.242667pt;}
.h1c{height:290.244000pt;}
.h1e{height:300.252000pt;}
.h20{height:302.253333pt;}
.h1f{height:304.254667pt;}
.h1b{height:318.266667pt;}
.hb{height:338.284000pt;}
.h16{height:793.600000pt;}
.h15{height:794.666667pt;}
.h0{height:1124.000000pt;}
.w7{width:96.080667pt;}
.w8{width:104.086933pt;}
.w1{width:319.268000pt;}
.w6{width:473.397333pt;}
.w5{width:484.406667pt;}
.w0{width:794.666667pt;}
.w4{width:969.813333pt;}
.w3{width:1123.866667pt;}
.w2{width:1124.000000pt;}
.x0{left:0.000000pt;}
.x1e{left:5.582800pt;}
.x12{left:52.622667pt;}
.x13{left:56.697333pt;}
.x9{left:75.641333pt;}
.xe{left:77.064533pt;}
.x3{left:94.656267pt;}
.x2{left:97.660000pt;}
.xa{left:99.661733pt;}
.xf{left:104.666133pt;}
.x1{left:107.668000pt;}
.x30{left:112.329467pt;}
.xb{left:123.681733pt;}
.x8{left:126.684000pt;}
.x33{left:148.693333pt;}
.x5{left:159.712267pt;}
.x2a{left:207.749733pt;}
.x14{left:226.281333pt;}
.x1a{left:237.003067pt;}
.x1b{left:239.200400pt;}
.x19{left:241.867067pt;}
.x31{left:247.270133pt;}
.x10{left:256.794133pt;}
.x18{left:259.851067pt;}
.x32{left:268.541333pt;}
.x15{left:275.809333pt;}
.xd{left:282.749333pt;}
.x7{left:310.838667pt;}
.x6{left:311.840267pt;}
.x2e{left:327.978133pt;}
.x4{left:336.860267pt;}
.x29{left:345.071067pt;}
.x11{left:397.333333pt;}
.x24{left:398.743067pt;}
.x2f{left:411.845467pt;}
.x17{left:416.256000pt;}
.x1f{left:480.982133pt;}
.x22{left:503.502667pt;}
.x27{left:533.861333pt;}
.x2c{left:551.462667pt;}
.x28{left:559.471067pt;}
.x20{left:562.620000pt;}
.x16{left:641.865733pt;}
.x2d{left:648.544000pt;}
.x25{left:677.760400pt;}
.x23{left:702.165333pt;}
.x1c{left:709.049733pt;}
.xc{left:710.173733pt;}
.x26{left:716.183067pt;}
.x2b{left:740.199067pt;}
.x21{left:1031.457333pt;}
.x1d{left:1039.464267pt;}
}


body.paper-page .doc-shell[data-scieee-split-doc="1"] #page-container {
  position: relative !important;
  top: auto !important;
  left: auto !important;
  right: auto !important;
  bottom: auto !important;
  width: max-content !important;
  min-width: 100% !important;
  height: auto !important;
  overflow: visible !important;
  margin: 0 auto !important;
  padding: 0 !important;
}

body.paper-page .doc-shell[data-scieee-split-doc="1"] #sidebar,
body.paper-page .doc-shell[data-scieee-split-doc="1"] .loading-indicator {
  display: none !important;
}

body.paper-page .doc-shell[data-scieee-split-doc="1"] .pf {
  display: block !important;
  position: relative !important;
  margin-left: auto !important;
  margin-right: auto !important;
}
